/* ==== Reset ==== */

html, body, div, span,
h1, h2, h3, h4, h5, h6,
p, a, img, ol, ul, li,
form, label, legend,
table, tbody, tfoot, thead, tr, th, td,
input, textarea, button {
    border: 0 none;
    margin: 0;
    padding: 0;
    outline:none;
}
ul li{
	list-style-type:none;
}

/* ==== General ==== */

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	min-width:1260px;
	font-size:14px;
	font-family: 'Open Sans', sans-serif;
	color:#252525;
	background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

/* ==== Typography ==== */

h1, h2, h3, h4, h5, h6{
	margin-bottom:20px;
	position:relative;
}
h6{
	font-size:18px;
	font-weight:700;
	font-family: 'PT Serif', serif;
}
a{
	color:#0076C9;
	text-decoration:none;
}
a:hover, a:focus{
	text-decoration:none;
	color:#008A56;
}
p{
	margin-bottom:25px;
	line-height:19px;
}
p:last-child{
	margin-bottom:0;
}
/* ==== Alignment ==== */

.floatleft{
	float:left;
}
.floatright{
	float:right;
}
.aligncenter{
	text-align:center;
}
.alignright{
	text-align:right;
}
.alignleft{
	text-align:left;
}

/* ==== Clearing ==== */

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

input::-webkit-input-placeholder{
	color:#C5C9D5;
}
input:-moz-placeholder{
	color:#C5C9D5;
}
textarea::-webkit-input-placeholder{
	color:#C5C9D5;
}
textarea:-moz-placeholder{
	color:#C5C9D5;
}

/* ==== Content ==== */

.hidden {
    display: none !important;
}
.form__input_checkbox {
    display: none;
}
.form__label_checkbox {
    position: relative;
    display: inline-block;
    vertical-align: top;
    min-height: 22px;
    padding-left: 35px;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.286;
    cursor: pointer;
}
.form__label_checkbox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARBAMAAADJQ1rJAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAJ1BMVEXMzMzMzMzQ0NDPz8/MzMze3t7////MzMzf39/+/v7MzMzMzMz///++4H/NAAAAC3RSTlMGke7vkMvpiMrmiWZ2PZYAAAABYktHRAZhZrh9AAAACXBIWXMAAAsSAAALEgHS3X78AAAAM0lEQVQI12Ng1N4NAoYMDK45Z0AgtYBBDcw4c0yBYQ+EdWYDXVgIez0gbpmxgIHRGuo+AMvCbCsJVaTqAAAAAElFTkSuQmCC');
}
.form__label_checkbox:hover:before {
    opacity: .8;
}
.form__input_checkbox:checked + .form__label_checkbox:before {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAYFBMVEXMzMzMzMzQ0NDPz8/MzMze3t7////MzMzf39/+/v7MzMzMzMz////w9vqqzeP4+/3+/v82ir0Ba6ubxd71+fxCkcFtqs8AaqsPc7DK4O7r8/guhbrq8/gvhbpop83O4u8t8tsAAAAAC3RSTlMGke7vkMvpiMrmiWZ2PZYAAAABYktHRAZhZrh9AAAACXBIWXMAAAsSAAALEgHS3X78AAAAa0lEQVQY033QRw6AIBAF0AERCxZsYEG9/y1FM1Ji4l++ZCoAocInIQAs5ZUPTzOgIViiIKo44l/qxkkrH+j6AWWclLxBzwvKumklEbDK7PpAeDtbQnCzzI7gp5vzZ8PvXSwPqchLAJLE/7kAWyUOOKoLJkoAAAAASUVORK5CYII=');
}
.form__input_checkbox:disabled + .form__label_checkbox,
.form__input_checkbox:disabled + .form__label_checkbox:hover,
.form__input_checkbox:checked:disabled + .form__label_checkbox,
.form__input_checkbox:checked:disabled + .form__label_checkbox:hover {
    opacity: .65;
    cursor: default;
}

.layout-canvas{
	position:relative;
	width:100%;
	height:100%;
}
.layout-navbar {
	position:absolute;
	top:0;
	left:0;
	width: 230px;
	height: 100%;
	background: #f4f5f8;
}
.layout-navbar.sticky{
	position:fixed;
	z-index: 50;
}
.layout-body{
	position:relative;
	margin-left: 230px;
	overflow:hidden;
	min-height:100%;
}
.layout-main {
	width: 1010px;
	padding-left: 30px;
	padding-top: 30px;
	padding-bottom: 20px;
}
.layout-topbar {
	background: #d6dee5;
}
body.index .layout-topbar {
    height: 0;
}

.btn_download {
    position: relative;
    display: inline-block;
    padding: 13px 30px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    background: #005CA1;
}
.btn_download:hover,
.btn_download:focus,
.btn_download:active {
    color: #fff;
    opacity: .8;
}
.btn_download:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background: url(../images/corn-top-left.png) no-repeat scroll 0 -19px;
}
.btn_download .icon-more {
    transform: rotate(90deg);
}
.social-block{
	/*position:fixed;
	bottom:16px;
	left:0;*/
	/*width:208px;*/
	margin-top: 30px;
	text-align:center;
}
.subscribe-block a{
	display:inline-block;
	padding:7px 32px;
	background:#EEF0F6;
	font-size:13px;
	border-radius:5px;
	border:1px solid #E2E5EE;
	color:#3F7C65;
}
.subscribe-block a:hover{
	background:#E8EAF0;
}
.logo {
	display:block;
	height: 77px;
	width: 100%;
	margin: 20px 0 20px 0;
	padding: 0 25px;
	line-height: 0;
}
.logo_new {
	display:block;
	height: 60px;
	padding-top: 20px;
	display: inline-flex;
}
.logo_img {
	padding-right: 5px;
	padding-left: 3px;
	width: 130px;
}
.logo_txt {
	color: #0071bc;
	font-size: 11px;
	line-height: 10px;
	vertical-align: middle;
	font-weight: 700;
	width: 95px;
	display: inline-block;
}
.main-menu {
	margin-top: 15px;
}
.main-menu li {
    position: relative;
    padding: 0 30px;
}
.main-menu li a,
.main-menu li span,
.weather-map__link {
    position:relative;
    display:block;
    padding: 2px 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.429;
    font-family: "Open Sans";
	color: #0076c9;
}
.main-menu li a.minheight,
.main-menu li span.minheight {
	padding: 5px 0 5px 30px;
}
.main-menu li a:hover,
.weather-map__link:hover {
	color:#444444;
}
.main-menu li.current-page a,
.main-menu li.current-page span {
    font-weight: 700;
    color: #3b3b3b;
    cursor: default;
}
.main-menu li.current-page:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #fff transparent transparent;

}
.layout-topbar .inner-section {
	padding: 25px 0 25px 30px;
	width: 1010px;
}
/*.topbar-section{
	width:846px;
	padding-top:20px;
}*/
.topbar-widget{
	width:175px;
	padding-top:4px;
}
.icon-site{
	display:inline-block;
}
.region {
    position: absolute;
    top: 20px;
    left: 30px;
}
.region-sidebar {
    padding: 0 30px;
}
.region-sidebar .icon-region {
    background-image: url(../images/icon-region.png);
}
.region-sidebar .icon-region + a {
    margin-left: 0;
}
.region-inner{
	position:relative;
	padding-left:24px;
}
.region-inner.hidden-content .hdc{
	opacity:0;
}

.region-inner-win {
    position: absolute;
    top: 30px;
    left: -10px;
    width: 1060px;
    background: rgba(249,250,251,0.97);
    z-index: 100;
    box-shadow: 0 0 13px rgba(173,177,187,0.75);
    padding-bottom: 30px;
    border-bottom: 4px solid #089B64;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
}

.region-inner-win.open{
	opacity:1;
	visibility:visible;
}
.riw-header{
	position:absolute;
	top:-42px;
	left:0;
	height: 40px;
	padding:10px 35px 0 35px;
	background:rgba(249,250,251,0.97);
	box-shadow:0 0 13px rgba(173,177,187,0.75);
	border-radius:5px 5px 0 0;
}
.riw-header:before{
	position:absolute;
	bottom:-12px;
	left:0;
	width:100%;
	height:20px;
	background:rgba(249,250,251,0.97);
	content:'';
}
.riw-header:after{
	position:absolute;
	bottom:-3px;
	left:50%;
	height:3px;
	width:90%;
	background:#E8EBF0;
	content:'';
	margin-left:-45%;
}
.riw-header .icon-region{
	top:11px;
	left:9px;
}
.map-region-list{
	padding: 0 15px;
}
.mrl-city{
	width:152px;
}
.mrl-region{
	width:835px;
}
.mrl-title{
	padding:3px 7px;
	background:#E8EBF1;
	font-weight:700;
	font-size:13px;
	text-transform:uppercase;
	margin-bottom:25px;
}
.region-inner .map-region-list a{
	border-bottom:none;
	padding:1px 2px;
	margin:0;
}
.region-inner .map-region-list a.selected{
	background:#0E6FB8;
	color:#ffffff;
}
.region-inner .map-region-list a:hover{
	background:#0E6FB8;
	color:#ffffff;
}
.region-inner .map-region-list ul li{
	margin-bottom:6px;
}
.region-inner .map-region-list a:before{
	display:none;
}
.mrl-list-region ul{
	margin-right:16px;
	width:125px;
}
.mrl-list-region ul:last-child{
	margin-right:0;
}
.map-svg-section{
	margin-bottom:16px;
	position:relative;
}
.svg-label-map{
	position:absolute;
	color:#065895;
	font-size:12px;
	font-weight:700;
	text-shadow:0 1px 1px rgba(255,255,255,0.9);
	padding:2px 4px;
}
.region-inner .svg-label-map a{
	color:#065895;
	border-bottom:none;
}
.region-inner .svg-label-map a:before{
	display:none;
}
.static-region-wrapper-map .svg-label-map a{
	color:#065895;
	border-bottom:none;
}
.svg-label-map:before{
	position:absolute;
	bottom:-4px;
	left:14px;
	width:6px;
	height:6px;
	border-radius:3px;
	background:#00985F;
	content:'';
}
.svg-label-map.active{
	background:#00985F;
	color:#ffffff;
	text-shadow:none;
}
.static-region-wrapper-map .svg-label-map.active a{
	color:#ffffff;
}
.region-inner .svg-label-map.active a{
	color:#ffffff;
}
.svg-label-map.active:before{
	background:#ffffff;
}
.lbl-map1{
	top:94px;
	left:210px;
}
.lbl-map2{
	top:138px;
	left:340px;
}
.lbl-map3{
	top:290px;
	left:434px;
}
.lbl-map4{
	top:300px;
	left:499px;
}
.lbl-map5{
	top:311px;
	left:557px;
}
.lbl-map6{
	top:327px;
	left:628px;
}
.lbl-map6:before{
	left:auto;
	right:14px;
}
.lbl-map7{
	top:283px;
	left:auto;
	right:223px;
}
.lbl-map8{
	top:283px;
	left:auto;
	right:153px;
}
.lbl-map9{
	top:220px;
	left:auto;
	right:96px;
}
.lbl-map10{
	top:292px;
	left:auto;
	right:96px;
}
.lbl-map11{
	top:413px;
	left:auto;
	right:96px;
}
.lbl-map12{
	top:437px;
	left:auto;
	right:158px;
}
.lbl-map13{
	top:486px;
	left:auto;
	right:288px;
}
.lbl-map14{
	top:417px;
	left:auto;
	right:296px;
}
.lbl-map15{
	top:384px;
	left:auto;
	right:189px;
}
.lbl-map16{
	top:357px;
	left:auto;
	right:212px;
}
.lbl-map17{
	top:327px;
	left:auto;
	right:186px;
}
.lbl-map18{
	top:312px;
	left:auto;
	right:174px;
	text-transform:uppercase;
}
.lbl-map19{
	top:323px;
	left:auto;
	right:272px;
}
.lbl-map20{
	top:419px;
	left:auto;
	right:436px;
}
.lbl-map21{
	top:398px;
	left:auto;
	right:480px;
}
.lbl-map22{
	top:463px;
	left:auto;
	right:498px;
}
.lbl-map23{
	top:369px;
	left:auto;
	right:574px;
}
.lbl-map24{
	top:301px;
	left:auto;
	right:623px;
}
.lbl-map24:before{
	top:-2px;
	right:14px;
	left:auto;
}
.lbl-map25{
	top:257px;
	left:auto;
	right:593px;
}
.lbl-map26{
	top:221px;
	left:205px;
}
.lbl-map27{
	top:280px;
	left:225px;
}
.lbl-map28{
	top:363px;
	left:190px;
}
.lbl-map29{
	top:402px;
	left:262px;
}
.lbl-map30{
	top:456px;
	left:291px;
}
.lbl-map31{
	top:502px;
	left:311px;
}
.lbl-map32{
	top:296px;
	left:135px;
}
.lbl-map33{
	top:238px;
	left:115px;
}

svg path{
	cursor:pointer;
}
svg path:hover{
	fill:#0E6EB8 !important;
}
svg path.active{
	fill:#0E6EB8 !important;
}
.close-map{
	width:21px;
	height:21px;
	background:url(../images/close.png) no-repeat scroll;
	position:absolute;
	top:13px;
	right:13px;
	cursor:pointer;
	display:block;
	z-index:100;
}

.icon-region {
	width:18px;
	height:20px;
	background: url(../images/icon-region-gray.png) no-repeat scroll;
	margin-right:7px;
	position:absolute;
	top:0;
	left:0;
}
.search-bar {
	width: 100%;
	margin: 15px 0;
	padding: 0 30px;
}
.search-inner{
	position: relative;
}
.search-inner input[type="text"]{
	width: 100%;
	height: 30px;
	padding: 0 10px;
	font-size:13px;
	background: #fff;
	border: 1px solid #e3e6ee;
}
.search-inner input[type="submit"]{
	width:34px;
	height:30px;
	position:absolute;
	top:0;
	right:0;
	background:url(../images/search.png) no-repeat scroll 50% 0;
	cursor:pointer;
}
.search-inner:hover input[type="text"]::-webkit-input-placeholder{
	color:#ABB0BF;
}
.search-inner:hover input[type="text"]:-moz-placeholder{
	color:#ABB0BF;
}
.search-inner:hover input[type="submit"]{
	background-position:50% -30px;
}
.sidebar-weather {
    padding: 0 30px;
}
.weather-map {
    position: relative;
    cursor: pointer;
}
.weather-map__link {
    padding-right: 0;
}
.weather-map__data {
    display: inline-block;
    margin-left: 5px;
    padding: 1px 5px 1px 0px;
    font-size: 16px;
    line-height: 1;
    color: #000;
    white-space: nowrap;
    background: #fff;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.weather-map-info .weather-map__data {
    position: absolute;
    top: 5px;
    right: 20px;
}
.weather-map__icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    line-height: 0;
}
.weather-map__icon img {
    display: inline-block;
    vertical-align: middle;
}
.weather-map__value {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
}
.weather-map-info {
    position: absolute;
    left: 120px;
    width: 165px;
    height: 130px;
    margin-top: -78px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    cursor: default;
}
.weather-map:hover .weather-map-info {
    visibility: visible;
    opacity: 1;
}
.weather-map:hover .weather-map__link .weather-map__data {
    opacity: 0;
    visibility: hidden;
}
.weather-map-info:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #fff transparent transparent;
}

.region-inner a{
	color:#0076C9;
	margin-left:8px;
	border-bottom:1px dashed #0076C9;
	position:relative;
}
.region-inner a:before{
	position:absolute;
	top:50%;
	right:-14px;
	width:8px;
	height:4px;
	margin-top:-2px;
	background:url(../images/arrow.png) no-repeat scroll;
	content:'';
}
.some-news__wrap_sidebar {
    margin-bottom: 40px;
}
.some-news {
    position: relative;
	width: 49.49%;
	height: 55px;
	background: #ffffff;
	border: 1px solid #DFE6E9;
}
.layout-right .some-news {
    width: 100%;
    margin-bottom: 10px;
}
.some-news:hover .some-news-link{
	color:#1167A7;
}
.tolbar-row:nth-child(2) {
	padding-top:10px;
}
.some-news-link {
	display: block;
	width: 100%;
	margin-top: 13px;
	height: 55px;
	padding: 0 170px 0 20px;
	font-size: 15px;
	font-family: 'PT Serif', serif;
	background: #fff;
	/*line-height: 55px;*/

}
.layout-right .some-news-link {
    padding-left: 13px;
    padding-right: 95px;
}
.layout-right .some-img {
    width: 80px;
}
.layout-right .catgories-some-news {
    left: 13px;
}
/*.some-news.fullw-nw .some-news-link{
	width:310px;
}
.some-news.fullw-nw:nth-child(2) .some-news-link{
	width:299px;
}*/
/*.some-news-link:before {
	position:absolute;
	top:0;
	right:-52px;
	content:'';
	border-top:0 solid #ffffff;
	border-bottom:52px solid transparent;
	border-left:52px solid #ffffff;
}*/
/*.some-news-link:after{
	position:absolute;
	top:-1px;
	right:-52px;
	width:52px;
	height:1px;
	background:#DFE6E9;
	content:'';
}*/
.featured1 {
	position: relative;
	width: 649px;
	height: 337px;
    overflow: hidden;
}
.featured-item{
	overflow:hidden;
	position:relative;
}
.featured-item:before{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	content:'';
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 29%, rgba(0,0,0,0.65) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.featured-item img{
	width:100%;
	height:auto;
}
.featured2 {
	position: relative;
	width: 330px;
	overflow: hidden;
}
.size-item1{
	height:337px;
}
.size2 {
	height: 168px;
	margin-bottom:1px;
}
.size2:last-child{
	margin-bottom:0;
}
.featured-row{
	margin-bottom:1px;
}
.size3{
	width: 490px;
	height: 236px;
}
.size3:nth-child(2){
    width: 489px;
	/*width:520px;*/
}
.featured-news{
	margin-bottom:44px;
}
.layout-left {
	width: 650px;
	margin-bottom: 34px;
}
.layout-right {
	width: 301px;
	padding-bottom: 35px;
}
.news-preview-image img{
	width: 100%;
	height:auto;
}
.news-preview-image {
    position:relative;
    margin: 0 -10px 5px;
}
.layout-footer{
	margin-left: 230px;
	padding-top: 35px;
	padding-bottom: 30px;
	background: #D6DEE5;
}
.layout-footer .inner-section{
	padding-left:30px;
	width: 1010px;
}
.footer-deep {
	margin-left: 230px;
	padding-top: 20px;
	padding-bottom:20px;
	background:#CCD5DE;
	font-size:13px;
	color:#8C9AA9;
}
.footer-deep .inner-section{
	padding-left:30px;
	width: 1010px;
}
.commr-inner img{
	width:100%;
	height:auto;
}
.lfooter-left{
	width:604px;
}
.footer-nav{
	margin-bottom:27px;
}
.footer-nav ul li{
	float:left;
	margin-right:25px;
}
.footer-nav ul li:last-child{
	margin-right:0;
}
.footer-nav ul li a{
	color:#252525;
	font-size:15px;
	font-family: 'PT Sans', sans-serif;
}
.footer-nav ul li a:hover{
	color:#008251;
}
.age-block{
	width:60px;
	height:60px;
	border:3px solid #EBEDF3;
	border-radius:33px;
	text-align:center;
	font-size:22px;
	line-height:60px;
	font-weight:700;
	font-family: 'PT Sans', sans-serif;
	margin-right:20px;
}
.allr-block{
	width:300px;
	font-size:13px;
	color:#A1AEBB;
	padding-top:5px;
	margin-right:12px;
}
.write-block a{
	width:205px;
	height:46px;
	display:block;
	text-align:center;
	position:relative;
	color:#ffffff;
	line-height:46px;
	background:#B7C3CE;
}
.write-block a:hover{
	background:#006CB5;
}
.write-block{
	padding-top:10px;
}
.write-block a:before{
	position:absolute;
	top:0;
	left:0;
	width:19px;
	height:19px;
	content:'';
	/*background:url(../images/corn-top-left.png) no-repeat scroll;*/
}
.write-block a:hover:before{
	background-position:0 -19px;
}
.flogo-section{
	margin-right:30px;
}
.flogo-section a{
	display:block;
	margin-bottom:23px;
}
.flogo-section a:last-child{
	margin-bottom:0;
}
.counter{
	line-height:0;
	margin-bottom:14px;
}
.counter:last-child{
	margin-bottom:0;
}
.dev-text{
	margin-right:3px;
	padding-top:2px;
}
.dev-link a{
	color:#8C9AA9;
}
.dev-link{
	margin-right:10px;
	padding-top:2px;
}
.to-top{
	position:fixed;
	bottom:25px;
	right:10px;
	width:46px;
	height:46px;
	background:url(../images/to-top.png) no-repeat scroll;
	display:block;
	opacity:0;
	z-index:100;
	visibility:hidden;
}
.to-top:hover{
	background-position:0 -46px;
}
.to-top.active{
	opacity:1;
	visibility:visible;
}
.some-img {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 154px;
	height: 55px;
	overflow: hidden;
}
.some-img img {
    position: absolute;
    top: 0;
    /*left: 50%;*/
    max-width: none;
    /*width: 154px;*/
    height: 100%;
    width: 80px;
    /*margin-left: -78px;*/
}
/*.footer-tbr .some-news:nth-child(2){
	width:510px;
}*/
.catgories-some-news {
	position:absolute;
	top:-1px;
	left: 20px;
	height: 13px;
	padding: 0 6px;
	font-weight: 700;
	font-size: 9px;
	line-height: 13px;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing: 0.5px;
	background: #02D183;
}

.some-news-more{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
}
.date-nws{
	background:#F7F8FB;
	font-weight:700;
	padding:2px 7px;
	color:#008A56;
	margin-right:5px;
	display:inline-block;
}
.other-news-wrapper .date-nws {
    background: #fff;
}
.news-preview-header {
    position: relative;
	margin-bottom: 5px;
	padding-right: 35px;
}
.news-preview-header a{
	font-size:12px;
	font-weight: 700;
	color: #0787c9;
}
.news-preview-content a{
	font-size:16px;
	color:#252525;
	font-family: 'PT Serif', serif;
}
.news-preview-content a:hover{
	color:#007348;
}
.news-preview-text{
	font-size:13px;
	color:#666C6E;
	position:relative;
	overflow:hidden;
	max-height:62px;
	padding-top:4px;
	min-height:42px;
}
.news-preview-text a{
	color:#666C6E;
}
.layout-main-news-photo .news-preview-content a {

}
.news-preview-text:before {
    content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 18px;
	background: rgba(255,255,255,0.7);
}
.one-news-left .news-preview-text:before {
	background: rgba(255,255,255,0.7);
}
.other-news-wrapper .news-preview-text:before {
    background: rgba(244,245,248,0.7);
}
.short-description{
	position:absolute;
	bottom:17px;
	left:0;
	width:100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
	z-index:10;
}
.short-nws-title h2{
	color:#EEF2F4;
	font-size:36px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	margin-bottom:10px;
}
.short-nws-text{
	color:#94A3AF;
}
.featured-item:hover .short-description{
	bottom:17px !important;
}
.one-news-image:hover .short-description{
	bottom:17px !important;
}
.one-news-preview-item {
	position:relative;
}
.one-news-preview-item .one-news-image {
	line-height: 0;
}
.one-news-image:before{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	content:'';
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 29%, rgba(0,0,0,0.65) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.one-news-image.nobg:before{
    background: none !important;
}
.categories-label{
	padding-left:24px;
	margin-bottom:10px;
}
.short-nws-title{
	padding-left:24px;
	padding-right:24px;
}
.short-nws-text{
	padding-left:24px;
}
.categories-label a{
	padding:0 10px;
	height:19px;
	color:#ffffff;
	text-transform:uppercase;
	font-weight:700;
	font-size:12px;
	display:inline-block;
	position:relative;
	line-height:19px;
}
/*.categories-label.blue-lbl a{
	background:#127FD1;
}
.categories-label.blue-lbl a:before{
	position:absolute;
	top:0;
	right:-9px;
	width:9px;
	height:19px;
	background:url(../images/lbl-right.png) no-repeat scroll;
	content:'';
}
.categories-label.green-lbl a{
	background:#00AB6B;
}
.categories-label.green-lbl a:before{
	position:absolute;
	top:0;
	right:-9px;
	width:9px;
	height:19px;
	background:url(../images/lbl-right.png) no-repeat scroll 0 -19px;
	content:'';
}*/
.short-nws-title a {
	font-size:18px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	color:#EEF2F4;
	display:inline-block;
}
.icon-more{
	width:20px;
	height:18px;
	background:url(../images/link-arrow.png) no-repeat scroll;
	margin-left:6px;
	vertical-align:middle;
}
.grid-sizer{
	width:327px;
}
.news-preview-item {
    position: relative;
	width: 320px;
	margin-bottom: 8px;
	padding: 10px 10px 24px 10px;
	/*float:left;*/
}
.news-preview-item_image {
    box-shadow: 0.7px 1.9px 20px rgba(0, 0, 0, 0.1);
}
.news-preview-item.full-width-item{
	width: 100%;
	border-bottom: none;
	padding-bottom: 0;
}
.news-preview-item.full-width-item + .one-news-inner {
    margin-top: 30px;
}
.news-preview-item.full-width-item.inner-item-news {
    width: 100%;
    padding: 10px 10px 25px;
	background: #D6DEE5;
}
.news-preview-item.full-width-item.inner-item-news .news-preview-image {
    margin-left: 0;
    margin-right: 0;
}
.news-preview-item.full-width-item .banner-block {
    margin-left: -10px;
    margin-right: -10px;
}
.nws-left-item {
	width: 49.2%;
}
.carousel-wrapper{
	padding-left:52px;
	padding-right:52px;
	margin-bottom:25px;
	height:193px;
	overflow:hidden;
}
.preview-slider-item{
	width: 292px;
	height: 181px;
	position:relative;
	background-size:cover;
}
.preview-slider-item:after {
    content:'';
    display: block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 29%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.owl-item{
	/*width: 313px;*/
}
.psi-image img{
	width:100%;
	height:auto;
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 0;
    width: 52px;
    height: 181px;
    background: #D6DEE5;
}
.owl-prev {
	left:-52px;
}
.owl-next{
	right:-52px;
}
.owl-prev:hover,
.owl-next:hover{
	background:#CED7DF;
}
.prev-btn{
	width:18px;
	height:31px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-9px;
	margin-top:-15px;
	background:url(../images/carousel-arrow.png) no-repeat scroll;
}
.next-btn{
	width:18px;
	height:31px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-9px;
	margin-top:-15px;
	background:url(../images/carousel-arrow.png) no-repeat scroll -18px 0;
}
.popular-news {
    margin-bottom: 32px;
	padding: 0 0 20px 0;
}
.popular-news .pr-title {
    padding: 0 10px 0 15px;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #3a3b3b;
    text-transform: uppercase;
}
.popular-news .news-preview-item {
	float:none;
	width:auto;
	border:none;
	padding: 0 15px 25px;
	margin-bottom: 0;
	box-shadow: none;
	background-color: #dfe2ea;
}
.popular-news .news-preview-text:before {
	background:rgba(223,226,234,0.7);
}
.popular-news .news-preview-image {
    margin-left: -15px;
    margin-right: -15px;
}
.popular-choise {
    padding-bottom: 4px;
}
.popular-choise__title {
    float: left;
    padding-top: 5px;
}
.popular-choise__select select {
    width: 127px;
    height: 32px;
    padding-left: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.429;
    font-family: "Open Sans";
    color: #3a3b3b;
    text-transform: uppercase;
    border-color: 1px solid #e3e6ee;
}
.popular-choise__select option {
    padding-left: 10px;
    padding-right: 10px;
}
.pr-title{
	color:#ffffff;
	font-size:22px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	margin-bottom:8px;
}
.tabs-link-wrapper{
	margin-bottom:28px;
}
.tabs-link-wrapper a{
	display:inline-block;
	position:relative;
	background:#E3E9EE;
	text-align:center;
	line-height:25px;
	font-size:13px;
	color:#666C6E;
}
.tabs-link-wrapper a:nth-child(1){
	width: 74px;
	height:25px;
	margin-right:25px;
}
.tabs-link-wrapper a:nth-child(1):before{
	position:absolute;
	top:0;
	right:-25px;
	border:25px solid transparent;
	content:'';
	border-left:0px solid #E3E9EE;
	border-top:25px solid #E3E9EE;
}
.tabs-link-wrapper a.selected:nth-child(1):before{
	position:absolute;
	top:0;
	right:-25px;
	border:25px solid transparent;
	content:'';
	border-left:0px solid #EBEDF3;
	border-top:25px solid #EBEDF3;
}
.tabs-link-wrapper a:nth-child(2){
	width:80px;
	height:25px;
	margin-right:25px;
}
.tabs-link-wrapper a:nth-child(2):before{
	position:absolute;
	top:0;
	right:-25px;
	border:25px solid transparent;
	content:'';
	border-left:0px solid #E3E9EE;
	border-top:25px solid #E3E9EE;
}
.tabs-link-wrapper a.selected:nth-child(2):before{
	position:absolute;
	top:0;
	right:-25px;
	border:25px solid transparent;
	content:'';
	border-left:0px solid #EBEDF3;
	border-top:25px solid #EBEDF3;
}
.tabs-link-wrapper a:nth-child(2):after{
	position:absolute;
	bottom:0;
	left:-25px;
	border:25px solid transparent;
	content:'';
	border-right:0px solid #E3E9EE;
	border-bottom:25px solid #E3E9EE;
}
.tabs-link-wrapper a.selected:nth-child(2):after{
	position:absolute;
	bottom:0;
	left:-25px;
	border:25px solid transparent;
	content:'';
	border-right:0px solid #EBEDF3;
	border-bottom:25px solid #EBEDF3;
}
.tabs-link-wrapper a:nth-child(3){
	width:85px;
	height:25px;
}
.tabs-link-wrapper a:nth-child(3):before{
	position:absolute;
	bottom:0;
	left:-25px;
	border:25px solid transparent;
	content:'';
	border-right:0px solid #E3E9EE;
	border-bottom:25px solid #E3E9EE;
}
.tabs-link-wrapper a.selected:nth-child(3):before{
	position:absolute;
	bottom:0;
	left:-25px;
	border:25px solid transparent;
	content:'';
	border-right:0px solid #EBEDF3;
	border-bottom:25px solid #EBEDF3;
}
.tabs-link-wrapper a.selected{
	background:#EBEDF3;
	color:#008A56;
}
.other-news-wrapper .news-preview-item {
    position: relative;
	float: none;
	width: 100%;
	padding-bottom: 34px;
    background-image: url(../images/bg-shadow.png);
    background-repeat: repeat-x;
    background-position: bottom center;
	background-color: #f4f5f8;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.other-news-wrapper .news-preview-item:last-child {
    padding-bottom: 24px;
    margin-bottom: 0;
    background-image: none;
}
.commr-wrapper{
	background:#ffffff;
	padding:25px 40px 40px 40px;
	margin-bottom:30px;
}
.commr-title{
	margin-bottom:9px;
	text-transform:uppercase;
	font-size:13px;
	color:#B3B3B3;
}
.social-links{
	margin-bottom:11px;
}
.social-links a{
	margin:0 3px;
}
.zen-icon{
	width:20px;
	height:20px;
	background:url(../images/icon_zen.png) no-repeat scroll;
}
.insta-icon{
	width:20px;
	height:20px;
	background:url(../images/icon_Instagram.png) no-repeat scroll;
}
.face-icon{
	width:20px;
	height:20px;
	background:url(../images/icon_Facebook.png) no-repeat scroll;
}
.vk-icon{
	width:20px;
	height:20px;
	background:url(../images/vk.png) no-repeat scroll;
}
.tw-icon{
	width:20px;
	height:15px;
	background:url(../images/tw.png) no-repeat scroll;
}
.fb-icon{
	width:10px;
	height:18px;
	background:url(../images/fb.png) no-repeat scroll;
}
.yt-icon{
	width:14px;
	height:20px;
	background:url(../images/yt.png) no-repeat scroll;
}
.im-icon{
	width:19px;
	height:19px;
	background:url(../images/im.png) no-repeat scroll;
}
.ok-icon{
	width:12px;
	height:20px;
	background:url(../images/ok.png) no-repeat scroll;
}
.rss-icon{
	width:15px;
	height:20px;
	background:url(../images/rss.png) no-repeat scroll;
}
.tg-icon{
	width:18px;
	height:18px;
	background:url(../images/tg.png) no-repeat scroll;
}
.mail-icon {
    width: 17px;
    height: 20px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAMCAMAAABYzB2OAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAnFBMVEV1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIt1mIv///+Jh45lAAAAMnRSTlOIAXC+BmWnBYfBDWD8qgN7tgdi/qh4rglva6F+na9pkH+xcsCVqXbDn6KCugtdj8gOWIghZFsAAAABYktHRDM31XxeAAAACXBIWXMAAAsSAAALEgHS3X78AAAAgklEQVQI12NgYGQyQgLMLKwMRmzsHAgRTi5uHgYjI14+fpiIgKCQsBFQyEiERRQiIiYuwWMEFjISEJcEMo2k+KRBPAaIBnGgBhlGCAdCyorzycnz8SkghBRZlJTFGVVU+dRgQmDj1TWQjNfk04I5QltHlwcopMmnh3CqvoEhDwOmhwDKjx+9U0bvnQAAAABJRU5ErkJggg==');
    background-position: center;
    background-repeat: no-repeat;
    opacity: .6;
}
.vk-icon:hover{
	background-position:0 -20px;
}
.tw-icon:hover{
	background-position:0 -15px;
}
.fb-icon:hover{
	background-position:0 -18px;
}
.yt-icon:hover{
	background-position:0 -10px;
}
.im-icon:hover{
	background-position:0 -19px;
}
.ok-icon:hover{
	background-position:0 -20px;
}
.rss-icon:hover{
	background-position:0 -20px;
}
.tg-icon:hover{
	background-position:0 -20px;
}
.mail-icon:hover {
    opacity: 1;
}
.news-preview-header a:hover{
	color:#005CA1;
}
.banner-block img{
	width:100%;
	height:auto;
}
.comment-news-wrapper{
	background:#D6DEE5;
	position:relative;
	height:540px;
	margin-bottom:30px;
}
.comment-title{
	padding-left:15px;
	padding-top:24px;
	font-size:22px;
	font-weight:700;
	position:relative;
	font-family: 'PT Serif', serif;
	margin-bottom:20px;
}
.comment-title:before{
	position:absolute;
	top:32px;
	left:185px;
	width:24px;
	height:23px;
	content:'';
	background:url(../images/comm.png) no-repeat scroll;
}
.comment-item{
	padding-left:15px;
	margin-bottom:35px;
}
.comment-user{
	margin-bottom:10px;
}
.user-name{
	font-weight:700;
	margin-right:9px;
	color:#008A56;
}
.comment-data{
	display:inline-block;
	padding:2px 7px;
	background:#E3E9EE;
}
.comment-text{
	margin-bottom:8px;
	position:relative;
	color:#666C6E;
	font-size:13px;
	overflow:hidden;
	max-height:60px;
	min-height:45px;
	padding-right:10px;
}
.comment-text:before{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	content:'';
	background:rgba(214,222,229,0.7);
	height:20px;
}
.comment-news-title a{
	color:#005CA1;
	font-weight:700;
	font-family: 'PT Serif', serif;
}
.comment-news-title a:hover{
	color:#007348;
}
.mCSB_inside>.mCSB_container{
	margin-right:10px;
}
.mCSB_scrollTools{
	width:5px;
}
.mCSB_scrollTools .mCSB_draggerRail{
	background-color:#C1C6D3;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:5px;
	background-color:#9199B1;
}
.mCSB_scrollTools .mCSB_draggerRail{
	width:auto;
}
.news-preview-main-title{
	font-size:18px;
	font-weight:700;
}
.popular-news .date-nws {
	background: #fff;
}
a.lbl-tag,
.categories-label.green-lbl a,
.categories-label.blue-lbl a {
    position: absolute;
    right: 0;
    top: 2px;
    display: inline-block;
    vertical-align: middle;
	padding: 0;
	width: 21px;
    height: 21px;
    font-size: 0;
    line-height: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
}
.categories-label.green-lbl a,
.categories-label.blue-lbl a {
    position: relative;
}
a.lbl-tag:before,
.categories-label.green-lbl a:before,
.categories-label.blue-lbl a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAMAAACeyVWkAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABPlBMVEUAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sAq2sFrG4LrnEDrG2s5M////+O2b0ErG1LxJZVx5xkzKX9/v7d9Ou56Nbt+fT0+/lZyJ6G17ne9Oyq482c3sVqzqmd3sZTxpur486q485YyJ7g9e1fyqKK2byM2bzY8uhSxprv+vWn4sz+///8/v2Y3cO+6tnc8+tlzKbr+PP+//5Wx52R27900a6o4sxZyJ+i4MmG17jU8ebm9vBLw5YrlCq/AAAANXRSTlMAL5fa/OqxVAM0uf7cYwKFwRml3x7RCTb9ifcXc5i65vvvsstVjQHbMmTC8yZRh/a4JRbxMwteNX0AAAABYktHRDpOCcT6AAAACXBIWXMAAAsSAAALEgHS3X78AAABCklEQVQY02NggABGJmYWVjZ2DgYkwMnFbQoGPLx8MDE+fhZTOBAQhAoKmSIDYRGwKL8pKhAVAwqKS0A4Zubm5hZgliRQlAuqxNLKysoazJKSZmAE2m5ja2dn7+Do5OziamsDFJZhkAWSbu4eVlaeXt4+vlZWbkC+HAMzkPTzN7UKCAwKDgkNs/ID8uUZFECidqZW4eGWEZFR0WBRBQZWqGhMbJxVfEIcWFSRQQlqglViUnJKqhVYVJlBBUimgWyzSrfMAJJpQL4qg5o60GWZdjCQCXKZBgODpik64AIFjhaaoLYOKHQEhVEEWXQhQSkiiqxSFxbsYnr6MEEDQ6QoMpLhklcwVlY1gXABQlRLrFRldJEAAAAASUVORK5CYII=');
}
a.lbl-tag.blue-lbl:before,
.categories-label.blue-lbl a:before {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAMAAACeyVWkAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA4VBMVEUSf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9F/uuYVgdESf9ESf9Hg7vleqOASf9ESf9HJ4vQ/l9kSf9ESf9HR5vYiiNTm8fpqruL2+v2Jv+gbhNMSf9ErjNYSf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9H///8TgNFUHvDbAAAASHRSTlMAL5fa+/XIdxI0uf7zkBMChfzpNbztPcEmZNwzVt72jrLp4Mvq5Ozv/ff6/Pr7+v5V/I0B2zLCGd9RHtF0CYf2UxZz5vr4pAWuNUBuAAAAAWJLR0RJhwXkfAAAAAlwSFlzAAALEgAACxIB0t1+/AAAALRJREFUGNN1kdcSgjAQRVexIoLYe+8VO/auif//QTKJiUH0PN2cuZPZbAAoLrfk8fr8ARAIyiFEUMIqc1pER5xojEo1jkQSSdJMITtK2rIZ9I1sVbMOi3KQZ7FQ5LYEZRZxpfoeD9Wgzi3GjSaNLWgLFne6JOpit9d/si6/dzAcIX6vweL4M9kEpjPnvPM/bwNt8WsPsDRtUl/RVa43ot2yte/2B+bMo/BFp7N8ud6ku/EgxxewblqRNABlnwAAAABJRU5ErkJggg==');
}
.news-preview-item_image a.lbl-tag {
    top: auto;
    bottom: -35px;
}
.popular-news a.lbl-tag {
    top: 0;
    bottom: auto;
}
/*a.lbl-tag.green-lbl:before{
	position:absolute;
	top:0;
	right:-9px;
	width:9px;
	height:19px;
	background:url(../images/lbl-right.png) no-repeat scroll 0 -19px;
	content:'';
}*/
/*a.lbl-tag.blue-lbl{
	background:#127FD1;
}
a.lbl-tag.green-lbl{
	background:#00AB6B;
}*/

.full-news-lbl {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:10;
}
.full-news-lbl a{
	display:inline-block;
	height:36px;
	background:#00C178;
	color:#ffffff;
	font-size:20px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	line-height:36px;
	padding-left:20px;
	padding-right:20px;
	position:relative;
}
.full-news-lbl a:before{
	position:absolute;
	width:18px;
	height:36px;
	top:0;
	right:-18px;
	content:'';
	background:url(../images/big-lbl.png) no-repeat scroll;
}
.layout-main-news-photo .full-news-lbl,
.sidebar-main-news .full-news-lbl {
    display: none;
}
h2 .icon-more{
	vertical-align:top;
}
.lan-item{
	margin-bottom: 20px;
    padding-bottom: 24px;
    border-bottom: 5px solid #f2f7f5;
}
.lan-image{
	width:150px;
}
.lan-image img{
	width:100%;
	height:auto;
}
.lan-dscr {
	width: 475px;
}
.lan-item .date-nws{
	font-size:12px;
	font-weight:normal;
}
.lan-title{
	margin-bottom:13px;
}
.lan-style{
	font-size:20px;
	font-weight:700;
	color:#025899;
	font-family: 'PT Serif', serif;
}
.lan-style:hover{
	color:#007348;
}
.lan-text{
	font-size: 13px;
    color: #666C6E;
    position: relative;
    overflow: hidden;
    height: 62px;
}
.lan-text a{
	color: #666C6E;
}
.lan-text:before {
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:23px;
	background: rgba(255,255,255,0.7);
}
.date-filter{
	padding:8px 15px;
	background:#DFE5EB;
	position:relative;
	margin-bottom:45px;
}
.icon-df{
	width:24px;
	height:24px;
	background:url(../images/dpicker.png) no-repeat scroll;
	margin-right:10px;
}
.nw-df-date{
	font-size:20px;
	font-weight:700;
	color:#005ca1;
}
.date-choise{
	position:absolute;
	top:0px;
	right:30px;
	font-size:14px;
	color:#7D8F9B;
	height:41px;
}
.date-choise input[type="text"]{
	background:none;
	font-size:14px;
	color:#7D8F9B;
	width:230px;
	cursor:pointer;
	padding-left:124px;
	height:41px;
	text-align:right;
}
.date-choise:after{
	position:absolute;
	top:32px;
	right:0;
	width:90px;
	height:1px;
	border-bottom:1px dashed #7D8F9B;
	content:'';
	background:#DFE5EB;
}
.date-choise:before{
    position: absolute;
    top: 50%;
    right: -14px;
    width: 8px;
    height: 4px;
    margin-top: -2px;
    background: url(../images/arrow2.png) no-repeat scroll;
    content: '';
}
.pagination{
	padding-top:20px;
}
.pagination a,
.pagination span{
	display:inline-block;
	vertical-align:top;
}
.page-num{
	width:30px;
	height:30px;
	border:2px solid #E1E7EC;
	text-align:center;
	color:#6E7476;
	line-height: 27px;
	background:#E1E7EC;
}
.page-num:hover{
	background:#D4DDE4;
	border-color:#D4DDE4;
	color:#6E7476;
}
.page-num.current{
	border-color:#CDD5DB;
	background:none;
}
.page-num.dotter{
	background:none;
	border-color:transparent;
}
.link-arrow{
	width:24px;
	height:30px;
}
.prev-p{
	background:url(../images/pg-arrows.png) no-repeat scroll 0 50%;
	opacity:0.5;
}
.next-p{
	background:url(../images/pg-arrows.png) no-repeat scroll -24px 50%;
	opacity:0.7;
}
.link-arrow:hover{
	opacity:1;
}
.pg-text{
	color:#7D828F;
	margin:0 16px;
	height:30px;
	line-height:30px;
}
.pg-text.no-page{
	color:#B5B9C2;
}
.pg-text:hover{
	color:#616674;
}
.mrg25{
	margin-bottom:25px;
}
.short-news-header {
	display: block;
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.875;
	color: #005ca1;
	text-transform: uppercase;
}
.short-news-wrapper {
	position: relative;
    height: 666px;
    background: #fff;
	border: 1px solid #f5f7fc;
}
.all-news-btn{
	margin-bottom:30px;
}
.all-news-btn a, .comment-btn a{
	color:#ffffff;
}
.short-news-item{
	padding:15px 15px 0 15px;
}
.shrt-title{
	font-size:13px;
	color:#252525;
}
.shrt-title:hover{
	color:#008A56;
}
.hot-news{
	padding:7px 9px;
	background:#F7F8FB;
}
.hot-news .shrt-title{
	color:#008A56;
	font-weight:600;
}
.all-news-btn a {
	display:block;
	padding:13px 0;
	text-align:center;
	font-weight:700;
	text-transform:uppercase;
	position:relative;
	background:#005CA1;
}
.all-news-btn a:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    content: '';
    background: url(../images/corn-top-left.png) no-repeat scroll 0 -19px;
}
.short-news-item a.lbl-tag {
    position: relative;
    top: -1px;
}
/*a.lbl-tag.small-lbl{
	padding:0 8px;
	font-size:9px;
	height:13px;
	line-height:13px;
}
a.lbl-tag.small-lbl.blue-lbl:before {
    position: absolute;
    top: 0;
    right: -7px;
    width: 7px;
    height: 13px;
    background: url(../images/lbl-small.png) no-repeat scroll;
    content: '';
}
a.lbl-tag.small-lbl.green-lbl:before {
    position: absolute;
    top: 0;
    right: -7px;
    width: 7px;
    height: 13px;
    background: url(../images/lbl-small.png) no-repeat scroll 0 -13px;
    content: '';
}*/
a.lbl-tag:hover{
	color:#ffffff;
}
.all-news-btn a:hover{
	background:#006CB5;
}
.page-title {
	position: relative;
}
.page-title_with_icon {
	margin-bottom: 20px;
}
.page-title_with_icon h1 {
	position: relative;
	display: inline-block;
	min-width: 655px;
	max-width: 100%;
	margin: 0;
	padding-right: 85px;
}
.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	font-family: 'PT Serif', serif;
}
.page-title__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
    text-align: right;
    line-height: 60px;
}
.page-title__icon img {
	max-width: 100%;
	max-height: 100%;
}

.profile-iocn{
	width:15px;
	height:15px;
	background:url(../images/profile.png) no-repeat scroll;
	margin-right:7px;
	display:block;
	margin-top:2px;
}
.author-name a{
	color:#8C9CA7;
	display:block;
}
.author-name span{
	color:#8C9CA7;
	display:block;
}
.author-name a:hover{
	color:#005CA1;
}
.author-name{
	margin-bottom:25px;
	position:relative;
}
.date-nws-wrapper .author-name {
    margin-left: 15px;
    margin-bottom: 0;
}
.date-nws-wrapper{
	padding: 7px 10px;
	background: #e8eff0;
	margin-bottom:13px;
}
.icon-dn{
	width:16px;
	height:16px;
	background:url(../images/clock.png) no-repeat scroll;
	margin-right:6px;
	margin-top:2px;
}
.nw-dn-date{
	color:#7D8F9B;
}
.nw-categories{
	font-size:12px;
	color:#0076C9;
}
.one-news-image{
	position:relative;
	margin-bottom: 25px;
	overflow:hidden;
}
.one-news-image img{
	width:100%;
	height:433px;
}
.rights-photo {
    font-weight: 400;
    font-size: 12px;
    line-height: 2.17;
    font-family: "Open Sans";
    color: #8a9da7;
	background-color: #e8eff0;
}
.one-news-preview-item .rights-photo {
    padding: 2px 10px;
}
.one-news-preview-item .rights-photo:before {
    content: "";
    position: relative;
    top: -2px;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAP1BMVEWuvMPo7/C8yM67yM3n7u/T3eDN19vd5eje5ujl7O7L1tqzwce4xMrX4OPH0tavvcTa4+W2w8m3xMq6xsz///8/5vy8AAAAAWJLR0QUkt/JNQAAAAlwSFlzAAALEgAACxIB0t1+/AAAAEJJREFUCNdjYEADjEgAzGViQuUyo3DhgAXMZWFlYmNhZGRn4gByObm4gSQPLx8/A4grgLAExOUQhAAhYWF2THvJBwCrXQGhukm44gAAAABJRU5ErkJggg==');
}
.one-news-preview-text{
	padding-bottom:25px;
	margin-bottom:10px;
	font-size:18px;
	color:#5D8DA4;
	font-weight:600;
	line-height:30px;
	border-bottom:5px solid #DFE6E9;
}
.frst-letter{
	width:8px;
	height:15px;
	background:url(../images/letter.png) no-repeat scroll;
	margin-right:12px;
}


.one-news-text p{
	font-size:18px;
	line-height:26px;
	font-family: 'PT Serif', serif;
}
.one-news-text{
	font-size:18px;
	line-height:26px;
	font-family: 'PT Serif', serif;
}
.one-news-text .date-nws{
	font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}
.one-news-text img{
	margin: 10px 0;
}

.one-news-text .cit-image img{
	margin:0;
}

.divider.dleft{
	width: 355px;
}
.divider.dright {
	width: 264px;
	background: #fff;
	-webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.cit-image{
	margin-bottom:15px;
}
.cit-image img{
	width:100%;
	height:auto;
}
.news-block-cit {
	background: #fff;
}
.news-block-cit-left-dvd{
	background:#F5F6F8;
	padding:20px 18px;
}
.news-block-cit-left-dvd .news-preview-content a{
	font-size:15px;
	font-weight:700;
	color:#005CA1;
}
.news-block-cit-left-dvd .news-preview-content a:hover{
	color:#007348;
}
.news-block-cit-left-dvd .one-news-item .date-nws{
	background:none;
	padding-left:0;
	color:#252525;
}
.nomargin h1{
	margin-bottom:10px;
}
.cit-text{
	padding:0 15px 20px 15px;
}
.cit-date {
	position: relative;
	margin-bottom:8px;
}
.cit-date .date-nws {
	background: #fcfdfd;
}
.cit-title a{
	font-size:16px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	color:#005CA1;
}
.cit-title a:hover{
	color:#007348;
}
.divider-news{
	margin-bottom:26px;
}
.cit-arrow{
	width:20px;
	height:18px;
	background:url(../images/cit-arrow.png) no-repeat scroll;
	vertical-align:middle;
}
blockquote {
	font-size:26px;
	color:#5D8DA4;
	margin-left:0;
	margin-right:0;
	padding:30px 23px;
	position:relative;
	font-family: 'PT Serif', serif;
	background: #fff;
	-webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
blockquote:before{
	position:absolute;
	top:0;
	left:0;
	width:4px;
	height:100%;
	background:#00985F;
	content:'';
}
.dfclon{
	width: 310px;
}
.one-news-inner {
	margin-bottom: 30px;
	padding: 10px 0;
	background: #fff;
}
.one-news-inner .news-preview-image {
    margin-left: 0;
    margin-right: 0;
}
.onen-title {
	margin-bottom: 20px;
	padding-bottom: 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.429;
    font-family: "Open Sans";
    color: #3a3b3b;
    text-transform: uppercase;
    border-bottom: 4px solid #dfe2ea;
}
.one-news-left {
	width: 48%;
	padding: 0 10px 15px 10px;
	background: #fff;
	box-shadow: 0.7px 1.9px 20px rgba(0, 0, 0, 0.1);
}
.one-news-left .news-preview-image {
    margin-left: -10px;
    margin-right: -10px;
}
.one-news-right {
	width: 48%;
}
.one-news-item {
	margin-bottom: 20px;
    padding-bottom: 24px;
    /*border-bottom: 5px solid #C8D4DE;*/
}
.one-news-item:last-child{
	border-bottom:none;
	margin-bottom:0;
	padding-bottom:0;
}
.one-news-item .news-preview-image {
    margin-left: 0;
    margin-right: 0;
}
.one-news-item .date-nws{
	background:#EBEDF3;
}
.one-news-left .date-nws{
	background:#EBEDF3;
}
.on-footer-row{
	margin-bottom:10px;
	color:#8C9CA7;
}
.on-footer-row a{
	color:#8C9CA7;
}
.on-footer-row a:hover{
	color:#007348;
}
.bld{
	font-weight:700;
}
.on-footer-row:last-child{
	margin-bottom:0;
}
.one-news-footer{
	margin-bottom:30px;
}
.one-news-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 60px 0 25px;
}
.one-news-nav__btn {
	position: relative;
	display: inline-block;
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	font-weight: 700;
	font-size: 12px;
	line-height: 40px;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #b7c3ce;
}
.one-news-nav__btn:hover,
.one-news-nav__btn:active {
	color: #fff;
	background-color: #006cb5;
}
.one-news-nav__btn_left:after,
.one-news-nav__btn_right:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 15px 15px 0 0;
border-color: #c5cfd8 transparent transparent transparent;
}
.one-news-nav__btn_left:hover:after,
.one-news-nav__btn_right:hover:before {
	border-color: #127fd1 transparent transparent transparent;
}
.one-news-nav__btn_left:before,
.one-news-nav__btn_right:after {
	content: "";
	position: relative;
	top: -1px;
	display: inline-block;
	vertical-align: middle;
	width: 11px;
	height: 9px;
}
.one-news-nav__btn_left:before {
	margin-right: 6px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAJCAMAAADTuiYfAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAQlBMVEX///////////////////////////////////////////////////////////////////////////////////////8Alm/HAAAAFXRSTlMAAZrpjJF3pGTcRkAq9PZjKHWLkpn6z7XSAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADxJREFUCNdjYGBgZGJmgAEWUVYYk02UnRHK5BDl5OIGAx4GXlEY4GPgh4sLMDAIItQzMAiJCsPZjCJQ8wGIlAKnM5Ur3gAAAABJRU5ErkJggg==');
}
.one-news-nav__btn_right:after {
	margin-left: 6px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAJCAMAAADTuiYfAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAQlBMVEX///////////////////////////////////////////////////////////////////////////////////////8Alm/HAAAAFXRSTlMA6ZoBkYykdypARtxk9vQoY3WSi5lqYDxAAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADxJREFUCNdjYAADRiZmBhhgEWWFs5nZRNkZGDg4wYCLW5SHgVcUBvgY+OHiAgj1gjC9QqLCcHMYRYDmAwCAmgKWUTnXjAAAAABJRU5ErkJggg==');
}
.share-block {
	padding:13px 20px 10px 20px;
	background:#F5F6F8;
	margin-bottom:25px;
}
.share-title{
	margin-right:15px;
	margin-top:3px;
}
.comment-btn a{
    display: block;
    padding: 13px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    background: #005CA1;
	color:#ffffff;
}
.comment-btn{
	margin-bottom:25px;
}
.comment-btn a:hover {
    background: #006CB5;
}
.comment-btn a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    content: '';
    background: url(../images/corn-top-left.png) no-repeat scroll 0 -19px;
}
.ono-left,
.ono-right {
	width: 47.8%;
}
.ono-left-title{
	font-size:22px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	position:relative;
	padding:13px 11px;
	background:#F7F8FB;
	margin-bottom:20px;
	color:#005CA1;
}
.ono-left-title:before{
	position:absolute;
	top:50%;
	margin-top:-10px;
	right:11px;
	width:18px;
	height:20px;
	content:'';
	background:url(../images/arrow-bottom.png) no-repeat scroll;
}
.one-news-other-news-wrapper{
	margin-bottom:30px;
}
.subscribe-form-wrapper {
    margin-bottom: 25px;
	padding: 25px 20px 60px 20px;
	background-color: #fff;
	background-position: left bottom;
	background-repeat: repeat-x;
	background-image: url(../images/sbb-bg.png);
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.subscribe-form-wrapper_unsubscribe {
    padding: 55px 30px;
    background-image: url(../images/sbb-bg.png),
                      url(../images/sbb-bg.png);
    background-position: left bottom, left top;
}
.subscribe-form-wrapper_unsubscribe .sbf-content {
    width: 100%;
    margin-right: 0;
}
.subscribe-form-wrapper_unsubscribe .form__label_checkbox {
    color: #000;
}
.unsubscription__text {
    margin-bottom: 35px;
    line-height: 1.786;
    color: #3b3b3b;
}
.subscribe-form-wrapper_unsubscribe .sbf-fields-wrapper {
    margin-bottom: 25px;
}
.subscription-success {
    width: 680px;
    padding: 55px 40px 60px 40px;
    background-color: #fff;
    background-position: left bottom;
    background-repeat: repeat-x;
    background-image: url(../images/sbb-bg.png);
}
.subscription-success__title {
    display: block;
    margin-bottom: 20px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.429;
    color: #000;
}
.subscription-success__text {
    color: #3b3b3b;
    font-weight: 400;
}
.subscription-success__text p {
    line-height: 1.786;
}
.sbf-icon{
	width:48px;
}
.sbb{
	width:48px;
	height:32px;
	background:url(../images/sbb.png) no-repeat scroll;
	display:block;
}
.sbf-content{
	width: 485px;
	margin-right: 55px;
}
.sbf-title{
	margin-bottom:20px;
	font-weight:700;
}
.sbf-text {
	display: block;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.46;
	color: black;
}
.sbf-fields-wrapper{
	position:relative;
	background:#F3F5F9;
	border-radius:5px;
	height:34px;
	margin-bottom: 20px;
}
.sbf-nws li{
	margin-bottom:7px;
}
.sbf-nws a{
	color:#1167A7;
	font-size:15px;
	font-family: 'PT Serif', serif;
}
.sbf-fields-wrapper input[type="text"]{
	height:34px;
	width:370px;
	padding-left:18px;
	font-size:13px;
	background:#F3F5F9;
	border-radius:5px 0 0 5px;
}
.sbf-fields-wrapper input[type="text"]:focus{
	background:#ECEEF4;
	color:#029C62;
}
.sbf-fields-wrapper input[type="submit"]{
	width:153px;
	height:34px;
	border-radius:5px;
	position:absolute;
	top:0;
	right:0;
	cursor:pointer;
	background:#D6DEE5;
}
.sbf-fields-wrapper input[type="submit"]:hover{
	background:#AEBAC5;
	color:#ffffff;
}
.author-image{
	width:55px;
	height:55px;
	border:4px solid #EBEDF3;
	position:absolute;
	top:0;
	left:28px;
	z-index:10;
}
.author-page{
	padding-left:100px;
}
.search-field-wrapper{
	padding:12px;
	background:#DFE5EB;
	margin-bottom:25px;
}
.search-field{
	background:#ffffff;
	position:relative;
	height: 38px;
	border:2px solid #ffffff;
}
.search-field input[type="text"]{
	height:34px;
	padding-left:15px;
	width:540px;
}
.search-field button{
	width:93px;
	height:34px;
	position:absolute;
	top:0;
	right:0;
    background:#006CB5;
	color:#ffffff;
	font-weight:600;
	cursor:pointer;
	font-family: 'Open Sans', sans-serif;
}
.search-field.grey-form button{
	width:93px;
	height: 34px;
	position:absolute;
	top:0;
	right:0;
    background:#B7C3CE;
	color:#ffffff;
	font-weight:600;
	cursor:pointer;
}
.search-field button:before{
	position:absolute;
    top:0;
    left:0;
    width:19px;
    height:19px;
    content:'';
    background:url(../images/corn-top-left.png) no-repeat scroll 0 -19px;
}
.search-field.grey-form button:before{
	position:absolute;
    top:0;
    left:0;
    width:19px;
    height:19px;
    content:'';
    background:url(../images/corn-top-left.png) no-repeat scroll 0 0;
}
.search-field button:hover{
	background:#005D9B;
}
.search-field.grey-form button:hover{
	background:#005D9B;
}
.search-field.grey-form button:hover:before{
	background:url(../images/corn-top-left.png) no-repeat scroll 0 -19px;
}
.search-field.grey-form{
	margin-bottom:8px;
}
.error-page{
	position:relative;
	/*width:682px;*/
	height: 482px;
	background:url(../images/404.jpg) no-repeat scroll;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.erp-1{
	font-size:25px;
	font-weight:700;
	font-family: 'PT Serif', serif;
	color:#99A7B3;
	padding-top:213px;
	margin-bottom:30px;
}
.erp-2{
	color:#99A7B3;
	line-height:22px;
}
.erp-2 a{
	color:#008A56;
	text-decoration:underline;
}
.erp-2 a:hover{
	text-decoration:none;
}
.card-news-item {
	display:inline-block;
	vertical-align:top;
	width: 210px;
	margin-right:6px;
	margin-bottom:25px;
}
.card-news-item:nth-child(3n+3){
	margin-right:0;
}
.cn-image-wrapper{
	width:220px;
	height:150px;
	display:table;
	background:#ffffff;
}
.cn-image{
	display:table-cell;
	width:220px;
	height:150px;
	vertical-align:middle;
	text-align:center;
}
.cn-name{
	padding-top:10px;
	margin-bottom:3px;
}
.cn-name a{
	font-size:16px;
	font-weight:bold;
	color:#005ca1;
	font-family: 'PT Serif', serif;
}
.cn-name a:hover{
	color:#008A56;
}
.cn-site-name a{
	font-size:13px;
	color:#666C6E;
	text-decoration:underline;
}
.cn-site-name a:hover{
	text-decoration:none;
}
.card-news-wrapper{
	padding-top:25px;
}
.cat-select{
	width:163px;
	height:30px;
	position:relative;
}
.cat-title{
	margin-right:10px;
	color:#000000;
	padding-top:5px;
}
.date-ttp{
	width:114px;
	height:30px;
}
.selecter{
	margin:0;
}
.selecter-selected{
	padding-top:4px;
	padding-bottom:4px;
	background:#EDF0F4;
	color:#7D8F9B;
}
.selecter-selected:before{
	background:#D5DCE3;
	width:1px;
	height:100%;
	position:absolute;
	top:0;
	right:30px;
	content:'';
}
.selecter-selected:after{
	right:11px;
	border-top: 5px solid #9DABB4;
}
.selecter-item{
	padding-top:5px;
	padding-bottom:5px;
	font-size:14px;
	color:#7D8F9B;
}
.selecter-options{
	box-shadow:none;
	border:none;
}
.selecter.open .selecter-selected{
	border-radius:0;
}
.date-ttp input[type="text"]{
	width: 114px;
	height: 30px;
	padding-left:12px;
	background:#EDF0F4;
	color:#7D8F9B;
}
.date-title{
	padding-top:5px;
	margin-right:10px;
	color:#000000;
}
.date-divider{
	color:#7D8F9B;
	margin:0 5px;
	padding-top:5px;
}
.grey-form-wrapper{
	margin-bottom:50px;
}
.tag-list-wrapper{
	padding-top:12px;
}
.tc-news-item{
	display:inline-block;
	width: 310px;
	vertical-align:top;
	margin-right:26px;
	margin-bottom:25px;
	padding-bottom: 24px;
    border-bottom: 5px solid #DFE6E9;
}
.tc-news-item:nth-child(2n+2){
	margin-right:0;
}
.tc-news-item .news-preview-content{
	height:66px;
	max-height:66px;
}
.two-column-list-news{
	padding-top:12px;
}
.section-list-wrapper{
	padding:13px;
	background: #f2f6f7;
	margin-bottom: 25px;
}
.section-list-wrapper ul li{
	display:inline-block;
	width: 12%;
	vertical-align:top;
	margin-bottom:8px;
	margin-left: 8px;
}
.section-list-wrapper ul li a{
	color:#005B9F;
	padding:2px 3px;
}
.section-list-wrapper ul li a:hover{
	text-decoration:none;
	background:#005B9F;
	color:#ffffff;
}
.section-list-wrapper ul li a.current-section{
	background:#005B9F;
	color:#ffffff;
}
.editin-left {
	width: 320px;
	position:relative;
	font-size:16px;
	font-weight:bold;
	font-family: 'PT Serif', serif;
}
.editin-left:before{
	position:absolute;
	bottom:5px;
	left:0;
	width:100%;
	height:1px;
	content:'';
	background:#D6DEE5;
}
.editin-left span{
	padding-right:11px;
	background: #fff;
	padding-bottom:5px;
	position:relative;
	z-index:5;
}
.edition-right{
	width:320px;
}
.er-text{
	font-size:16px;
	font-family: 'PT Serif', serif;
	margin-bottom:3px;
	line-height:26px;
}
.edition-row1{
	margin-bottom:30px;
}
.edition-row1:last-child{
		margin-bottom:0;
}
.edition-wrapper{
	padding-bottom:45px;
	margin-bottom:45px;
	border-bottom:5px solid #DFE6E9;
	padding-top:13px;
}
.edition-text{
	color:#7D828F;
	padding-bottom:45px;
	margin-bottom:45px;
	border-bottom:5px solid #DFE6E9;
}
.edition-text p{
	line-height:24px;
}
.noborder{
	border-bottom:none;
	padding-bottom:60px;
	margin-bottom:0;
}
.callback-form-wrapper {
	padding: 40px 20px 75px 20px;
	background: url(../images/sbb-bg.png) repeat-x scroll left bottom #ffffff;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.cf-title{
	font-size:22px;
	font-weight:700;
	color:#000000;
	margin-bottom:25px;
}
.cf-fields-wrapper{
	margin-bottom:10px;
}
.cf-fields-wrapper:last-child{
	margin-bottom:32px;
}
.cf-fields-wrapper input[type="text"]{
	width: 100%;
	height: 34px;
	border-radius:5px;
	background:#F3F5F9;
	padding-left:15px;
}
.cf-fields-wrapper input[type="text"]:focus{
	background:#ECEEF4;
	color:#029C62;
}
.cf-fields-wrapper textarea:focus{
	background:#ECEEF4;
	color:#029C62;
}
.cf-fields-wrapper textarea{
	width: 100%;
	height: 140px;
	border-radius: 5px;
	padding: 15px;
	font-family: 'Open Sans', sans-serif;
	background: #F3F5F9;
	resize: vertical;
}
.cf-row button{
	width:187px;
	height:44px;
	position:relative;
	background:#00AB6B;
	color:#ffffff;
	text-transform:uppercase;
	font-weight:700;
	cursor:pointer;
	font-family: 'Open Sans', sans-serif;
}
.cf-row button:hover{
	background:#00905A;
}
.cf-row button:hover:before{
	background-position:0 -22px;
}
.cf-row button:before{
	position:absolute;
	top:0;
	left:0;
	width:22px;
	height:22px;
	content:'';
	background:url(../images/corn-top-left-green.png) no-repeat scroll;
	font-family: 'Open Sans', sans-serif;
}
.lan-item.all-list .lan-image{
	width:280px;
	height:185px;
	overflow:hidden;
}
.lan-item.all-list .lan-dscr{
	width: 350px;
}
.story-item{
	display:inline-block;
	vertical-align:top;
	width: 324px;
	height:208px;
	position:relative;
	margin-right:-3px;
	margin-bottom:1px;
}
.story-image{
	position:relative;
	overflow:hidden;
	height:208px;
}
.story-image img{
	width:100%;
	height:auto;
}
.static-region-wrapper-map{
	position:relative;
	margin-bottom:100px;
}
.inner-region-page a,
.inner-region-city a {
    display: inline-block;
    color: #0076C9;
    margin-left: 8px;
	padding:0 4px;
    position: relative;
	border-bottom:none;
}
.inner-region-page ul li,
.inner-region-city ul li {
    margin-bottom: 6px;
}
.mrl-region-inner{
	width:520px;
}
.map-region-list-inner-page .mrl-title{
	background:#D5DEE5;
}
.map-region-list-inner-page .mrl-list-region ul{
	width: 110px;
}
.inner-region-page a:hover,
.inner-region-page a.selected,
.inner-region-city a:hover {
    background: #0E6FB8;
    color: #ffffff;
}
.static-region-wrapper-map .svg-label-map{
	font-size:11px;
}
.static-region-wrapper-map .lbl-map1{
	top:84px;
	left:122px;
}
.static-region-wrapper-map .lbl-map2{
	top:120px;
	left:235px;
}
.static-region-wrapper-map .lbl-map3{
	top:237px;
	left:263px;
}
.static-region-wrapper-map .lbl-map3:before{
	left:auto;
	right:14px;
}
.static-region-wrapper-map .lbl-map4{
	top:250px;
	left:342px;
}
.static-region-wrapper-map .lbl-map5{
	top:256px;
	left:392px;
}
.static-region-wrapper-map .lbl-map6{
	top:265px;
	left:439px;
}
.static-region-wrapper-map .lbl-map6:before{
	left:auto;
	right:14px;
}
.static-region-wrapper-map .lbl-map7{
	top:231px;
	left: 498px;
	right: auto;
}
.static-region-wrapper-map .lbl-map8{
	top:233px;
	left: 564px;
	right: auto;
}
.static-region-wrapper-map .lbl-map9{
	top:188px;
	left: 613px;
	right: auto;
}
.static-region-wrapper-map .lbl-map10{
	top:253px;
	left: 624px;
	right: auto;
}
.static-region-wrapper-map .lbl-map11{
	top:336px;
	left: 605px;
	right: auto;
}
.static-region-wrapper-map .lbl-map12{
	top:360px;
	left: 541px;
	right: auto;
}
.static-region-wrapper-map .lbl-map13{
	top:390px;
	left: 479px;
	right: auto;
}
.static-region-wrapper-map .lbl-map14{
	top:332px;
	left: 447px;
	right: auto;
}
.static-region-wrapper-map .lbl-map15{
	top:312px;
	left: 549px;
	right: auto;
}
.static-region-wrapper-map .lbl-map16{
	top:291px;
	left: 527px;
	right: auto;
}
.static-region-wrapper-map .lbl-map17{
	top:273px;
	left: 538px;
	right: auto;
}
.static-region-wrapper-map .lbl-map18{
	top:258px;
	left: 521px;
	right: auto;
	text-transform:uppercase;
}
.static-region-wrapper-map .lbl-map19{
	top:268px;
	left: 500px;
	right: auto;
}
.static-region-wrapper-map .lbl-map20{
	top:338px;
	left: 358px;
	right: auto;
}
.static-region-wrapper-map .lbl-map21{
	top:321px;
	left: 307px;
	right: auto;
}
.static-region-wrapper-map .lbl-map22{
	top:373px;
	left: 270px;
	right: auto;
}
.static-region-wrapper-map .lbl-map23{
	top:298px;
	left: 242px;
	right: auto;
}
.static-region-wrapper-map .lbl-map24{
	top:251px;
	left: 191px;
	right: auto;
}
.static-region-wrapper-map .lbl-map24:before{
	top:-2px;
	right:14px;
	left:auto;
}
.static-region-wrapper-map .lbl-map25{
	top:211px;
	left: 209px;
	right: auto;
}
.static-region-wrapper-map .lbl-map26{
	top:183px;
	left:123px;
}
.static-region-wrapper-map .lbl-map27{
	top:230px;
	left:125px;
}
.static-region-wrapper-map .lbl-map28{
	top:298px;
	left:110px;
}
.static-region-wrapper-map .lbl-map29{
	top:326px;
	left:160px;
}
.static-region-wrapper-map .lbl-map30{
	top:366px;
	left:180px;
}
.static-region-wrapper-map .lbl-map31{
	top:399px;
	left:200px;
}
.static-region-wrapper-map .lbl-map32{
	top:242px;
	left:48px;
}
.static-region-wrapper-map .lbl-map33{
	top:197px;
	left:44px;
}

.static-region-wrapper-map .map-svg-section svg,
.static-region-wrapper-map .svg-label-map {
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
}
.static-region-wrapper-map .svg-label-map {

}

/* ==== Datepicker ==== */

.ui-datepicker{
	background:#ffffff;
	width:220px;
	padding:20px 20px 35px 20px;
	border-bottom:4px solid #089B64;
	box-shadow:0 3px 5px rgba(0,0,0,0.3);
}
.ui-datepicker td span, .ui-datepicker td a{
	background:#EBEDF3;
	color:#444444;
	text-align:center;
	border:2px solid transparent;
	padding:2px 0;
	font-weight:600;
}
.ui-datepicker td span, .ui-datepicker td a:hover{
	border-color:#00AB6B;
}
.ui-datepicker td span, .ui-datepicker td.ui-datepicker-current-day a{
	background:#127FD1;
	color:#ffffff;
	border-color:#127FD1;
}
td.ui-datepicker-other-month span{
	background:#EBEDF3;
	color:#7D8F9B;
	border-color:transparent;
	font-weight:400;
}
.ui-datepicker .ui-datepicker-next{
	width:14px;
	height:12px;
	background:url(../images/date-arrows.png) no-repeat scroll -14px 0;
	opacity:0.8;
	cursor:pointer;
	top:10px;
	right:25px;
}
.ui-datepicker .ui-datepicker-next:hover{
	right:25px;
}
.ui-datepicker .ui-datepicker-prev{
	width:14px;
	height:12px;
	background:url(../images/date-arrows.png) no-repeat scroll 0 0;
	opacity:0.8;
	cursor:pointer;
	top:10px;
	left:25px;
}
.ui-datepicker .ui-datepicker-prev:hover{
	left:25px;
}
.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-prev:hover{
	opacity:1;
}
.ui-datepicker-title{
	color:#008A56;
}
.popular-news.fixed{
	position:fixed;
	top:0;
	z-index:100;
	width:298px;
}
.full-width-sn{
	width:auto !important;
}
.follow-block-wrapper{
	height:50px;
	position:relative;
	border:1px solid #DFE6E9;
	background:#ffffff;
}
.fus-preview-text{
	width:370px;
	height:50px;
	color:#005ba1;
	font-weight:700;
	padding-left:50px;
	line-height:50px;
	position:relative;
	font-size:13px;
}
.fus-icon{
	position:absolute;
	top:8px;
	left:10px;
	width:32px;
	height:33px;
	background:url(../images/fus.png) no-repeat scroll;
}
.fus-social{
	position:absolute;
	top:0;
	right:0;
	width:420px;
	background:#EEF2F4;
	height:50px;
}
.fus-social-text{
	position:absolute;
	top:8px;
	left:40px;
	color:#b0bbc2;
	font-size:12px;
}
.fus-social-icons{
	position:absolute;
	top:10px;
	right:10px;
}
.fusicon{
	width:30px;
	height:30px;
	display:block;
	float:left;
	vertical-align:top;
	background:#F4F7F8;
	margin-right:5px;
}
.fusicon:last-child{
	margin-right:0;
}
.fus-vk{
	background:url(../images/fvk.png) no-repeat scroll;
}
.fus-tw{
	background:url(../images/ftw.png) no-repeat scroll;
}
.fus-fb{
	background:url(../images/ffb.png) no-repeat scroll;
}
.fus-yt{
	background:url(../images/fyt.png) no-repeat scroll;
}
.fus-im{
	background:url(../images/fim.png) no-repeat scroll;
}
.fus-ok{
	background:url(../images/fok.png) no-repeat scroll;
}
.fus-preview-text:before{
	position:absolute;
	top:0;
	right:-30px;
	width:26px;
	height:50px;
	background:url(../images/fcorn.png) no-repeat scroll;
	content:'';
	z-index:10;
}
.full-width-fn{
	width:auto;
	height:395px;
}
.full-width-fn.old-height{
	height:351px;
}
.full-width-fn.old-height .size-item1{
	height:351px;
}
.full-width-fn .short-nws-text{
	padding-right:24px;
}
.full-width-fn .size-item1{
	height:395px;
}
.three-block .size3 {
	width: 326px;
	height: 200px;
	margin-right: 1px;
}
.three-block .featured-item:last-child{
	margin-right:0;
}
.three-block-size{
	width: 326px;
}
.two-block-size{
	width: 653px;
}
.comment-title-inner{
	padding-top:14px;
	font-size:20px;
	font-weight:700;
	position:relative;
	font-family: 'PT Serif', serif;
	margin-bottom:20px;
}
.comment-user-inner{
	margin-bottom:10px;
}
.comment-user-inner .comment-data{
	background:#ffffff;
}
.comment-user-text{
	margin-bottom:8px;
	position:relative;
	color:#666C6E;
	font-size:13px;
	line-height:22px;
}
.comment-item-row{
	margin-bottom:20px;
}
.child-row{
	padding-top:20px;
	margin-bottom:20px;
	padding-left:100px;
}
.ans-wr a{
	color:#005CA1;
	font-size:13px;
}
.ans-wr a:hover{
	color:#007348;
}
.capcha-input {
	width: 280px;
}
.capcha-input input[type="text"]{
	width:100%;
}
.capcha-image{
	height:32px;
	border:1px solid #F5F5F5;
	width:187px;
}
.comment-form-wrapper{
	margin-bottom:35px;
	padding-top:10px;
}
.comment-inner{
	display:none;
}
.success-send-block{
	padding:40px 20px 75px 20px;
	background:url(../images/sbb-bg.png) repeat-x scroll left bottom #ffffff;
	margin-bottom:25px;
}
.sess-text{
	margin-bottom:20px;
	color:#7A8790;
	font-family: 'PT Serif', serif;
	font-size:18px;
}
.more-comm{
	color: #005CA1;
    font-weight: 700;
    font-family: 'PT Serif', serif;
	font-size:16px;
}
.more-comm:hover{
	color:#007348;
}
.popup-subscribe{
	position:absolute;
	top:100px;
	left:50%;
	width:680px;
	margin-left:-340px;
	z-index:999;
	background:#ffffff;
	display:none;
}
.popup-subscribe-success{
	position:absolute;
	top:100px;
	left:50%;
	width:680px;
	margin-left:-340px;
	z-index:999;
	background:#ffffff;
}
.popup-subscribe-success .success-send-block{
	margin-bottom:0;
}
.popup-subscribe .subscribe-form-wrapper{
	padding-top:45px;
	margin-bottom:0;
}
.close-btn{
	position:absolute;
	top:-25px;
	right:-25px;
	width:19px;
	height:19px;
	background:url(../images/close-btn.png) no-repeat scroll;
	cursor:pointer;
}
.black-layer{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.4);
	z-index:888;
	display:none;
}
input[type="text"].error-field{
	background:#FFB2B2;
}
.leftside{
	display: inline;
    margin-right: 30px;
	margin-bottom:30px;
}
.rightside{
	display: inline;
    margin-left: 30px;
    margin-bottom:21px;
    margin-top: 30px;
}
.vide-news-wrapper {
    margin-bottom: 35px;
}
.vide-news-inner {
	position: relative;
	height: 433px;
}
.vide-news-inner iframe {
	max-width: 100%;
	max-height: 100%;
}
.video-preview-image{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size:cover;
}
.play-btn{
	width:75px;
	height:54px;
	position:absolute;
	top:50%;
	margin-top:-24px;
	left:50%;
	margin-left:-32px;
	background:url(../images/play.png) no-repeat scroll;
	cursor:pointer;
}
.short-description.top-position{
	bottom:auto;
	top:17px;
}
.link-inner{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:block;
	z-index:10;
}
.sidebar-partners {
    background: #f4f5f8;
    border-left: 4px solid #127fd1;
}
.other-news-wrapper {
    margin-bottom: 40px;
    padding: 10px 0 0 0;
    background: #f4f5f8;
    border-left: 4px solid #02d183;
}
.other-news-wrapper .news-preview-image {
    margin-left: 0;
    margin-right: 0;
}

/* ==== New Width ==== */
.tabs-link-wrapper a:nth-child(1){
	width:64px;
}
.tabs-link-wrapper a:nth-child(3){
	width:75px;
}

.full-width-fn{
	width:auto;
}

.fus-preview-text:before{
	right:-10px;
}
.dsize3{
	width:510px;
}
.dsize3:nth-child(2){
	width:509px;
}
.region-inner-win {
	width: 1000px;
}

.mrl-region{
	width:800px;
}
.mrl-list-region ul{
	width:120px;
}

.some-news{
	overflow:hidden;
}
.news-preview-text{
	max-height:59px;
}
.layout-main-news-photo {
	position: relative;
   /*	margin: 25px 0;*/
}

.layout-main-news-photo + .layout-main-news {
    margin: 30px 0;
}
.layout-main-news-photo .news-preview-item {
    padding: 4px 13px;
    box-shadow: 0.7px 1.9px 20px rgba(0, 0, 0, 0.1);
}
.layout-main-news-photo .news-preview-image {
    margin-left: -9px;
    margin-right: -9px;
    margin-bottom: 0;
    line-height: 0;
}
.layout-main-news-photo .news-preview-image a:before {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    content:'';
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 29%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 29%,rgba(0,0,0,0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.layout-main-news-photo .news-preview-content {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
}
.layout-main-news-photo .news-preview-content a {
    display: block;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}
.layout-main-news-photo .news-preview-text {
    display: none;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    font-family: "Open Sans";
    color: #fff;
    opacity: 0.5;
}
.layout-main-news-photo .news-preview-text:before {
    content: none;
}
.layout-main-news-photo .icon-more {
    /*background-position: center;
    background-image: url(../images/icon-link-arrow-dark.png);*/
    -webkit-background-size: 90%;
    background-size: 90%;
}

.mrl-region-inner{
	width: 498px;
}

/*------------------- partners style ------------------*/

.sidebar-partners [id^="unit_"] {
    position: relative;
    margin-top: 60px;
}
.sidebar-partners [class$="_head"] {
    position: absolute;
    top: -30px;
    left: -4px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.429;
    font-family: "Open Sans";
    color: #127fd1;
    text-transform: uppercase;
}
.sidebar-partners [class$="_out"] {
    padding: 0;
    background-color: #f4f5f8;
}
.sidebar-partners [class$="_item"] {
    position: relative;
    padding: 15px 15px 30px;
    margin-bottom: 0;
}
.sidebar-partners [class$="_item"]:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 10px;
    background-image: url(../images/bg-shadow.png);
    background-repeat: repeat-x;
    background-position: bottom center;
    background-color: #f4f5f8;
}
.sidebar-partners [class$="_item"]:last-child {
    padding-bottom: 20px;
}
.sidebar-partners [class$="_item"]:last-child:after {
    content: none;
}

/*---------------- begin partners style ---------------*/

.section__header {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.429;
    font-family: "Open Sans";
    color: #3a3b3b;
    text-transform: uppercase;
    border-bottom: 4px solid #dfe2ea;
}

.section__header_warning {
    margin: 20px 0 12px 0;
    padding-bottom: 0;
    color: #e31f25;
    border-bottom: none;
}

.section__header_popular {
    margin: 20px 0 12px 0;
    padding-bottom: 0;
    color: #02d183;
    border-bottom: none;
}
.layout-main-news-photo .section__header {
    font-size: 22px;
    margin: 0 0 10px 0;
    padding-bottom: 0;
    border-bottom: none;
}

/*---------------- end partners style ---------------*/

.sidebar-main-news {
    margin: 20px 0;
    padding: 0 38px;
}
.sidebar-main-news .section__header {
    padding-bottom: 0;
    margin-bottom: 10px;
    border-bottom: none;
}
.sidebar-main-news .news-preview-item {
    padding: 0;
}
.sidebar-main-news .news-preview-image {
    margin-left: -38px;
    margin-right: -38px;
}
.sidebar-main-news .news-preview-content {
    padding: 0;
}
.sidebar-main-news .news-preview-content a {
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.231;
    font-family: "Open Sans";
    color: #707070;
}
.sidebar-main-news .news-preview-content a:hover {
    color: #007348;
}
.sidebar-main-news .icon-more {
    height: 7px;
    margin-left: 3px;
    background-image: url(../images/icon-link-arrow-small.png);
}
.section-story__btn_more {
    display: inline-block;
    margin-bottom: 60px;
    padding: 3px 10px;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #005ca1;
    border: 1px solid #e3e6ee;
}
.section-story__btn_more:hover,
.section-story__btn_more:focus,
.section-story__btn_more:active {
    color: #fff;
    opacity: .8;
}
[class^=".sk_head_"] {
    border-bottom-color: #127fd1;
}

/*---------------- begin news-main -----------------*/

.news-main {
    position: relative;
    margin: 30px 0;
}
.news-main__list {
    margin: 0 -15px;
    padding: 0;
    word-spacing: -.34em;
    overflow: hidden;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.news-main__item {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    margin: 0;
    padding: 0 15px;
    list-style: none;
    word-spacing: normal;
}
.news-main__list_3 .news-main__item {
    width: 33.333%;
}
.news-main__list_4 .news-main__item {
    width: 25%;
}
.news-main__list_5 .news-main__item {
    width: 20%;
}
.news-main__link,
.news-main__link:hover {
    text-decoration: none;
}
.news-main__title {
    color: #282827;
}
.news-main__img-wrap {
    position: relative;
    margin-bottom: 5px;
    font-size: 0;
    text-align: center;
}
.layout-topbar .news-main {
    margin: 0;
}
.news-main__header {
    margin-bottom: 15px;
    padding-right: 220px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    font-family: "Open Sans";
    color: #282827;
    text-transform: uppercase;
}
.news-main-toggle {
    position: absolute;
    right: 0;
}

.news-main-toggle__link {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.833;
    font-family: "Open Sans";
    color: #127fd1;
    white-space: nowrap;
    text-decoration: underline;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.news-main-toggle__link:hover {
    color: #127fd1;
    text-decoration: none;
}
.news-main-toggle__link_show:after,
.news-main-toggle__link_hide:after {
    content: "";
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background-position: center;
    background-repeat: no-repeat;
}
.news-main-toggle__link_show:after {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAMAAADHVLbdAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAM1BMVEWAgIASf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9H///87+OwdAAAAD3RSTlMAYJQQapsP9d/r8tdOz3hQc6jSAAAAAWJLR0QQlbINLAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADJJREFUCNdjYAADRn4mBmRAPp8ZDFj4WcE0GwM/CmBn4AADTn4uMM1NsX3Y+Ty8fBAGABO/AnkvooqxAAAAAElFTkSuQmCC');
}
.news-main-toggle__link_hide:after {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAMAAACecocUAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAQlBMVEWAgIASf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9ESf9H///8Qg75HAAAAFHRSTlMAFZYKYA+ovHm+0/ZD2+dNVmkdhu/ml5AAAAABYktHRBXl2PmjAAAACXBIWXMAAAsSAAALEgHS3X78AAAAR0lEQVQI1y2MSRLAIAzDnK40XSjU/39rISYnaSYWbJoRt6zYuIckHjAPSTwvSIQh98AmD5mF7Zcj0GevAiqoVjTrguoqmH8/zNwDX/YYRqMAAAAASUVORK5CYII=');
}
.news-main-toggle__link_hide,
.news-main_state_open .news-main-toggle__link_show {
    display: none;
}
.news-main_state_open .news-main-toggle__link_hide {
    display: inline-block;
}

/*------------------ end news-main -----------------*/
/*------------- begin section-news-slider ----------*/

.section-news-slider {
    margin: 20px 0 40px 0;
    background: #fff;
    box-shadow: 0.7px 1.9px 20px rgba(0, 0, 0, 0.1);
}

.section-news-slider__gallery {
    margin: 0;
    padding: 0;
    height: 405px;
    overflow: hidden;
}
.section-news-slider__item {
    float: left;
    width: 100%;
    height: 405px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-news-slider__img-link {
    float: left;
    display: block;
    width: 630px;
    height: 420px;
    background-position: center;
    background-repeat: no-repeat;
}
.section-news-slider__img {
    width: 100%;
    height: 100%;
}
.section-news-slider__content {
    position: relative;
    float: right;
    width: 33.334%;
    height: 404px;
    padding: 25px 25px 70px 25px;
    background: #fff;
    overflow: hidden;
}
.section-news-slider__content-inner {
    height: 100%;
    overflow: hidden;
}
.section-news-slider__title {
    margin-bottom: 15px;
}
.section-news-slider__title-link {
    display: inline-block;
    font-family: Georgia;
    font-size: 30px;
    line-height: 1;
    color: #000;
}

.section-news-slider__text-link {
    color: #3b3b3b;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 25px;
}
.section-news-slider .gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 20px;
}
.section-news-slider .icon-more {
    background-image: url(../images/icon-link-arrow-dark.png);
    background-position: center;
}

.slider-nav {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
.slider__control {
    display: inline-block;
    vertical-align: middle;
    padding: 9px;
    margin: 0 2px;
    font-size: 0;
    text-align: center;
    background: none;
    cursor: pointer;
}
.slider__control_prev:before,
.slider__control_next:before {
    content: "";
    display: inline-block;
}
.slider__control_prev:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 5px 4.5px 0;
    border-color: transparent #006cb5 transparent transparent;
}
.slider__control_next:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 5px 4.5px;
    border-color: transparent transparent transparent #006cb5;
}
.slider-pagination {
    display: inline-block;
    vertical-align: middle;
}
.slider-pagination__item {
    display: inline-block;
    vertical-align: middle;
    padding: 9px;
    margin: 0 2px;
    font-size: 0;
    text-align: center;
    background: none;
    cursor: pointer;
}
.slider-pagination__item:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #dedede;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.slider-pagination__item_state_active:before {
    background: #006cb5;
}

/*------------- end section-news-slider ----------*/

/*-------------- begin publicity -----------------*/

.publicity {
    margin-bottom: 10px;
    line-height: 1.429;
    font-family: "Open Sans";
}
.publicity em {
    display: inline-block;
    margin: 5px 0;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}
.publicity .section__header {
    padding-bottom: 0;
    border-bottom: 0;
}
.publicity-about {
    margin-bottom: 30px;
}
.publicity-about-chart {
    float: right;
    width: 650px;
    padding: 10px;
    margin-left: 30px;
    background-color: #dfe2ea;
}
.publicity-about-chart__img-wrap {
    margin-bottom: 5px;
}
.publicity-about__text {
    color: #3b3b3b;
    font-family: "Open Sans";
    line-height: 1.786;
    overflow: hidden;
}
.publicity-about-chart__text {
    float: left;
    width: 360px;
    padding-left: 10px;
    padding-top: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.666;
    font-family: "Open Sans";
    color: #3b3b3b;
}
.publicity-about-chart__counters {
    float: right;
    width: 205px;
    padding: 10px;
    background: #ccd5de;
}
.publicity-about-chart__counters .counter {
    margin-bottom: 0;
}
.publicity__row {
    margin: 0 -20px;
    word-spacing: -.34em;
}
.publicity__col {
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    margin: 0;
    padding: 0 20px;
    word-spacing: normal;
}
.publicity-placement__text {
    float: left;
    width: 65.3%;
    line-height: 1.786;
}
.publicity-placement__btn {
    float: right;
    width: 300px;
}
.publicity-placement-intro {
    margin: 25px 0 30px 0;
}
.publicity__note {
    padding: 15px 35px;
    color: #3b3b3b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.666;
    background-color: #f4f5f8;
}
.publicity-placement ul li {
    position: relative;
    padding: 20px 0 20px 40px;
    border-top: 2px solid #dfe2ea;
}
.publicity-placement ul li:last-child {
    border-bottom: 2px solid #dfe2ea;
}
.publicity-placement .publicity__note,
.publicity-placement .publicity__note:last-child {
    border: none;
}
.publicity-placement li.publicity__note {
    padding-right: 20px;
}
.publicity-schema {
    margin: 30px 0;
}
.publicity-extra {
    margin: 30px 0;
}
.publicity-extra__left {
    float: left;
    width: 65.3%;
}
.publicity-extra__right {
    float: right;
    width: 30.6%;
}
.publicity-extra .publicity__note {
    color: #3b3b3b;
    background-color: #dfe2ea;
}
.publicity-extra .section__header {
    margin-bottom: 15px;
}
.publicity__label {
    top: 16px;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 24px;
    color: #fff;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
    background-color: #e61a23;
}
.publicity__label_red {
    background-color: #e61a23;
}
.publicity__label_green {
    background-color: #04af85;
}
.publicity__label_blue {
    background-color: #0084ff;
}
.publicity-contacts {
    margin-top: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #dfe2ea;
}

/*--------------- end publicity ------------------*/

/*---------------- begin fancybox ----------------*/

.fancybox-close {
    top: -34px;
    right: -34px;
    width: 34px;
    height: 34px;
    background: none;
    border-radius: 0;
}

.fancybox-close:before {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAMAAACeyVWkAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAXVBMVEXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uXW3uX///9cPOKRAAAAHXRSTlMAIyKK9D1m+1r+/ED1FnX4SY2tep4+8xUBmWcvLqqtJEAAAAABYktHRB5yCiArAAAACXBIWXMAAAsSAAALEgHS3X78AAAAf0lEQVQY013P2xKCQAwD0KBcRBTwCoj9/9+0FmETO7PTnfPSBAAy8OyWtc8LwrI6BJoRl7UdnRszYkez0xloiQO7/vtNTJhYcOWL4o/tDzdWBK6hN8U4JHUSKi+R7sprTm5J4Ym50cYPaRT8HDBOEt65fvkeJ2nUBjrPUujt7wPMmxFmIsLEUQAAAABJRU5ErkJggg==');
}

/*------------------- end fancybox -----------------*/

/*---------------- begin news custom -------------*/

.news-custom {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #f4f5f8;
}
.news-custom__img-wrap {
	float: left;
	width: 150px;
	margin-right: 20px;
	line-height: 0;
}
.news-custom__img-wrap img {
	width: 100%;
	height: auto;
}
.news-custom__content {
	overflow: hidden;
}
.news-custom__info {
	margin-bottom: 10px;
}
.news-custom .date-nws {
	background: #ffffff;
}
.news-custom__title-link {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.875;
	font-family: 'PT Serif', serif;
	color: black;
}

/*---------------- end news custom -------------*/

/*---------------- begin news cross -------------*/

.news-cross {
	position: relative;
	margin-top: 30px;
	margin-bottom: 25px;
}
.news-cross__inner {
	padding: 30px;
	background-color: #2f7967;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.news-cross__content {
	position: relative;
	color: #fff;
	z-index: 1;
}
.news-cross__info {
	margin-bottom: 8px;
}
.news-cross__info a,
.news-cross__info a:hover,
.news-cross__info a:focus {
	color: #fff;
}

.news-cross__info a {
	font-weight: 700;
}

.news-cross__info a:hover {
	opacity: .8;
}
.news-cross .date-nws {
	padding-top: 5px;
	padding-bottom: 5px;
	background: #ffffff;
}
.news-cross__title-link {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	font-family: 'PT Serif', serif;
	color: #fff;
}
.news-cross__title-link:hover,
.news-cross__title-link:focus {
	color: #fff;
}
.news-cross__title-link:hover {
	opacity: .8;
}
.news-cross__text {
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.538;
}
.news-cross__text-link {
	display: block;
}
.news-cross__text-link,
.news-cross__text-link:hover,
.news-cross__text-link:focus {
	color: #fff;
}
.news-cross__text-link:hover {
	opacity: .8;
}

/*---------------- end news cross -------------*/

/*----------- begin yandex search styles --------*/

.ya-site-form__search-wrap {
	margin-bottom: 50px;
	padding: 12px;
	background: #DFE5EB;
}
#ya-site-form0 .ya-site-form__search-input {
	padding: 0 !important;
}
#ya-site-form0 .ya-site-form__search-wrap .ya-site-form__search {
	background-color: #fff !important;
}
#ya-site-form0 .ya-site-form__form .ya-site-form__search-wrap .ya-site-form__input-text {
	height: 34px;
	padding-left: 15px;
	width: 100%;
	border-color: transparent !important;;
}
#ya-site-form0 .ya-site-form__search-wrap .ya-site-form__submit {
	min-width: 93px;
	height: 34px;
	color: #ffffff !important;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATBAMAAACAfiv/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEX////Fz9jFz9jFz9j////nb8ssAAAAA3RSTlMAAIFgyXdoAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADxJREFUCNdFyEERACAMxMCzgAPOQvHvDWhpyGsnWt1UK6Q/9WfTMAY0jAENz2wa3vlomLNoWDNp+Oal4QYwwBbmhNk/qQAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-position: 0 0;
	background-color: #B7C3CE;
	border: 2px solid #fff;
	cursor: pointer;
}
#ya-site-form0 .ya-site-form__search-wrap .ya-site-form__submit:hover {
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATBAMAAACAfiv/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEX///8Sf9ESf9ESf9H///89KZaLAAAAA3RSTlMAAIFgyXdoAAAAAWJLR0QAiAUdSAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADxJREFUCNdFyEERACAMxMCzgAPOQvHvDWhpyGsnWt1UK6Q/9WfTMAY0jAENz2wa3vlomLNoWDNp+Oal4QYwwBbmhNk/qQAAAABJRU5ErkJggg==');
	background-color: #005D9B;
}

#ya-site-results {
	font-family: 'Open Sans', sans-serif !important;
}

#ya-site-results a:link,
#ya-site-results a:active,
#ya-site-results .b-pseudo-link,
#ya-site-results .b-head-tabs__link,
#ya-site-results .b-head-tabs__link:link,
#ya-site-results .b-head-tabs__link:visited {
	color: #025899 !important;
}
#ya-site-results .b-serp-item__title-link {
	font-size: 20px !important;
	font-weight: 700;
	font-family: 'PT Serif', serif !important;
}

#ya-site-results a:link:hover,
#ya-site-results a:visited:hover,
#ya-site-results .b-pseudo-link:hover {
	color: #007348 !important;
}
#ya-site-results .b-serp-item__text {
	color: #666C6E !important;
}

/*----------- end yandex search styles -----------*/

/*---------------- begin media -------------------*/

@media screen and (max-height: 815px) {

    .sidebar-main-news {
        display: none;
    }
}

/*----------------- end media --------------------*/

/*---------------- begin swiper -----------------*/

.swiper-slide,
.swiper-wrapper {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.gallery__control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	bottom: 30px;
	height: 35px;
	width: 35px;
	background: #d6dee4;
	z-index: 4;
}

.gallery__control:hover {
	background: #8193a0;
}

.gallery__control:active,
.gallery__control:focus {
	outline: none;
}

.gallery__control-icon {
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background: transparent;
	border-left: 4px solid #8193a0;
	border-bottom: 4px solid #8193a0;
	border-radius: 1px;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

.gallery__control:hover .gallery__control-icon {
	opacity: 1;
	border-left: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

.gallery__control_state_disabled:hover .gallery__control-icon {
	opacity: .5;
}

.gallery__control_prev {
	left: 0;
}

.gallery__control_prev .gallery__control-icon {
	left: 12px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.gallery__control_next {
	right: 0;
}

.gallery__control_next .gallery__control-icon {
	right: 12px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.gallery-pagination {
	height: 30px;
	background-color: #d6dee4;
}

.gallery-pagination__list {
	font-size: 0;
	line-height: 30px;
	text-align: center;
}

.gallery-pagination__item {
	display: inline-block;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	margin: 0 1.5px;
	background-color: #8193a0;
	cursor: pointer;
	border-radius: 50%;
}

.gallery-pagination__item:hover,
.gallery-pagination__item_state_active {
	background-color: #fff;
}

.gallery-pagination__item_state_active:hover {
	cursor: default;
}

/*----------------- end swiper ------------------*/

/*-------- begin one-news-preview-gallery -------*/

.one-news-preview__gallery {
	position: relative;
	margin-bottom: 25px;
}

.one-news-preview__gallery .one-news-image {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 61.765%;
}

.one-news-preview__gallery .one-news-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.one-news-preview__gallery .rights-photo {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	padding-bottom: 15px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	color: #fff;
	background: transparent;
}

.one-news-preview__gallery .rights-photo::before {
	content: none;
}

.one-news-preview__gallery .one-news-image {
	margin-bottom: 0;
	line-height: 0;
}

/*--------- end one-news-preview-gallery --------*/

/*dzen*/

.yan-zen{
    position: relative;
    font-family: 'PT Serif', serif;
    padding: 15px 15px 15px 83px;
    margin-bottom: 22px;
}
.yan-zen_dark{
    background: #f5f6f8;
}
.yan-zen_light{
    background: #fff;
    padding: 66px 15px 15px 69px;
}
.yan-zen::before{
    content: '';
    position: absolute;
    display: block;
    background: url(../images/yan-zen-img/yan-zen-cio.png);
    width: 50px;
    height: 50px;
    left: 18px;
    background-repeat: no-repeat;
    top: 18px;
}
.yan-zen_light::before{
    left: 0;
    top:69px;
}
.yan-zen__bold-text{
    font-weight: bold;
}
.yan-zen__regular-text{
    font-weight: normal;
    margin-bottom: 15px;
}
.yan-zen__link{
    position: relative;
    display: inline-block;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 700;
    font-size: 12px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #b7c3ce;
}
.yan-zen_light-light .yan-zen__link{
    background: #006CB5;
}
.yan-zen__link:hover{
    color: #fff;
    background: #006CB5;
}
.yan-zen__link:focus {
    color: #fff;
    background: #006CB5;
}
.float-l{
    float: left;
}


.subscribe-form-wrapper{
    margin-bottom: 25px;
    padding: 25px 20px 20px 20px;
    background-color: #fff;
    background-position: left bottom;
    background-repeat: repeat-x;
    background-image: url(../images/yan-zen-img/sbb-bg.png);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.border-top,
.border-bottom{
    position: absolute;
    background: url(../images/yan-zen-img/sbb-bg.png);
    width: 650px;
    height: 16px;
    left: -20px;
    background-size: contain;
}
.border-top{top:19px;}
.border-bottom{bottom: -42px;}
.popup-subscribe .yan-zen_light{
    padding-left: 100px;
}
.share-block {
    margin-bottom: 15px;
}
/* end dzen */

.comment-btn .add-favorite{
	overflow: hidden;
	position: relative;
	background: #00ab6b;

}
.comment-btn .add-favorite:hover{
	background: #068f5c;
}
.comment-btn .add-favorite img{
	position: absolute;
	display: inline;
}
.comment-btn .add-favorite span{
	margin-right: 10px;
}
.comment-btn .add-favorite::before{
	left: -7px;
	top: -13px;
	width: 20px;
	height: 30px;
	background: #02d183;
	-webkit-transform: rotate(47deg);
	-ms-transform: rotate(47deg);
	transform: rotate(47deg);
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.one-news-preview__gallery .rights-photo{
    left: 0;
    right: 0;
    -webkit-box-shadow: inset 0px -106px 70px 17px rgba(26, 25, 25, 0.6);
            box-shadow: inset 0px -106px 70px 17px rgba(26, 25, 25, 0.6);
    padding-top: 9px;
}

.write-block-wrapper {
	padding: 13px 20px 10px 20px;
    background: #F5F6F8;
    margin-bottom: 15px;
    margin: 35px 0;
}

.write-block-wrapper .write-block {
	padding-bottom: 10px;
}
.write-block-wrapper .write-block a {
    width: 100%;
}

/* Inline #19 | https://vn.ru/sproject/ */

.sort-item {
  position: relative;
  padding-right: 10px;
}

.by {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 8px;
  height: 4px;
  margin-top: -2px;
  background: url(../images/arrow.png) no-repeat scroll;
  content: '';
  display: inline-block;
}

.sort-item {
}

.by {
  /* right: -14px; */
  right: 0;
}

.sort-item {
  /* padding-right: 10px; */
  padding-right: 9px;
  margin-right: 15px;
  font-size: 19px;
}
.sort-item.active .by{
  transform: rotate(180deg);
}
