/*
Author: Alexandr Oleynik
Author URL: http://oleynik.org
*/

@font-face {
  font-family: 'MyriadPro-BoldCondIt';
  src: url('fonts/MyriadPro-BoldCondIt.eot?#iefix') format('embedded-opentype'),  url('fonts/MyriadPro-BoldCondIt.woff') format('woff'), url('fonts/MyriadPro-BoldCondIt.ttf')  format('truetype'), url('fonts/MyriadPro-BoldCondIt.svg#MyriadPro-BoldCondIt') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyriadPro-Semibold';
  src: url('fonts/MyriadPro-Semibold.eot?#iefix') format('embedded-opentype'),  url('fonts/MyriadPro-Semibold.otf')  format('opentype'),
	     url('fonts/MyriadPro-Semibold.woff') format('woff'), url('fonts/MyriadPro-Semibold.ttf')  format('truetype'), url('fonts/MyriadPro-Semibold.svg#MyriadPro-Semibold') format('svg');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'MyriadPro-BoldCond';
  src: url('fonts/MyriadPro-BoldCond.eot?#iefix') format('embedded-opentype'),  url('fonts/MyriadPro-BoldCond.otf')  format('opentype'),
	     url('fonts/MyriadPro-BoldCond.woff') format('woff'), url('fonts/MyriadPro-BoldCond.ttf')  format('truetype'), url('fonts/MyriadPro-BoldCond.svg#MyriadPro-BoldCond') format('svg');
  font-weight: normal;
  font-style: normal;
}


html, body {
	height: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    
    background: #93daf6 url(images/bg.jpg) center center no-repeat;
    
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}


.btn-red {
	outline: none;

	display: inline-block;
	height: 56px;
	padding: 0 25px;
	
	-webkit-border-radius: 30px;
	        border-radius: 30px;
		
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
	    -ms-transition: all 150ms ease-in-out;
	     -o-transition: all 150ms ease-in-out;
	        transition: all 150ms ease-in-out;
	
	background-color: #d10a11;

	font: bold 18px/59px "MyriadPro-BoldCond", Arial;
	color: #fff;
	text-align: center;
	text-decoration: none;

	cursor: pointer;
}

.btn-red:focus,
.btn-red:hover {
	outline: none;

	background-color: #f10c14;
	color: #fff;
	text-decoration: none;
}

.btn-red-wb {
	border: 0;
	
	line-height: 56px;
}

.btn-red-big {
	height: 70px;
	padding: 0 35px;
	
	-webkit-border-radius: 50px;
	        border-radius: 50px;

	font-size: 26px;
	line-height: 74px;
}



.btn-blue {
	outline: none;

	display: inline-block;
	height: 56px;
	border: 0;
	padding: 0 25px;
	
	-webkit-border-radius: 30px;
	        border-radius: 30px;
		
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
	    -ms-transition: all 150ms ease-in-out;
	     -o-transition: all 150ms ease-in-out;
	        transition: all 150ms ease-in-out;
	
	background-color: #004f91;

	font: bold 18px/56px "Myriad Pro", Arial;
	color: #fff;
	text-align: center;
	text-decoration: none;

	cursor: pointer;
}

.btn-blue:focus,
.btn-blue:hover {
	background-color: #003c6f;
	color: #fff;
	text-decoration: none;
}

.btn-fw {
	display: block;
	width: 100%;
}

/* --- */
.container {
	max-width: 900px;
}


.top {
	margin: 0 0 30px 0;
	border-bottom: 4px solid #EAF2F5;
}

.top__logo {
	margin: 35px 0;
}

.top__logo img {
	display: inline-block;
	max-width: 215px;
	height: auto;
}

.top__nav {
	margin: 35px 0 0 0;
	
	text-align: right;
}

.top__nav ul {
	margin: 0;

	list-style: none;
}

.top__nav ul li {
	display: inline-block;
	border-left: 1px solid #E0E6E8;
	
	vertical-align: middle;
}

.top__nav ul li:first-child {
	border-left: none;
}

.top__nav ul li a {
	outline: none;

	display: block;
	padding: 10px;
	
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
	    -ms-transition: all 150ms ease-in-out;
	     -o-transition: all 150ms ease-in-out;
	        transition: all 150ms ease-in-out;

	font: normal 15px/100% "Myriad Pro", Arial;
	color: #2B2B2B;
	text-transform: uppercase;
	text-decoration: none;
}

.top__nav ul li a:hover {
	color: #D10A11;
}

.top__nav ul li.active a {
	color: #D10A11;
}

.top__nav ul li.varus {
	border-left: none;
}

.top__nav ul li.varus img {
	position: relative;
	top: -2px;

	display: block;
	max-width: 100px;
	height: auto;
}


@media (max-width: 992px) {
	.top__logo {
		margin: 15px 0;
		
		text-align: center;
	}

	.top__nav {
		margin: 0 0 15px 0;

		text-align: center;
	}
}

@media (max-width: 767px) {
	body {
		padding-top: 80px;
	}

	.top {
		z-index: 1000;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		
		background-color: #fff;
	}

	.top__logo {
		margin: 7px 0;
	}
}


/* --- */
.main_top {
	overflow: hidden;
	max-width: 980px;
	min-height: 280px;
	margin: -30px auto -25px auto;
	padding: 30px 0 0 0;
	
	background: url(images/bg-main.png) 0 0 no-repeat;
	
	-webkit-background-size: 71% auto;
	     -o-background-size: 71% auto;
	        background-size: 71% auto;
}

.main_top h2 {
	margin: 20px 0 10px 0;
	
	font: normal 48px/100% "MyriadPro-BoldCondIt", Arial;
	color: #004B88;
}

.main_top p {
	margin: 0 0 20px 0;

	font: normal 22px/100% "Myriad Pro", Arial;
	color: #004B88;
}

.main_top a {}

.main_top .btn-red {
	padding-top: 5px;
	padding-right: 85px;
	padding-left: 85px;
	
	line-height: 130%;
}


@media (max-width: 992px) {
	.main_top h2 {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.main_top {
		min-height: inherit;
		margin-bottom: 30px;
		padding-top: 51%;
		
		-webkit-background-size: 150% auto;
		     -o-background-size: 150% auto;
		        background-size: 150% auto;
	}

	.main_top__in {
		padding-right: 20px;
		padding-left: 20px;
		
		text-align: center;
	}
}


/* Main gift */
.gift__item {
	position: relative;
	margin: 0 0 30px 0;
	
	text-align: center;
}

.gift__item:after {
	content: ' ';
	
	position: absolute;
	top: 65px;
	right: -25px;
	
	display: block;
	width: 25px;
	height: 40px;
	
	background: url(images/ico-step-arr.png) no-repeat;
	
	text-indent: -9999px;
}

.gift__item--last:after {
	display: none;
}

.gift__item .thumb {
	height: 160px;
	margin: 0 0 15px 0;
	
	line-height: 160px;
}

.gift__item .thumb img {
	display: inline-block;
	max-width: 100%;
	height: auto;

	vertical-align: bottom;
}

.gift__item h4 {
	margin: 0 0 5px 0;
	
	font: bold 18px/120% "MyriadPro-BoldCond", Arial;
	color: #004B88;
	text-transform: uppercase;
}

.gift__item p {
	font: 600 13px/130% "MyriadPro-Semibold", Arial;
	color: #004B88;
}

.gift__item p a {
	color: #004B88;
}

.condit {
	z-index: 100;
	position: absolute;
	top: -15px;
	right: -25px;
	
	display: block;
	width: 60px;
	height: 60px;
	border: 1px solid #004b88;
	padding: 19px 0 0 0;
	
	-webkit-border-radius: 23px;
	        border-radius: 23px;
	
	cursor: pointer;
}

.condit:before {
	content: ' ';
	
	position: absolute;
	top: -9px;
	left: 50%;
	
	display: block;
	width: 18px;
	height: 18px;
	margin: 0 0 0 -9px;
	
	-webkit-border-radius: 50%;
	        border-radius: 50%;
	
	background: #004b88 url(images/ico-i.png) center center no-repeat;
	
	-webkit-background-size: 5px 10px;
	     -o-background-size: 5px 10px;
	        background-size: 5px 10px;
	
	text-indent: -9999px;
}

.condit span {
	display: block;

	font: normal 9px/130% "Myriad Pro", Arial;
	color: #004B88;
	text-align: center;
}

.condit__txt {
	position: absolute;
	top: -50px;
	right: -20px;
	
	display: none;
	width: 250px;
	
	padding: 50px 15px 15px 15px;
	
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	
	background-color: #004B88;
	
	text-align: left;
}

.condit__txt p {
	margin: 0 0 10px 0;

	font: normal 10px/130% "Myriad Pro", Arial;
	color: #fff;
}

.condit-code {
	right: 0;
}

.condit-code .condit__txt {
	width: 300px;
}

.condit_code {
	padding-top: 10px;
}

.condit_code img {
	float: left;
	max-width: 140px;
	height: auto;
}

.condit_code p {
	float: left;
	margin: 55px 0 0 17px;
	
	text-align: center;
}

.condit__close {
	position: absolute;
	top: 15px;
	right: 15px;
	
	display: block;
	width: 20px;
	height: 20px;
	
	background: url(images/ico-close-w.png) no-repeat;
	
	-webkit-background-size: 20px 20px;
	     -o-background-size: 20px 20px;
	        background-size: 20px 20px;
	
	text-indent: -9999px;
	
	cursor: pointer;
}

.condit__close:hover {
	opacity: 0.8;
}

@media (max-width: 992px) {
	.condit {
		right: -15px;
	}
}

@media (max-width: 767px) {
	.condit {
		top: 20px;
		right: 30px;
	}

	.gift__item {
		margin-bottom: 50px;
	}

	.gift__item:after {
		top: inherit;
		right: 0;
		left: 0;
		bottom: -50px;
		
		-webkit-transform: rotate(90deg);
		   -moz-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		     -o-transform: rotate(90deg);
		        transform: rotate(90deg);
		
		margin: auto;
	}
}


/* Winners page */
.winners_page {}

.winners_page h1 {
	margin: 0 0 20px 0;

	font: normal 36px/100% "MyriadPro-BoldCondIt", Arial;
	color: #004b88;
	text-align: center;
}

.winners_page .winners__list > p {
	

	font: normal 18px/100% "MyriadPro-BoldCondIt", Arial;
	color: #777;
	text-align: center;
}

@media (min-width: 767px) {
	.winners_page .scroller {
		-ms-overflow-y: scroll;
		    overflow-y: scroll;
		max-height: 400px;
		min-height: 200px;
	}
}

.winners__list {
	margin-right: 20px;
}

.winners__list table {
	width: 100%;
}

.winners__list table td {
	border-bottom: 2px solid #eaf2f5;
	padding: 10px;
	
	font: bold 20px/120% "Myriad Pro", Arial;
	text-align: center;
}

.winners__list table tr:last-child td {
	border-bottom: 0;
}

@media (max-width: 767px) {
	.winners__list table td {
		font-size: 16px;
	}
}



/* Rules */
.rules_page {}

.rules_page h1 {
	margin: 0 0 20px 0;

	font: normal 36px/100% "MyriadPro-BoldCondIt", Arial;
	color: #004b88;
	text-align: center;
}

.rules_page h3 {
	font: bold 17px/130% "Myriad Pro", Arial;
	color: #000;
}

.rules_page h4 {
	margin-top: 25px;

	font: bold 15px/130% "Myriad Pro", Arial;
	color: #333;
}

.rules_page p {
	font: normal 13px/140% "Myriad Pro", Arial;
	color: #333;
}

@media (min-width: 767px) {
	.rules_page .scroller {
		-ms-overflow-y: scroll;
		    overflow-y: scroll;
		max-height: 400px;
		min-height: 200px;
	}
}

.rules_page__list {
	margin-right: 20px;
}


/* Wbox */
.wbox {
	max-width: 780px;
	margin: 0 auto 40px auto;
	padding: 20px;
	
	-webkit-border-radius: 20px;
	        border-radius: 20px;
	
	background-color: #fff;
}



/* Footer */
.copy {
	margin: 0 0 30px 0;
	
	padding: 10px 0 0 0;
}

.copy p {
	font: normal 10px/140% "Myriad Pro", Arial;
	color: #004F91;
	text-transform: uppercase;
}

.bt_social {
	float: right;
}

.bt_social ul {
	list-style: none;
}

.bt_social ul li {
	display: inline-block;
	
	vertical-align: middle;
}

.bt_social ul li.fb a {
	display: block;
	width: 45px;
	height: 45px;
	
	background: url(images/ico-fb.png) no-repeat;
	
	-webkit-background-size: 45px 45px;
	     -o-background-size: 45px 45px;
	        background-size: 45px 45px;
	
	text-indent: -9999px;
}

.footer {
	margin: 0 0 20px 0;
}

.footer p {
	font: normal 8px/130% "Myriad Pro", Arial;
	color: #fff;
	text-shadow: 1px 1px 0 #93daf6;
	text-align: center;
}


/* Modal */
@media (min-width: 768px) {
    .popup_info.modal-dialog {
        width: 720px;
    }

    .modal_info {
      text-align: center;
      padding: 0!important;
    }

    .modal_info:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      margin-right: -4px;
    }

    .modal_info .modal-dialog {
      display: inline-block;
      text-align: left;
      vertical-align: middle;
    }

}

.modal-content {
	border: 0;

	-webkit-box-shadow: none;
	        box-shadow: none;
	            
	-webkit-border-radius: 15px;
	        border-radius: 15px;
}

.modal_box__body {
	padding: 35px 50px 5px 50px;
}

.modal_box__body > p {
	margin: 0 0 20px 0;

	font: normal 16px/130% "Myriad Pro", Arial;
	color: #004B88;
}

@media (min-width: 767px) {
	.modal-390 {
		max-width: 390px;
	}

	.modal-780 {
		width: 100%;
		max-width: 780px;
	}
}


.modal-title {
	margin: 0 0 25px 0;

	font: bold 30px/120% "Myriad Pro", Arial;
	color: #004b88;
	text-align: center;
}

.modal-txt {
	margin: 40px 0;
}

.modal-txt p {
	margin: 0 0 20px 0;

	font: normal 18px/140% "noteworthybold", Arial;
	color: #000;
	text-align: center;
}

.inp-group {
	margin: 0 0 25px 0;
}

.inp-group h4 {
	font: normal 14px/100% "rotondacbold", Arial;
	color: #000;
	text-align: center;
	text-transform: uppercase;
}

.inp-group h4 a {
	color: #000;
	text-decoration: underline;
}

.inp-group h4 a:hover {
	color: #ED1C24;
}

.inp-group label {
	display: block;
	margin: 0 0 10px 0;

	font: bold 14px/100% "Myriad Pro", Arial;
	color: #000;
	text-align: center;
	text-transform: uppercase;
}

.inp-group .blue {color: #0051A1;}

.inp-group label a {
	color: #000;
	text-decoration: underline;
}

.inp-group label a:hover {color: #ED1C24;}

.inp-style {
	outline: none;

	display: block;
	width: 100%;
	height: 56px;
	border: 3px solid #eaf2f5;
	padding: 0 15px;
	
	-webkit-border-radius: 35px;
	        border-radius: 35px;
	
	font: bold 20px/150% "Myriad Pro", Arial;
	color: #000;
}

.inp-np {
	text-align: center;
}

.inp-np a {
	display: block;
	margin-top: 42px;
	
	font: bold 14px/100% "Myriad Pro", Arial;
	color: #004F91;
	text-decoration: underline;
	text-transform: uppercase;
}

.inp-np a:hover {
	color: #ED1C24;
}

textarea.inp-style {
	padding-top: 10px;
	padding-bottom: 5px;
	
	-webkit-border-radius: 25px;
	        border-radius: 25px;

	height: auto;
	font-size: 15px;
	line-height: 130%;
	
	resize: none;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left!important;
}

.modal .close {
	outline: none;

	opacity: 1;
	
	position: absolute;
	top: 30px;
	right: -40px;

	display: block;
	width: 22px;
	height: 22px;
	
	background: url(images/ico-close.png) no-repeat;
	
	-webkit-background-size: 100% 100%;
	     -o-background-size: 100% 100%;
	        background-size: 100% 100%;

	text-indent: -9999px;
}

.modal .close:hover {opacity: 0.8;}


.modal-backdrop {
	background-color: #eaf2f5;
}

.modal-backdrop.in {
	filter: alpha(opacity=80);
	opacity: 0.8;
}

@media (max-width: 767px) {
	.modal .close {
		top: -35px;
		right: 5px;
	}

	.modal-dialog {
		margin-top: 50px;
	}
}



.jq-checkbox {
    top: -1px;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin: 0 4px 0 0;
    border: 3px solid #fee350;

    -webkit-border-radius: 50%;
            border-radius: 50%;

    background-color: #fff;

    cursor: pointer;
}
.jq-checkbox.checked .jq-checkbox__div {
    width: 20px;
    height: 20px;
    margin: 3px 0 0 3px;

    -webkit-border-radius: 50%;
            border-radius: 50%;

    background: #e3000b;
}
.jq-checkbox.focused {}
.jq-checkbox.disabled {
    opacity: .55;
}


.jq-radio {
    top: -1px;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin: 0 4px 0 0;
    border: 1px solid transparent;

    -webkit-border-radius: 50%;
            border-radius: 50%;

    background-color: #fff;
    cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
    width: 20px;
    height: 20px;
    margin: 4px 0 0 4px;

    -webkit-border-radius: 50%;
            border-radius: 50%;

    background: #000;
}
.jq-radio.focused {}
.jq-radio.disabled {
    opacity: .55;
}


.jq-selectbox {
    display: inline-block;
    width: 100%;

    vertical-align: middle;
    cursor: pointer;
}

.jq-selectbox__select {
    height: 56px;
    border: 3px solid #fee350;
    padding: 0 45px 0 15px;
    	
	-webkit-border-radius: 35px;
	        border-radius: 35px;
	
    background: #ffffff;

    font: normal 22px/53px "Myriad Pro", Arial;
	color: #000;
	text-align: center;
}
.jq-selectbox__select:hover {}
.jq-selectbox__select:active {}
.jq-selectbox.focused .jq-selectbox__select {}
.jq-selectbox.disabled .jq-selectbox__select {
    border-color: #CCC;
    background: #F5F5F5;
    box-shadow: none;
    color: #888;
}
.jq-selectbox__select-text {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.jq-selectbox .placeholder {
    color: #888;
}
.jq-selectbox__trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 100%;
}
.jq-selectbox__trigger-arrow {
    position: absolute;
    top: 23px;
    right: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid #999;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
    border-top-color: #ed1c24;
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
    border-top-color: #AAA;
}
.jq-selectbox__dropdown {
    overflow: hidden;
    
    box-sizing: border-box;
    width: 100%;
    margin: 2px 0 0;
    padding: 0;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    font: 16px/18px 'rotondacbold', sans-serif;
}
.jq-selectbox__search {
    margin: 5px;
}
.jq-selectbox__search input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 27px 6px 8px;
    border: 1px solid #CCC;
    border-radius: 3px;
    outline: none;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
    box-shadow: inset 1px 1px #F1F1F1;
    color: #333;
    -webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none;
}
.jq-selectbox__not-found {
    margin: 5px;
    padding: 5px 8px 6px;
    background: #F0F0F0;
    font-size: 13px;
}
.jq-selectbox ul {
    margin: 0;
    padding: 0;
}
.jq-selectbox li {
    min-height: 18px;
    padding: 8px 10px 8px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
    color: #231F20;
}
.jq-selectbox li.selected {
    background-color: #ed1c24;
    color: #FFF;
}
.jq-selectbox li:hover {
    background-color: #ed1c24;
    color: #FFF;
}
.jq-selectbox li.disabled {
    display: none;
    
    color: #AAA;
}
.jq-selectbox li.disabled:hover {
    background: none;
}
.jq-selectbox li.optgroup {
    font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
    background: none;
    color: #231F20;
    cursor: default;
}
.jq-selectbox li.option {
    padding-left: 25px;
}


/* Mobile menu */
.top .mobile_menu-btn {
	z-index: 10001;
	position: absolute;
	top: 0;
	left: 0;
	
	width: 60px;
	height: 57px;
	
	background: url(images/ico-burger-r.png) center center no-repeat;
	
	-webkit-background-size: 25px 24px;
	     -o-background-size: 25px 24px;
	        background-size: 25px 24px;
	
	cursor: pointer;
}

.mobile_menu {
	z-index: 10005;
}

.mobile_menu .modal-dialog {
	max-width: 75%;
	height: 100%;
	margin: 0;

    -webkit-transition: -webkit-transform 300ms ease-out;
    -o-transition: -o-transform 300ms ease-out;
    transition: transform 300ms ease-out;
}

.mobile_menu .modal-content {
	height: 100%;
	border: 0;

	-webkit-border-radius: 0;
	        border-radius: 0;
	
	background-color: #fff;
}

.mobile_menu.fade .modal-dialog {
	-webkit-transform: translate3d(-100%,0,0);
	   -moz-transform: translate3d(-100%,0,0);
	    -ms-transform: translate3d(-100%,0,0);
	     -o-transform: translate3d(-100%,0,0);
	        transform: translate3d(-100%,0,0);
}

.mobile_menu.in .modal-dialog {
	-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);
}

.mobile_menu__list {}

.mobile_menu__list ul {
	list-style: none;
}

.mobile_menu__list ul li {
	border-bottom: 1px solid #EAF2F5;
}

.mobile_menu__list ul li:first-child {
	margin-right: 55px;
}

.mobile_menu__list ul li a {
	display: block;
	padding: 20px;
	
	-webkit-transition: all 200ms ease-in-out;
	   -moz-transition: all 200ms ease-in-out;
	    -ms-transition: all 200ms ease-in-out;
	     -o-transition: all 200ms ease-in-out;
	        transition: all 200ms ease-in-out;
	
	font: bold 18px/100% "Myriad Pro", Arial;
	color: #004B88;
	text-transform: uppercase;
	text-decoration: none;
}

.mobile_menu__list ul li a:hover,
.mobile_menu__list ul li.active a {
	background-color: #fff;
	color: #d61119;
}

.mobile_menu .mobile_menu-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	
	display: block;
	width: 25px;
	height: 24px;
	
	background: url(images/ico-burger-r.png) no-repeat;
	
	-webkit-background-size: 25px 24px;
	     -o-background-size: 25px 24px;
	        background-size: 25px 24px;
	
	cursor: pointer;
}



/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 100%;
	
	background: #eaf2f5;
	
	-webkit-border-radius: 6px;
	        border-radius: 6px;

}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack {
	width: 12px;
	margin: 0 auto;
	
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	
	position: relative;
}

.jspDrag {
	background: #d4181f;
	position: relative;
	top: 0;
	left: 0;
	
	width: 6px;
	margin-left: 3px;
	
	-webkit-border-radius: 5px;
	        border-radius: 5px;

	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: transparent;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.jspArrow.jspDisabled
{
	cursor: default;
}

.jspVerticalBar .jspArrow
{
	height: 6px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}