/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
	 2.0.1) Font Face
	 2.0.2) Global Headings
	 2.0.3) Form Elements
	 2.0.4) List styles
	 2.0.5) General Text Formatting
	 2.0.6) Link elements
	 2.0.7) Table Elements
	 2.0.8) Button Styles
	 2.0.9) Sprite Icons
	 2.1.0) 960 Grid Style
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
.copyright a, .copyright a:visited, .copyright p{
	color:#FFF;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 1.) Global Typography
 ----------------------------------------*/
*, :before, :after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-size: 62.5%;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
}
/*
 2.0.1) Font Face
 -----------------------------*/
/*Put Your font face Styles here*/

/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #004b82;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
}
h1 {
	/* font-size: 48px; */
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 0.4375em 0;
}
h2 {
	/* font-size: 32px; */
	font-size: 35px;
	line-height: 1.2;
	margin: 0 0 0.65625em 0;
}
h3 {
	/* font-size: 24px; */
	font-size: 32px;
	line-height: 0.875;
	margin: 0 0 0.875em 0;
}
h4 {
	/* font-size: 21px; */
	color: #004b82;
    font-size: 19px;
    margin-bottom: 20px;
}
h5 {
	/* font-size: 18px; */
	color: #bc7f37;
    font-size: 15px;
    margin-bottom: 20px;
}
h6 {
	/* font-size: 14px; */
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
}
.home .owl-carousel .owl-dots .owl-dot:nth-child(3), .home .owl-carousel .owl-dots .owl-dot:nth-child(4), .home .owl-carousel .owl-dots .owl-dot:nth-child(2), .home .owl-carousel .owl-dots .owl-dot:nth-child(1), .home .post-listing .owl-carousel .owl-next, .home .post-listing .owl-carousel .owl-prev {
	display: none;
}
/*
 2.0.3) Form Elements
 -----------------------------*/
button, input, optgroup, select, textarea {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: inherit;
	background: #fff;
	border: 1px solid #ccc;
	font-family: 'Open Sans', sans-serif;
}
input {
	line-height: normal;
}
input:focus, select:focus, textarea:focus, button:focus {
	border: 1px #888 solid;
	outline: 0;
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	border: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] {
	-webkit-appearance: none;
	cursor: pointer;
	line-height: normal;
	overflow: visible;
}
button[disabled], input[disabled] {
	cursor: default;
	color: #999;
	border-color: #ccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
/*
 2.0.4) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size: 100%;
	line-height: 1.5;
}
li, dt {
	line-height: 1.5em;
}
dl {
	margin: 0 0 1em 0;
}
dd {
	margin: 0 0 1em 0.8em;
}
ul {
	list-style-type: disc;
	margin: 0 0 1em 0;
}
ol {
	list-style-type: decimal;
	margin: 0 0 1em 0;
}
ul ul, ol ul {
	list-style-type: circle;
	margin-top: 0;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
}

/*
 2.0.5) General Text Formatting
 -----------------------------------*/
p {
	font-size: 100%;
	line-height: 1.5;
	color: #393939;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
    line-height: 1.2;
}
p strong{
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
}
blockquote, cite, q, var, dfn {
	font-style: italic;
}
blockquote {
	background: transparent;
	color: #666666;
}
small {
	/* font-size: 12px; */
	font-size: 85.71429%;
	line-height: 1.75;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre, code {
	color: #880000;
}
kbd, samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img{
	max-width: 100%;
	height: auto;
}
/*
 2.0.6) Link style
 -------------------------*/
a {
	color: #4d87c7;
	text-decoration: none;
}
a:hover, a:focus {
	color: #4d87ff;
	text-decoration: none;
}
a:active {
	outline: none;
}

/*
 2.0.7) Table Elements
 --------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	color: #444444;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	margin: 0 0 1.35714em 0;
}
caption {
	font-variant: small-caps;
}
th, td {
	line-height: 1.5em;
	vertical-align: top;
	padding: 0.71429em 0.5em;
}
th *:first-child, td *:first-child {
	margin-top: 0;
}
thead th {
	text-align: left;
	color: #000;
	border-bottom: 2px #000 solid;
}
tbody th {
	text-align: left;
	border-top: 1px solid #ccc;
}
tbody td {
	text-align: left;
	border-top: 1px solid #ccc;
}

/*
 2.0.8) Button Styles
 -------------------------*/
.btn, input.btn, button.btn {
	display: inline-block;
	font-size: 12px;
	color: #000;
	line-height: normal;
	vertical-align: middle;
	padding: 0 5px;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #eee;
}
.btn:hover, .btn:focus , input.btn:hover, input.btn:focus, button.btn:hover, button.btn:focus{
	color: #4d87ff;
	border: 1px solid #888;
}
/*
 2.0.9) Sprite Icons
 -------------------------*/
[class^="icon-"], [class*="icon-"] {
	background-image: url(../images/sprite.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	display: inline-block;
	height: 14px;
	line-height: 14px;
	margin-top: 1px;
	vertical-align: text-top;
	width: 14px;
}
/*
 2.1.0) 960 Grid Style
 -------------------------*/
/*
	Variable Grid System (Fluid Version).
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/ & 960 Fluid - http://www.designinfluences.com/

	Licensed under GPL and MIT.
*/

/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/*
 3.) Site Wide Content
 ------------------------------*/
#wrapper {
}
.container{
	max-width:1207px;
	padding:0 15px;
	margin: 0 auto;
	min-width:320px;
}
.page-template-default .vc_row{
	max-width: 1200px;
	margin: 0 auto;
}
/*
 4.) Header Styles
 ------------------------------*/
#header {
	padding-top: 5px;
	position: fixed;
	left:0;
	top:0;
	width:100%;
	z-index: 9999;
}
#header i.overlay{
	background: red;
    background: -webkit-linear-gradient(#fff 25%, transparent);
    background: -o-linear-gradient(#fff 25%, transparent);
    background: -moz-linear-gradient(#fff 25%, transparent);
    background: linear-gradient(#fff 25%, transparent);
    width:100%;
    height:200%;
    pointer-events:none;
    left:0;
    top:0;
    z-index: -2;
    display: inline-block;
    position: absolute;
}
#header .header-logo{
	float: left;
	max-width:258px;
	width:22.5%;
	padding-left: 12px;
}
#header .right-header-section {
	float: right;
	width:76.6%;
}
#header .right-header-section .top-header{
	text-align: right;
	padding-top:18px;
	padding-bottom:20px;
	position: relative;
}
#header .login-with-ajax{
	position: absolute;
	width:280px;
	background: #bc7f37;
	right:0;
	top:100%;
	z-index: 999;
	padding:10px 15px;
	display: none;
}
#header .login-with-ajax input {
    border: 1px solid #ffffff !important;
    height: 30px !important;
    font-family: 'museo_sans500';
    font-weight: normal;
    font-style: normal;
    color: #000 !important;
    font-size: 13px;
}
#header .login-with-ajax label,
#header .login-with-ajax a{
	color: #fff;
	font-size: 13px;
	display: inline-block;
	line-height:1.2;
}
#header .login-with-ajax #lwa_wp-submit{
	border:2px solid #fff;
	color: #fff !important;
	background: #bc7f37;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
    height:33px !important;
}
.login-with-ajax .lwa td {
    padding-top: 7px;
    vertical-align: top;
}
.login-with-ajax .lwa-submit-links {
    left: 0;
    position: absolute;
}
.login-with-ajax td.lwa-submit-button {
    padding-top: 60px;
}
#header .login-with-ajax input[type="checkbox"]{
	height:auto !important;
	width:auto !important;
}
#header .right-header-section .top-header .member-button{
	float: right;
	font-size: 14px;
	color: #fff;
	background: #bc7f37;
	text-transform: uppercase;
	display: inline-block;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
	padding: 7px 31px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#header .right-header-section .top-header .member-button:hover{
	background: #11578a;
}
#header .right-header-section .secndry-header{
	float: right;
	min-width:400px;
}
#header .right-header-section .secndry-header .menu{
	list-style-type: none;
	margin: 0;
}
#header .right-header-section .secndry-header .menu li{
	display: inline-block;
	padding: 0 18px;
	border-left:1px solid #393939;
	line-height:1.2;
	font-size: 14px;
	margin: 7px 0px;
}
#header .right-header-section .secndry-header .menu li a{
	font-family: 'Open Sans', sans-serif;
	color: #393939;
	display:inline-block;
	font-weight:400;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#header .right-header-section .secndry-header .menu li a:hover{
	color: #004b82;
}
#header .right-header-section .secndry-header .menu li:first-child{
	border-left:none;
}
#header .right-header-section .bottom-header{
	background: #084c7d;
	padding:0px 0px;
	position: relative;
}
#header .right-header-section .bottom-header:before{
	content:"";
	height:100%;
	width:1000%;
	left:100%;
	top:0;
	background: #084c7d;
	display: inline-block;
	position: absolute;
}
#header .right-header-section .bottom-header .main-header{
	float:left;
}
#header .right-header-section .bottom-header .main-header ul{
	margin: 0;
	list-style-type: none;
}
#header .right-header-section .bottom-header .main-header ul li{
	display: inline-block;
	padding:15px 30px;
	position: relative;
}
#header .right-header-section .bottom-header .main-header ul li:hover{
	background: #014373;
}
#header .right-header-section .bottom-header .main-header ul li a{
	display: inline-block;
	color: #ffffff;
	font-size: 14px;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
	text-transform: uppercase;
}
#header .right-header-section .bottom-header .open-search-form{
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}
#header .right-header-section .bottom-header .search-form-container{
	margin-top: 17px;
	float: left;
	position: relative;
	margin-left: 85px;
}
#header .wpml-lan-switcher{
	float: right;
	position: relative;
	margin-top: 16px;
}
#header .wpml-lan-switcher .current-language{
	font-size:14px;
	color: #ffffff;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
    position: relative;
    text-transform: uppercase;
    padding-right:25px;
    cursor: pointer;
}
#header .wpml-lan-switcher .current-language:after{
	content:"\f107";
	position: absolute;
	right:5px;
	top:1px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#header .wpml-lan-switcher .wpml-lang{
	list-style-type: none;
	margin: 0;
	position: absolute;
	left:0;
	top:100%;
	background: #11456a;
	display:none;
	width:75px;
}
#header .wpml-lan-switcher .wpml-lang li a{
	font-size:14px;
	color: #ffffff;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    line-height:1;
    padding:0 5px;
    vertical-align: middle;
}
#header .wpml-lan-switcher .wpml-lang li a img{
	margin-right: 5px;
}
#header .bottom-header .main-header li .sub-menu{
	position: absolute;
	width:250px;
	left:0;
	top:100%;
	background: #014373;
	display: none;
}
#header .bottom-header .main-header li:hover > .sub-menu{
	display: block;
}
#header .bottom-header .main-header li .sub-menu li{
	display: block;
	padding:10px 10px;
}
.search-form-container .srch-frm{
	position: absolute;
	right:0;
	top:50px;
	z-index: 999;
	width:250px;
	display: none;
}
.search-form-container .srch-frm .search-field{
	width:250px;
	height:35px;
	border:2px solid #014373;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding-left:10px;
	font-size: 15px;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
}
.search-form-container .srch-frm .search-submit{
	position: absolute;
	right:0;
	top:0;
	height:35px;
	width:auto !important;
	color: #fff;
	background: #014373;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border:none;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
}
/*
 5.) Footer Styles
 ------------------------------ */
#footer {
	background: #004b82;
}
#footer .footer-div{
	float: left;
	padding-top:22px;
}
#footer .footer-div.logo{
	width:30.5%;
	padding-top: 0;
}
#footer .logo .footer-logo-img{
	display: inline-block;
	background: #fff;
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	transform: rotate(-5deg);
	margin-top: -35px;
	padding-left: 15px;
	padding-right: 10px;
	max-width:100%;
	padding-bottom: 10px;
}
#footer .logo .footer-logo-img img{
	-webkit-transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-ms-transform: rotate(5deg);
	-o-transform: rotate(5deg);
	transform: rotate(5deg);
}
#footer .footer-div.address{
	width:30.1%;
}
#footer .footer-div.social{
	width:27%;
}
#footer .footer-div.copyright{
	width:11.7%;
}
#footer .foot-sec-title{
	font-size: 15px;
	color: #fff;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
	text-transform: uppercase;
	margin-bottom: 10px;
}
#footer .footer-div .addrs p{
	font-size: 14px;
	color: #fff;
	line-height:1.4;
}
 #footer .footer-div .addrs a{
 	color: #fff;
 }
#footer .footer-div .social-icons{
	list-style-type: none;
	margin: 0;
}
#footer .footer-div .social-icons li{
	display: inline-block;
}
#footer .footer-div .social-icons li a{
	color: #fff;
	font-size: 25px;
	margin: 0 12px 15px;
}
#footer .footer-div .social-icons li:first-child a{
	margin-left: 0;
}
#footer .footer-div span.copyright{
	color: #ffffff;
	font-size: 14px;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
    line-height: 1.3;
    padding-right: 10px;
    display: inline-block;
}
#footer .bottom-footer{
	padding: 10px 0px;
	background: #014373;
	text-align: center;
}
#footer .bottom-footer span{
	display: inline-block;
	font-size: 11px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
#footer .newsletter-form{

}
#footer .newsletter-form .tnp-subscription{
	margin: 0;
}
#footer .newsletter-form form{
	max-width:215px;
	position: relative;
}
#footer .newsletter-form .tnp-subscription label{
	display: none;
}
#footer .newsletter-form .tnp-subscription .tnp-email{
	height:28px;
	border:1px solid #fff !important;
	background: transparent;
	color: #b2b7bb;
	font-size: 13px;
	line-height: 28px;
	padding: 0;
	color: #b2b7bb;
	font-family: 'museo_sans300_italic';
    font-weight: normal;
    font-style: normal;
}
#footer .newsletter-form form .tnp-field-button{
	position: absolute;
	right:0;
	top:0;
	height:100%;
	height:28px;
	width:28px;
}
#footer .newsletter-form form .tnp-field-button .tnp-submit{
	padding: 0 !important;
	color: #004b82 !important;
	background: #fff !important;
	font-size: 14px;
	color: #004b82;
	line-height: 28px;
	font-family: 'museo_sans700';
    font-weight: normal;
    font-style: normal;
    border:none !important;
    text-transform: uppercase;
}
#fixed-btn{
	width:240px;
	background:#0092d7;
	font-size:18px;
	font-weight:500;
	color:#fff;
	display:inline-block;
	text-transform:uppercase;
	padding-top:10px;
	height:45px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	padding-left:68px;
	position:fixed;
	z-index:999;
	top:50%;
	right:0;
	-webkit-transition-timing-function:ease;
	-moz-transition-timing-function:ease;
	-ms-transition-timing-function:ease;
	-o-transition-timing-function:ease;
	transition-timing-function:ease;
	margin-right:-190px;
	-webkit-transform:translate(0,-50%);
	-moz-transform:translate(0,-50%);
	-ms-transform:translate(0,-50%);
	-o-transform:translate(0,-50%);
	transform:translate(0,-50%);
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	-ms-transition:0.3s;
	-o-transition:0.3s;
	transition:0.3s;
	font-family: 'Open Sans', sans-serif;
}
#fixed-btn .btn-img{
	position:absolute;
	left:0;
	height:100%;
	width:51px;
	top:0;
	display:inline-block;
	background:#0087c7 url('../images/static-icon-img.png') no-repeat;
	background-position:center center;
}
#fixed-btn:hover{
	margin-right:-0px;
}
header .mobile-menu {
    display: none;
    position: absolute;
    height: 25px;
    width: 40px;
    margin-top: 5px;
    cursor: pointer;
    left:15px;
    top:2px;
    z-index: 9999;
}
.mobile-menu span {
    position: absolute;
    height: 5px;
    display: inline-block;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.mobile-menu span.middle {
    top: 10px;
    left: 0;
}
.mobile-menu span.bottom {
    top: 20px;
    left: 0;
}
.mobile-menu.cross span.top {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 12px;
}
.mobile-menu.cross span.middle {
    display: none;
}
.mobile-menu.cross span.bottom {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 12px;
}
/* ========== default page css ===========*/
/*#page.site {
	position: relative;
	min-height: 100vh;
}
#footer.site-footer {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}*/
.error404 .page-header .page-title, .search .page-header .page-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 25px;
}
.error-404.not-found, .no-results.not-found {
	padding-bottom: 20px;
}
.page #header, .page-template #header {
	margin-bottom: 0px;
}
#header {
	margin-bottom: 51px;
}
.error404 .search-form, .search .search-form {
	height: 35px;
	margin-bottom: 50px;
}
.search #main,
.archive #main{
	margin-bottom: 50px;
}
.error404 .search-form label, .search .search-form label {
	float: left;
}
.error404 .search-field, .search .search-field {
	height: 30px;
	border: 1px solid #9d9e9e;
	border-right: 1px solid #fff;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding-left: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #000;
}
.error404 .search-submit, .search .search-submit {
	height: 30px;
	color: #fff;
	background: #034b80;
	border: none;
	background-size: 20px auto;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	float: left;
	font-family: 'museo_sans300';
    font-weight: normal;
    font-style: normal;
	width:auto !important;
	border:none !important;
}
.entry-header .entry-title {
	font-size: 30px;
	margin-bottom: 0px;
}
.error404 #header,
.search #header,
.archive #header{
	position: relative !important;
}
div{
	font-family: 'museo_sans300';
}
span{
	font-family: inherit;
    font-weight: normal;
    font-style: normal;
}
.single .entry-header .entry-title {
	color: #056bab;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: 1.2;
}
.single article {
	padding-top: 25px;
}
.page-content, .entry-content, .entry-summary {
	margin: 0 0 0 !important;
}
.entry-meta a, .comments-link a, .cat-links a, .entry-footer a, .nav-links a {
	color: #056bab !important;
	padding-right: 5px;
}
.entry-meta a:hover, .comments-link a:hover, .cat-links a:hover, .entry-footer a:hover {
	color: #b22a22 !important;
}
#page.site{
	position: relative;
	min-height:100vh;
}
#page.site #footer{
	position: absolute;
	width:100%;
	left:0;
	bottom:0;
}
.newsletter-form .placeholder-text{
	display: none;
}
