/*
Theme Name: ITU 150
Theme URI: http://mediafrontier.ch
Author: Media Frontier
Author URI: http://mediafrontier.ch
Description:
License: GNU General Public License
License URI: license.txt

This theme, like WordPress, is licensed under the GPL.

govpress is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.




*/
/* =Global Variables
----------------------------------------------- */
/*
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

body {
  background: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

/* =Global
----------------------------------------------- */
body,
button,
input,
select,
textarea {
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: #4b92db;
}

h1 {
    font-size: 40px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    font-weight: 500;
}

h3 {
    font-size: 36px;
    font-weight: 300;
}

h4 {
    font-size: 30px;
    font-weight: 500;
}

h5 {
    font-size: 30px;
    font-weight: 400;
    color: black;
    padding: 30px 0px;
}

h6 {
    font-size: 24px;
    font-weight: 500;
    color: black;
}

.h7 {
    font-size: 24px;
    font-weight: 400;
    color: #4b92d;
}

.h8 {
    font-size: 24px;
    font-weight: 300;
    color: #b7b7b7;
    padding-bottom: 10px;
}

.h9 {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #4b92d;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/* Text elements */
p {
  margin-bottom: 1.5em;
}

ul{
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

b, strong {
  font-weight: bold;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

figure {
  margin: 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

th {
  font-weight: bold;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

/* Forms */
label {
  cursor: pointer;
  display: block;
}

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */
}

button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  margin: 0 0 10px;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  //border-radius: 3px;
  display: inline-block;
  //box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  box-shadow: inset 0 2px rgba(0, 0, 0, 0.15);
  padding: 8px 20px;
  outline: none;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 */
  border: 0;
  padding: 0;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="search"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  background-color: #F1F2F2;
  font-family: inherit;
  //border: solid #999 1px;
  //border-radius: 6px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.025), inset 0 0px 0px rgba(0, 0, 0, 0.2);
  //color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:10px;
  border: 1px solid #999;
  border: inset 0px solid #333;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  display: block;
  font-size: 15px;
  margin: 0 0 1em 0;
  padding: 6px;
  width: 100%;
  border-radius: 0px;
}


.map_button{
    min-height: 30px;
    width:100%;
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    background: #4b92db !important;
}

.map_button a {
    font-size: 18px;
    font-weight: normal;
    color: white !important;
    vertical-align: central;
}

.map_button a:hover {
    text-decoration: none;
    font-weight: bold;
}

.wpcf7-submit, .link_button, .link_button_media{
    min-height: 30px;
    text-align:center;
    background: #4b92db !important;
    padding: 5px 0px;
}

.link_button_media a, .wpcf7-submit, .link_button a {
    font-size: 18px;
    font-weight: normal;
    color: white !important;
    vertical-align: central;
    padding: 10px 40px;
}

.link_button_media a:hover, .wpcf7-submit, .link_button a:hover {
    text-decoration: none;
    font-weight: bold;
}


input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus {
  //background-color: #fff;
  outline: none;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

input[name="post_password"] {
  margin-top: .5em;
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  height: auto;
  min-height: 50px;
}

/* Links */
a {
  color: #428bca;
}

a:hover,
a:focus,
a:active {
  color: #4b92d;
}

/* Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

/* Clearing */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* @noflip */
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
}

/* =General
----------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  background: #f8f8f8;
}

a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

/* =Layout
----------------------------------------------- */
.content-area {
  float: left;
  margin: 0 -25% 0 0;
  width: 100%;
  background-color: white;
}

.col-width {
  max-width: 1280px;
  padding: 0 0;
  margin: 0 auto;
}

.site-main {
  margin: 0 0 0 0;
  min-height: 100%;
}

.full-width .site-main,
.layout-single-column .site-main {
  margin: 0;
}

#secondary {
  float: right;
  overflow: hidden;
  width: 25%;
}

.site-footer {
  clear: both;
  width: 100%;
}

/* =Header
----------------------------------------------- */
.site-description {
  font-weight: 400;
}
.header_image{
    width:226px; 
    height: 115px;
    margin-top: 25px;
    margin-left: 20px;
}

.language_placeholder {
    float: left;
    margin-top: 13px;
    margin-left: -180px;
    font-size: 12px;
    color: white;
}

.main-navigation .language_placeholder a {
    padding: 7px 7px;
    font-size: 12px;
    color: white;
}

.main-navigation .language_placeholder a :hover {
    color: white !important;
}

.language select{
   position: fixed;
   top: 73px;
   left: 315px;
   background: transparent;
   color: #4b92db;
   width: 100px;
   padding: 6px;
   font-size: 16px;
   line-height: 20px;
   border: 0;
   border-radius: 0;
   height: 34px;
   -webkit-appearance: none;
}






/* =Menu
----------------------------------------------- */
#mobile_image{
    display: none;
}

.float_right{
    float: right; 
    padding-top: 30px;
    margin-right: 20px;
}

.search_box{
    width: 200px;
    float: right;
    padding-top: 10px;
}

.social_nav {
}

#site-navigation {
  background: #4b92d;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 168px;
}

#second-navigation {
  filter: alpha(opacity=80);
  opacity: 0.8;
  background-color: white;
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 168px;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
}

.main-navigation li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-navigation ul ul {
  margin-left: 20px;
}

.main-navigation a {
  color: #428bca;
  text-decoration: none;
  display: block;
}

.main-navigation a:hover {
    font-weight: bold;
}

.main-navigation {
  font-size: 14px;
  min-height: 48px;
}

.main-navigation.toggled-on {
  padding: 72px 0 36px;
}

.main-navigation .nav-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  margin-left: -5px;
  margin-right: -5px;
}

.main-navigation.toggled-on .nav-menu {
  display: block;
}

.main-navigation a {
  padding: 7px 36px;
}

.menu-toggle {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 75px;
  left: 20px;
  text-align: center;
  z-index: 100;
}

.menu-toggle:before {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font: normal 18px/1 FontAwesome;
  text-decoration: inherit;
  vertical-align: text-bottom;
  color: #666;
  content: "\f0c9";
  margin: 0;
}


/* =Icon Menu
----------------------------------------------- */
#menu-icon {
  margin: 0 0 1.5em;
}

.menu-icon-container {
  background: #fff;
  border-radius: 5px;
  padding: 1em;
}

.menu-icon-container ul {
  text-align: center;
  list-style: none;
  margin: 0;
}

.menu-icon-container li {
  display: inline-block;
  padding: 1em 5%;
}

.menu-icon-container li:before {
  content: none;
}

.menu-icon-container a:hover {
  text-decoration: none;
  color: #333;
}

.menu-icon-container a:before {
  font-family: "FontAwesome";
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 52px;
  font-size: 5.2rem;
  display: block;
  margin: 0 0 5px;
  text-decoration: none;
}

.menu-icon-container a:hover:before {
  opacity: .8;
}

/* =Header
----------------------------------------------- */
.site-header {
  font-weight: 400;
  padding: 0 0;
  text-align: center;
}

.site-title {
  font-size: 36px;
  font-size: 3.6rem;
}

.site-title a {
  text-decoration: none;
}

/* =Content
----------------------------------------------- */
#content {
  background: #fff;
  //border-radius: 5px;
  //padding: 1.75em 1.5em;
  padding-top: 168px;
  padding-left: 10px;
  padding-right: 10px;
}

.sticky {
  /* Required for theme review */
}

.hentry {
  margin: 0 0 1.5em;
}

.entry-title {
  font-size: 30px;
  font-size: 3.0rem;
/*  border-bottom: 1px solid #f8f8f8;*/
  padding: .5em 0 .5em;
  margin: .5em 0 .5em;
}

.entry-content {
/*  border-bottom: 1px solid #f8f8f8;*/
  margin-bottom: 1em;
}

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  margin: 0 0 1em;
  clear: none;
}

.entry-content h1 {
  font-size: 22px;
  font-size: 2.2rem;
}

.entry-content h2 {
  font-size: 20px;
  font-size: 2.0rem;
}

.entry-content h3 {
  font-size: 18px;
  font-size: 1.8rem;
}

.entry-title a:hover {
  color: #111;
  text-decoration: none;
}

.entry-meta {
  color: #666;
  font-size: 14px;
/*  border-bottom: 1px solid #f8f8f8;*/
}

.entry-meta a {
  color: #666;
}

.entry-header .entry-meta {
  padding: 0 0 5px;
  margin: 0 0 5px;
}

.byline,
.updated {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.author-meta {
  border-bottom: 1px solid #f8f8f8;
  padding: 0 0 1.5em;
  margin: 0 0 1.5em;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  min-height: 100px;
}

.author-avatar {
  position: absolute;
  left: 0;
}

.author-avatar img {
  border-radius: 50%;
}

.author-description {
  margin-left: 100px;
}

.author-description h3 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: .5em;
}

footer.entry-meta {
  padding-bottom: .75em;
  font-size: 12px;
  font-size: 1.2rem;
}

footer.entry-meta ul {
  list-style: none;
  margin: 0;
}

footer.entry-meta li {
  display: inline-block;
  margin: 0 .5em .5em 0;
}

footer.entry-meta a {
  display: block;
  background: #efefef;
  border-radius: 5px;
  color: #666;
  padding: .5em .75em;
}

.social-footer{
    display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* =Layouts
----------------------------------------------- */
.layout-sidebar-left .site-main {
  margin: 0 0 0 30%;
}

.layout-sidebar-left #secondary {
  float: left;
}

.layout-sidebar-left .content-area {
  float: right;
  margin: 0 0 0 -25%;
}

/* =Search and 404 page
----------------------------------------------- */
.search .entry-header {
  margin: 0 0 1.5em;
}

.search .entry-title {
  font-size: 26px;
  font-size: 2.6rem;
}

.search-form:after {
  content: '';
  display: block;
  clear: both;
}

.search-form label {
  width: 100%;
  padding-right: 54px;
  float: left;
}

.search-form input, .search-form button {
  margin: 0;
}

.search-form .search-submit {
  width: 54px;
  margin-left: -54px;
  float: left;
  height: 34px;
}

.search #main .search-form,
.error404 #main .search-form {
  background: #f8f8f8;
  padding: 1em;
  margin: 0 0 1.5em;
}

.search #main .search-form .search-field,
.error404 #main .search-form .search-field {
  background: #fff;
}

.error404 .page-content .widgettitle {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 0 .5em;
}

/* =Asides
----------------------------------------------- */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/* =Media
----------------------------------------------- */
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wp-caption {
  border: 1px solid #ccc;
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.site-main .gallery {
  margin-bottom: 1.5em;
}

.gallery-caption {
  /* Required for theme review */
}

.site-main .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}

.site-main .gallery dd {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

/* =Navigation
----------------------------------------------- */
.site-main [class*="navigation"] {
  margin: 0 0 1.5em;
  overflow: hidden;
}

[class*="navigation"] .nav-previous {
  float: left;
  width: 50%;
}

[class*="navigation"] .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.paging-navigation, .post-navigation {
  font-size: 15px;
  fonts-size: 1.5rem;
}

/* =Comments
----------------------------------------------- */
.comments-title {
  margin: 0 0 1.5em;
}

.comment-list {
  list-style: none;
  margin: 0 0 3em;
}

.comment-list .children {
  list-style: none;
  margin: 1.5em 0 0 5em;
}

.comment {
  margin-bottom: 1em;
  position: relative;
}

.comment-body {
  padding: 0 0 0 5em;
}

#comments .avatar {
  left: 0;
  position: absolute;
  border-radius: 50%;
}

.comment-content, .reply {
  font-size: 14px;
  font-size: 1.4rem;
}

.comment-content a {
  word-wrap: break-word;
}

.comment-content p {
  margin: 0 0 .5em;
}

.comment-meta {
  margin: 0 0 .5em;
}

.comment-metadata {
  font-size: 13px;
  font-size: 1.3rem;
}

.bypostauthor {
  background: #f8f8f8;
  padding: .5em;
}

.bypostauthor .avatar {
  left: .5em;
}

#reply-title {
  margin: 0 0 .5em;
}

#commentform label[for="author"],
#commentform label[for="email"],
#commentform label[for="url"] {
  float: left;
  padding: 5px 0;
  width: 100px;
}

.form-allowed-tags, .form-allowed-tags code {
  font-family: 'Open Sans';
  font-size: 13px;
  font-size: 1.3rem;
}

/* =Widgets
----------------------------------------------- */
.widget {
  font-size: 14px;
  margin: 0 0 1.5em;
}

.widget ul {
  list-style: none;
}

.widget ul li {
  margin-bottom: .2em;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Sidebar Widgets & Home Page Featured Widgets */
#secondary .widget, #home-page-featured .widget {
  background: #f8f8f8;
  padding: 0 0 1.5em;
  overflow: hidden;
  border-radius: 5px;
}
#secondary .widget-title, #home-page-featured .widget-title {
  color: #fff;
  background: #4b92d;
  padding: .5em 1.25em;
  margin-bottom: 1em;
}
#secondary .widget-title a, #home-page-featured .widget-title a {
  color: #fff;
}
#secondary .widget ul, #home-page-featured .widget ul {
  margin: 0 1.25em;
}

/* Workarounds for lack of widget-content wrapper */
#secondary .tagcloud,
#secondary .textwidget,
#secondary select,
#secondary .recentcommentsavatar,
#secondary #subscribe-blog,
#secondary .milestone-content,
#secondary .widgets-multi-column-grid,
#secondary .widgets-grid-layout,
#secondary #pd_top_rated_holder,
#secondary .widget_gravatar p,
#secondary .widget_image img,
#secondary .widget_goodreads embed,
#secondary .widget_goodreads img,
#secondary .widget_facebook_likebox iframe,
#secondary .widget-grofile h4,
#secondary .widget-grofile p,
#secondary .widget-grofile ul
.jetpack_subscription_widget form,
#home-page-featured .tagcloud,
#home-page-featured .textwidget,
#home-page-featured select,
#home-page-featured .recentcommentsavatar,
#home-page-featured #subscribe-blog,
#home-page-featured .milestone-content,
#home-page-featured .widgets-multi-column-grid,
#home-page-featured .widgets-grid-layout,
#home-page-featured #pd_top_rated_holder,
#home-page-featured .widget_gravatar p,
#home-page-featured .widget_image img,
#home-page-featured .widget_goodreads embed,
#home-page-featured .widget_goodreads img,
#home-page-featured .widget_facebook_likebox iframe,
#home-page-featured .widget-grofile h4,
#home-page-featured .widget-grofile p,
#home-page-featured .widget-grofile ul
.jetpack_subscription_widget form {
  margin: 0 1.25em;
}
#secondary .widget-grofile .grofile-thumbnail,
#home-page-featured .widget-grofile .grofile-thumbnail {
  padding: 0 1.25em;
}

/* Specific Widget Styling */
#secondary .widget-title .rsswidget img,
#home-page-featured .widget-title .rsswidget img {
  display: none;
}
#secondary .widget_search form,
#home-page-featured .widget_search form {
  margin: 0 1.25em;
  padding-top: 1.25em;
}
#secondary .widget_search .widget-title,
#home-page-featured .widget_search .widget-title {
  margin-bottom: 0;
}
#secondary .widget_search .search-field,
#home-page-featured .widget_search .search-field {
  background: #fff;
}

.search-field{
    background: white !important;
    border-width: 0px !important;
	height: 34px;
}

/* Header Widgets */
#hero-widgets .widget {
  font-size: 18px;
  margin: 0 0 1em;
  clear: both;
}

#hero-widgets .widget a {
  color: #fff;
  text-decoration: underline;
}

#hero-widgets .widget-title {
  font-size: 30px;
  font-size: 3.0rem;
  margin-bottom: .5em;
}

#hero-widgets {
  background: #4b92d;
  color: #fff;
  margin-bottom: 3em;
  padding: 1.5em 0;
  text-align: center;
}

#hero-widgets .section-wrap {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  padding: 1.75em 1.5em;
}

#hero-widgets .search-form {
  max-width: 360px;
  display: block;
  margin: 0px auto;
}

/* Footer Widgets */
#footer-widgets {
  margin-bottom: 3em;
}

#footer-widgets a {
  color: #666;
  text-decoration: none;
}

#footer-widgets a:hover {
  color: #111;
  text-decoration: underline;
}

#footer-widgets .widget-title {
  font-size: 18px;
  margin-bottom: 1em;
}

#footer-widgets .widget ul {
  margin: 0 0 1.5em;
}

#footer-widgets .widget ul ul {
  margin: 0 0 0 1.5em;
}

#footer-widgets.widgets-count-2 .widget-area {
  float: left;
  width: 47.5%;
  margin-right: 5%;
}

#footer-widgets.widgets-count-2 #footer-widget-2 {
  margin-right: 0;
}

#footer-widgets.widgets-count-3 .widget-area {
  float: left;
  width: 30%;
  margin-right: 5%;
}

#footer-widgets.widgets-count-3 #footer-widget-3 {
  margin-right: 0;
}

#footer-widgets .widget_search .search-field {
  background: #fff;
}

#footer-widgets .search-form {
  max-width: 360px;
  display: block;
  margin: 0px auto;
}

/* =Footer
----------------------------------------------- */
.site-footer {
  font-size: 14px;
  background: #4b92d;
  color: #fff;
  padding: 1.5em 0;
  text-align: center;
}

.site-footer.widgets {
  padding: 1.5em 0 .5em;
}

.site-footer a {
  color: #fff;
}

/* =Plugin Support
----------------------------------------------- */
.breadcrumb {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 8px 15px;
  margin-bottom: 1.5em;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* Plugin : WP PageNavi */
.wp-pagenavi {
  font-weight: 600;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #999;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 7px 8px;
  display: inline;
  margin: 0 2px;
}

.wp-pagenavi span.pages {
  display: block;
  color: #999;
  margin-bottom: 1em;
}

.wp-pagenavi span.pages:before {
  content: "\f15c";
  font-family: FontAwesome;
  margin-right: 10px;
}

.wp-pagenavi a:hover,
.wp-pagenavi a:active,
.wp-pagenavi span.current {
  color: #333;
}

.wp-pagenavi a {
  color: #428bca;
  border-top: 1px solid #f8f8f8;
}

/* =Infinite Scroll
----------------------------------------------- */
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

/* =Plugin support
----------------------------------------------- */
.wsp-category-title {
  font-weight: 600;
}

.wsp-pages-list,
.wsp-posts-list {
  list-style: none;
  margin-left: 0;
}

.wsp-pages-list ul,
.wsp-posts-list ul {
  margin-left: 3em;
}


@media screen and (max-width: 1200px) {
    .main-navigation a {
    padding: 6px 30px;
    }
}

@media screen and (max-width: 1100px) {
    .main-navigation a {
    padding: 7px 20px;
    }
}

@media screen and (max-width: 944px) {
    .main-navigation a {
    padding: 7px 6px;
    }
}

@media screen and (max-width: 992px) {
    .nav_footer{
     position: static;
     display: inline-block;
     top:0px !important;
     margin: 0px auto;
     padding-top: 25px;

    }
    .footer_info{
     position: static !important;
     display: inline-block;
     top:0px !important;
     margin: 0px auto;
     padding-bottom: 10px;
    }
    .center_text{
        text-align: center;
    }
    .wpcf7-submit, .link_button{
        margin-left: 33%;
        margin-right: 33%;
        width: 33%;
    }
    .wpcf7-submit, .link_button a, .link_button_media a{
        padding: 5px 10px;
    }
    
    .event_ex{
     min-height: 0px !important;
     max-width: 500px;
     margin: 0px auto;
    }
    
    #event{
        background-color: white;
    }
    
    .capimage{
    text-align: left !important;
    padding-top: 0px !important;
}
    
}

@media screen and (max-width: 846px) {
    .header_image{
        width: 150px;
        height: auto;
    }
}

@media screen and (min-width: 740px) {
    .lang-item{
    display: none !important;
    }
}

@media screen and (max-width: 740px) {
    .lang-item :before{
        font: normal 12px/1 FontAwesome;
        content: "\f101 \00a0 \00a0";
        padding-left: 10px;
    }
    
	#map2{
        height:300px !important;
    }
	
    #menu-primary{
        margin-top: 59px;
    }
    
    #mobile_image{
        display: block;
        width: 100%; 
        text-align: center;
        height: 60px;
        background-color: #4b92db;
        position: fixed;
        z-index: 99999;
    }
    
    .header_image_mobile{
        height: 50px;
        width: auto;
        margin-top: 3px;
    }
    
    .social_nav, .search_box{
        display: none;
    }
    
    #site-navigation {
        display: none;
        position: fixed;
    }
    
    #second-navigation{
        top: 60px;
        height: 60px;
        padding: 0px 0px;
        border-bottom: solid #ccc 1px;
        filter: alpha(opacity=90);
        opacity: 0.9;
    }
    
    .header_image{
        display: none;
    }
    
    .menu-toggle{
        position: fixed;
    }
    
    .main-navigation a {
    padding: 7px 20px;
    color: #666;
    text-decoration: none;
    background-color: white;
    border-bottom: solid #ccc 1px;
    display: block;
    margin: 0px;
  }
    
    #content {
    padding-top: 54px;
    }
  
    .social-footer{
    display: inline;
    }
    
  
}
/* =Responsive
----------------------------------------------- */
@media screen and (min-width: 740px) {
    
  /* Primary Navigation */
  
  .main-navigation {
    padding: 0;
  }

  .main-navigation .menu-toggle {
    display: none;
    padding: 0;
  }

  .main-navigation .nav-menu {
    border-bottom: 0;
    display: block;
  }

  .main-navigation.toggled-on {
    border-bottom: 0;
    margin: 0;
    padding: 0;
  }

  .main-navigation li {
    border: 0;
    display: inline-block;
    height: 60px;
    line-height: 48px;
    position: relative;
  }

  .main-navigation a {
    display: inline-block;
    white-space: nowrap;
  }
  
  .social_nav a {
    padding-left: 4px;
    padding-right: 4px;
  }

  .main-navigation .current_page_item > a,
  .main-navigation .current_page_ancestor > a,
  .main-navigation .current-menu-item > a,
  .main-navigation .current-menu-ancestor > a {
    background: #f8f8f8;
    font-weight: bold;
    //color: #555;
    border-bottom: solid #4b92db 2px;
  }

  .main-navigation ul > li.menu-item-has-children:hover > a,
  .main-navigation ul > li.menu-item-has-children.focus > a,
  .main-navigation ul > li.page_item_has_children:hover > a,
  .main-navigation ul > li.page_item_has_children.focus > a {
    color: #555;
    background: #f8f8f8;
  }

  .main-navigation ul ul {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-top: none;
    float: left;
    margin: 0 0 0 -1px;
    position: absolute;
    top: 48px;
    left: -999em;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
            transition: opacity .3s ease-in-out;
  }

  .main-navigation li li {
    border: 0;
    display: block;
    height: auto;
    line-height: 1.2;
  }

  .main-navigation ul ul ul {
    left: -999em;
    top: 0;
  }

  .main-navigation ul ul a {
    color: #555;
    padding: 16px 12px;
    white-space: normal;
    width: 190px;
  }

  .main-navigation ul ul a:hover,
  .main-navigation ul ul li.focus > a,
  .main-navigation ul ul li:hover {
    color: #555;
    background-color: #fefefe;
  }

  .main-navigation ul ul li.menu-item-has-children:hover > a,
  .main-navigation ul ul li.menu-item-has-children.focus > a,
  .main-navigation ul ul li.page_item_has_children:hover > a,
  .main-navigation ul ul li.page_item_has_children.focus > a {
    color: #555;
    background-color: #fefefe;
  }

  .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
    left: auto;
    opacity: 1;
  }

  .main-navigation ul ul li:hover > ul,
  .main-navigation ul ul li.focus > ul {
    left: 100%;
  }

  .main-navigation .menu-item-has-children > a,
  .main-navigation .page_item_has_children > a {
    padding-right: 26px;
  }

  .main-navigation .menu-item-has-children > a:after,
  .main-navigation .page_item_has_children > a:after {
    -webkit-font-smoothing: antialiased;
    content: "\f0d7";
    display: inline-block;
    font: normal 10px/1 FontAwesome;
    position: absolute;
    right: 12px;
    top: 20px;
    vertical-align: text-bottom;
  }

  .main-navigation li .menu-item-has-children > a,
  .main-navigation li .page_item_has_children > a {
    padding-right: 20px;
    width: 168px;
  }

  .main-navigation .menu-item-has-children li.menu-item-has-children > a:after,
  .main-navigation .menu-item-has-children li.page_item_has_children > a:after,
  .main-navigation .page_item_has_children li.menu-item-has-children > a:after,
  .main-navigation .page_item_has_children li.page_item_has_children > a:after {
    content: "\f0da";
    right: 8px;
    top: 20px;
  }
}
@media screen and (max-width: 840px) {
  .site-main,
  .layout-sidebar-left .site-main,
  .layout-sidebar-right .site-main {
    margin: 0;
  }

  #secondary {
    clear: both;
    float: none;
    width: auto;
  }
}
@media screen and (max-width: 680px) {
  #footer-widgets.widgets-count-3 .widget-area {
    float: none;
    width: auto;
    margin-right: 0;
  }

  .comment-list .children {
    list-style: none;
    margin: 1.5em 0 0 0;
  }
  
  #rev_slider_1_1_wrapper{
      margin-top: 60px !important;
  }
  
}
@media screen and (max-width: 480px) {
  .col-width {
    padding: 0;
  }

  #footer-widgets.col-width,
  .site-footer .col-width {
    padding: 0 1.5em;
  }

  .main-navigation.toggled-on {
    padding: 42px 0 0px;
  }

  .main-navigation a {
    padding: 7px 20px;
  }
}

.post_map{
    
    padding: 10px;
}


.gm-style-iw{
    min-height: 200px;
    min-width: 400px;
}

.form_title{
    font-weight:400;
    color: #4b92db;
    font-size: 18px;
}

.clear{
	clear: both;
}

.blue{
    background-color: #4b92db;
}

.white{
	background: #ffffff;
}
.gray{
	background: #F1F2F2;
}

.center{
    text-align: center;
}

.nav_footer{
	position: relative;
	text-align: center;
        top: 222px;
}

.footer_info{
    position: relative;
    text-align: center;
    top: 222px;
    color:  white;
    font-weight: 300;
    font-size: 16px;
}


.nav_footer li{
        text-align: center;
	text-transform: uppercase;
	list-style-type: none;
	float: left;
	padding: 0 5px 0 5px;

}
.nav_footer li a{
        text-align: center;
	color:  white !important;
	font-weight: 300;
	font-size: 16px;
        border-right: 1px solid #fafafa;
        padding-right: 10px;
        height: 14px;
}

.nav_footer li a:hover{
	font-weight: bold;
        text-decoration: none;
}


.social_nav_footer {
    margin: 0px !important;
    padding-top: 20px;
  }

.social_nav_footer a {
    padding-left: 2px;
    padding-right: 2px;
    
  }
  
.social_nav_footer a img{
    padding-top: 4px;
  }

.pad20{
      padding: 20px 0px;
  }

.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

.full{
    width: 100%;
}
.line{
    display: block !important;
    float: left !important;
    width: 45px !important;
    margin: 1px 1px;
}

.wpcf7-form .singleline ol {
list-style: none;
margin: 0 !important;
}

.wpcf7-form .singleline li{
display: inline-block;
margin-right: 0px;
}



#wpcf7-f6-o1 > form > div:nth-child(5) > div:nth-child(2) > ol:nth-child(8) > li:nth-child(1) > span > input{
    width: 150px;
}

#wpcf7-f6-o1 > form > div:nth-child(5) > div:nth-child(2) > ol:nth-child(8) > li:nth-child(2) > span > input{
    width: 150px;
}

#wpcf7-f6-o1 > form > div:nth-child(5) > div:nth-child(2) > ol:nth-child(5) > li:nth-child(1) > span > input{
    width: 40px;
}

#wpcf7-f6-o1 > form > div:nth-child(5) > div:nth-child(2) > ol:nth-child(5) > li:nth-child(4) > span > input{
    width: 40px;
}

.capimage{
    text-align: right;
    padding-top: 25px;
}

.event_ex{
     min-height: 147px;
}


/*          twine         */

.twine-item .footer {
border-bottom-left-radius:4px;
border-bottom-right-radius:4px;
}

.twine-item .byline {
border-top-left-radius:4px;
border-top-right-radius:4px;
border-bottom-width:1px;
border-bottom-style:solid;
}

.twine-item.follows .subtitle {
padding-top:5px;
}

/*.twine-item-border:hover {
-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.1);
-moz-box-shadow:0 0 2px 2px rgba(0,0,0,0.1);
box-shadow:0 0 2px 2px rgba(0,0,0,0.1);
}*/

.twine-item-border {
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
background-color:#FCFCFC;
border-color:#D6D6D6;
border-style:solid;
border-width:1px;
padding:0;
}

.logo-wrapper {
position:absolute;
top:0px;
right:25px;
background-color:#1DCAFF;
width:30px;
height:35px;
padding-top:10px;
color:#FFF;
font-size:11px;
letter-spacing:-.1em;
text-align:center;
text-transform:uppercase;
z-index:25;
}

.logo-wrapper:after {
content:"";
position:absolute;
left:0px;
bottom:0;
width:0;
height:0;
border-bottom:4px solid #FCFCFC;
border-left:15px solid transparent;
border-right:15px solid transparent;
}

.logo-wrapper i {
font-size:1.6em;
line-height:.8em;
color:#FFF;
}

.logo-wrapper.vine {
background-color:#00a478;
}

.twine-item.layout-double .twine-description,.twine-item.layout-double .twine-description p {
font-size:18px;
font-weight:700;
}

.picture img,.video img,.twine-description p img,.twine-description iframe {
width:100%;
height:100%;
}

.related .twine-description.small p {
font-size:10px;
}

.twine-item .whene {
font-size:9px;
padding-left:15px;
padding-bottom:10px;
padding-top:10px;
margin:0;
}

.news_content{
    padding: 0px 15px;
}

.twine-description{
    font-size: 14px;
}

.footern div{
    position:relative;
    border-top:1px solid #ebebec;
    color:#FFFFFF;
    font-size:11px;
    min-height:35px;
    font-size:16px;
    padding-top:8px;
}
.footern i{
    padding-right:1px;
    padding-bottom: 10px;
    color:#9C9C9C;
}
.footern{
    margin:0px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
    background-image:-webkit-gradient(linear,0 0%,0 100%,from(#FFFFFF),to(#EEEEEE));
    background-image:-webkit-linear-gradient(top,#FFFFFF 0%,#EEEEEE 100%);
    background-image:-moz-linear-gradient(top,#FFFFFF 0%,#EEEEEE 100%);
    background-image:-ms-linear-gradient(top,#FFFFFF 0%,#EEEEEE 100%);
    background-image:-o-linear-gradient(top,#FFFFFF 0%,#EEEEEE 100%);
    background-image:linear-gradient(top,#FFFFFF 0%,#EEEEEE 100%);
}
.twine-item .whene{
    font-size:9px;
    margin:0px;
    padding-left:15px;
    padding-bottom:10px;
    padding-top:10px;
}

.headline{
    width: 80%;
    margin: 0px auto;
}

/*.tparrows {
background: rgba(0, 0, 0, 0.5) !important;
-webkit-border-radius: 0px;
border-radius: 0px;
width: 40px !important;
height: 40px !important;
top: auto !important;
}
 
.tparrows.default:after {
color: #999;
font-size: 25px;
position: absolute;
z-index: 10;
width:40px;
line-height:40px;
text-align:center;
font-weight: 300;
top:0px; left:0px;
font-family: "FontAwesome";
}
 
.tp-rightarrow.tparrows.default:after { content: '\f105'; }
.tp-leftarrow.tparrows.default:after { content: '\f104'; }*/


/*.tparrows.default:after {
color: #999;
font-size: 25px;
position: absolute;
z-index: 10;
width:40px;
line-height:40px;
text-align:center;
font-weight: 300;
top:0px; left:0px;
}

.tparrows {
-webkit-border-radius: 0px;
border-radius: 0px;
width: 32px !important;
height: 120px !important;
top: auto !important;
}
*/
.tp-leftarrow.default.round-old{
    width: 32px !important;
    height: 120px !important;
    background: url(../govpress/images/controls.png) no-repeat 0 -120px !important;
    z-index: 98;
}

.tp-rightarrow.default.round-old{
    width: 32px !important;
    height: 120px !important;
    background: url(../govpress/images/controls.png) no-repeat -32px -120px !important;
    z-index: 98;
}

.tp-leftarrow.default.round-old:hover {
    width: 32px !important;
    height: 120px !important;
    background: url(../govpress/images/controls.png) no-repeat 0 0 !important;
    z-index: 98;
}

.tp-rightarrow.default.round-old:hover{
    width: 32px !important;
    height: 120px !important;
    background: url(../govpress/images/controls.png) no-repeat -32px 0 !important;
    z-index: 98;
}

.tp-bullets.simplebullets.round-old .bullet {
    background: url(../govpress/images/bullets.png) no-repeat bottom left;
    z-index: 98;
}

.tp-bullets.simplebullets .bullet:hover, .tp-bullets.simplebullets .bullet.selected {
    background: url(../govpress/images/bullets.png) no-repeat top left;
    z-index: 98;
}

.through-line{
	margin-top: 30px;
	margin-bottom: 20px;
	background: url('../govpress/images/line.jpg') repeat-x center center;
	width: 100%;
	text-align: center;
}

.cup{
    padding: 0px 10px;
}

.link_button_media{
    width: 100%;
}

.logo-wrapper.youtube {
background-color: #bb0000;
}

a.anchor{display: block; position: relative; top: -240px; visibility: hidden;}

#wpcf7-f6-o1 > form > div > div > ol > li > span > .wpcf7-not-valid-tip{
    display: none;
}

#wpgmp_cat_tab1 > div:nth-child(3){
    display: none !important;
}

.month {
  text-align:center;
  border-bottom:1px solid #959595;
  margin: 20px 0px;
}
.month h5 {
  display:inline-block;
  position:relative;
  top:15px;
  background:#fff;
  padding:0 12px;
}

.months {
		list-style: none; 
	}

.months li{
        text-align: center;
		text-transform: uppercase;
		list-style-type: none;
		display:inline-block;
		padding: 0 5px 0 5px;

}
.months li a{
        text-align: center;
		font-weight: 300;
		font-size: 16px;
        padding-right: 10px;
        height: 14px;
}

.months li a:hover{
	font-weight: bold;
    text-decoration: none;
}

/* centered columns styles */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
}
