/*
Веб-сайт Гостелерадиокомпании "Южный Урал"
Код писал:
Алексей Журавлев (c) copyright 2015
Zaba Company (c) copyright 2015
*/

/*Import Russia*/
@font-face {
  font-family: 'Russia';
  font-style: normal;
  font-weight: 300;
  src: local('Russia'), url(/styles/fonts/Russia.woff) format('woff');
}
@font-face {
  font-family: 'Russia';
  font-style: normal;
  font-weight: 600;
  src: local('Russia Medium'), local('Russia-Medium'), url(/styles/fonts/RussiaMedium.woff) format('woff');
}
@font-face {
  font-family: 'Russia';
  font-style: italic;
  font-weight: 900;
  src: local('Russia Bold'), local('Russia-Bold'), url(/styles/fonts/RussiaBold.woff) format('woff');
}

/*Import PT Sans*/
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url(/styles/fonts/PTSans.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url(/styles/fonts/PTSansBold.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: italic;
  font-weight: 400;
  src: local('PT Sans Italic'), local('PTSans-Italic'), url(/styles/fonts/PTSansItalic.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: italic;
  font-weight: 700;
  src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(/styles/fonts/PTSansBoldItalic.woff) format('woff');
}

* {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	width:100%;
	height:100%;
}

body {
	width:100%;
	height:100%;
	background: #fff;
	font-size: 16px;
	font-family: 'PT Sans','PTSansWeb',Verdana,Geneva,sans-serif;
}

a,
a:visited,
a:active{
	border-bottom: 1px solid;
	border-color: rgba(0, 55, 151, 0.5);
	color: #003797;
	text-decoration: none;
	-webkit-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-o-transition:all 0.2s;
	transition:all 0.2s;
}
a[href^="#"]:not(.but):not(.big-but){
	border-style:dashed;
}
a:not([href^="#"]):not(.but):not(.big-but){
	border-bottom: 0;
}
a:hover{
	border-color: #003797;
	color: #003797;
	text-shadow: 0 0 20px rgba(0, 55, 151, 0.5);
}
a.black{
	border-color: #000;
	color: #000;
}
a.black:hover{
	border-color: #000;
	color: #000;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
button::-moz-focus-inner { /* убираем внутренний отступ у кнопки в FF, который зарезервирован для рамки при фокусе */
	padding:0;
	border:0;
}
:focus {
	outline: none;
}
form{
	text-align: right;
}
input[type=text],
input[type=number],
input[type=date],
input[type=password],
input[type=datetime],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
input[type=time],
textarea{
	font-family: 'PT Sans';
	font-size: 14px;
	line-height: 18px;
	display:block;
	padding:4px 8px;
	background:#fff;
	/*box-shadow:1px 1px 5px rgba(0,0,0,0.17) inset;*/
	border-radius:2px;
	border: 1px solid #e1e6f8;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type=text],
input[type=number],
input[type=date],
input[type=password],
input[type=datetime],
input[type=email],
input[type=search],
input[type=tel],
input[type=url],
input[type=time]{
	height:26px;
	width:220px;
}
textarea{
	height:200px;
	width:344px;
	resize:none;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=time]:focus,
textarea:focus{
	box-shadow: 0 5px 20px #dce5ee;
	color:#333;
}
form input,
form textarea{
	margin-bottom:5px;
}
.but,.but:active,.but:visited{
	position:relative;
	border-radius: 12px;
	line-height: 24px;
	padding: 0 12px;
	display:inline-block;
	text-shadow: 1px 1px 0 #EFF4FC;
	font-size:14px;
	color: #2d2d2d;
	border: 0;
	background: #d0ddee;
	background: -moz-linear-gradient(top, #d0ddee 0%, #d0ddee 50%, #abc7ea 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d0ddee), color-stop(50%,#d0ddee), color-stop(100%,#abc7ea));
	background: -webkit-linear-gradient(top, #d0ddee 0%,#d0ddee 50%,#abc7ea 100%);
	background: -o-linear-gradient(top, #d0ddee 0%,#d0ddee 50%,#abc7ea 100%);
	background: -ms-linear-gradient(top, #d0ddee 0%,#d0ddee 50%,#abc7ea 100%);
	background: linear-gradient(to bottom, #d0ddee 0%,#d0ddee 50%,#abc7ea 100%);
	background-size:100% 200%;
	background-position: center 0;
	cursor: pointer;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
	text-align: center;
}
.but:hover{
	color: #2d2d2d;
	text-shadow: 1px 1px 0 #EFF4FC;
	background-position: center 100%;
	box-shadow: 0 0 5px 2px rgba(206, 219, 238, 0.5);
	/*background: #fc997e;
	background: -moz-linear-gradient(top, #fc997e 0%, #c42c03 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fc997e), color-stop(100%,#c42c03));
	background: -webkit-linear-gradient(top, #fc997e 0%,#c42c03 100%);
	background: -o-linear-gradient(top, #fc997e 0%,#c42c03 100%);
	background: -ms-linear-gradient(top, #fc997e 0%,#c42c03 100%);
	background: linear-gradient(to bottom, #fc997e 0%,#c42c03 100%);*/
}
.but.disabled{
	background: #ddd;
	box-shadow: 0 1px 5px 0px rgba(206, 219, 238, 0.5);
	cursor: default;
	color: #555;
}
/*.but:before{
	content:" ";
	display:block;
	position:absolute;
	top:1px;
	bottom:1px;
	left:1px;
	right:1px;
	background:#000;
	z-index:-1;
}*/
.big-but,.big-but:active,.big-but:visited{
	position:relative;
	top: 0;
	line-height: 36px;
	padding: 0 10px;
	display: inline-block;
	font-size: 18px;
	/*font-family: Russia;*/
	color: #a83021;
	border: 2px solid #a83021;
	border-radius: 2px;
	-webkit-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-o-transition:all 0.2s;
	transition:all 0.2s;
	text-shadow: none;
}
.big-but:hover{
	background: #a83021;
	color: #fff;
	box-shadow: 0 0 20px rgba(80, 118, 201, 0.39);
	border: 2px solid #a83021;
	text-shadow: none;
}

.big-but.blue{
	border-color: #1a3f7d;
	color: #1a3f7d;
}
.big-but.blue:hover{	
	background: #1a3f7d;
	color: #fff;
}

.big-but.thin{
	border-width: 1px;
}

.big-but.disabled,
.big-but.disabled:hover{
	background: #f9f9f9;
	border-color: #aaa;
	color: #aaa;
	box-shadow: none;
	cursor: default;
}
.grid{
	display: table;
	position: relative;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}
.grid > div{
	display: table-cell;
	position: relative;
	vertical-align: top;
}
.float-grid{
	display: block;
	position: relative;
}
.float-grid > div{
	float: left;
}
.float-grid:after{
	content: "";
	display: block;
	clear: both;
}
.inline-block-divider{
	display: inline-block;
	width: 100%;
}

/* "Типография" */
#content-title {
	color: #a83021;
	/*text-align: center;*/
	padding: 0 0 10px;
	width:700px;
}
h1{
	font-size: 24px;
	/*font-family: Russia;*/
	padding: 0px 0px 20px;
	font-weight:normal;
}
h2{
	font-size: 22px;
	/*font-family: Russia;*/
	margin:20px 0;
	font-weight:normal;
}
h3{
	font-size: 20px;
	/*font-family: Russia;*/
	margin:20px 0;
}
h4{
	font-size: 18px;
	/*font-family: Russia;*/
	margin:20px 0;
}
h5{
	font-size: 18px;
	/*font-family: Russia;*/
	margin:20px 0;
}
h6{
	font-size: 18px;
	/*font-family: Russia;*/
	margin:20px 0;
}
h1 + .content-text h2{
	margin-top: -20px;
}
.content-text{
	width:	700px;
	position: relative;
	text-align: justify;
	min-height: 100px;
}
.content-text table{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	margin-bottom:20px;
}
.content-text table tr:nth-child(2n+1){
	background: rgba(0,0,0,0.1);
}
.content-text table th{
	text-align:left;
	background: rgba(0,0,0,0.1);
	padding: 8px;
	border-bottom: 2px solid rgba(0,0,0,0.2);
}
.content-text table td{
	padding:4px 8px;
}
.content-text p {
	margin-bottom: 20px;
}
.content-text ul {
	margin-top: 10px;
	margin-bottom: 20px;
}
.content-text li {
	margin-left:30px;
}
.content-text h2, .content-text h3, .content-text h3, .content-text h4, .content-text h5, .content-text h6{
	color:#a83021;
}
.content-text:after{
	content:" ";
	display:block;
	clear:both;
}
.content-text blockquote{
	padding: 20px 30px;
	background: #e9e9e9;
	margin: 20px 0;
}
.content-text blockquote > *:last-child{
	margin-bottom: 0;
}
.content-text a:not([href^="#"]):not(.but):not(.big-but){
	border-bottom: 1px solid rgba(0, 55, 151, 0.5);
}
.content-text a:not([href^="#"]):not(.but):not(.big-but):hover{
	border-bottom: 1px solid #003797;
}

.clear{
	display: block;
	clear: both;
}

#container {
	position: relative;
	/*overflow: hidden;*/
	top:0px;
}

#content{
	padding: 40px 0;
	position: relative;
}

.limit-width {
	min-width: 1000px;
	max-width: 1400px;
	/*width:100%;*/
	margin: 0 auto;
	position: relative;
}
.limit1000{
	width:1000px;
	margin:0 auto;
	position:relative;
}
.fix{
	position:fixed !important;
}
.abs{
	position:absolute !important;
}
.no-overflow{
	overflow: hidden;
}
.text-center{
	text-align: center;
}
.height100{
	height: 100%;
}

.phone {
	display: inline-block;
}
.phonenumber {
	font-size: 28px;
	display: inline-block;
	text-align: left;
	line-height: 30px;
}
.phonecode {
	font-size: 16px;
	display: inline;
}

#top-menu{
	background: url(/images/usr/header-top-back.png) top left repeat-x;
	position: relative;
}
#top-menu ul{
	display: block;
	list-style: none;
	padding: 0 0 0 211px;
}
#top-menu ul:after{
	content: "";
	display: block;
	clear: both;
}
#top-menu ul:empty{
	display: none;
}
#top-menu ul > li{
	display: block;
	float: left;
}
#top-menu ul > li:not(:first-child){
	margin-left: 44px;
}
#top-menu ul > li > a{
	display: block;
	color: #fff;
	text-shadow: -1px -1px 0 #2e4f92;
	border: 0;
	font-size: 18px;
	line-height: 28px;
}
#top-menu ul > li > a:hover{
	text-shadow:0 0 10px #05f2ff, 0 0 5px #05f2ff;
}

#header {
	height: 148px;
	width:100%;
	position: relative;
	top:0px;
	left:0px;
	/*z-index:100;*/
	background: url(/images/usr/header-back.jpg) center top no-repeat;
	margin-bottom: -30px;
}
#header .logo {
	/*background: url(/images/usr/header-logo.png) top left no-repeat;*/
	width: 186px;
	height: 110px;
	display: block;
	position:absolute;
	top: 6px;
	left: 12px;
	border: 0;
	z-index: 1;
}
#header .logo > img{
	max-height: 100%;
	max-width: 100%;
	display: block;
}

#header .nav {
	display: block;
	position: absolute;
	top: 14px;
	left: 203px;
	right: 230px;
	text-align: left;
	z-index: 1;
	margin-left: 100px;
	/*font-family: Russia;*/
}
#header .nav > ul {
	display: block;
	list-style: none;
	position:relative;
}
#header .nav > ul.navmenu > li{
	float:left;
	display: inline-block;
	position: relative;
	text-align: center;
	margin-right: 3px;
	/*margin-top: 20px;*/
}
#header .nav > ul.navmenu > li > .navchild{
	display:none;
}
#header .nav > ul.navmenu > li:not(:first-child):before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 14px;
	background: rgba(41, 70, 134, 0.5);
	position: absolute;
	left: -2px;
	top: 3px;
}
#header .nav > ul.navmenu > li.important:not(:first-child):before, #header .nav > ul > li.important + li:not(:first-child):before{
	background: none;
}
#header .nav > ul.navmenu > li:hover, #header .nav > ul > li.dropped{
	
}
#header .nav > ul.navmenu > li.dropped{
	
}
#header .nav > ul.navmenu > li.active{
	
}
#header .nav > ul.navmenu > li a, #header .nav > ul > a:visited {
	position: relative;
	color: #294686;
	font-size: 14px;
	height: 100%;
	line-height: 20px;
	padding: 0 9px;
	display: block;
	text-decoration: none;
	border: 0;
}
#header .nav > ul > li.active a{
	cursor:default;
}
#header .nav > ul.navmenu > li.important a{
	background: #ed623b;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 0 1px #d82f24;
}
#header .nav > ul.navmenu > li.important a:hover{
	text-shadow: 0 0 20px #fff;
}

#header .nav > ul.navchild{
	padding: 8px 12px;
	margin: 0;
	list-style: none;
	position: absolute;
	overflow: hidden;
	display: block;
	background: #fff;
	border-radius: 10px;
	z-index: 102;
	box-shadow: 0 0 0 1px rgba(41, 70, 134, 0.5);
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
#header .nav > ul.navchild .navchild{
	display: none;
}
#header .nav > ul.navchild.submenu{
	border-radius: 0 14px 14px 14px;
}

#header .nav > ul.navchild > li{
	display:block;
	line-height:24px;
	margin:0;
}
#header .nav > ul.navchild > li a, #header .nav > .navchild > li a:visited, #header .nav > .navchild > li a:active {
	position:relative;
	border-color: rgba(41, 70, 134, 0.5);
	color: #294686;
	font-size: 14px;
}
#header .nav > ul.navchild > li a:hover{
	border-color: #294686;
	text-shadow: 0 0 20px #1974EC;
}
#header .nav > ul.navchild > li:last-child a{
}
#header .nav > ul.navchild > li.active a, #header .nav > ul.navchild > li.active a:visited, #header .nav > ul.navchild > li.active a:active, #header .nav > ul.navchild > li.active a:hover{
	color: rgba(191, 98, 93, 0.5);
}

#header .heads{
	position: absolute;
	top: 46px;
	left: 202px;
	right: 240px;
	/*font-family: Russia;*/
	font-size: 16px;
}
#header .heads > ul{
	display: block;
	list-style: none;
	position: relative;
	padding: 5px 0;
	/*-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;*/
}
#header .heads > ul.full{
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 17px rgba(80, 118, 201, 0.39);
	z-index: 1;
}
#header .heads > ul:after{
	content: "";
	display: block;
	clear: both;
}
#header .heads > ul > li{
	display: block;
	float: left;
	margin: 3px 10px;
	/*margin-right: 20px;
	margin-bottom: 5px;*/
}
#header .heads > ul > li.more{
	font-size: 16px;
	border: 2px solid #335e93;
	color: #335e93;
	line-height: 22px;
	height: 20px;
	border-radius: 12px;
	padding: 0 8px;
	margin: -1px 10px
}
#header .heads > ul > li.more:empty{
	display: none;
}
#header .heads > ul > li > a{
	color: #22417e;
	border: 0;
	display: inline-block;
}

#header .special{
	position: absolute;
	top: 90px;
	left: 212px;
	right: 240px;
	/*font-family: Russia;*/
	font-size: 14px;
	line-height: 20px;
}

#header .special > .title{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: #8d8d8d;
	vertical-align: middle;
	margin-right: 10px;
	line-height: 22px;
}
#header .special > ul{
	display: block;
	position: absolute;
	top: -5px;
	left: 100px;
	right: 0;
	padding: 5px 5px 0;
}
#header .special > ul.full{
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 17px rgba(80, 118, 201, 0.39);
	z-index: 1;
}
#header .special > ul > li{
	display: block;
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}
#header .special > ul > li.more{
	color: #284685;
	border: 1px solid rgba(98, 138, 222, 0.5);
	border-radius: 11px;
	display: inline-block;
	padding: 0 10px;
}
#header .special > ul > li > a{
	color: #284685;
	border: 1px solid rgba(98, 138, 222, 0.5);
	border-radius: 11px;
	display: inline-block;
	padding: 0 10px;
}

#header form.search{
	position: absolute;
	top: 4px;
	right: 4px;
	width: 240px;
	height: 24px;
	background: url(/images/usr/header-search.png) center no-repeat;
}
#header form.search > input[type="text"]{
	position: absolute;
	top: 0px;
	left: 24px;
	background: none;
	box-shadow: none;
	border-radius: 0;
	border: 0;
	width: 180px;
	height: 24px;
	line-height: 24px;
	font-family: 'PT Sans';
	font-size: 14px;
	color: #042a6b;
	padding: 0;
	margin: 0;
}
#header form.search > input[type="submit"]{
	background: url(/images/usr/header-search-icon.png) center no-repeat;
	background-position: center 6px;
	position: absolute;
	top: 0px;
	right: 12px;
	box-shadow: none;
	border-radius: 0;
	border: 0;
	width: 24px;
	height: 24px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

#header .info{
	display: block;
	position: absolute;
	top: 66px;
	right: 5px;
	font-size: 14px;
	color: #676767;
}
#header .info > .city, #header .info > .currency{
	display: block;
	float: left;
	text-align: left;
}
#header .info > .currency{
	text-align: right;
	margin-left: 20px;
}
#header .info > .city a{
	position: relative;
	display: inline-block;
	line-height: 14px;
	color: #194585;
	border-color: rgba(48, 93, 158, 0.5);
}
#header .info > .city a:after{
	content: "";
	position: absolute;
	display: inline-block;
	background: url(/images/usr/header-city-down.png) center no-repeat;
	width: 5px;
	height: 5px;
	top: 5px;
	right: -9px;
}
#header .info > .city a:hover{
	border-color: #194585;
}
#header .info > .city > .weather{
	margin-top: 4px;
}
#header .info > .city > .weather img{
	display: inline-block;
	vertical-align: middle;
	width:32px;
	height: 32px;
}
#header .info > .city > .weather span{
	display: inline-block;
	vertical-align: middle;
}
#header .info > .currency > .today{
	margin-bottom: 10px;
}
#header .info > .currency > .data > span:not(:first-child){
	margin-left: 10px;
}


#header .user{
	position: absolute;
	right: 5px;
	top: 36px;
	font-size: 14px;
}

#header a, #header a:visited, #header a:active{
	color: #305d9e;
	border-color: rgba(48, 93, 158, 0.5);
}
#header a:hover{
	border-color: #305d9e;
	text-shadow: 0 0 20px #305d9e;
}

#main {
	padding: 30px 10px;
}
#main > h2{
	color: #a83021;
	font-size: 26px;
}
#main > .index-top > .left{
	width: 244px;
	padding-right: 20px;
}
#main > .index-top > .left > .wrapper{
	/*height: 331px;*/
	height: 695px;
	position: relative;
}
.news-tabs-list {
	padding-bottom: 20px;
}
.news-tabs-list ul.tabs {
	list-style: none;
	display: block;
	position: relative;
}
.news-tabs-list ul.tabs > li{
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	height: 20px;
	padding: 2px 12px;
	border-radius: 12px;
}
.news-tabs-list ul.tabs > li.active{
	background: #eceff7;
	box-shadow: 0 1px 2px #b2bbce inset;
}
.news-tabs-list ul.tabs > li > a{
	color: #217cb5;
	border-color: rgba(33, 124, 181, 0.5);
}
.news-tabs-list ul.tabs > li > a:hover{
	border-color: #217cb5;
	text-shadow: 0 0 20px #217cb5;
}
.news-tabs-list ul.tabs > li.active > a {
	color: #000;
	border: 0;
	cursor: default;
	text-shadow: none;
}
.news-tabs-list .tabs-content{
	position: relative;
	margin-top: 5px;
	padding-top: 20px;
	overflow: scroll !important;
}
.news-tabs-list .tabs-content > .wrapper{
	position: relative;
}
.news-tabs-list .tabs-content > .up,
.news-tabs-list .tabs-content > .down{
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	height: 20px;
	border: 0;
	background-color: #eceff8;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0 0 10px 10px #fff;
	border-radius: 10px;
	opacity: 1;
}

.news-tabs-list .tabs-content > .up{
	top: 0;
	background-image: url(/images/usr/icons-more-up.png);
}
.news-tabs-list .tabs-content > .down{
	bottom: 0;
	background-image: url(/images/usr/icons-more-down.png);
}
.news-tabs-list .tabs-content > .up.disabled,
.news-tabs-list .tabs-content > .down.disabled{
	/*opacity: 0;*/
}
.news-tabs-list .news-list{

}
.news-tabs-list .news-list > .news-item{
	display: block;
	position: relative;
	margin-top: 25px;
}
.news-tabs-list .news-list > .news-item:first-child{
	margin-top: 0;
}
.news-tabs-list .news-list > .news-item > .stat{
	display: block;
	position: relative;
	font-size: 12px;
	color: #858585;
	line-height: 18px;
	margin-bottom: 3px;
}
.news-tabs-list .news-list > .news-item > .stat > a{
	color: inherit;
}
.news-tabs-list .news-list > .news-item > .title{
	font-size: 14px;
}
.news-tabs-list .news-list > .news-item > .title > a{
	color: #163261;
}
.news-tabs-list .news-list > .news-item > .title > a:hover{
	color: #217cb5;
}
.news-tabs-list .news-list > .news-item-more{
	margin-top: 30px;
	padding: 10px 0;
	font-size: 14px;
	color: #858585;
}

#main form.search{
	margin: 30px auto 0;
	width: 400px;
	position: relative;
}
#main form.search > input[type="text"]{
	width: 100%;
	background: #CEDAF4;
	box-shadow: 0 0 20px #ACB9DD;
	border: 1px solid #fff;
}
#main form.search > input[type="submit"]{
	  background: url(/images/usr/header-search-icon.png) center no-repeat;
	background-position: center 6px;
	position: absolute;
	top: 1px;
	right: 1px;
	box-shadow: none;
	border-radius: 0;
	border: 0;
	width: 24px;
	height: 24px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
#main > .index-top > .middle{

}
#main > .index-top > .middle > .news-top{
	position: relative;
	height: 332px;
}
#main > .index-top > .middle > .news-top > .main{
	display: block;
	position: relative;
	height: 100%;
	width: 50%;
	float: left;
	border: 0;
	border-bottom: 1px solid transparent;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}
#main > .index-top > .middle > .news-top > .main > .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 20px 36px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 30px);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(30px,rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30px);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30px);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30px);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30px);
}
#main > .index-top > .middle > .news-top > .main > .title > span{
	display: block;
	/*font-family: Russia;*/
	font-size: 18px;
	line-height: 22px;
	color: #fff;
}
#main > .index-top > .middle > .news-top > .main > .title > .head{
	position: absolute;
	bottom: 0;
	left: 20px;
	font-size: 14px;
	line-height: 36px;
	color: rgba(255,255,255,0.5);
}
#main > .index-top > .middle > .news-top > .main > .title > .stat{
	position: absolute;
	bottom: 0;
	right: 20px;
	font-size: 14px;
	line-height: 36px;
	color: rgba(255,255,255,0.5);
	cursor: default;
}
#main > .index-top > .middle > .news-top > .main > .title > .stat > span{
	display: inline-block;
	line-height: 20px;
	margin-left: 20px;
	vertical-align: middle;
}
#main > .index-top > .middle > .news-top > .main > .title > .stat > span:before{
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: url(/images/usr/icons-news-top-sprite.png) top left no-repeat;
	margin-right: 2px;
	vertical-align: top;
}
#main > .index-top > .middle > .news-top > .main > .title > .stat > span.views:before{
	background-position: 0px 0px;
}
#main > .index-top > .middle > .news-top > .main > .title > .stat > span.comments:before{
	background-position: -20px 0px;
}
#main > .index-top > .middle > .news-top > .other{
	position: relative;
	height: 100%;
	width: 50%;
	float: left;
}
#main > .index-top > .middle > .news-top > .other > .item{
	display: block;
	position: relative;
	height: 50%;
	width: 50%;
	float: left;
	border-left: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}
#main > .index-top > .middle > .news-top > .other > .item > .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 8px 10px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 20px);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(20px,rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 20px);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 20px);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 20px);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 20px);
}
#main > .index-top > .middle > .news-top > .other > .item > .title > span{
	/*font-family: Russia;*/
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}

#main > .index-top > .right{
	width: 1px;
}
#main > .index-top > .right:empty{
	display: none;
}
#main > .index-top > .right > .newspaper{
	position: relative;
	margin-left: 10px;
}
#main > .index-top > .right > .newspaper > .page{
	display: block;
	border: 0;
}
#main > .index-top > .right > .newspaper > .page > img{
	height: 331px;
	vertical-align: top;
}
#main > .index-top > .right > .newspaper > .archive{
	display: block;
	border: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,0.5);
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
}

#main > .index-top .news-tabs-list .tabs-content{
	/*height: 282px;*/
	height: 695px;
}
#main > .index-middle .news-tabs-list .tabs-content{
	height: 800px;
}

#main > .index-middle > .left{
	padding-right: 30px;
}
#main > .index-middle.second > .left{
	width: 180px;
}
#main > .index-middle.second > .center > .grid > .left{
	padding-right: 30px;
	width: 180px;
}
#main > .index-middle hr{
	display: block;
	border: 0;
	margin: 40px 0 20px;
	height: 26px;
	background: url(/images/usr/hr-back.png) top left repeat;
}
#main > .index-middle hr.flat{
	display: block;
	border: 0;
	border-bottom: 1px dashed #acacac;
	margin: 20px 0 10px;
	height: 0;
	background: none;
}
#main > .index-middle .archive{
	margin-bottom: 40px;
}
#main > .index-middle > .right{
	width: 182px;
}

#main > .index-middle.second > .center{
	padding-right: 30px;
}
#main > .index-middle > .right .span{
	position: relative;
	padding: 0 0 10px;
}
#main > .index-middle > .right .span .editor{
	display: block;
	position: relative;
	width: 172px;
	padding: 5px;
	margin: 30px 0;
	border-top: 1px dashed #d6d8dc;
	border-bottom: 1px dashed #d6d8dc;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 50%, rgba(230,235,242,1) 100%);
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(255,255,255,1)), color-stop(50%,rgba(255,255,255,1)), color-stop(100%,rgba(230,235,242,1)));
	background: -webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 50%,rgba(230,235,242,1) 100%);
	background: -o-linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 50%,rgba(230,235,242,1) 100%);
	background: -ms-linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 50%,rgba(230,235,242,1) 100%);
	background: linear-gradient(45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 50%,rgba(230,235,242,1) 100%);
	-webkit-background-origin: border-box;
	-moz-background-origin: border-box;
	-o-background-origin: border-box;
	background-origin: border-box;
	box-shadow: 0 10px 10px -10px rgba(0,0,0,0.3);
	text-shadow: none;
}
#main > .index-middle > .right .span .editor:before{
	content: "";
	display: block;
	position: absolute;
	right: 21px;
	top: -3px;
	width: 23px;
	height: 16px;
	background: url(/images/usr/editor-top-label.png) center no-repeat;
}
#main > .index-middle > .right .span .editor:after{
	content: "";
	display: block;
	position: absolute;
	right: 21px;
	bottom: -23px;
	width: 23px;
	height: 22px;
	background: url(/images/usr/editor-bottom-label.png) center no-repeat;
}
#main > .index-middle > .right .span .editor > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 13px;
}
#main > .index-middle > .right .span .editor > .img{
	width: 162px;
	border: 5px solid #fefefe;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	margin-bottom: 13px;
}
#main > .index-middle > .right .span .editor > .person{
	margin-bottom: 8px;
}
#main > .index-middle > .right .span .editor > .person:after{
	content: "";
	display: block;
	clear: both;
}
#main > .index-middle > .right .span .editor > .person > .img{
	float: right;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background-position: center;
	background-size: cover;
}
#main > .index-middle > .right .span .editor > .person > .name{
	font-size: 14px;
	color: #010101;
}
#main > .index-middle > .right .span .editor > .person > .position{
	font-size: 14px;
	font-style: italic;
	color: #8c8b8b;
}
#main > .index-middle > .right .span .editor > .text{
	position: relative;
	font-size: 14px;
	font-style: italic;
	color: #1c3763;
	padding: 32px 0;
}
#main > .index-middle > .right .span .editor > .text:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 30px;
	background-image: url(/images/usr/editor-quots.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#main > .index-middle > .right .span .editor > .text:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 24px;
	width: 30px;
	background-image: url(/images/usr/editor-quots.png);
	background-repeat: no-repeat;
	background-position: -30px 0;
}

#main > .index-middle > .right .span .program{
	position: relative;
	margin: 30px 0;
}
#main > .index-middle > .right .span .program > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 20px;
	margin-bottom: 8px;
}
#main > .index-middle > .right .span .program > .list{
	position: relative;
	height: 158px;
	overflow: hidden;
}
#main > .index-middle > .right .span .program > .list a{
	display: block;
	margin-bottom: 8px;
}
#main > .index-middle > .right .span .program > .list a:last-child{
	margin-bottom: 0;
}
#main > .index-middle > .right .span .program > .list a > img{
	display: block;
	max-width: 150px;
}

#main > .index-middle > .right .span .staff{
	position: relative;
	margin: 30px -50px 30px;
	padding: 30px 50px;
	border-radius: 50% / 50px;
	width: 182px;
	/*box-shadow: 0 -40px 30px -40px #dce5ee, 0 40px 30px -40px #dce5ee;*/
}
#main > .index-middle > .right .span .staff > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 20px;
	margin-bottom: 8px;
}
#main > .index-middle > .right .span .staff > .person{
	display: block;
	position: relative;
	margin-bottom: 8px;
	text-shadow: none;
}
#main > .index-middle > .right .span .staff > .person:after{
	content: "";
	display: block;
	clear: both;
}
#main > .index-middle > .right .span .staff > .person > .img{
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 5px;
	border-radius: 30px;
	background-position: center;
	background-size: cover;
}
#main > .index-middle > .right .span .staff > .person > .name{
	font-size: 14px;
	color: #010101;
}
#main > .index-middle > .right .span .staff > .person > .position{
	font-size: 14px;
	font-style: italic;
	color: #8c8b8b;
}
#main > .index-middle > .right .span .staff > .more{
	margin-left: 65px;
	font-size: 14px;
}

#main > .index-middle > .right .span .vk_group{
	margin: 30px 0;
	overflow: hidden;
}

#main > .index-middle > .right .span .delkvart{
	margin: 50px 0 0;
}
#main > .index-middle > .right .span .delkvart > iframe{
	margin: 0 auto;
	display: block;
}

#main > .index-middle > .right .span .send-news{
	position: relative;
	text-align: center;
	margin: 30px 0;
}

#main > .index-middle > .right .span .advertise{
	position: relative;
	text-align: center;
	margin: 30px 0;
}
#main > .index-middle > .right .span .advertise > a{
	display: block;
	width: 170px;
	margin: 0 auto 50px;
}
#main > .index-middle > .right .span .advertise > a > img{
	display: block;
	max-width: 170px;
	margin: 0 auto;
}
#main > .index-middle > .right .span > *:last-child{
	margin-bottom: 0;
}
#main > .index-middle > .right .span > *:first-child{
	margin-top: 0;
}

#main > .index-middle .interviews{
	margin: 40px 0;
}

#main > .index-middle .block{
	display: block;
}
#main > .index-middle .block.skew-shadow{
	background: #fff;
	position: relative;
	box-shadow: 0 -13px 10px -10px #dce5ee, 0 13px 10px -10px #dce5ee;
}
/*#main > .index-middle .block.skew-shadow:before{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	bottom: 4px;
	right: 20px;
	left: 20px;
	border-radius: 10px 0;
	box-shadow: 0 0 10px 10px #dce5ee;
	background: #dce5ee;
	z-index: -1;
	-webkit-transform: skewY(3deg);
	-moz-transform: skewY(3deg);
	-ms-transform: skewY(3deg);
	-o-transform: skewY(3deg);
	transform: skewY(3deg);
}*/
#main > .index-middle .block > .head{
	font-size: 22px;
	line-height: 30px;
	/*font-family: Russia;*/
	color: #a83021;
}
#main > .index-middle .interview{
	display: block;
	font-size: 14px;
	padding: 8px 0;
	color: #000;
}
#main > .index-middle .interview > .title{
	display: block;
	font-size: 16px;
	font-style: italic;
	margin-bottom: 5px;
}
#main > .index-middle .interview > .answers{

}
#main > .index-middle .interview > .answers > label{
	display: block;
	position: relative;
	cursor: pointer;
	margin-left: 20px;
}
/*#main > .index-middle .interview > .answers > label:before{
	content: "";
	display: inline-block;
	position: relative;
}*/
#main > .index-middle .interview > .answers > label > input{
	display: none;
}
#main > .index-middle .interview > .answers > label > input + span:before{
	content: "";
	display: inline-block;
	position: absolute;
	left: -20px;
	top: 2px;
	width: 12px;
	height: 12px;
	border: 1px solid #a0bce5;
	box-shadow: 0 1px 2px rgba(62, 119, 205, 0.3) inset;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/*vertical-align: middle;*/
	/*margin-right: 5px;*/
}
#main > .index-middle .interview > .answers > label > input:checked + span:before{
	border-color: #329097;
}
#main > .index-middle .interview > .answers > label > input:disabled + span:before{
	border-color: #DBDBDB;
	background: #F5F5F5;
	box-shadow: 0 1px 2px #E8E8E8 inset;
}
#main > .index-middle .interview > .answers > label > input[type="radio"] + span:before{
	border-radius: 7px;
}
#main > .index-middle .interview > .answers > label > input[type="radio"]:checked + span:before{
	background: #15a861;
	box-shadow: 0 1px 2px rgba(62, 119, 205, 0.3) inset, 0 0 0 3px #fff inset;
}
#main > .index-middle .interview > .answers > label > input[type="radio"]:disabled:checked + span:before{
	background: #15a861;
	box-shadow: 0 1px 2px #E8E8E8 inset, 0 0 0 3px #F5F5F5 inset;
}
#main > .index-middle .interview > .answers > label > input[type="checkbox"] + span:before{
	border-radius: 1px;
	background-image: url(/images/usr/input-checkbox-check.png);
	background-repeat: no-repeat;
	background-position: 12px 50%;
	background-size: 100%;
}
#main > .index-middle .interview > .answers > label > input[type="checkbox"]:checked + span:before{
	background-position: 0px 50%;
}
#main > .index-middle .interview > .answers > label > i{
	display: block;
	text-align: right;
	margin-bottom: 5px;
}

#main > .index-middle .interview > a[href="#answer"] {
	margin: 10px 0;
	display: block;
	text-align: center;
}
#main > .index-middle .interview > .info{
	font-size: 12px;
}

#main > .index-bottom {
	margin-top: 30px;
	text-align: center;
}
#main > .index-bottom > .title {
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 24px;
	margin-bottom: 13px;
}
#main > .index-bottom > ul{
	list-style: none;
	display: block;
	margin: 0;
}
#main > .index-bottom > ul > li{
	display: inline-block;
	margin: 0 10px;
}
#main > .index-bottom > ul > li > a{
	display: block;
	position: relative;
	overflow: hidden;
	border: 0;
}
#main > .index-bottom > ul > li > a > img{
	display: block;
}
#main > .index-bottom > ul > li > a > img:last-child{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
#main > .index-bottom > ul > li > a:hover > img:last-child{
	opacity: 1;
}
#main > .content{
	margin-top: 40px;
}

#city {
	position:absolute;
	right: 262px;
	left: 200px;
	top: 70px;
	font-size: 16px;
	line-height:20px;
	color: #414141;
	text-align: center;
}
#city a,#city a:visited,#city a:active{
	color:#414141;
	border-color: #414141;
}
#city a:hover{
	color:#414141;
	border-color: #414141;
}
#city .address, #city .address:visited, #city .address:active, #city .address:hover {
	margin-left: 16px;
}
#citieslist{
	list-style:none;
	width:300px;
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
}
#citieslist li{
	margin:0 10px 10px;
}
#citieslist a{
	text-shadow:none;
}

/* Яндекс.Директ */
#direct{
	font-size:14px;
}

/* Архив новостей */
.archive > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 20px;
	padding: 10px 0 5px 10px;
}
.archive > table{
	width: 100%;
	/*font-family: Russia;*/
	font-size: 14px;
	line-height: 20px;
	text-align: right;
	border-collapse: separate;
	border-spacing: 1px;
}
.archive > table td > .day{
	display: block;
	padding: 4px;
	border-radius: 2px;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	cursor: default;
	color: #8e8e8e;
}
.archive > table td > a.day{
	cursor: pointer;
	text-shadow: none;
	color: #2c4f8a;
}
.archive > table td > .day.today{
	background: #498cf2;
	background: -moz-linear-gradient(top, #498cf2 0%, #2d5591 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#498cf2), color-stop(100%,#2d5591));
	background: -webkit-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: -o-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: -ms-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: linear-gradient(to bottom, #498cf2 0%,#2d5591 100%);
	color: #fff;
}
.archive > table td > .day:not(.today):hover{
	box-shadow: 0 0 0 1px #c5dbf1 inset;
}
.archive > table td > .day.active{
	box-shadow: 0 0 0 1px #c5dbf1 inset, 0 0 5px 0 #c5dbf1; 
}

/* Новости */
.news-main{
	text-align: justify;
	font-size: 0;
	margin: -30px;
	padding: 22px 12px 22px 22px;
	overflow: hidden;
	position: relative;
}
.news-main:after{
	content: "";
	display: inline-block;
	width: 100%;
	height: 0;
}
.news-main > .news-item{
	position: relative;
	display: inline-block;
	width: 248px;
	/*height: 365px;*/
	height: 390px;
	background: #fff;
	font-size: 16px;
	margin: 8px;
	vertical-align: top;
	text-shadow: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.news-main > .news-item:hover{
	z-index: 1;
	box-shadow: 0 0 30px rgba(80, 118, 201, 0.39);
}
.news-main > .news-item > .img{
	position: relative;
	display: block;
	width: 248px;
	/*height: 173px;*/
	height: 198px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}
.news-main > .news-item > .img > .heading{
	position: absolute;
	bottom: 0;
	right: 0;
	height: 21px;
	line-height: 21px;
	font-size: 14px;
	color: #000;
	text-shadow: -1px -1px 0 rgba(255,255,255,0.6);
	padding: 0 20px;
	background: url(/images/usr/news-heading-back.png) center no-repeat;
	background-size: 100% 100%;
	/*box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.3);*/
	
	/*background: -moz-linear-gradient(-45deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.96) 33%, rgba(255,255,255,0.8) 66%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,0.8)), color-stop(33%,rgba(255,255,255,0.96)), color-stop(66%,rgba(255,255,255,0.8)));
	background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.96) 33%,rgba(255,255,255,0.8) 66%);
	background: -o-linear-gradient(-45deg, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.96) 33%,rgba(255,255,255,0.8) 66%);
	background: -ms-linear-gradient(-45deg, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.96) 33%,rgba(255,255,255,0.8) 66%);
	background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.96) 33%,rgba(255,255,255,0.8) 66%);*/
}
.news-main > .news-item > .img > .video{
	position: absolute;
	display: block;
	top: 0;
	left: -115px;
	height: 30px;
	width: 142px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 30px;
	/*font-family: Russia;*/
	font-size: 14px;
	color: #fff;
	text-shadow: -1px -1px 0 #810f00;
	padding: 0px 8px;
	background: #bc1903;
	text-align: right;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.news-main > .news-item:hover > .img > .video{
	left: 0px;
}
.news-main > .news-item > .img > .video:after{
	content: "▶";
	display: inline-block;
	line-height: 16px;
	margin: 8px 0 6px 12px;
	vertical-align: top;
}
.news-main > .news-item:hover > .img > .heading{
	background-image: url(/images/usr/news-hover-heading-back.png);
	color: #fff;
	text-shadow: -1px -1px 0 #901e0f;
}
.news-main > .news-item > .text{
	padding: 10px 8px 0;
	position: relative;
	overflow: hidden;
	height: 124px;
	padding-bottom: 20px;
	text-align: left;
}
.news-main > .news-item > .text:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 20px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.news-main > .news-item > .text > span{
	display: block;
	color: #003797;
	/*font-family: Russia;*/
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 4px;
	border: 0;
}
.news-main > .news-item > .text > p{
	color: #000;
	font-size: 14px;
	line-height: 16px;
}
.news-main > .news-item > .info{
	padding: 10px 8px 8px;
	color: #a6a6a6;
	font-size: 12px;
	line-height: 20px;
}
.news-main > .news-item > .info:after{
	content: "";
	display: block;
	clear: both;
}
.news-main > .news-item > .info > .date{
	float: left;
}
.news-main > .news-item > .info > .stat{
	float: right;
}
.news-main > .news-item > .info > .stat > span{
	display: inline-block;
	margin-left: 15px;
	vertical-align: top;
}
.news-main > .news-item > .info > .stat > span:before{
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: url(/images/usr/icons-news-sprite.png) top left no-repeat;
	margin-right: 2px;
	vertical-align: top;
}
.news-main > .news-item > .info > .stat > span.views:before{
	background-position: 0px 0px;
}
.news-main > .news-item > .info > .stat > span.comments:before{
	background-position: -20px 0px;
}
.news-main > .show-more{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	text-align: center;
}

/* Общий стайл для всех блоков с новостями */
.news-block{

}
.news-block > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 26px;
	line-height: 30px;
}
.news-block > .title.striped{
	line-height: 16px;
	height: 16px;
	margin: 7px 0;
	background: url(/images/usr/hr-back.png);
}
.news-block > .title.striped > span{
	background: #fff;
	padding-right: 13px;
	line-height: 30px;
	display: inline-block;
	margin: -7px 0;
}
.news-block > .header-block{
	display: block;
	position: relative;
	margin-top: 20px;
	text-shadow: none;
}
.news-block > .header-block:after{
	content: "";
	display: block;
	clear: both;
}
.news-block > .header-block > span{
	display: block;
	float: left;
}
.news-block > .header-block i.img{
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 4px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset;
	margin-right: 20px;
}
.news-block > .header-block .title{
	display: block;
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 18px;
	line-height: 26px;
	margin: 3px 0;
}
.news-block > .header-block .position{
	display: block;
	color: #5e5e5e;
	/*font-family: Russia;*/
	font-size: 16px;
	line-height: 20px;
}
.news-block > .more{
	text-align: center;
	margin-bottom: 40px;
}
.news-block > .span > .news-item{
	position: relative;
	padding: 20px 0;
}
.news-block > .span > .news-item:not(:last-child):after {
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	background: url(/images/usr/news-fav-border.gif) top left repeat;
}
.news-block > .span > .news-item > .left {
	width: 136px;
	padding-right: 13px;
}
.news-block > .span > .news-item:first-child > .left {
	width: 216px;
}
.news-block > .span > .news-item > .left > .img{
	width: 136px;
	height: 109px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.news-block > .span > .news-item:first-child > .left > .img{
	width: 216px;
	height: 173px;
}
.news-block > .span > .news-item > .right > .title{
	font-size: 20px;
	/*font-family: Russia;*/
	color: #003797;
	margin-bottom: 8px;
}
.news-block > .span > .news-item > .right > .text{
	font-size: 14px;
	color: #000;
	margin-bottom: 8px;
}
.news-block > .span > .news-item > .right > .info{
	color: #8c8c8c;
	font-size: 12px;
}
.news-block > .span > .news-item > .title{
	font-size: 16px;
	/*font-family: Russia;*/
	color: #003797;
}
.news-block > .span > .news-item .title > a{
	color: inherit;
}

/* Подборка новостей */
.news-fav{
	margin: 0px -20px 30px;
	position: relative;
}
.news-fav .news-block{
	padding: 0 20px;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
}

/* Категории новостей */
.news-categories{
	margin: 0 -20px;
	position: relative;
}
.news-categories .news-block{
	padding: 0 20px;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
}
.news-categories .news-block > .span > .news-item > .left {
	width: 168px;
}
.news-categories .news-block > .span > .news-item > .left > .img{
	width: 168px;
	height: 134px;
}

/* Новости с Радио */
.news-radio-block{
	
}
.news-radio-block > .title{
	display: block;
	text-align: center;
	color: #bc1903;
	/*font-family: Russia;*/
	font-size: 24px;
}
.news-radio-block > .span {
	text-align: center;
}
.news-radio-block > .span > .news-radio-item{
	display: inline-block;
	position: relative;
	width: 303px;
	height: 221px;
	background: #fff;
	border: 1px solid #e0e2e4;
	padding: 10px;
	margin: 10px 10px 30px;
	border-radius: 2px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
	text-align: left;
}
.news-radio-block > .span > .news-radio-item:after{
	content: "";
	display: block;
	position: absolute;
	bottom: -17px;
	left: 0;
	right: 0;
	height: 25px;
	background: url(/images/usr/radio-news-item-shadow.png) center no-repeat;
	background-size: 100% 100%;
	z-index: -1;
}
.news-radio-block > .span > .news-radio-item > .info{
	font-size: 12px;
	line-height: 16px;
	color: #9f9f9f;
	margin-top: -5px;
}
.news-radio-block > .span > .news-radio-item > .info > span{
	display: inline-block;
}
.news-radio-block > .span > .news-radio-item > .info > span:not(:first-child){
	margin-left: 20px;
}
.news-radio-block > .span > .news-radio-item > .title{
	color: #2c4f8a;
	font-size: 18px;
	line-height: 22px;
	/*font-family: Russia;*/
	padding: 5px 50px 5px 0;
}
.news-radio-block > .span > .news-radio-item > .title > a{
	font: inherit;
	color: inherit;
}
.news-radio-block > .span > .news-radio-item > .text{
	position: relative;
	font-size: 14px;
	line-height: 18px;
	height: 74px;
	overflow: hidden;
}
.news-radio-block > .span > .news-radio-item > .text:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 18px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.news-radio-block > .span > .news-radio-item > .audio{
	position: absolute;
	padding: 10px;
	bottom: 0;
	right: 0;
	left: 0;
}
.news-radio-block > .span > .news-radio-item > .image{
	position: absolute;
	top: 5px;
	right: 5px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 50px;
	height: 50px;
}
.news-radio-block > .span > .news-radio-item > .image.type-mp3{
	background-image: url(/images/usr/radio-type-mp3.png);
}
.news-radio-block > .span > .news-radio-item > .image.type-ogg{
	background-image: url(/images/usr/radio-type-ogg.png);
}

.radio-news > .news-radio-block > .span > .news-radio-item{
	width: 454px;
	height: 187px;
}

.audio > .wrapper{
	display: table;
	width: 100%;
}
.audio .icon{
	display: block;
	width: 17px;
	height: 17px;
	background-image: url(/images/usr/radio-audio-controls.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	vertical-align: top;
	cursor: pointer;
}
.audio > .wrapper > span{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
}
.audio > .wrapper > .play{
	width: 17px;
}
.audio > .wrapper > .play > .icon{
	background-position: 0 0;
}
.audio > .wrapper > .play.pause > .icon{
	background-position: -17px 0;
}
.audio > .wrapper > .progress{
	padding: 0 5px;
}
.audio > .wrapper > .progress > .full{
	position: relative;
	display: block;
	height: 3px;
	border-radius: 2px;
	width: 100%;
	background: #bacdef;
	margin: 7px 0;
	cursor: pointer;
}
.audio > .wrapper > .progress > .full > .current{
	position: absolute;
	top: 0;
	left: 0;
	/*padding: 0 2px;*/
	height: 100%;
	border-radius: 2px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #709ae1;
}
.audio > .wrapper > .time{
	font-size: 12px;
	color: #9f9f9f;
	width: 36px;
}
.audio > .wrapper > .duration{
	font-size: 12px;
	color: #9f9f9f;
	width: 36px;
}
.audio > .wrapper > .volume{
	width: 28px;
}
.audio > .wrapper > .volume > .icon.speaker{
	margin: 0 5px;
	background-position: -51px 0;
}
.audio > .wrapper > .volume > .icon.full{
	background-position: -68px 0;
	background-color: #fff;
	width: 22px;
	position: absolute;
	top: 0;
	left: 3px;
	opacity: 0;
}
.audio > .wrapper > .volume:hover > .icon.full{
	opacity: 1;
}
.audio > .wrapper > .volume > .icon.full > .icon.current{
	background-position: -90px 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
}
.audio > .wrapper > .download{
	width: 17px;
}
.audio > .wrapper > .download > .icon{
	background-position: -34px 0;
}

/* Баннеры */
.horizontal-banner{
	margin: 8px;
	overflow: hidden;
}
.radio-news .horizontal-banner{
	margin: 0 0 40px;
}
.horizontal-banner > a{
	display: block;
	position: relative;
	border: 0;
}
.horizontal-banner.image-only > a{
	text-align: center;
}
.horizontal-banner > a:hover{
	text-shadow: 0 0 20px #fff;
}
.horizontal-banner:not(.image-only) > a:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100px;
	background: url(/images/usr/banners-horizontal-arrow.png) center no-repeat;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.horizontal-banner:not(.image-only) > a:hover:after{
	right: -10px;
}
.horizontal-banner > a > img{
	display: inline-block;
	max-width: 248px;
	min-height: 60px;
	max-height: 70px;
	vertical-align: top;
}
.horizontal-banner.image-only > a > img{
	display: inline-block;
	min-width: 248px;
	max-width: 778px;
	min-height: 60px;
	vertical-align: top;
}
.radio-news .horizontal-banner.image-only > a > img{
	max-width: 558px;
}
.horizontal-banner > a > .title{
	position: absolute;
	top: 0;
	right: 120px;
	bottom: 0;
	left: 258px;
	font-size: 0;
	line-height: 0;
	text-align: center;
	vertical-align: middle;
}
.horizontal-banner > a > .title > span{
	font-size: 20px;
	line-height: 30px;
	display: inline-block;
	vertical-align: middle;
}
.horizontal-banner > a > .title:before{
	content: " ";
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

#top-bnrs .bnr{
	margin: 0;
	overflow: hidden;
}
#top-bnrs .bnr > a{
	display: block;
	position: relative;
	border: 0;
	height: 90px;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	text-shadow: none;
}
#top-bnrs .bnr > a > .title{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 0;
	line-height: 0;
	text-align: center;
	vertical-align: middle;
}
#top-bnrs .bnr > a > .title > span{
	font-size: 24px;
	line-height: 30px;
	display: inline-block;
	vertical-align: middle;
}
#top-bnrs .bnr > a > .title > span > .date-countdown{
	font-style: normal;
}
#top-bnrs .bnr > a > .title:before{
	content: " ";
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.vertical-banner {
	float: left;
	margin: 8px;
}
.vertical-banner > a{
	display: block;
	border: 0;
	width: 248px;
	/*height: 365px;*/
	height: 390px;
}
.vertical-banner.v-2x > a{
	/*height: 746px;*/
	height: 796px;
}
.vertical-banner > a > img{
	width: 100%;
	height: 100%;
}

#banners{
	text-align: center;
}
#banners .banner{
	margin-bottom: 20px;
}
#banners .banner > a{
	border: none;
	display: inline-block;
	vertical-align: top;
}

#banners .banner > a > img{
	max-width: 224px;
	vertical-align: top;
}

.section-header{
	display: block;
	border-bottom: 1px dashed #577fbf;
	line-height: 40px;
	font-size: 34px;
	height: 23px;
	color: #244d8f;
	text-align: center;
	position: relative;
	margin: 35px 10px 30px 50px;
	text-shadow: 3px 3px 8px #f3f5f9, 3px -3px 8px #f3f5f9, -3px 3px 8px #f3f5f9, -3px -3px 8px #f3f5f9;
}
.section-header:before{
	content: " ";
	display: block;
	position: absolute;
	left: -41px;
	top: -25px;
	background: url(/images/usr/scissors.png) center no-repeat;
	width: 73px;
	height: 49px;
}

.content{
	position:relative;
	width:100%;
	height:100%;
	line-height: 20px;
}
.content .limit1000{
	height:100%;
}

.slider-switcher #content-title{
	display: inline-block;
	color: rgb(6, 90, 167);
}
.slider-switcher, .slider-switcher:active, .slider-switcher:visited {
	border-bottom: 2px dashed rgba(31, 99, 175, 0.5);
}
.slider-switcher:hover {
	text-shadow: 0 0 20px #09F;
	border-bottom: 2px dashed #1f63af;
}
.slider-switcher .arrow-down{
	display:none;
	position:absolute;
	height:38px;
	width:38px;
	margin:-20px 0;
	top:50%;
	right:-50px;
	border-radius:29px;
	background: url(/images/usr/slider-down.png) no-repeat;
	background-position: top center;
}
.slider-switcher:hover .arrow-down{
	background-position: bottom center;
}
.slider-switcher.closed .arrow-down{
	display:block;
}
.slider.closed{
	overflow: hidden;
}
.slider.closed:after{
	content: " ";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}


/*.socials{
	position: absolute;
	top: 35px;
	right: -64px;
}
.socials .icon{
	position: relative;
	display: block;
	width: 31px;
	height: 30px;
	border: 0;
	float: left;
	margin-right: 5px;
}
.socials .vkontakte{
	background: url(/images/usr/socials-vkontakte.png) center no-repeat;
}
.socials .facebook{
	background: url(/images/usr/socials-facebook.png) center no-repeat;
}
.socials .instagram{
	background: url(/images/usr/socials-instagram.png) center no-repeat;
}*/

#footer {
	position: relative;
	width: 100%;
	margin: 30px 0 0;
	bottom: 0px;
	z-index: 4;
}
#footer .footer-top{
	position: relative;
	padding: 50px 50px 30px;
	max-height: 614px;
	margin: 0 -50px;
	border-radius: 50% 50% 0 0 / 60px 60px 0 0;
	background: url(/images/usr/footer-menu-back.jpg) center top no-repeat;
	background-size: cover;
	box-shadow: 0 0 15px rgba(0,0,0,0.5) inset;
}
#footer .footer-top .span{
	padding: 0 36px;
	position: relative;
}
#footer .footer-top .span:after{
	content: "";
	display: block;
	clear: both;
}
#footer .footer-top .span .nav{
	position: relative;
	cursor: default;
	font-size: 14px;
	padding: 0 0 50px;
}
#footer .footer-top .span .nav > a.slider{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	height: 40px;
	background-color: rgba(166, 3, 43, 0.25);
	background-image: url(/images/usr/footer-nav-hide.png);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 6px;
}
#footer .footer-top .span .nav > a.slider:hover{
	background-color: rgba(166, 3, 43, 0.5);
}
#footer .footer-top .span .nav > a.slider.hidden{
	background-image: url(/images/usr/footer-nav-show.png);
}
#footer .footer-top .span .nav a{
	color: #fff;
	border: 0;
}
#footer .footer-top .span .nav a:hover{
	text-shadow: 0 0 20px #0532ff, 0 0 10px #0532ff;
}
#footer .footer-top .span .nav ul{
	list-style: none;
}
#footer .footer-top .span .nav > .navmenu{
	text-align: justify;
	position: relative;
}
#footer .footer-top .span .nav > .navmenu:after{
	width: 100%;
	height: 0;
	visibility: hidden;
	overflow: hidden;
	content: " ";
	display: inline-block;
}
#footer .footer-top .span .nav > .navmenu > li{
	position: relative;
	display: inline-block;
	vertical-align: top;
}
#footer .footer-top .span .nav > .navmenu > li > ul{
	position: relative;
	padding: 20px 8px 0;
}
/*#footer .footer-top .span .nav > .navmenu > li > ul:after{
	content: " ";
	display: block;
	position: absolute;
	bottom: 0px;
	height: 32px;
	left: 0;
	right: 0;
	background: url(/images/usr/footer-fade-bottom.png) center repeat-x;
	z-index: 1;
}
#footer .footer-top .span .nav > .navmenu > li > ul:before{
	content: " ";
	display: block;
	position: absolute;
	top: 0px;
	height: 32px;
	left: 0;
	right: 0;
	background: url(/images/usr/footer-fade-top.png) center repeat-x;
	z-index: 1;
}
#footer .footer-top .span .nav > .navmenu > li > ul > .up {
	position: absolute;
	display: block;
	top: 0;
	height: 20px;
	left: 0;
	right: 0;
	background: url(/images/usr/footer-up.png) center no-repeat;
	z-index: 2;
	opacity: 0.35;
	border-radius: 5px;
}
#footer .footer-top .span .nav > .navmenu > li > ul > .up:hover {
	background: url(/images/usr/footer-up.png) center no-repeat rgba(255,255,255,0.5);
	opacity: 0.8;
}
#footer .footer-top .span .nav > .navmenu > li > ul > .down {
	position: absolute;
	display: block;
	bottom: 0;
	height: 20px;
	left: 0;
	right: 0;
	background: url(/images/usr/footer-down.png) center no-repeat;
	z-index: 2;
	opacity: 0.35;
	border-radius: 5px;
}
#footer .footer-top .span .nav > .navmenu > li > ul > .down:hover {
	background: url(/images/usr/footer-down.png) center no-repeat rgba(255,255,255,0.5);
	opacity: 0.8;
}*/
#footer .footer-top .span .nav > .navmenu > li > a{
	display: inline-block;
	font-weight: bold;
	padding: 0 8px;
}
#footer .footer-top .span .nav > .navmenu .navchild > li{
	display: block;
}
#footer .footer-top .span .socials{
	position: relative;
	float: left;
}
#footer .footer-top .span .socials .icon{
	position: relative;
	display: block;
	width: 31px;
	height: 30px;
	border: 0;
	float: left;
	margin-right: 5px;
}
#footer .footer-top .span form.search{
	position: relative;
	float: right;
}
#footer .footer-top .span form.search input[type=text]{
	width: 216px;
	height: 22px;
	background: rgba(8, 20, 108, 0.15);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 12px;
	box-shadow: 0 0 5px rgba(0,0,0,0.5) inset, 0 0 10px rgba(0,0,0,0.5);
	padding: 0 15px;
	color: #fff;
	font-size: 12px;
}
#footer .footer-top .span form.search input[type=submit] {
	background: url(/images/usr/header-search-icon.png) center no-repeat;
	background-position: center 6px;
	position: absolute;
	top: 0px;
	right: 0px;
	box-shadow: none;
	border-radius: 0;
	width: 36px;
	height: 24px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
#footer .footer-bottom{
	position: relative;
	background: url(/images/usr/footer-back.jpg) top left repeat;
}
#footer .footer-bottom .span{
	display: table;
	position: relative;
	padding: 24px 36px 50px;
}
#footer .footer-bottom .span .left{
	display: table-cell;
	position: relative;
	padding: 0 50px 0 0;
	font-size: 12px;
}
#footer .footer-bottom .span .right{
	display: table-cell;
	position: relative;
	width: 480px;
	font-size: 14px;
}

/* Кнопка "НАВЕРХ" */
#up{
	display: block;
	position: fixed;
	bottom: -5px;
	left: 36px;
	width: 100px;
	height: 55px;
	background: url(/images/usr/misc-up.svg) center top no-repeat #003797;
	opacity: 0.8;
	cursor: pointer;
	border-radius: 8px 8px 0 0;
	z-index: 11;
}
#up:hover{
	bottom: 0px;
	opacity: 1;
}

#publication {

}
#publication > .breadcrumbs {
	list-style: none;
	margin: 0 0 20px;
}
#publication > .breadcrumbs:after{
	content: "";
	display: block;
	clear: both;
}
#publication > .breadcrumbs > li{
	position: relative;
	display: block;
	float: left;
	margin-right: 10px;
}
#publication > .breadcrumbs > li:not(:last-child):after{
	content: "▸";
	display: inline-block;
	margin-left: 10px;
}
#publication > .info{
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 5px;
	width: 533px;
}
#publication > .info:after{
	content: "";
	display: block;
	clear: both;
}
#publication > .info > span{
	float: left;
	color: #8a8989;
	margin-right: 20px;
}
#publication > .info > span > a{
	color: #254382;
}
#publication > .info > .heads > a{
	font-weight: bold;
}
#publication > .info > .views:before {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: url(/images/usr/icons-news-sprite.png) top left no-repeat;
	background-position: 0px 0px;
	margin-right: 2px;
	vertical-align: top;
}
#publication > .info > .print{
	float: right;
	border: 0;
	color: #8a8989;
}
#publication > .info > .print:before{
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	background: url(/images/usr/icons-news-sprite.png) top left no-repeat;
	background-position: -40px 0px;
	margin-right: 2px;
	vertical-align: top;
}
#publication > .images{
	width: 533px;
	margin-bottom: 30px;
}
#publication > .images:after {
	content: "";
	display: block;
	clear: both;
}
#publication > .images > .main{
	float: left;
	width: 412px;
	padding-right: 1px;
}
#publication > .images > .main a{
	position: relative;
	display: block;
	border: 0;
	width: 412px;
	height: 330px;
	/*background-repeat: no-repeat;
	background-position: center;
	background-size: contain;*/
	background-color: #E9EBF0;
	text-align: center;
}
#publication > .images > .main a:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
}
#publication > .images > .main a:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 35px;
	height: 34px;
	background: url(/images/usr/publication-photo-zoom.png) center no-repeat;
}
#publication > .images > .main a > img{
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}
#publication > .images > .main iframe{
	display: block;
}
/*#publication > .images > .main img{
	width: 100%;
	max-height: 600px;
	vertical-align: top;
}*/
#publication > .images > .other{
	float: left;
	width: 120px;
	position: relative;
	overflow: hidden;
}
#publication > .images > .other .image{
	position: relative;
	margin-bottom: 1px;
	cursor: pointer;
}
#publication > .images > .other .image:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255,255,255,0.3);
}
#publication > .images > .other .image.active:after{
	background-color: transparent;
	box-shadow: 0 0 0 3px #3081b8 inset;
}
#publication > .images > .other .image.video:after{
	background-repeat: no-repeat;
	background-position: center; 
	background-image: url(/images/usr/publication-video-play.png);
}
#publication > .images > .other .image:last-child{
	margin-bottom: 0;
}
#publication > .images > .other .image a{
	display: block;
	border: 0;
}
#publication > .images > .other .image img{
	width: 100%;
	vertical-align: top;
}
#publication > .images > .other > .wrapper{
	position: relative;
}
#publication > .images > .other > .down,
#publication > .images > .other > .up{
	position: absolute;
	left: 0;
	right: 0;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #3081b8;
	border: 0;
}
#publication > .images > .other > .up{
	background-image: url(/images/usr/publication-photo-up.png);
	top: 0;
}
#publication > .images > .other > .down{
	background-image: url(/images/usr/publication-photo-down.png);
	bottom: 0;
}
#publication > .images > .other > .down:hover,
#publication > .images > .other > .up:hover{
	background-color: #2f5b91;
}
#publication > .video-block{
	margin-bottom: 30px;
}
#publication > .audio{
	width: 533px;
	margin-bottom: 30px;
	padding: 10px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 0 20px #E9EFF4;
	border: 1px solid #E9EFF4;
	border-radius: 3px;
}
.publication-authors{
	width:700px;
	text-align: right;
	color: #666;
	font-style: italic;
	font-size: 16px;
	line-height: 20px;
	padding-top: 20px;
}
.publication-authors a {
	font: inherit;
}
.socials{

}
.socials:after{
	content: "";
	display: block;
	clear: both;
}
.socials > .yashare-auto-init{
	float: left;
}
.socials > .comment{
	font-size: 14px;
	float: right;
}
.socials > .error{
	font-size: 14px;
	display: inline-block;
	margin-left: 20px;
}

.tags{
	padding: 40px 0 20px;
}
.tags:after{
	content: "";
	display: block;
	clear: both;
}
.tags > .head{
	display: block;
	float: left;
	/*font-family: Russia;*/
	font-size: 20px;
	color: #a83021;
}
.tags > .tag{
	position: relative;
	display: block;
	float: left;
	margin-left: 13px;
	margin-right: 10px;
	padding: 0 5px;
	font-size: 14px;
	line-height: 20px;
	color: #2c4f8a;
	background: #f1f1f1;
	border: 1px solid #cfcfcf;
	border-right: 0;
}
.tags > .tag:after{
	position: absolute;
	content: url(/images/usr/tags-right.svg);
	display: block;
	top: -1px;
	right: -10px;
}
.related{
	margin-top: 30px;
}

#order{
	display:inline-block;
	vertical-align:bottom;
	width: 500px;
	text-align:left;
}
#order .left{
	display:inline-block;
	width:50%;
	vertical-align:bottom;
	text-align:left;
}
#order .right{
	display:inline-block;
	width:50%;
	vertical-align:bottom;
	text-align: right;
}
#order textarea{
	width: 220px;
	height: 107px;
	margin: 0;
	display: inline-block;
}

#almanac-order{
	width: 500px;
}
#almanac-order:after{
	content: "";
	display: block;
	clear: both;
}
#almanac-order img{
	max-height: 200px;
	max-width: 200px;
	float: left;
	margin: 0 10px 10px 0;
}
#almanac-order > .total{
	margin: 10px 0;
	font-size: 20px;
	font-size: 18px;
}
#almanac-order > .title{
	font-family: Lobster;
	font-size: 24px;
	margin-bottom: 10px;
}


.requestform{
	border-collapse:collapse;
	border-spacing:0;
}
.requestform td{
	padding:5px;
}

.error {
	color: red;
}
.error input, .error textarea{
	box-shadow:0 0 0 2px rgba(255,0,0,0.25);
}
.sticked{
	position:fixed !important;
	top:0px !important;
	z-index:1030;
}

/* select */
.select{
	position: relative;
	display: inline-block;
	padding: 0 8px;
	background: rgba(255,255,255,0.5);
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
	line-height: 24px;
	font-size: 14px;
	/*font-family: Russia;*/
	color: #515151;
	margin: 0 5px 0 0;
	cursor: pointer;
}
.select:last-child{
	margin-right: 0;
}
.select:after{
	content: "";
	position: relative;
	display: inline-block;
	width: 9px;
	height: 24px;
	background: url(/images/usr/calendar-dropdown.png) center no-repeat;
	vertical-align: top;
	opacity: 0.5;
}
.select > ul{
	position: absolute;
	list-style: none;
	background: #fff;
	top: 26px;
	left: 0;
	right: 0;
	padding: 8px 0;
	font-size: 14px;
	line-height: 20px;
	border-radius: 3px;
	box-shadow: 0 2px 5px rgba(25,55,103,0.5);
	z-index: 1;
}
.select > ul > li{
	padding: 0 8px;
}
.select > ul > li:hover{
	background: #498cf2;
	background: -moz-linear-gradient(top, #498cf2 0%, #2d5591 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#498cf2), color-stop(100%,#2d5591));
	background: -webkit-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: -o-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: -ms-linear-gradient(top, #498cf2 0%,#2d5591 100%);
	background: linear-gradient(to bottom, #498cf2 0%,#2d5591 100%);
	color: #fff;
}
.select > input{
	background: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	height: 24px;
	vertical-align: top;
	font: inherit;
	width: auto;
	cursor: pointer;
}


/* Отзывы */
#comments > .head {
	margin: 20px 0;
}
#comments > .head:after{
	content: "";
	display: block;
	clear: both;
}
#comments > .head > h2{
	float: left;
	color: #a83021;
	margin: 0;
	line-height: 26px;
}
#comments > .head > .total-count{
	float: right;
	color: #171717;
	font-size: 12px;
	line-height: 26px;
}
#comments .authorize{
	font-size: 14px;
	color: #171717;
	padding: 10px;
	margin: 20px 0;
	text-align: center;
	border: 1px dotted rgba(0,0,0,0.3);
}
#comments .authorize a{
	color: #171717;
	border-color: rgba(23,23,23,0.5);
}
#comments .authorize a:hover{
	color: #003797;
	border-color: #003797;
}
form#review{
	width: 100%;
	margin-bottom: 20px;
	font-size: 14px;
}
form#review textarea{
	width: 100%;
	height: 100px;
}
form#review .input.rating{
	margin-bottom: 10px;
	display: block;
}
form#review .rating.input i.star-value{
	position: relative;
	width: 15px;
	height: 16px;
	display: inline-block;
	cursor: pointer;
}
form#review > .info{
	margin-right: 10px;
	float: left;
}
#reviews .reviews-list {
	display: block;
	list-style: none;
}
#reviews .reviews-list .reviews-list{
	padding:0 0 0 30px;
}
#reviews .review{
	display:block;
	margin:0;
}
#reviews .review-block{
	display:block;
	padding:10px 0;
	position:relative;
	font-size: 14px;
}
#reviews .review-block:hover{

}
#reviews .review-block > .controls{
	display:inline-block;
	line-height:30px;
	padding:0 10px;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
	opacity:0;
}
#reviews .review-block:hover > .controls{
	opacity:1;
}
#reviews .review-block > .name{
	display:inline-block;
	font-weight:bold;
	margin-right:10px;
}
#reviews .review-block > .group{
	display:inline-block;
	font-style: italic;
	margin-right:10px;
}
#reviews .review-block > .date{
	font-size: 12px;
	line-height: 30px;
	display:block;
	position: absolute;
	top: 10px;
	right: 0;
	color:#666;
}
#reviews .review-block > .review-text{
	display:block;
	line-height:20px;
	color:#333;
	background: #ebedf4;
	padding: 10px;
	border-radius: 2px;
}
#reviews .review-block:hover > .review-text{
	box-shadow: 0 0 0 1px rgba(0, 78, 155, 0.17);
}

/* Календарь */
#calendar{
	position: relative;
	width: 978px;
	margin: -19px auto 0;
}
#calendar > .head{
	position: relative;
	height: 44px;
	padding: 19px 0 16px;
	margin: 0;
	background: url(/images/usr/calendar-top.png) center no-repeat;
	text-align: center;
	z-index: 1;
}
#calendar > .head > .controls{
	position: relative;
	margin: 0;
	height: 100%;
	display: inline-block;
	text-align: left;
	padding: 6px 0;
}
#calendar > .head > .controls > .prev{
	display: inline-block;
	width: 21px;
	height: 32px;
	vertical-align: top;
	border: 0;
	background: url(/images/usr/calendar-prev-next.png) center left no-repeat;
}
#calendar > .head > .controls > .next{
	display: inline-block;
	width: 21px;
	height: 32px;
	vertical-align: top;
	border: 0;
	background: url(/images/usr/calendar-prev-next.png) center right no-repeat;
}

#calendar > .head > .controls > .select{
	position: relative;
	display: inline-block;
	padding: 0 14px;
	background: rgba(255,255,255,0.5);
	box-shadow: 0 2px 5px rgba(25,55,103,0.75) inset;
	border-radius: 3px;
	line-height: 32px;
	min-width: 70px;
	font-size: 22px;
	font-family: Lobster;
	color: #212121;
	margin: 0 5px;
	cursor: pointer;
}
#calendar > .head > .controls > .select:after{
	content: "";
	position: relative;
	display: inline-block;
	width: 32px;
	height: 32px;
	box-shadow: 0 0 2px rgba(25,55,103,0.5) inset;
	border-radius: 3px;
	background: url(/images/usr/calendar-dropdown.png) center no-repeat;
	vertical-align: top;
	margin: 0 -14px 0 14px; 
}
#calendar > .head > .controls > .select > ul{
	position: absolute;
	list-style: none;
	background: #fff;
	top: 35px;
	left: 0;
	right: 0;
	padding: 8px;
	font-size: 16px;
	line-height: 22px;
	border-radius: 3px;
	box-shadow: 0 2px 5px rgba(25,55,103,0.5);
}
#calendar > .head > .controls > .select > input{
	background: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	height: 32px;
	vertical-align: top;
	font: inherit;
	width: auto;
	cursor: pointer;
}
#calendar > .body{
	background: #f4f6f7;
	margin-top: -60px;
	padding-top: 60px;
	margin-bottom: -216px;
	padding-bottom: 216px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset;
}
#calendar > .body > table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 6px;
}
#calendar > .body > table th{
	color: #244d8f;
	font-size: 16px;
	font-family: Lobster;
	text-align: left;
	padding: 0 8px;
}
#calendar > .body > table .day{
	position: relative;
	height: 132px;
	width: 132px;
	box-shadow: 0 0 2px #d1dae6; 
}
#calendar > .body > table .day.today{
	box-shadow: 0 0 0 2px #A5BBDA;
}
#calendar > .body > table .day:hover{
	background: #dde3ec;
}
#calendar > .body > table .day > span{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background: #dde3ec;
	color: #212121;
	width: 24px;
	line-height: 24px;
	text-align: center;
	font-weight: bold;
}
#calendar > .body > table .day > ul{
	list-style: none;
	padding: 5px;
}
#calendar > .body > table .day > ul > li{
	display: block;
}
#calendar > .body > table .day > ul > li:not(:last-child){
	margin-bottom: 8px;
}
#calendar > .body > table .day > ul > li > span{
	display: block;
	margin-bottom: -5px;
}
#calendar > .body > table .day > ul > li > a{
}
#calendar > .bottom {
	position: relative;
	background: url(/images/usr/calendar-bottom.jpg) center no-repeat;
	height: 96px;
	padding: 60px 0;
}
#calendar > .bottom > .text{
	margin: 0 auto;
	color: #5a5a5a;
	text-align: center;
	font-size: 20px;
	font-family: Lobster;
}
#calendar:before{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 8px;
	box-shadow: 0 0 30px 10px #72747F;
}
.schedule {

}
.schedule > .head {
	display: block;
	color: #000;
	font-family: Lobster;
	font-size: 18px;
	margin-bottom: 20px;
}
.schedule > ul{
	list-style: none;
}
.schedule > ul > li{
	display: block;
}
.schedule > ul > li > span{
	display: inline-block;
	margin-right: 20px;
	width: 40px;
}
.schedule > ul > li > a{

}

/*Modal Window*/
.modal{
	width:100%;
	height:100%;
	position:fixed;
	top:0px;
	left:0px;
	z-index:500;
	opacity:0;
}
.modal-back{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: rgba(179, 179, 179, 0.8);
}
.modal-window{
	width: 600px;
	/*margin:100px auto 0;*/
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 100px;
	background: #fff;
	box-shadow:0 5px 20px rgba(0,0,0,0.5);
	border-radius: 6px;

}
.modal #modal-title{
	color: #000;
	font-size: 25px;
	/*font-family: Russia;*/
	margin: 8px 0;
	text-align: center;
	display: inline-block;
	width: 100%;
}
.modal #modal-title:empty{
	display:none;
}
.modal #modal-body{
	padding: 15px;
	color: #000;
	min-width: 300px;
}

.modal .close, .modal .close:active, .modal .close:visited {
	width: 16px;
	height: 16px;
	background: url(/images/modal-close.png);
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
	border:0;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
}

.modal .close:hover {
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
}

.contextmenu{
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	padding: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.5);
	border-radius: 6px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.error_text{
	font-size: 14px;
}
.error_text > span{
	color: #a83021;
	text-decoration: underline;
}

.busy{
	position:relative;
	overflow: hidden;
}
.busy:after{
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: url(/images/usr/site-busy.gif) center no-repeat rgba(255,255,255,0.5);
}

.tooltip{
	position:absolute;
	display:inline-block;
	background:#8a8a8a;
	border-radius:4px;
	font-size:11px;
	line-height:20px;
	padding:0 10px;
	color:#fff;
	z-index: 11;
}
.tooltip:after{
	content:" ";
	display:block;
	position:absolute;
	left:50%;
	bottom:-5px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #8a8a8a;
	margin:0 -5px;
}

.pagination{
	text-align: center;
}
.pagination > a,
.pagination > i{
	display: inline-block;
	position: relative;
	border: 1px solid #003797 !important;
	padding: 0 3px;
	min-width: 20px;
}
.pagination > span{
	width: 26px;
	display: inline-block;
	position: relative;
	border: 1px solid transparent !important;
	padding: 0 3px;
	width: 26px;
}
.pagination > i{
	font-style: normal;
	background: #003797;
	color: #fff;
}
.pagination > *:first-child{
	border-radius: 3px 0 0 3px;
}
.pagination > *:last-child{
	border-radius: 0 3px 3px 0;
}
.pagination > *:not(:first-child){
	margin-left: -1px;
}

/* Версия для печати */
@media print{

	#header{
		background: none;
		height: 60px;
		margin: 0 0 20px;
	}

	#header .logo{
		width: 93px;
		height: 55px;
	}

	#header .top,
	#header .nav,
	#header .heads,
	#header .special,
	#header .search,
	#header .user,
	#header .info{
		display: none;
	}

	#main > .index-middle > .left,
	#main > .index-middle > .right{
		display: none;
	}

	#main > .index-middle.second > .center {
		padding-right: 0;
	}

	#main > .index-middle > .center .socials,
	#main > .index-middle > .center #comments{
		display: none;
	}
	#main > .index-middle > .center hr:not(.flat){
		display: none;
	}

	#publication > .video-block{
		display: none;
	}
	#publication > .images > .main > a{
		background: none;
	}
	#publication > .images > .main > a:after{
		display: none;
	}
	#publication > .info > .views:before{
		content: "Просмотры: ";
		width: auto;
		background: none;
	}
	#publication > .info > .print{
		display: none;
	}

	#main > .index-bottom{
		display: none;
	}
	#footer {
		margin: 0;
		border-top: 1px solid #ddd;
	}
	#footer > .footer-top{
		display: none;
	}
	#footer > .footer-bottom{
		background: none;
	}
	#footer > .footer-bottom .span{
		padding: 5px 10px 5px;
	}
	#up{
		display: none;
	}
	.tags > .tag{
		background: none;
		border: 0;
	}
	.tags > .tag:after{
		display: none;
	}
	.news-block > .span > .news-item > .left{
		display: none;
	}

}

/* 22.01.2016 IM -> */
.middle > .news-main {
    box-sizing: border-box;
    width: 100% !important;
    margin: 0;
    padding: 0;
    padding-right: 0 !important;
}
.middle > .news-main > .news-item {
    width: 22% !important;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 5px 2px 5px;
}
.middle > .news-main > .news-item > .img {
    width: 100% !important;
    box-sizing: border-box;
}
.middle > .news-main > .news-item > .text {
    width: 100% !important;
    box-sizing: border-box;
}
.middle > .news-main > .news-item > .info {
    width: 100% !important;
    box-sizing: border-box;
}
.news-tabs-list .tabs-content {
    overflow-x: hidden !important;
    height: 730px !important;
}
/* 22.01.2016 IM -< */
/* 29.01.2016 IM -> */
.bottom-vertical-banners {
    text-align: justify;
    height: 405px;
    overflow: hidden;
}
.bottom-vertical-banners:after {
    content: "";
    display: inline-block;
    width: 100%;
}
.bottom-vertical-banners > .vertical-banner {
    display: inline-block;
    float: none;
    vertical-align: top;
}
/* 29.01.2016 IM -< */
/* 30.01.2016 IM -> */
.bottom-vertical-banners > .vertical-banner > .staff{
	/*position: relative;
	margin: 30px -50px 30px;
	padding: 30px 50px;
	border-radius: 50% / 50px; */
	width: 248px;
	/*box-shadow: 0 -40px 30px -40px #dce5ee, 0 40px 30px -40px #dce5ee;*/
}
.bottom-vertical-banners > .vertical-banner > .staff > .title{
	color: #a83021;
	/*font-family: Russia;*/
	font-size: 20px;
	margin-bottom: 20px;
	padding-left: 50px;
}
.bottom-vertical-banners > .vertical-banner > .staff > .person{
	display: block;
	position: relative;
	margin-bottom: 8px;
	text-shadow: none;
}
.bottom-vertical-banners > .vertical-banner > .staff > .person:after{
	content: "";
	display: block;
	clear: both;
}
.bottom-vertical-banners > .vertical-banner > .staff > .person > .img{
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 5px;
	border-radius: 30px;
	background-position: center;
	background-size: cover;
}
.bottom-vertical-banners > .vertical-banner > .staff > .person > .name{
	font-size: 14px;
	color: #010101;
}
.bottom-vertical-banners > .vertical-banner > .staff > .person > .position{
	font-size: 14px;
	font-style: italic;
	color: #8c8b8b;
	text-align: left;
}
.bottom-vertical-banners > .vertical-banner > .staff > .more{
	margin-left: 65px;
	font-size: 14px;
}
#main > .index-middle > .right .span .staff > a:nth-child(n + 4) {
	display: none;
}
/* 30.01.2016 IM -< */
/* 07.02.2016 IM -> */
.bottom-vertical-banners > .newspaper {
    display: inline-block;
    height: auto;
    margin: 8px;
}
.bottom-vertical-banners > .newspaper > .archive {
    display: none;
}
.news-block.news-block-full-line {
    padding: 0 20px;
    width: 100%;
    /* -webkit-box-sizing: border-box; */
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
}
.news-block-full-line > .title.striped {
    line-height: 16px;
    height: 16px;
    margin: 7px 0;
    background: url(/images/usr/hr-back.png);
}

.news-block-full-line > .title {
    color: #a83021;
    /* font-family: Russia; */
    font-size: 26px;
    line-height: 30px;
}
.news-block-full-line > .title.striped > span {
    background: #fff;
    padding-right: 13px;
    line-height: 30px;
    display: inline-block;
    margin: -7px 0;
}
.news-block-full-line > .span {
    text-align: justify;
    height: 405px;
    display: block;
    overflow: hidden;
}
a.news-item-full-line {
    height: 390px;
    width: 248px;
    display: inline-block;
    margin: 10px 5px;
    vertical-align: top;
}
.news-item-full-line .img {
    position: relative;
    display: block;
    width: 248px;
    /* height: 173px; */
    height: 198px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}
.news-item-full-line .heading {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 21px;
    line-height: 21px;
    font-size: 14px;
    color: #000;
    text-shadow: -1px -1px 0 rgba(255,255,255,0.6);
    padding: 0 20px;
    background: url(/images/usr/news-heading-back.png) center no-repeat;
    background-size: 100% 100%;
    /* box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.3); */
}
.news-item-full-line .text {
    padding: 10px 8px 0;
    position: relative;
    overflow: hidden;
    height: 124px;
    padding-bottom: 20px;
    text-align: left;
}
.news-item-full-line .text span {
    display: block;
    color: #003797;
    /* font-family: Russia; */
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 4px;
    border: 0;
}
.news-item-full-line .text p {
    color: #000;
    font-size: 14px;
    line-height: 16px;
}
.news-item-full-line .info {
    padding: 10px 8px 8px;
    color: #a6a6a6;
    font-size: 12px;
    line-height: 20px;
}
.news-item-full-line .info .date {
    float: left;
}
.news-item-full-line .stat {
    float: right;
}
.news-item-full-line .stat .views {
    display: inline-block;
    margin-left: 15px;
    vertical-align: top;
}
.news-item-full-line .stat .views:before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    background: url(/images/usr/icons-news-sprite.png) top left no-repeat;
    margin-right: 2px;
    vertical-align: top;
}
.news-block-full-line > .span:after {
    content: "";
    display: inline-block;
    width: 100%;
}
.news-item-full-line:hover {
    z-index: 1;
    box-shadow: 0 0 30px rgba(80, 118, 201, 0.39);
}
/* 07.02.2016 IM -< */
/* 09.02.2016 IM -> */
.news-block-full-line > .span > span {
    background: #fff;
    padding-right: 13px;
    line-height: 30px;
    display: inline-block;
    margin: 10px 5px;
    color: #a83021;
    font-size: 26px;
    height: 390px;
    width: 248px;
    vertical-align: top;
}
.middle > .news-main > .title.striped {
    line-height: 16px;
    height: 16px;
    margin: 30px 0 20px 0;
    background: url(/images/usr/hr-back.png);
}
.middle > .news-main > .title {
    color: #a83021;
    font-size: 26px;
    line-height: 30px;
}
.middle > .news-main > .title.striped > span {
    background: #fff;
    padding-right: 13px;
    line-height: 30px;
    display: inline-block;
    margin: -7px 0;
    color: #a83021;
    font-size: 26px;
}
/* 09.02.2016 IM -< */
/* 16.02.2016 IM -> */
.news-block-full-line > .span > span > a, .news-block-full-line > .span > span > a:hover, .news-block-full-line > .span > span > a:visited {
    background: #fff;
    padding-right: 13px;
    line-height: 30px;
    display: inline-block;
    margin: 10px 5px;
    color: #a83021;
    font-size: 26px;
    height: 390px;
    width: 248px;
    vertical-align: top;
    text-decoration: none;
}
/* 16.02.2016 IM -< */