﻿/* ------------- 0. Imports --------------- */

/* ------------- 1. CSS Reset ------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}
/* 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;
}

/*
    from YUI 3 CSS Reset
*/
input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

/* ------------- 2. Common elements ------- */

html {
	min-width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	position: relative;
	min-height: 100%;
	min-width: 1000px;
	font: normal normal 12px/1.5 Tahoma, Geneva, sans-serif;
	color: #333;
	background: #fff;
}

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

.hidden { display: none !important; visibility: hidden; }
.hide { display: none; }

.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

.invisible { visibility: hidden; }

.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.cll {
	clear: left;
}

.clr {
	clear: right;
}
.fll {
	float: left;
}
.flr {
	float: right;
}
.ov {
	overflow: hidden;
}
.br {
	position: relative;
	clear: both;
	height: 0px;
	overflow: hidden;
}
.wsn {
	white-space: nowrap;
}
.alc {
	text-align: center;
}
.fill {
	width: 100%;
}
.small {
	font-size: 11px;
}
p, ol, ul {
	margin-bottom: 1em;
}
ul li, ol li {
	margin: 0 0 6px 0;
}
ul.nav, ul.nav ul, ul.nav li {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.no-dot {
	list-style: none;
}
ul.dash > li {
	padding-left: 20px;
}
ul.dash > li:before, ul.dash > li .li__before {
	content: ' ';
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-right: -12px;
	border-top: 1px solid #3cf;
	width: 12px;
	left: -20px;
	height: 0px;
	vertical-align: middle;
}
ul.dash > li .li__before {
	margin-right: -16px;
}
ul.dash-dark li:before, ul.dash-dark li .li__before {
	border-color: #345c86;
}

ul.dash-short li {
	padding-left: 12px;
}
ul.dash-short li:before, ul.dash-short li .li__before {
	content: ' ';
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-right: -12px;
	border-top: 1px solid #3cf;
	width: 12px;
	left: -20px;
	height: 0px;
	vertical-align: middle;
}
ul.dash li .li__before {
	margin-right: -16px;
}
ul.dash-dark li:before, ul.dash-dark li .li__before {
	border-color: #345c86;
}


sub, sup {
	position: relative;
	font-size: 75%;
}

sub {
	top: -0.25em;
}

sup {
	top: -0.5em;
}
big, .big {
	font-size: 125%;
}
small, .small {
	font-size: 12px;
	/*font-size: 85%;*/
}
strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
u {
	text-decoration: underline;
}
hr {
	position: relative;
	clear: both;
	margin: 18px 0;
	border: none;
	border-top: 1px solid #333;
	height: 0px;
}
.vmiddle {
	vertical-align: middle;
}
.imiddle {
	display: inline-block;
	vertical-align: middle;
}
.blue {
	color: #39c;
}

table.simple {
	border-collapse: collapse;
}
table.simple td {
	padding: 8px 18px 8px 0;
	vertical-align: top;
}

/* ------------- 2.1. Headings ------------ */
h1 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 6px;
	color: #0164a9;
	text-transform: uppercase;
}
h2 {
	font-size: 16px;
	font-weight: bold;
	color: #3399cc;
	margin-bottom: 16px;
}

h3 {
	font-weight: bold;
	color: #1e89be;
	margin-bottom: 6px;
}

h4 {
	font-weight: bold;
}

/* ------------- 2.2. Links --------------- */
a {
	text-decoration: underline;
	color: #1e89be;
	outline: none;
}
a.nu {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a.pseudo {
	text-decoration: none;
	border-bottom: 1px dashed;
}
a.pseudo:hover {
	border-bottom-color: transparent;
}
.dark-link a {
	color: #345c86;
}
a.fh {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: baseline;
	margin-bottom: 10px;
	*margin-bottom: 13px;
}
/* ------------- 2.3. Forms --------------- */
.btn {
	margin: 0;
	padding: 0 16px;
	height: 19px;
	background: #5ba9d0 url(../images/bz.png) 0 0 repeat-x;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	border: 0;
	font: normal 11px/19px Tahoma,Geneva,sans-serif;
	min-width: 80px;
	text-align: center;
}
.btn:active {
	position: relative;
	top: 1px;
}
.btn-disabled {
	background: none;
	background: #f5f5f5 url(/images/bz_na.png) 0 0 repeat-x;
}
.cci {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 15px;
	height: 15px;
	overflow: hidden;
	font-size: 0;
	background: url(/images/cci.png) 0 0 no-repeat;
	padding: 0;
}
.cci.checked {
	background-position: -15px 0;
}
.cci-radio {
	background-position: 0 -15px;
}
.cci-radio.checked {
	background-position: -15px -15px;
}

.form {
	background: #f5f5f5;
	border-radius: 5px;
	padding: 5px 24px;
	font-size: 12px;
	color: #666;
}
.font-small .form {
	font-size: 11px;
}
.font-large .form {
	font-size: 14px;
}
.form .fieldset {
	margin-bottom: 0px/*32px*/;
}
.form .fieldset .title {
	color: #333;
	font-weight: bold;
	margin-bottom: 16px;
}
.form .field {
	margin-bottom: 8px;
}
.form .cf {
	white-space: nowrap;
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin: 0 46px 8px 0;
}
.form .cf .inp {
	margin-left: 4px;
}
.form .cf2 {
	white-space: normal;
	display: block;
	zoom: 1;
	margin: 5px 0;
}
.form .cf3 {
	white-space: nowrap;
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin: 0 8px 8px 0;
}
.form label .cci {
	vertical-align: middle;
	margin-right: 6px;
}
.form table td {
	padding: 0 22px 8px 0;
}
.form table td.txtar {
	vertical-align: top;
}
.form table td.txtar .label {
	top: 3px;
}
.form table.pr td {
	padding-right: 36px;
}
.form .label {
	white-space: nowrap;
	text-align: right;
	/*position: relative;
	top: 3px;*/
}
.form .label em {
	position: absolute;
	font-style: normal;
	color: #39c;
	margin: -2px 0 0 2px;
}
.form .label-long {
	text-align: right;
	white-space: normal;
}
.form .inp {
	white-space: nowrap;
}
.form .inp input, .form .inp textarea {
	background: #fff;
	border: 1px solid #dcdcdc;
	border-radius: 2px;
	border-top-color: #c4c4c4;
	border-bottom-color: #efefef;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.15);
	outline: none;
	font-family: Tahoma, Geneva, sans-serif;
	padding: 1px 2px;
	width: 216px;
	margin-right: 4px;
}
.form .inp input.captcha {
	width: 50px;
}
.form .inp input.large {
	width: 336px;
}
.form .inp input.mini {
	width: 46px;
}
.form .inp input.midi {
	width: 168px;
}
.form .inp input.datepicker {
	width: 75px;
}
.form .inp input:disabled, .form select:disabled {
	background-color: #f5f5f5;
}

/* ------------- 3. Layout ---------------- */
.constr {
	width: 962px;
	margin: 0px auto;
}
.jblocks {
	/*text-align: justify;
	text-align-last: justify;*/
	text-align: left;
	text-align-last: left;
}
.jblocks:after {
	width: 100%;
	height: 0px;
	line-height: 1;
	overflow: hidden;
	content: '';
	display: inline-block;
	font-size: 1px;
	margin-bottom: -1em;
}
.cols4 {
	margin-right: -20px;
	font-size: 0;
}
.col4 {
	font-size: 12px;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top;
	width: 230px;
	text-align: left;
}
.col4-left {
	float: left;
	margin-right: 20px;
	height: /*330px*/410px;
}
.col3 {
	float: left;
	width: 33.333%;
}
.col3s {
	float: left;
	width: 26%;
}
.col3b {
	float: left;
	width: 37%;
}

.banner {
	margin-bottom: 30px;
}
.banner:last-child {
	margin-bottom: 0;
}

.s-im-link {
	font-size: 14px;
	margin-bottom: 12px;
}
.s-im-link u, .s-im-link img {
	cursor: pointer;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
	float: left;
}
.s-im-link img {
	margin-right: 4px;
}
.s-im-link a {
	color: #39c;
	text-decoration: none;
}
.s-im-link a:hover u {
	text-decoration: none;
}

.b-im-link {
	background: #f2f2f2;
	border: 1px dashed #b8b8b8;
	margin-bottom: 12px;
}
.bl-im-link {
	background: url(/images/blimz.png) 50% 50% no-repeat;
	margin-bottom: 12px;
}
.bl-im-link.bg2 {
	background: url(/images/blimz2_.png) 50% 50% no-repeat;
}
.bl-im-link.bg3 {
	background: url(/images/blimz3_.png) 50% 50% no-repeat;
}
.b-im-link a, .bl-im-link a {
	display: block;
	margin-left: 92px;
	line-height: 64px;
	height: 64px;
	font-size: 0;
	position: relative;
	text-decoration: none;
}
.bl-im-link a {
	margin-left: 76px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}
.b-im-link span, .bl-im-link span {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 100%;
	vertical-align: middle;
	font-size: 12px;
	line-height: 15px;
}
.b-im-link span.img, .bl-im-link span.img {
	position: relative;
	left: -92px;
	width: 92px;
	text-align: center;
	margin-right: -92px;
}
.bl-im-link span.img {
	width: 76px;
	margin-right: -76px;
	left: -76px;
}
.bl-im-link u {
	text-decoration: underline;
}
.bl-im-link u span.small {
    font-size: 8.5px;
    text-decoration: underline;
    font-weight: normal;
}
.b-im-link u {
	text-decoration: none;
	border-bottom: 1px dashed;
}
.b-im-link a:hover u {
	border-bottom: 0;
}
.bl-im-link a:hover u, .bl-im-link a:hover u span.small {
	text-decoration: none;
}

.file-link {
	position: relative;
	margin-bottom: 12px;
	padding-left: 48px;
	color: #2379b4;
	text-decoration: none;
	font-size: 0px;
	cursor: pointer;
}
.file-link ins, .file-link u {
	cursor: pointer;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
}
.file-link u {
	width: 100%;
	font-size: 12px;
	line-height: 18px;
}
.file-link ins {
	position: relative;
	width: 39px;
	height: 31px;
	margin-right: -39px;
	left: -48px;
}
.file-link a:hover u {
	text-decoration: none;
}
.file-link ins.pdf {
	background: url(/images/f/pdf.png) 0 0 no-repeat;
}
.file-link ins.doc {
	background: url(/images/f/doc.png) 0 0 no-repeat;
}
.file-link ins.xls {
	background: url(/images/f/xls.png) 0 0 no-repeat;
}
/*.file-link ins.arc2 {
	background: url(/images/f/arhiv_2.png) 0 0 no-repeat;
}*/
.file-link ins.arc {
	background: url(/images/f/arhiv.png) 0 0 no-repeat;
}
/* ------------- 3.1. Header -------------- */
#header {
	position: relative;
	z-index: 50;
	color: #0164a9;
	padding: 22px 0;
}
#header a {
	color: #0164a9;
}

#header .logo {
	position: relative;
	float: left;
	left: 12px;
	width: 220px;
	margin-right: -220px;
}
#header .phone {
	position: relative;
	float: left;
	left: 310px;
	padding-left: 50px;
	width: 190px/*170px*/;
	margin-right: -240px;/*-220px*/;
	background: url(../images/phz.png) 0 4px no-repeat;
	line-height: 16px;
	white-space: nowrap;
}
#header .phone .ph {
	font-size: 22px;
	line-height: 24px;
	white-space: nowrap;
}
#header .coor {
	position: relative;
	float: left;
	left: 590px;
	width: 200px;
	margin: -6px -200px 0 0;
	color: #0164a9;
	line-height: 20px/*28px*/;
}
#header .bs {
	float: right;
	padding-left: 26px;
	width: 160px;
	background: url(/images/bd.png) 0 0 repeat-y;
}
#header .bs .ib {
	background: #1e89be;
	border-radius: 4px;
	color: #fff;
	line-height: 22px;
	height: 24px;
	display: block;
	padding: 0 10px;
	white-space: nowrap;
}
#header .bs .ib:hover {
	text-decoration: none;
}
#header .bs .ib ins {
	text-decoration: none;
	color: #fff;
	position: absolute;
	margin: -1px 0 0 4px;
}
#header .bs .support {
	text-decoration: none;
}
#header .bs .support u {
	text-decoration: none;
	border-bottom: 1px dashed;
	color: #1e89be;
}
#header .bs .support:hover u {
	border-bottom: 0;
}
#header .bs .support i {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
	height: 34px;
/*	width: 46px;
	background: url(/images/ph.png) 0 0 no-repeat;*/
	width: 34px;
	background: url(/images/ph2.png) 0 0 no-repeat;
}
.support-menu {
	padding: 10px 14px;
	color: #1e89be;
}
.support-menu .t {
	color: #a5a5a5;
	margin: 10px 0 0 22px;
}
.support-menu .skype, .support-menu .icq, .ph-support-menu .skype, .ph-support-menu .icq{
	margin: 4px 0;
	padding-left: 22px;
}
.support-menu .skype, .ph-support-menu .skype {
	background: url(/images/skype.png) 0 0 no-repeat;
}
.support-menu .icq, .ph-support-menu .icq {
	background: url(/images/icq.png) 0 0 no-repeat;
}
.support-menu .callback {
	display: inline-block;
	font-size: 11px;
	line-height: 12px;
	background: url(/images/phone.png) 0 50% no-repeat;
	padding-left: 22px;
	width: 90px;
	margin-top: 12px;
}

#header .support-menu .callback {
	color: #1e89be;
}

#nav-block {
	position: relative;
	z-index: 40;
	background: #f5f5f5;
	border-radius: 4px;
	padding: 14px;
	height: 26px;
	font-size: 14px;
	margin-bottom: 22px;
}
#nav-block a {
	color: #1e89be;
}
#nav-block .breadcrumbs {
	float: left;
	font-size: 12px;
	color: #2379b4;
	margin: 2px 0 0 7px;
	
	white-space: normal;
	width: 620px;
    line-height: 1.7;
	/*outline: 1px solid black;*/
}
#nav-block .breadcrumbs a {
    /*line-height: 15px;*/
	margin: 0 3px;
}
#nav-block .breadcrumbs .active {
	color: #6cf;
}
#nav-block /*.breadcrumbs*/ .bc-popup {
	display: inline-block;
	*display: inline;
	zoom: 1;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup {
	right: auto;
	width: 750px;
	left: -665px/*-220px*/;
	top: -14px/*-16px*/;
	padding: 38px 0 0 0;
	white-space: normal;
	border-radius: 5px;
}
#nav-block /*.breadcrumbs*/ .bc-popup.shown>a {
	border-bottom: 0;
	text-decoration: none;
	font-weight: bold;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup, #nav-block /*.breadcrumbs*/ .bc-popup .popup a {
	/*#666;*/
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup a {
 	margin: 0;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup .part {
	padding: 16px 24px;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup .part-g {
	background: #ececec;
	border-radius: 0 0 4px 4px;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup .part .col {
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-right: 25px/*64px*/;
	vertical-align: top;
}
#nav-block /*.breadcrumbs*/ .bc-popup .popup .part .col ul.nav {
	margin: 6px 0;
}

#nav-block /*.breadcrumbs*/ .bc-popup .popup .part .col ul.nav li {
	margin-bottom: 6px;
}

#nav-block /*.breadcrumbs*/ .bc-popup .popup .part .col ul.nav li a strong {
	color: #0164A9;
}

#nav-block /*.breadcrumbs*/ .bc-popup .popup .part .col ul.nav li.pt {
	margin-top: 16px;
}

#nav-block .search {
	float: right;
}
#nav-block .search .b {
	display: inline-block;
	*display: inline;
	zoom: 1;
	border: 1px solid #bac6cb;
	color: #bac6cb;
	border-radius: 2px;
	white-space: nowrap;
	background: #fff;
	padding: 0 10px 0 15px;
	margin-left: 32px;
}
#nav-block .search .b input {
	color: #666;
	background: #fff;
	font: normal normal 14px/20px Tahoma, Geneva, sans-serif;
	height: 20px;
	border: 0;
	outline: 0!important;
	width: 122px;
	margin: 0;
	padding: 2px;
}
#nav-block .search .b input.placeholder {
    color: #bac6cb;
}
#nav-block .search .b input::-webkit-input-placeholder {
    color: #bac6cb;
}
#nav-block .search .b input:-moz-placeholder {
    color: #bac6cb;
}
#nav-block .search .b button {
	background: url(/images/enter.png) 50% 50% no-repeat;
	width: 24px;
	height: 24px;
	border: 0;
	cursor: pointer;
	margin: 0 0 0 5px;
	vertical-align: top;
	padding: 0;
}
#nav-block .hp-sel {
	position: relative;
	line-height: 16px;
}
#nav-block .hp-sel li {
	float: left;
	margin-right: 30px;
}
#nav-block .hp-sel li {
	padding: 5px 10px;
}
#nav-block .hp-sel li.active {
	background: #1e89be;
	border-radius: 5px;
}
#nav-block .hp-sel li.active a {
	border-bottom: 0;
	color: #fff;

}
/* ------------- 3.2. Center -------------- */
#center {
	float: left;
	width: /*710px*/ 950px;
}
#center .text {
	font-size: 14px;
	line-height: 1.286;
	color: #333;
}
#center.font-large h2 {
	font-size: 18px;
}
#center.font-small h2 {
	font-size: 14px;
}

#center.font-large .text {
	font-size: 16px;
}
#center.font-small .text {
	font-size: 12px;
}


#center .sub-menu li {
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: left;
	padding: 3px 10px;
	font-size: 14px;
	float: left;
	margin-right: 36px;
}
#center .sub-menu li.active {
	background: #1e89be;
	border-radius: 4px;
}
#center .sub-menu li a {
	color: #1E89BE;
	text-decoration: none;
	border-bottom: 1px dashed;
}
#center .sub-menu li.active  a {
	color: #fff;
	border-bottom: 0;
	text-decoration: none;
}


#aside {
	float: right;
	width: 230px;
}
#aside h2 {
	margin-bottom: 8px
}
#aside .menu {
	margin-bottom: 18px;
	background: #1b82b6 url(/images/rmz_3.jpg) 0 0 repeat-x;
	border-radius: 5px;
}
#aside .menu a {
	color: #fff;
}
#aside .menu .active {
	display: block;
	text-decoration: none;
	background: url(/images/maz.png) 0 0 repeat;
	margin: 0 -26px;
	padding: 0 26px;
	font-weight: bold;
}
#aside .menu ul ul .active {
	margin: 0 -26px 0 -38px;
	padding: 0 26px 0 38px;
}
#aside .menu ul {
	padding: 14px 26px;
	font-size: 14px;
	line-height: 18px;/*26px*/;
}
#aside .menu ul ul {
	padding: 0 0 0 12px;
	font-size: 12px;
	line-height: 18px;
}
#aside .banner {
	margin-bottom: 18px;
	text-align: center;
}
#aside .b-im-link, #aside .s-im-link, #aside .file-link {
	margin-bottom: 18px;
}

#meta-block, .branch-popup .meta {
	position: relative;
	z-index: 20;
	float: right;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 2px 4px;
}
#meta-block a, .branch-popup .meta a {
	float: left;
	width: 28px;
	height: 28px;
	margin: 0 2px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#meta-block a.print, .branch-popup .meta a.print {
	background-image: url(/images/mi/print.png);
}
#meta-block a.font-inc, .branch-popup .meta a.font-inc {
	background-image: url(/images/mi/a+.png);
}
#meta-block a.font-dec, .branch-popup .meta a.font-dec {
	background-image: url(/images/mi/a-.png);
}
/* ------------- 3.3. Footer -------------- */
#footer {
	margin: 16px 0 0;
	padding: 16px 0 32px;
	border-top: 1px solid #1e89be;
}
#footer .menu {
	color: #0164a9;
	float: left;
	/*white-space: nowrap;*/
	white-space: normal;
}
#footer .menu a {
	color: #1e89be;
}
#footer .menu .col {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top;
	margin-right: 15px;
	max-width: 181px;
	/*outline: 1px solid black;*/
}
#footer .menu ul {
	margin-top: 10px;
}
#footer .copy {
	float: right;
	margin-left: -100%;
	/*max-width: 196px;*/
	/*outline: 1px solid black;*/
}

/* ------------- 4. Interfaces ------------ */
.aster {
	margin-left: 20px;
	position: relative;
}
.aster span {
	position: absolute;
	right: 100%;
	margin-right: 4px;
}
.tabs {
}
.tabs .tab {
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: left;
	padding: 3px 10px;
    margin-right: 7px;
}
@media all and (-webkit-min-device-pixel-ratio:10000),
not all and (-webkit-min-device-pixel-ratio:0) {
  .tabs .tab { float: left; margin-right: 10px; }
}
.tabs-b {
	font-size: 14px;
}
.tabs-b .tab {
	float: left;
	margin-right: 36px;
}
.tabs .tab.active {
	background: #1e89be;
	border-radius: 4px;
}
.tabs .tab a {
	color: #1e89be;
}
.tabs .tab.active a {
	color: #fff;
	border-bottom: 0;
}
.tabs .tab-cnt {
	display: none;
	float: right;
	margin: 36px 0 0 -100%;
	width: 100%;
	text-align: left;
	text-align-last: left;
}
.tabs-b .tab-cnt {
	margin-top: 48px;
}
.tabs .tab-cnt.active {
	display: block;
}
.c-title {
	text-align: center;
	text-align-last: center;
	color: #1e89be;
	margin-bottom: -6px;
}
.rates {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 8px 10px;
	/*font-size:8px;*/
}
.rates table {
	margin-bottom: 5px;
}
.rates table td {
	text-align: right;
	vertical-align: middle;
	padding: 4px 6px;
}
.rates table th {
	font-weight: normal;
	text-align: left;
	padding-top: 8px;
}
.rates table th span {
	display: block;
	background: #f2f2f2;
	padding: 2px 6px;
}
.rates table th span.i {
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.rates table .abs {
	text-align: left;
	vertical-align: top;
	font-size: 11px;
}
.rates table .abs span {
	position: absolute;
	background: none;

}
.rates table .t {
	font-weight: bold;
	padding-right: 10px;
}
/*.rates*/ .tick-up, /*.rates*/ .tick-dn {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 8px;
	height: 4px;
	vertical-align: middle;
	background: url(/images/tick.png) 0 0 no-repeat;
}
/*.rates*/ .tick-dn {
	background-position: 0 -4px;
}

.rates a {
	color: #1e89be;
}

.h-h {
	display: inline-block;
	*display: inline;
	zoom: 1;
	position: relative;
	margin: 0 10px 12px 0;
	color: #0164a9;
	line-height: 22px;
}
.h-news, .h-act {
	display: inline-block;
	*display: inline;
	zoom: 1;
	position: relative;
	padding-left: 52px;
	
}
.h-news ins, .h-act ins {
	position: absolute;
	width: 55px;
	height: 43px;
	left: -14px;
	top: -12px;
	background: url(/images/hnews.jpg) 0 0 no-repeat;
}
.h-act ins {
	background: url(/images/hact.jpg) 10px 7px no-repeat;
}
a.after-act {
	position: relative;
	left: 52px;
	top: -12px;
}
.news {
}
.news .date {
	display: block;
	color: #999;
	font-size: 11px;
}
.il-block {
	border: 1px dashed #b8b8b8;
	border-radius: 4px;
	padding: 10px 20px;
}
.il-block-nb {
	border: 0;
	padding: 0;
}
.il-block .title {
	color: #0164a9;
	font-size: 14px;
	font-weight: bold;
}
.il-block a {
	display: block;
	margin: 12px 0 12px 64px;
	font-size: 0;
}
.il-block-nb a {
	margin: 0px 0 12px 64px;
}
.il-block a span, .il-block a u {
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: 12px;
	vertical-align: middle;
	width: 90%;
}
.il-block a span {
	width: 64px;
	margin-left: -64px;
	overflow: hidden;
}
.il-block a:hover u {
	text-decoration: none;
}

.voting {
	margin: 16px 4px;
}
.voting form {
	margin-left: 20px;
}
.voting h1 {
	font-weight: normal;
	margin-bottom: 12px;
}
.voting .var {
	position: relative;
	margin: 0 0 6px 2px;
}
.voting .var input {
	position: absolute;
	margin: 0;
	padding: 0;
	left: -22px;
}
.voting .var .cci {
	position: absolute;
	margin: 0;
	padding: 0;
	left: -22px;
	top: 4px;
}


#hp-block {
	position: relative;
}
#hp-block .section {
	position: relative;
	display: none;
}
#hp-block .section.ind {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 10;
}
/*#hp-block .section:first-child {
	display: block;
}*/
#hp-block .section>.nav {
	font-size: 16px;
	line-height: 20px;
	height: 65px;
	margin-bottom: 5px;
}
#hp-block .section>.nav li {
	position: relative;
	padding: 12px 0 13px 100px;
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 40px;
	width: 130px;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}
#hp-block .section>.nav a {
	color: #0164a9;
}
#hp-block .section>.nav a:before {
	content: ' ';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100px;
	height: 100%;
}
#hp-block .section>.nav a ins {
	position: absolute;
	width: 6px;
	height: 11px;
	margin: 8px 0 0 4px;
	background: url(/images/arr.png) -6px 0 no-repeat;
}
#hp-block .section>.nav a.active ins {
	background-position: 0 0;
}
#hp-block .section>.nav a.active {
	font-weight: bold;
	border-bottom: 0;
}
#hp-block .section .cnt {
	display: none;
	padding: 14px 24px;
	/*padding: 14px 24px 7px 24px;*/
	border: 1px dashed #e5e5e5;
	border-radius: 7px;
}
#hp-block .section .cnt>.nav {
	float: left;
	width: 25%;
}
#hp-block .section .cnt>.nav a {
	color: #1e89be;
}
#hp-block .section .cnt>.nav li {
	margin-bottom: 6px;
}
#hp-block .section .cnt>.nav li.pt {
	margin-top: 16px;
}
#hp-block .section .cnt>.nav li a strong {
	color: #0164a9;
}
#hp-block .section .cnt .r {
	float: right;
	width: 44%;
	padding-left: 6%;
	background: url(/images/bd.png) 18px 0 repeat-y;
}
#hp-block .section .cnt .r ul:last-child {
	margin-bottom: 0;
}

#hp-slides {
	margin: 20px 0 24px;
	/*margin: 5px 0 24px;*/
}
#hp-slides .slides {
	position: relative;
	z-index: 1;
	width: 981px;
	margin: 0px auto;
	height: 231px;
	padding-bottom: 25px;
	background: url(/images/msz.png) 50% 100% no-repeat;
	margin-bottom: -10px;
}
#hp-slides .slides div {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 231px;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	display: none;
}
#hp-slides .nav {
	position: relative;
	z-index: 2;
	text-align: center;
}
#hp-slides .nav li {
	display: inline;
	margin: 0 12px;
}
#hp-slides .nav li > a.pseudo {
	color: #1e89be;
}
.h-col-bl {
	font-size: 12px;
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 220px;
	margin-right: 20px;
	min-height: 150px;
	vertical-align: top;
	/*outline: 1px solid black;*/
}
.h-bl-icon-sms {
	background: url(/images/sms.png) 100% 0 no-repeat;
	background-position: 164px 0;
}
.h-bl-icon-mail {
	background: url(/images/env.png) 100% 0 no-repeat;
	background-position: 164px 0;
}
.city-select, .city-select a {
	color: #0164a9;
}
.filter-block {
	padding: 12px 20px;
	background: #f5f5f5;
	border-radius: 5px;
	margin: 24px 0;
}
.filter-block .title {
	font-weight: bold;
	font-size: 14px;
	color: #2379b4;
	margin-bottom: 12px;
}

.filter-block .v {
	position: relative;
	margin: 0 12px 10px;
}
.filter-block .v input, .filter-block .cci {
	position: absolute;
	left: -24px;
	top: 4px;
}

.p-blocks {
	font-size: 0px;
}
.p-block {
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	font-size: 11px;
	line-height: 14px;
	padding: 0 5px 0 78px;
	width: 141px;
	min-height: 60px;
	color: #999;
	margin-bottom: 20px/*60px*/;
	vertical-align: top;
}
#center.font-large .p-block {
	font-size: 12px;
}
#center.font-small .p-block {
	font-size: 10px;
}
.p-block .t {
	min-height: 24px;
}
.p-block .t a {
	font-size: 14px;
	line-height: 18px;
}
#center.font-large .p-block .t a {
	font-size: 16px;
}
#center.font-small .p-block .t a {
	font-size: 12px;
}

.p-block .t b {
	display: block;
}
.p-block ins {
	position: absolute;
	left: 0px;
	width: 74px;
	top: 0px;
	height: 60px;
}
.p-block ins img {
	position: absolute;
	bottom: 0px;
}

.gray-block {
	background: #f5f5f5;
	border-radius: 5px;
	padding: 12px 24px;
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
}
.gray-block .sel {
	margin: 8px 0;
}
.gray-block .sel .cci {
	position: relative;
	top: 2px;
	vertical-align: middle;
}

.branches-filter {
	position: relative;
	background: #f2f2f2;
	z-index: 0;
	border: 1px dashed #b8b8b8;
	padding: 12px 16px;
	margin: 20px 0 36px;
	color: #666;
}
.branches-filter #bf-header div {
	float: left;
	/*height: 25px;*/
}
.branches-filter #bf-header div h3 {
	margin-top: 3px;
}
.branches-filter #bf-header .bf-submenu {
	/*display: none;*/
	margin-left: 20px;
}
.branches-filter #bf-header .bf-submenu ul.nav li {
	display: inline-block;
	zoom: 1;
	/*float: left;*/
	padding: 3px 5px;
	margin-left: 20px;
}
.branches-filter #bf-header .bf-submenu ul.nav li a {
	/*77777*/
	color: #1E89BE;
	text-decoration: none;
	border-bottom: 1px dashed;
}
.branches-filter #bf-header .bf-submenu ul.nav li.active {
	background-color: #1E89BE;
	border-radius: 5px;
}
.branches-filter #bf-header .bf-submenu ul.nav li.active a {
	color: #fff;
	border: none;
}
.branches-filter a {
	color: #1E89BE;
}
.branches-filter a.expand {
	font-weight: bold;
	zoom: 1;
}
.branches-filter a.expand ins {
	position: absolute;
	margin: 6px 0 0 4px;
	width: 6px;
	height: 11px;
	background: url(/images/arr.png) -6px 0 no-repeat;
}
.branches-filter a.collapse {
	border-bottom: 0;
}
.branches-filter a.collapse ins {
	background-position: 0 0;
}
.branches-filter .in {
	display: none;
}
.branches-filter .in .cl-type{
	width: 100%;
}
.branches-filter .col {
	float: left;
	width: 48%;
	padding-right: 2%;
}
.branches-filter label {
	position: relative;
}
.branches-filter .t, .branches-filter .sort, .branches-filter .search {
	font-weight: bold;
	margin: 16px 0 18px;
}
.branches-filter .v {
	margin: 0 0 10px 0;
}
.branches-filter .t, .branches-filter .v {
	position: relative;
	margin-left: 24px;
	line-height: 14px;
}
.branches-filter .sort label {
	font-weight: normal;
	margin-left: 32px;
}
.branches-filter .search {
	font-weight: normal;
	margin-top: 14px;
}
.branches-filter .search input {
	color: #666;
	background: #fff;
	font: normal normal 12px/16px Tahoma, Geneva, sans-serif;
	height: 16px;
	width: 210px;
	margin: 0;
	padding: 3px 8px;
	outline: 0!important;
	border: 1px solid #bac6cb;
	border-radius: 2px;
}
.branches-filter .search input.placeholder {
	color: #bac6cb;
}
.branches-filter .search input::-webkit-input-placeholder {
    color: #bac6cb;
}
.branches-filter .search input:-moz-placeholder {
    color: #bac6cb;
}
.branches-filter .v input,.branches-filter .t input, .branches-filter .cci {
	position: absolute;
	left: -24px;
	top: 4px;
}
.branches-filter .btn {
	margin-bottom: 4px;
}
.branches-filter.open:after {
	content:  ' ';
	position: absolute;
	z-index: -1;
	left: 48%;
	width: 52%;
	top: 0px;
	height: 100%;
	/*background: #ebebeb;*/
}
.branches {

}
.branches .sel {
	color: #666;
}
.branches .sel a {
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
	padding: 6px 0 6px 40px;
	width: 64px;
	margin: 0 20px 0 16px;
	font-size: 11px;
	line-height: 12px;
	color: #666;
	text-decoration: none;
}
.branches .sel a.active {
	color: #999;
}
.branches .sel a:hover {
	text-decoration: underline;
}
.branches .sel a ins {
	position: absolute;
	left: 0px;
	top: 50%;
	width: 31px;
	height: 31px;
	margin-top: -15px;
	background: url(/images/bri.png) 0 0 no-repeat;
}
.branches .sel a.map ins {
	background-position: 0 0;
}
.branches .sel a.map.active ins {
	background-position: -31px 0;
}
.branches .sel a.list ins {
	background-position: 0 -31px;
}
.branches .sel a.list.active ins {
	background-position: -31px -31px;
}
.branches .list {
	margin-right: -25px;
	font-size: 0;
}
.branches .list .branch {
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	width:  180px;
	padding-left: 40px;
	margin: 20px 25px 12px 0;
	vertical-align: top;
	font-size: 12px;
	line-height: 2;
}
.font-small .branches .list .branch { font-size: 11px; }
.font-large .branches .list .branch { font-size: 14px; }
.branches .list .branch, .branches .list .branch a {
	color: #666;
}
.branches .list .branch a:before, .branches .list .branch .a__before {
	content: ' ';
	position: absolute;
	left: 0px;
	top: -2px;
	width: 40px;
	height: 40px;
	background: url(/images/map_mark_2.png) 0 0 no-repeat;
}
.branches .list .none {
	font-size: 14px;
	text-align: center;
	margin: 16px 0;
}
.branch-popup {
	position: absolute;
	left: 50%;
	width: 762px;
	margin: 38px 0 0 -381px;
	background: #fff;
	z-index: 999;
}
.branch-popup .close {
	position: absolute;
	cursor: pointer;
	right: 15px;
	top: 24px;
	width: 25px;
	height: 25px;
	background: url(/images/close.png) 0 0 no-repeat;
}
.branch-popup .loading {
	text-align: center;
	padding: 24px;
}
.branch-popup .meta {
	position: absolute;
	right: 50px;
	top: 24px;
}
.branch-popup .in {
	font-size: 12px;
	color: #666;
}
.branch-popup .font-large {
	font-size: 14px;
}
.branch-popup .font-small {
	font-size: 11px;
}
.branch-popup .in a {
	color: #666;
}
.branch-popup .map {
	text-align: center;
}
.branch-popup .big {
	font-size: 150%;
}
.branch-popup table {
	margin: 20px 40px;
}
.branch-popup td {
	vertical-align: top;
	padding: 0 30px 12px 0;
	white-space: nowrap;
}
.branch-popup td:last-child {
	padding-right: 0;
}
.branch-popup tr.d td {
	padding-bottom: 0;
}
.branch-popup .services {
	padding: 20px 40px;
	background: #f0f0f0;
}
/*.branch-popup .services {
	padding: 20px 40px;
	background: #f0f0f0;
}*/
.branch-popup .services .col {
	float: left;
	width: 50%;
}
.branch-popup .services .col ul {
	margin-top: 6px;
	margin-bottom: 0;
}
.branch-popup .services .col ul li {
    font-size: 10px;
    margin: 0 0 -1px 0;
}

/* ------------- 5. Other ----------------- */
.overlay {
	position: fixed;
	z-index: 990;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	opacity: .2;
}
.inline-popup {
	position: relative;
/*	white-space: nowrap;*/
}

.inline-popup>a {
	position: relative;
	z-index: 20;
}
.inline-popup .popup {
	position: absolute;
	display: none;
	top: -4px;
	z-index: 10;
	background: #fff;
	border: 1px solid #cbcbcb;
	border-radius: 5px;
	left: -4px;
	right: -4px;
	padding-top: 24px;
	white-space: normal;
}
.inline-popup.shown {
	z-index: 999;
}
.inline-popup ul.dash {
	padding: 4px 10px 0;
}
.cities-popup {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 96px;
	line-height: 1.5;
}
.cities-popup .popup {
	padding: 24px 11px 3px;
	left: -12px;
}
.cities-popup.shown>a {
	border-bottom: 0;
	font-weight: bold;
}
.cities-popup ul {
	margin: 0;
}
.cities-popup ul li {
	margin: 4px 0;
}

.ik_select select{margin:0; padding:0; width:100%; opacity:0; filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0); position:absolute;}
.ik_select{
	width: 250px;
	position: relative;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: baseline;
}
.ik_select_link {
	cursor: pointer;

}
.ik_select_link_text {
	overflow: hidden;
	display: inline-block;
	border-bottom: 1px dashed;
	max-width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ik_select_link:hover .ik_select_link_text {
	border-bottom-color: transparent;
}


.ik_select_block{
	position: absolute;
	z-index: 9999;
	width: 100%;
	left: 0;
	top: -2px;
	display: none;
}
.ik_select_block_right{left:auto;}
.ik_select_list {
	background: #fff;
	border: 1px solid #cbcbcb;
	border-radius: 5px;
	padding: 6px 11px;
}
.ik_select_list_inner{}
.ik_select_list ul { margin:0; padding:0; }
.ik_select_list li {
	list-style: none;
	margin: 2px 0;
	cursor:pointer;
	padding: 0 0;
	position:relative;
	text-decoration: underline;
}
.ik_select_list li.ik_select_active {
	font-weight: bold;
	text-decoration: none;
}
.ik_select_list li.ik_select_hover {
	text-decoration: none;
}

.rounded {
  border-radius: 5px;
}
