/*-----------------------------------------------------------------------------------*
/* = Body, Common Classes & Wrap
/*-----------------------------------------------------------------------------------*/
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box
}
body {
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
    font-size: 16px;
    line-height: 1.6em;
    color: #585857;
}
a {
    text-decoration: none;
	color: #354993;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover {
    text-decoration: underline;
}
#main a:hover{
	text-decoration: none;
}
p { 
	margin: 0 0 1em; 
}
strong { 
	font-weight: 700; 
}
em { 
	font-style: italic; 
}
hr{
	outline: none;
	margin: 30px 0;
	border: none;
	border-top: double #ddd;
}
pre{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 20px 0;
	background: #f9f9f9;
	padding: 20px;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}
blockquote{
	border-left: 4px solid #ddd;
	padding-left: 20px;
    margin: 30px 0px;
}
.clear { 
	clear: both; 
}
.fullwidth{
	width: 100%;
	margin: 0;
	padding: 0;
}
.container{
	max-width: 1130px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	position: relative;
}
.headercontainer{
	max-width: 860px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	position: relative;
}
.container:after,
.row:after{
	clear: both;
	display: table;
	content:'';
}
.row{
	max-width: 1130px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.one-half,
.one-third,
.two-third{
	width: 100%;
	padding: 0 15px;
}
.responsive-img {
    display: block;
    height: auto;
    max-width: 100%;
}

/*-----------------------------------------------------------------------------------*
/* = Carousel
/*-----------------------------------------------------------------------------------*/
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 25px;
    height: 46px;
    padding: 0;
    margin-top: -23px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
}
.slick-prev{
	background: transparent url(../images/arrow.svg) no-repeat center center;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.slick-next{
	background: transparent url(../images/arrow.svg) no-repeat center center;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
}
.slick-prev:hover .path,
.slick-prev:focus .path,
.slick-next:hover .path,
.slick-next:focus .path{
    color: transparent;
	outline: none;
	stroke: #000;
}
.slick-prev{
    left: 1px;
}
.slick-next{
    right: 1px;
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 55px;
}
.slick-dots {
    position: absolute;
    bottom: -55px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
	padding: 0;
	border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #a1a1a1;
	display: block;
	content: '';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    background-color: #222221;
}

/*-----------------------------------------------------------------------------------*
/* = Headings
/*-----------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    color: #354993;
    line-height: 1.5em;
	font-weight: bold;
}
h1 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2em;
}
h2 { font-size: 24px }
h3 { font-size: 22px }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h2, h3, h4, h5, h6 {
    margin-top: 20px;
    margin-bottom: 20px;
}
h1 a, h2 a, h3 a, h4 a { 
	color: #354993; 
}
h2 a:hover, h3 a:hover, h4 a:hover { 
	color: #000; 
	text-decoration: none; 
}
.single-title{ 
	margin-top: 20px; 
	margin-bottom: 5px; 
}

.page-title{
	font-size: 44px;
	line-height: 1.2em;
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 30px;
	margin-top: 0;
}
.page-title:after{
	width: 220px;
	height: 1px;
	background: #354993;
	display: block;
	bottom: 0;
	left: 50%;
	margin-left: -110px;
	position: absolute;
	content:''; 
}
/*-----------------------------------------------------------------------------------*
/* = Header & Navigation
/*-----------------------------------------------------------------------------------*/
.header{
	background: #fff url(../images/header-bg.png) no-repeat bottom center;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 4px solid #585857;
	position: fixed;
	top: 0;
	z-index: 99;
}
#main{
	margin-top:194px;
}
.header .logo{
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
	margin-top: -6px;
	margin-bottom: -5px;
	margin-left: auto;
	margin-right: auto;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.header .logo.scroll{
	max-width: 150px;
}
.navigation,
.mega-menu-toggle{
	display: none !important;
}


.nav-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 9999;
	display: block;
	transition-duration: 0.5s;
	transition-timing-function: swing;
}
.nav-btn span {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #2d2c30;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}
.nav-btn span::before,
.nav-btn span::after {
    content: '';
    position: absolute;
    left: 0;
    background: inherit;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, background 0s;
    -moz-transition: -moz-transform 0.3s, background 0s;
    transition: transform 0.3s, background 0s;
}
.nav-btn span::before {
    top: -7px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.nav-btn span::after {
    bottom: -7px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.nav-btn.menu-is-open {
	right: 300px;
	border: none;
    background: #2d2c30;
}
.nav-btn.menu-is-open span {
    background: rgba(232, 74, 100, 0);
}
.nav-btn.menu-is-open span::before,
.nav-btn.menu-is-open span::after {
    background: #fff;
}
.nav-btn.menu-is-open span::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.nav-btn.menu-is-open span::after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}
body.navOpen {
  overflow: hidden;
  cursor: pointer;
}
body.navOpen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: rgba(0,0,0,0.6);
  z-index: 5;
}
nav.mobile-menu {
	background: #2d2c30;
	width: 300px;
	padding: 20px 0;
	height: 100%;
	position: fixed;
	right: -300px;
	top: 0;
	z-index: 99999;
	transition-duration: 0.5s;
	transition-timing-function: swing;
}
nav.mobile-menu.open{
	right: 0px;
}
nav.mobile-menu ul {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}
nav.mobile-menu ul li {
	display: block;
	position: relative;
}
nav.mobile-menu ul li:after{
	position: absolute;
	bottom: 0;
	right: 50px;
	width: 200px;
	height: 1px;
	background: #fff;
	content:'';
}
nav.mobile-menu ul li.mleft{
	margin-top: 20px;
}
nav.mobile-menu ul li.mleft.last{
	margin-top: 2px;
}
nav.mobile-menu ul li.mleft:after{
	display: none;
}
nav.mobile-menu ul li .marrow{
	width: 44px;
	height: 34px;
	position: absolute;
	top: 0;
	right: 6px;
	background: url('../images/icon-arrow-down.svg') no-repeat center center;
	-moz-background-size: 20px;
	-webkit-background-size: 20px;
	background-size: 20px;
}
nav.mobile-menu ul li .marrow.subopened{
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
nav.mobile-menu ul li a{
	text-align: right;
	display: block;
	padding: 10px 50px 10px 20px;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	line-height: 1em;
}
nav.mobile-menu ul li.mleft a{
	font-size: 18px;
	line-height: 1em;
	color: #fff;
	font-weight: 300;
	text-align: left;
}
nav.mobile-menu ul li a:hover,
nav.mobile-menu ul li.menu-item-has-children.subopen > a{
	background:#000;
	color: #fff;
	text-decoration: none;
}
nav.mobile-menu ul ul{
	display: none;
	background: #000;
	padding-bottom: 20px;
	width: 100%;
    margin: 0;
}
nav.mobile-menu ul ul li:after{
	display: none;
}
nav.mobile-menu ul ul li a{
	font-size: 13px;
	padding: 8px 50px 8px 20px;
	font-weight: 300;
}
nav.mobile-menu ul ul li a:hover{
	font-weight: 700;
	color: #fff;
}
nav.mobile-menu ul ul ul{
	width: 220px;
}

.lang{	
	height: 20px;
    line-height: 20px;
    font-size: 14px;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.lang li{
	list-style: none;
	float: left;
	margin-right: 1px;
	padding-right: 5px;
	position: relative;
}
.lang li:after{
	content: '/';
	position: absolute;
	right: 0;
	top: 0;
}
.lang li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.lang li:last-child:after{
	display: none;
}
.lang a{
	color: #1d1d1b;
	display: inline-block;
	vertical-align: top;
	margin: 0 1px;
	text-transform: uppercase;
}
.lang a:hover{
	text-decoration: underline;
}
.lang li.current-lang a{
	font-weight: 700;
}

/*-----------------------------------------------------------------------------------*
/* = Front page
/*-----------------------------------------------------------------------------------*/
.container.middle{
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#home-top{
	background: url('../images/home-top-bg.jpg') no-repeat top center;
	text-align: center;
	color: #fff;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.4em;
	height: calc(100vh - 200px);
}
#home-top h1{
	font-size: 36px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#home-top .times{
	font-size: 24px;
	line-height: 1.1em;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 400;
}
#home-top p:last-child{
	margin: 0;
}
#home-top img{
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
}
@keyframes mover {
	0%{
		transform: translateY(0);
	}
	100%{
		transform: translateY(10px);
	}
}
        
.home-text{
	text-align: center;
	font-size: 24px;
	line-height: 1.2em;
}


#home-middle{
	background: url('../images/home-middle-bg.jpg') no-repeat top center;
	color: #fff;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.4em;
	height: 485px;
}
#home-middle h1{
	font-size: 36px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#home-middle p:last-child{
	margin: 0;
}
#home-middle .btn{
	height: 45px;
	width: 190px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	background: rgba(53,73,146,0.8);
	display: block;
	text-decoration: none;
	line-height: 45px;
}
#home-middle .btn:hover{
	background: rgba(53,73,146,1);
}

#home-bottom{
	background: url('../images/home-bottom-bg.jpg') repeat top center;
	color: #fff;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.4em;
	height: 1040px;
}
#home-bottom h1{
	font-size: 36px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#home-bottom .box{
	padding: 30px 15px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 14px;
	line-height: 1.4em;
	margin-top: 30px;
	position: relative;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-backface-visibility: hidden;
}
#home-bottom .box:hover{
	opacity: 0.8;
	text-decoration: none;
}
#home-bottom a:hover{
	text-decoration:none;
}
#home-bottom .box h2{
	margin: 0 0 20px;
	font-size: 22px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 700;
}
#home-bottom .box .sm{
	font-size: 15px;
	line-height: 1em;
	color: #fff;
	margin-top: 2em;
}
#home-bottom .box.green{
	background: rgba(165,193,54,0.8);
}
#home-bottom .box.orange{
	background: rgba(217,138,33,0.8);
}
#home-bottom .box.blue{
	background: rgba(53,73,146,0.8);
}

.home-news{
	background: url(../images/header-bg.png) no-repeat top center;
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5em;
}
.home-news h1{
	margin: 0 0 20px;
	font-weight: 300;
	font-size: 24px;
	line-height: 1em;
	color: #000;
}
.home-news h3{
	margin: 0 0 50px;
	font-weight: 300;
	font-size: 18px;
	color: #000;
	line-height: 1em;
}
.home-news h2{
	margin: 0 0 20px;
	font-weight: 300;
	font-size: 22px;
	line-height: 1.2em;
	color: #000;
}
.home-news h4{
	margin: 0 0 10px;
	font-weight: 300;
	font-size: 15px;
	text-transform: uppercase;
	line-height: 1.2em;
	color: #858585;
}
.home-news a.btn{
	font-weight: 700;
	font-size: 14px;
	line-height: 40px;
	height: 40px;
	display: inline-block;
	width: 190px;
	text-align: center;
	color: #fff;
	background: #354992;
	text-decoration: none;
	margin-top: 10px;
}
.home-news a.btn:hover{
	background: #1f2b56;
}
.news-item{
	padding: 0 40px;
	outline: none;
}
.news-item p{
	min-height: 96px;
}
/*-----------------------------------------------------------------------------------*
/* = Posts & Pages
/*-----------------------------------------------------------------------------------*/
.crumbs-wrapper{
	display: block;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}
.crumbs{
	background : -moz-linear-gradient(0% 50% 0deg,rgba(43, 51, 93, 1) 0%,rgba(53, 73, 147, 1) 100%);
	background : -webkit-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	background : -o-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	background : -ms-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#2B335D', endColorstr='#354993' ,GradientType=0)";
	background : linear-gradient(90deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2B335D',endColorstr='#354993' , GradientType=1);
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 300;
	padding-top: 40px;
	padding-bottom: 40px;
	color: #fff;
	font-weight: 700;
}
.crumbs a{
	font-weight: 300;
	text-decoration: none;
	color: #fff;
}
.crumbs-wide{
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 300;
	color: #fff;
	margin-bottom:20px;
	font-weight: 700;
}
.crumbs-wide a{
	font-weight: 300;
	text-decoration: none;
	color: #fff;
}
.container-middle{
	text-align: center;
    position: absolute;
    top: 50%;
    width: 100%;
    font-size: 38px;
    color: #fff;
	font-weight: 700;
	line-height: 1.1em;
}
.page-content{
	padding-top: 60px;
	padding-bottom: 60px;
}
.stroke{
    width: 280px;
    height: 1px;
    display: block;
    background: rgba(0,0,0,0.4);
    margin: 20px auto;
}

/*------ contact page -----*/
#contact-top{
	background: url(../images/contact-top-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: left;
}
#contact-top h1{
	font-size: 52px;
	line-height: 1em;
	margin: 0 0 30px;
	color: #fff;
}
#contact-middle{
	background: url(../images/contact-middle-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: center;
	padding-top: 120px;
	padding-bottom: 120px;
	font-size: 40px;
	line-height: 1.1em;
	font-weight: 700;
}
.cbox{
	padding: 40px 20px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 15px;
	line-height: 1.5em;
	margin-top: 30px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover .cbox{
	text-decoration:none;
}
.cbox:hover{
	opacity: 0.8;
	text-decoration:none;
}
.cbox h2{
	margin: 0 0 20px;
	font-size: 30px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 700;
	min-height: 145px;
}
.cbox .sm{
	font-size: 15px;
	line-height: 1em;
	color: #fff;
}
.cbox.blue{
	background: #354992;
}
.cbox.green{
	background: #6d9dac;
}
.cbox.pale{
	background: #a6c7c9;
}
/*------ sobre page -----*/
#sobre-top{
	padding-top: 50px;
	padding-bottom: 50px;
	background: url(../images/sobre-top-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: left;
}
#sobre-top h1{
	font-size: 52px;
	line-height: 1em;
	margin: 0 0 30px;
	color: #fff;
}
#sobre-top h2{
	margin: 0 0 30px;
	font-size: 30px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 300;
}
.sbox{
	padding: 40px 20px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 15px;
	line-height: 1.5em;
	margin-top: 30px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.page-id-598 .sbox{
	min-height: 315px;
}
a:hover .sbox{
	text-decoration: none;
}
.sbox:hover{
	opacity: 0.8;
	text-decoration: none;
}
.sbox h2{
	margin: 0 0 30px;
	font-size: 30px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 400;
}
.sbox .sm{
	font-size: 15px;
	line-height: 1em;
	color: #fff;
	margin-top:30px;
	display: block;
}
.sbox.blue{
	background: #354992;
}
.sbox.green{
	background: #6d9dac;
}

a.download{
	height: 87px;
	padding-left:80px;
	background:url(../images/icon-pdf.svg) no-repeat top left;
	position: relative;
	color: #585857;
	font-size: 18px;
	line-height: 1.2em;
	display: -webkit-inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	vertical-align: top;
	max-width: 400px;
}
a.download span{
	vertical-align: middle;
	text-align:left;
}

/*------ seguros page -----*/
#seguros-top,
#seguros-top-2,
#seguros-top-3{
	background: url(../images/seguros-top-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: left;
}
#seguros-top-2{
	background: url(../images/seguros-top-bg-2.jpg) no-repeat top center;
}
#seguros-top-3{
	background: url(../images/seguros-top-bg-3.jpg) no-repeat top center;
}
#seguros-top h1,
#seguros-top-2 h1,
#seguros-top-3 h1{
	font-size: 32px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#seguros-top h2,
#seguros-top-2 h2,
#seguros-top-3 h2{
	margin: 0 0 20px;
	font-size: 22px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 300;
}


.page-sidebar h2{
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2em;
	padding: 20px;
	background: #707c2c;
	margin-bottom: 30px;
	margin-top: 50px;
	text-align: center;
}
.page-sidebar h2:first-child{
	margin-top: 0;
}
.page-sidebar h2.green{
	background: #a5c136;
}
.page-sidebar h2.black{
	background: #3F3F41;
}
.page-sidebar ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.page-sidebar ul li{
	margin: 0;
	padding-left: 30px;
	position: relative;
	margin-bottom: 8px;
	position: relative;
}
.page-sidebar ul li:before{
	position: absolute;
    width: 14px;
    height: 14px;
    background: #707c2c;
    left: 0;
    top: 5px;
    content: '';
}
.page-sidebar ul.green li:before{
	background:#a5c136;
}
.page-sidebar ul.blue li:before{
	background:#5d6da8;
}
.page-sidebar ul.black li:before{
	background: #3F3F41;
}

.page-id-265 .page-sidebar ul li:before,
.page-id-604 .page-sidebar ul li:before,
.page-id-629 .page-sidebar ul li:before{
	background: #754c24;
}
.page-id-257 .page-sidebar ul li:before,
.page-id-608 .page-sidebar ul li:before,
.page-id-620 .page-sidebar ul li:before{
	background: #b77220;
}
.page-id-250 .page-sidebar ul li:before,
.page-id-610 .page-sidebar ul li:before,
.page-id-618 .page-sidebar ul li:before{
	background: #d98a21;
}
.page-id-261 .page-sidebar ul li:before,
.page-id-606 .page-sidebar ul li:before,
.page-id-624 .page-sidebar ul li:before{
	background: #9b5e1b;
}

.page-sidebar .sidebar-btn{
	width: 186px;
	height: 40px;
	text-align: center;
	background: #585857;
	color:#fff;
	text-align:center;
	line-height:40px;
	text-decoration:none;
	display: block;
	margin: 0 auto;
}
.page-sidebar .sidebar-btn:hover{
	background:#000;
	text-decoration:none;
}

/*------ ahorro page -----*/
#ahorro-top,
#ahorro-top-2,
#ahorro-top-3,
#ahorro-top-4,
#ahorro-top-5,
#ahorro-top-6{
	background: url(../images/ahorro-top-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: left;
}
#ahorro-top{
	background: url(../images/aheader.jpg) no-repeat top center;
}
#ahorro-top-2{
	background: url(../images/ahorro-top-bg-2.jpg) no-repeat top center;
}
#ahorro-top-3{
	background: url(../images/ahorro-top-bg-3.jpg) no-repeat top center;
}
#ahorro-top-4{
	background: url(../images/ahorro-top-bg-4.jpg) no-repeat top center;
}
#ahorro-top-5{
	background: url(../images/ahorro-top-bg-5.jpg) no-repeat top center;
}
#ahorro-top-6{
	background: url(../images/ahorro-top-bg-6.jpg) no-repeat top center;
}
#ahorro-top h1,
#ahorro-top-2 h1,
#ahorro-top-3 h1,
#ahorro-top-4 h1,
#ahorro-top-5 h1,
#ahorro-top-6 h1{
	font-size: 32px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#ahorro-top h2,
#ahorro-top-2 h2,
#ahorro-top-3 h2,
#ahorro-top-4 h2,
#ahorro-top-5 h2,
#ahorro-top-6 h2{
	margin: 0 0 20px;
	font-size: 22px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 300;
}

#ahorro-top,
#ahorro-top h1,
#ahorro-top h2,
#ahorro-top .crumbs-wide,
#ahorro-top .crumbs-wide a{
	color: #d98a21;
}
#ahorro-top{
	color: #b77220;
}

.section-title{
	font-size: 20px;
	font-weight: 300;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	padding-right: 40px;
	display: inline-block;
}
.section-title:after{
	position: absolute;
	content: '';
	width: 32px;
	height: 28px;
	top: 0;
	right: 0;
	background: url(../images/icon-arrow-up.svg) no-repeat center center;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.section-title.highlight:after{
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}
.section-title.highlight{
	font-weight: 700;
	color: #a5c136;
}
.section-content{
	padding-top: 30px;
}

.page-id-265 .section-title.highlight,
.page-id-604 .section-title.highlight,
.page-id-629 .section-title.highlight{
	color: #754c24;
}
.page-id-257 .section-title.highlight,
.page-id-608 .section-title.highlight,
.page-id-620 .section-title.highlight{
	color: #b77220;
}
.page-id-250 .section-title.highlight,
.page-id-610 .section-title.highlight,
.page-id-618 .section-title.highlight{
	color: #d98a21;
}
.page-id-261 .section-title.highlight,
.page-id-606 .section-title.highlight,
.page-id-624 .section-title.highlight{
	color: #9b5e1b;
}
.page-id-247 .section-title.highlight{
	color: #d98a21;
}
.page-id-267 .section-title.highlight,
.page-id-269 .section-title.highlight,
.page-id-271 .section-title.highlight,
.page-id-633 .section-title.highlight,
.page-id-635 .section-title.highlight,
.page-id-600 .section-title.highlight,
.page-id-631 .section-title.highlight,
.page-id-637 .section-title.highlight,
.page-id-639 .section-title.highlight{
	color: #3F3F41;
}
.page-id-238 .section-title.highlight,
.page-id-593 .section-title.highlight,
.page-id-614 .section-title.highlight{
	color: #707c2c;
}

/*------ empresa page -----*/
#empresa-top{
	padding-top: 50px;
	padding-bottom: 50px;
	background: url(../images/empresa-top-bg.jpg) no-repeat top center;
	color: #fff;
	text-align: left;
}
#empresa-top h1{
	font-size: 32px;
	line-height: 1em;
	margin: 0 0 20px;
	color: #fff;
}
#empresa-top h2{
	margin: 0 0 20px;
	font-size: 22px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 300;
}
#empresa-middle{
	background: url(../images/company-middle-bg.jpg) no-repeat center center;
	height: 380px;
}
.ebox{
	padding: 50px 40px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 15px;
	line-height: 1.5em;
	margin-top: 30px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.ebox h2{
	margin: 0 0 20px;
	font-size: 30px;
	color: #fff;
	line-height: 1.2em;
	font-weight: 400;
}
.ebox.blue{
	background: #354992;
}
.ebox.dblue{
	background: #03035e;
}

.page-id-546 .ebox{
	min-height: 317px;
}

.bwrap{
	width:100%;
	margin:0 auto;
	text-align:center;
	font-size:21px;
	font-weight:300;
}
.bwrap:after{
	clear: both;
	content: '';
	display: table;
}
.bwrap .s1{
	width: 100%;
	margin: 0 3px 6px;
	float:left;
	padding:20px 30px;
	position: relative;
}
.bwrap .s2{
	width: 100%;
    margin: 0 3px;
	padding:20px 30px;
	float:left;
	position: relative;
}
.bwrap span{
	display: block;
}

/*------ other page -----*/
.bluebtn{
	background : -moz-linear-gradient(0% 50% 0deg,rgba(43, 51, 93, 1) 0%,rgba(53, 73, 147, 1) 100%);
	background : -webkit-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	background : -o-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	background : -ms-linear-gradient(0deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#2B335D', endColorstr='#354993' ,GradientType=0)";
	background : linear-gradient(90deg, rgba(43, 51, 93, 1) 0%, rgba(53, 73, 147, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2B335D',endColorstr='#354993' , GradientType=1);
	height: 50px;
	width: 100%;
	max-width: 400px;
	display: table;
	margin: 20px auto 0;
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	line-height: 50px;
}
.bluebtn:hover{
	background : -moz-linear-gradient(0% 50% 0deg,#354993 0%,#2B335D 100%);
	background : -webkit-linear-gradient(0deg, #354993 0%, #2B335D 100%);
	background : -o-linear-gradient(0deg, #354993 0%, #2B335D 100%);
	background : -ms-linear-gradient(0deg, #354993 0%, #2B335D 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#354993', endColorstr='#2B335D' ,GradientType=0)";
	background : linear-gradient(90deg, #354993 0%, #2B335D 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#354993',endColorstr='#2B335D' , GradientType=1);
	text-decoration: none;
}
.step{
	width: 200px;
	height: 200px;
	border: 1px solid #ff6f00;
	color: #ff6f00;
	font-size: 60px;
	line-height: 1em;
	font-weight: 400;
	text-align: center;
	padding-top: 28px;
	margin: 0 auto 30px;
}
.step span{
	font-weight: 400;
    font-size: 28px;
    color: #585857;
    line-height: 32px;
    display: block;
    margin-top: 5px;
}

.cicon{
	margin:10px auto;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.cicon:hover{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}



.loop-entry{
	float: left;
	width: 315px;
	padding-bottom: 30px;
	margin-top: 30px;
	margin-right: 30px;
	border-bottom: double #ddd;
}
.loop-entry p:last-child{
	margin: 0;
}
.loop-entry h2{
	margin-top: 10px;
	margin-bottom: 0px;
	font-size: 16px;
}
.post-meta{
	font-size: 12px;
	color: #666;
	margin-bottom: 10px;
}
.single-meta{
	font-size: 13px;
	margin-bottom: 20px;
}

/*entry*/
.entry {
	margin-bottom: 20px;
}
.entry ul, .entry ol {
    margin-bottom: 30px;
	margin-left: 30px;
	list-style: inherit;
}
.entry ol{
	list-style: decimal !important;
}


/*post tags*/
.post-tags {
    margin-right: 10px;
    margin-top: 30px;
    font-size: 12px;
}

/*next prev*/
#post-nextprev{
	border-bottom: double #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
#post-prev{
	float: right;
	text-align: right;
}


/*-----------------------------------------------------------------------------------*
/* = Pagination
/*-----------------------------------------------------------------------------------*/
.post-pagination{
	clear: both;
	width: 100%;
	padding-top: 30px;
}
.post-pagination a, 
.post-pagination span {
	font-size: 11px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    text-align: center;
    margin-right: 5px;
    display: block;
    float: left;
	color: #666;
	background: #eee;
}
.post-pagination a:hover, 
.post-pagination span.current{
    text-decoration: none;
	color: #fff;
	background: #1f82cb;
}

/*-----------------------------------------------------------------------------------*/
/* = Forms
/*-----------------------------------------------------------------------------------*/
label.sr-only{
	display: none;
}
.caldera-grid .form-group{
	margin-bottom: 15px;
	position: relative;
}
.caldera-grid .form-group:after{
	clear:both;
	display: table;
	content: '';
}
.caldera-grid input[type="text"],
.caldera-grid input[type="email"]{
	width:100%;
	height: 50px;
	line-height: 50px;
	border: 1px solid #585857;
	font-size: 16px;
	padding: 0 20px;
	outline: none;
}
.caldera-grid textarea{
	width:100%;
	height: 180px;
	line-height: 1.5em;
	border: 1px solid #585857;
	font-size: 16px;
	padding: 5px 20px;
	outline: none;
}
.caldera-grid .radio-inline{
	width: 50%;
	display: block;
	float: left;
	line-height: 50px;
}
.caldera-grid .radio-inline input[type="radio"]{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width:50px;
	height: 50px;
	border: 1px solid #585857;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	float: left;
	margin-right: 10px;
	position: relative;
}
.caldera-grid .radio-inline input[type="radio"]:before,
.caldera-grid .radio-inline input[type="radio"]:after{
	opacity: 0;
	content: '';
	position: absolute;
	width: 46px;
	height: 1px;
	display: block;
	background: #585857;
	top: 25px;
	left: 2px;
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.caldera-grid .radio-inline input[type=radio]:checked,
.caldera-grid .radio-inline input[type=radio]:focus{
	outline: none;
}
.caldera-grid .radio-inline input[type=radio]:checked:before{
	opacity: 1;
	transform: rotate(45deg);
}
.caldera-grid .radio-inline input[type=radio]:checked:after{
	opacity: 1;
	transform: rotate(-45deg);
}
.caldera-grid input[type="submit"]{
	width: 100%;
	height: 50px;
	line-height: 50px;
	display: block;
	color:#fff;
	font-weight: 700;
	background:#585857;
	border:none;
	outline:none;
	-webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}
.caldera-grid input[type="submit"]:hover{
	background:#000;
}
.caldera_ajax_error_block{
	font-size: 12px;
}
.caldera-grid button[type="button"]{
	display: block;
    width: 100%;
    height: 40px;
    color: #fff;
    border: none;
    outline: none;
    background: #354992;
    position: relative;
}
.caldera-grid #fld_1618700Label{
	text-align: center;
	font-weight: 700;
	color: #354992;
	display:block;
}
.caldera-grid #fld_8370565Label{
	text-align: center;
	font-weight: 700;
	color: #ff6f00;
	display:block;
}
#fld_8370565_1_trigger{
	background:#ff6f00;
}
#fld_7607889_1-wrap .radio-inline{
	line-height: normal;
}
.dis{
	font-size: 10px;
    line-height: 1.3em;
}
/*-----------------------------------------------------------------------------------*/
/* = Tables
/*-----------------------------------------------------------------------------------*/
.tablepress tfoot th, 
.tablepress thead th{
	background: #585857 !important;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3em;
}
.tablepress td, 
.tablepress th{
	padding: 10px 15px !important;
}
#tablepress-1 .column-1,
#tablepress-1 .column-2,
#tablepress-1 .column-3,
#tablepress-6 .column-1,
#tablepress-6 .column-2,
#tablepress-6 .column-3,
#tablepress-7 .column-1,
#tablepress-7 .column-2,
#tablepress-7 .column-3{
	width: 33.33333%;
	border: 1px solid #585857;
	background: #f5f5f6;
	vertical-align: middle;
}
#tablepress-1 .column-2,
#tablepress-1 .column-3,
#tablepress-6 .column-2,
#tablepress-6 .column-3,
#tablepress-7 .column-2,
#tablepress-7 .column-3{
	text-align: center;
}

#tablepress-2{
	max-width: 700px;
	margin: 0 auto;
}
#tablepress-2 td{
	text-align: center;
	border: 1px solid #585857;
	background: #f5f5f6;
	vertical-align: middle;
}
#tablepress-2 th{
	text-align: center;
	padding: 20px 15px !important;
}
#tablepress-2 thead th{
	background: #0080af !important;
}

#tablepress-3,
#tablepress-4,
#tablepress-8,
#tablepress-9{
	max-width: 460px;
	margin: 0 auto 1em;
}
#tablepress-3 td,
#tablepress-4 td,
#tablepress-8 td,
#tablepress-9 td{
	text-align: center;
	border-top: none;
	background: #f5f5f6;
	vertical-align: middle;
}
#tablepress-3 td.column-1,
#tablepress-4 td.column-1,
#tablepress-8 td.column-1,
#tablepress-9 td.column-1{
	border-left: 1px solid #585857;
	border-right: 1px solid #585857;
    width: 50%;
}
#tablepress-3 td.column-2,
#tablepress-4 td.column-2,
#tablepress-8 td.column-2,
#tablepress-9 td.column-2{
	border-right: 1px solid #585857;
}
#tablepress-3 tbody,
#tablepress-4 tbody,
#tablepress-8 tbody,
#tablepress-9 tbody{
	border-bottom: 1px solid #585857;
}
#tablepress-3 th,
#tablepress-4 th,
#tablepress-8 th,
#tablepress-9 th{
	text-align: center;
	padding: 20px 15px !important;
}

#tablepress-5 td,
#tablepress-10 td{
	border-top: none;
	background: #f5f5f6;
	vertical-align: middle;
}
#tablepress-5 td.column-1,
#tablepress-10 td.column-1{
	border-left: 1px solid #585857;
}
#tablepress-5 td.column-2,
#tablepress-10 td.column-2{
	border-right: 1px solid #585857;
	text-align: right;
}
#tablepress-5 tbody,
#tablepress-10 tbody{
	border-bottom: 1px solid #585857;
}
#tablepress-5 th,
#tablepress-10 th{
	padding: 20px 15px !important;
}
#tablepress-5 tr.row-5 td.column-2,
#tablepress-10 tr.row-5 td.column-2{
	vertical-align: bottom;
}
/*-----------------------------------------------------------------------------------*
/* = Sidebar
/*-----------------------------------------------------------------------------------*/
.sidebar-box {
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.sidebar-box h4 {
	font-size: 14px;
    margin-top: 0px !important;
    margin-bottom: 10px;
}
.sidebar-box ul {
	list-style: none;
	list-style-position: inside;
	margin: 0px;
}
.sidebar-box li{
	margin-bottom: 7px;
	padding-bottom: 7px;
	border-bottom: 1px solid #eee;
}
.sidebar-box li:first-child{
	border-top: 1px solid #eee;
	padding-top: 7px;
}

/*-----------------------------------------------------------------------------------*
/* = Search Bar
/*-----------------------------------------------------------------------------------*/
#searchbar {
    display: block;
    position: relative;
	width: 100%;
	margin-bottom: 4px;
}
#search {
    position: relative;
    width: 220px;
    padding: 10px 30px 10px 10px;
    outline: none;
	color: #666;
	margin: 0;
}
#searchsubmit {
    position: absolute;
    right: 10px;
    top: 50%;
	margin-top: -7px;
    background: url('../images/search.png') no-repeat;
    text-indent: -9999px;
    border: none;
    outline: none;
    width: 15px;
    height: 15px;
	cursor: pointer;
}

/*-----------------------------------------------------------------------------------*/
/* = Footer
/*-----------------------------------------------------------------------------------*/	
.footer{
	background: #eaeaea url(../images/footer-border.png) repeat-x top center;
	padding-top: 70px;
	padding-bottom: 60px;
	color: #585857;
	background-size: 1000px;
}
.footer .container{
	max-width: 1030px;
}
.footer a{
	color: #675c50;
	text-decoration: none;
}
.footer a:hover{
	color: #354992;
	text-decoration: none;
}

.footer .widget{
	font-size: 18px;
	line-height: 1.4em;
	text-align: center;
	margin-bottom: 30px;
}
.footer .widget h3{
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin: 0 0 2px;
}
.footer .widget a{
	font-weight: 600;
	font-style: italic;
	text-decoration: underline;
}
.footer .widget a:hover{
	color: #000;
}
.footer .widget span.stroke{
	width: 15px;
    height: 2px;
    background: #fff;
    display: inline-block;
    margin: 0 3px 6px 0;
}

.footer-social{
	text-align: center;
}
.footer-social svg{
	width: 44px;
	height: 44px;
	margin: 0 2px;
	display: inline-block;
}
.footer-social svg circle{
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.footer-social svg:hover .fb{fill:#3b5998;}
.footer-social svg:hover .tw{fill:#00aced;}
.footer-social svg:hover .li{fill:#007bb6}
.footer-social svg:hover .gp{fill:#dd4b39}

.footer-logo{
	width: 100%;
	max-width: 260px;
	height: auto;
	display: block;
	margin: 0 auto 30px;
}

.footer-nav{
	text-align: center;
	font-size: 14px;
	line-height: 1em;
	margin-top: 30px;
}
.footer-nav ul{
	text-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-nav ul li{
	display: inline-block;
	padding-right: 10px;
	margin-right: 6px;
	position: relative;
}
.footer-nav ul li:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 14px;
	top: 0;
	right: 0;
	background: #675c50;
	-moz-transform: rotate(20deg);
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg);
}
.footer-nav ul li:last-child{
	margin-right: 0;
	padding-right: 0;
}
.footer-nav ul li:last-child:after{
	display: none;
}
.footer-nav ul li a{
	display: block;
}

h3.flogot{
	font-size: 20px;
    color: #000;
    font-weight: 600;
    margin: 0 0 7px;
}
.flogo{
	margin: 0 auto 10px;
	max-width: 170px;
}

.footer-email{
	padding-left: 30px;
	margin-top:4px;
	background: url(../images/icon-email.svg) no-repeat center left;
	background-size: 20px;
	display: inline-block;
}
.footer-phone{
	padding-left: 30px;
	margin-top:4px;
	background: url(../images/icon-phone.svg) no-repeat center left;
	background-size:20px;
	display: inline-block;
}

.copyright{
	text-align: center;
	font-size: 11px;
	line-height: 1.1em;
	margin-top: 30px;
}

/*-----------------------------------------------------------------------------------*
/* = WordPress Styles
/*-----------------------------------------------------------------------------------*/

/*aligns*/
.aligncenter{ display:block;  margin:0 auto}
.alignright{ float:right;  margin: 10px 0 10px 20px}
.alignleft{ float:left;  margin: 10px 20px 10px 0}

/*floats*/
.floatleft{ float:left}
.floatright{ float:right}

/*text style*/
.textcenter{ text-align:center}
.textright{ text-align:right}
.textleft{ text-align:left}

/*captions*/
.wp-caption{
	border:1px solid #ddd; 
	text-align:center; 
	background-color:#f3f3f3; 
	padding-top:4px; 
	margin:10px; 
	-moz-border-radius:3px; 
	-khtml-border-radius:3px; 
	-webkit-border-radius:3px; 
	border-radius:3px;
}
.wp-caption img{
	margin:0; 
	padding:0; 
	border:0 none;
}
.wp-caption p.wp-caption-text{
	font-size:11px; 
	line-height:17px; 
	padding:0 4px 5px; 
	margin:0;
}
.wp-video{
	margin: 0 auto;
}

/*smiley reset*/
.wp-smiley{
	margin:0 !important;
	max-height:1em;
}

/* tag-cloud widget */
.tagcloud a {
	font-family: 'Helvetica Nue', Arial;
	float: left;
	display: block;
    margin-right: 5px;
	margin-bottom: 5px;
    padding: 5px 7px;
	line-height: 1.3em;
	color: #fff !important;
    background: #444;
	font-weight: bold;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
}
.tagcloud a:hover{
	text-shadow: none;
	background: #1f82cb;
	text-decoration: none;
}
/* calendar widget */
#wp-calendar { width: 100% }
#wp-calendar caption {
    text-align: right;
    color: #333;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
}
#wp-calendar thead { font-size: 10px }
#wp-calendar thead th { padding-bottom: 10px }
#wp-calendar tbody { color: #aaa }
#wp-calendar tbody td {
    background: #f5f5f5;
    border: 1px solid #fff;
    text-align: center;
    padding: 4px;
	transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
}
#wp-calendar tbody td:hover { background: #fff }
#wp-calendar tbody .pad { background: none }
#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}
#wp-calendar tfoot #prev {
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 10px;
}

@media print {
	body { background:white; margin:0; }
	.header {position: relative}
	#main{margin-top:0}
}