@charset "utf-8";
/*
    main styles
    version: 15.01.2013
    
    Style to null

    fonts

    site

    header

    logo

    content-wrap

    footer

*/

/* --------------- Style to null --------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i,dl, dt, dd,
ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td, td img {
    vertical-align: top;
}
input, select, button, textarea {
    margin: 0;
    font-size: 100%;
}
input[type="text"], input[type="password"], textarea, input[type="email"], input[type="phone"], input[type="number"] {
    padding: 0;
    font: 12px Arial, Helvetica, sans-serif;
}
input[type="checkbox"] {
    vertical-align: bottom;
}
input[type="radio"] {
    vertical-align: text-bottom;
}
sub {
    vertical-align: sub;
    font-size: smaller;
}
sup {
    vertical-align: super;
    font-size: smaller;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display:block;
}

ul,
ol {
    list-style:none;
}
html {
    overflow-y: scroll;
    overflow-x: auto;
}
html,
body {
    height: 100%;
}
body {
    line-height: 1;
    color: #000;
    text-align: left;
    z-index: 1;
    position: relative;
}

input [type='text']{
    padding: 0;
}
input, select, button, textarea {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
input,
textarea {
    outline: none;
}
textarea {
    resize:none;
    overflow: auto;
}
label, input[type="button"], input[type="submit"], button {
    cursor: pointer;
}
a, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus, a:active {
    text-decoration: none;
}
input[type="search"]:focus {
    outline: none;
}
input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding:0;
    border:0;
}
:focus {
    outline: none;
}
input:invalid {
    outline: none;
    -moz-box-shadow: none;
    border: none;
}
::-webkit-input-placeholder {
    color: #9e9e9e;
}
:-moz-placeholder {
    color: #9e9e9e;
}
.placeholder {
    color: #9e9e9e;
}
/* --------------- /Style to null --------------- */

/* --------------- site --------------- */
.site {
    min-height: 100%;
    min-width: 1000px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: 'PT Serif', serif;
}
.site:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 305px;
}
.site__wrap {
    width: 1000px;
    margin: 0 auto 30px;
    text-align: justify;
    padding-top: 16px;
}
.site__wrap h1 {
    font-size: 24px;
    color: #010101;
    text-transform: uppercase;
    font-weight: 400;
}
.site__wrap h1 > span {
    display: block;
    padding-top: 4px;
}
.site__wrap h2 {
    font-size: 24px;
    color: #010101;
    text-transform: uppercase;
    font-weight: 400;
}
.site__wrap h2 > a {
    font-size: 24px;
    color: #010101;
    text-decoration: underline;
}
.site__wrap h2 > a:hover {
    text-decoration: none;
}
.site__wrap h2 span {
    display: block;
    text-transform: none;
    padding-top: 5px;
}
.site__wrap:after {
    display: inline-block;
    width: 100%;
    content: '';
}
.site__aside {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    text-align: left;
}
.site__content {
    display: inline-block;
    vertical-align: top;
    width: 650px;
    text-align: left;
}
.site__content h2 {
    padding-left: 8px;
}
.site__content p {
    font-size: 14px;
    color: #343434;
}
.site__content h3 {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}
/* --------------- /site --------------- */

/* --------------- header --------------- */
.header {
    position: relative;
    margin: 60px 0;
    box-shadow: 0 0 20px #dcdada;
}
.header__wrap {
    width: 1000px;
    height: 110px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.header__menu {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: -50px;
    text-align: center;
}
.header__menu a {
    display: inline-block;
    vertical-align: top;
    height: 50px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    color: #454545;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    padding: 15px 15px 0;
    margin: 0 2px;
}
.header__menu a:hover {
    background: rgb(224,224,224);
    background: -moz-linear-gradient(top,  rgba(224,224,224,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,224,224,1)), color-stop(100%,rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top,  rgba(224,224,224,1) 0%,rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(top,  rgba(224,224,224,1) 0%,rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(top,  rgba(224,224,224,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(224,224,224,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e0e0', endColorstr='#ffffff',GradientType=0 );
}
.header__menu a.active {
    color: #000;
    background: rgb(246,246,246);
    background: -moz-linear-gradient(top,  rgba(246,246,246,1) 0%, rgba(255,255,255,1) 30%, rgba(225,225,225,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,246,246,1)), color-stop(30%,rgba(255,255,255,1)), color-stop(100%,rgba(225,225,225,1)));
    background: -webkit-linear-gradient(top,  rgba(246,246,246,1) 0%,rgba(255,255,255,1) 30%,rgba(225,225,225,1) 100%);
    background: -o-linear-gradient(top,  rgba(246,246,246,1) 0%,rgba(255,255,255,1) 30%,rgba(225,225,225,1) 100%);
    background: -ms-linear-gradient(top,  rgba(246,246,246,1) 0%,rgba(255,255,255,1) 30%,rgba(225,225,225,1) 100%);
    background: linear-gradient(to bottom,  rgba(246,246,246,1) 0%,rgba(255,255,255,1) 30%,rgba(225,225,225,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#e1e1e1',GradientType=0 );
}
.header__top-menu {
    width: 100%;
    height: 60px;
    position: absolute;
    top: -60px;
    left: 0;
    text-align: center;
    cursor: default;
    padding-top: 9px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header__top-menu a {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    color: #454545;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    padding: 4px 10px;
}
.header__top-menu a:hover,
.header__top-menu a.active {
    color: #000;
    background: #e5e5e5;
}
.header__search {
    height: 34px;
    width: 438px;
    position: absolute;
    top: 50px;
    right: 2px;
}
.header__search input[type=text] {
    font-size: 14px;
    color: #9e9e9e;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 30px 0 12px;
    width: 100%;
    height: 100%;
}
.header__search input[type=submit] {
    background: url("../img/search.png") no-repeat center;
    border: none;
    position: absolute;
    height: 100%;
    width: 30px;
    top: 0;
    right: 0;
    background-size: 50%;
    -webkit-transition: background-size 0.2s ease;
    transition: background-size 0.2s ease;
}
.header__search input[type=submit]:hover {
    background-size: 70%;
}
.header__language {
    position: absolute;
    top: 17px;
    right: 142px;
    cursor: default;
}
.header__language li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 2px;
}
.header__language li:before {
    content: '';
    background: #777777;
    width: 1px;
    height: 9px;
    position: absolute;
    top: 6px;
    left: -2px;
}
.header__language li:first-child:before {
    display: none;
}
.header__language a {
    border-bottom: 1px solid #777777;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
    color: #777777;
    font-size: 11px;
}
.header__language a.active,
.header__language a:hover {
    border-bottom-color: transparent;
    color: #515151;
}
.header__authorize {
    position: absolute;
    top: 16px;
    right: 2px;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    background: #ed6611;
    padding: 4px 19px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.header__authorize:hover {
    background: #777777;
}
/* --------------- /header --------------- */

/* --------------- logo --------------- */
.logo {
    position: absolute;
    top: 0;
    left: 0;
}
/* --------------- /logo --------------- */

/* --------------- videos --------------- */
.videos {
    background: #dcdcdc;
    overflow: hidden;
    width: 100%;
    height: 286px;
    position: relative;
    margin: 18px 0 50px;
}
.videos__item {
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     display: none;
}
.videos__points {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    cursor: default;
}
.videos__points li {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background: url("../img/points.png") no-repeat;
}
.videos__points li.active {
    background-position: right 0;
}
/* --------------- /videos --------------- */

/* --------------- slider-affisha --------------- */
.slider-affisha {
    background: #dcdcdc;
    overflow: hidden;
    width: 100%;
    height: 339px;
    position: relative;
    margin: 18px 0 50px;
}
.slider-affisha__item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.slider-affisha__points {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    cursor: default;
}
.slider-affisha__points li {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background: url("../img/points.png") no-repeat;
}
.slider-affisha__points li.active {
    background-position: right 0;
}
/* --------------- /slider-affisha --------------- */

/* --------------- photo-reports --------------- */
.photo-reports {
    text-align: justify;
    margin-bottom: 21px;
}
.photo-reports:after {
    display: inline-block;
    width: 100%;
    content: '';
}
.photo-reports h2 {
    display: inline-block;
    width: 100%;
    margin-bottom: 26px;
}
.photo-reports > a {
    display: inline-block;
    vertical-align: top;
    width: 140px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 19px;
    position: relative;
}
.photo-reports span {
text-align: left;
    display: block;
    position: absolute;
    top: -100%;
    left: 0;
    -webkit-transition: top 0.4s ease;
    transition: top 0.4s ease;
    background: #ea5718;
    color: #fff;
    font-size: 14px;
    padding: 4px 9px 6px;
}
.photo-reports > a:hover span {
    top: 0;
}
/* --------------- /photo-reports --------------- */

/* --------------- poll --------------- */
.poll {
    text-align: center;
    margin-bottom: 59px;
}
.poll h2 {
    text-align: left;
    margin-bottom: 17px;
}
.poll h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #ea5717;
    margin-bottom: 14px;
    text-align: left;
}
.poll fieldset {
    cursor: default;
    margin-bottom: 11px;
    text-align: left;
}
.poll label {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    display: inline-block;
    vertical-align: top;
    margin: -5px 0 0 4px;
    width: 270px;
}
.poll input[type=submit] {
    font-size: 14px;
    color: #fff;
    background: #ec6312;
    border: none;
    padding: 2px 24px;
    border-radius: 6px;
    font-family: 'PT Serif', serif;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.poll input[type=submit]:hover {
    background: #777777;
}
/* --------------- /poll --------------- */

/* --------------- nice-radio --------------- */
.nice-radio {
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 13px;
    overflow: hidden;
    background: url("../img/radio.png");
    cursor: pointer;
}
.nice-radio_checked {
    background-position: 0 bottom;
}
.nice-radio input {
    position: relative;
    left: -1000px;
}
/* --------------- /nice-radio --------------- */

/* --------------- calendar --------------- */
.calendar {
    padding-top: 12px;
    font-size: 12px;
    margin-bottom: 56px;
}
.calendar .ui-datepicker {
    width: 100%;
}
/* --------------- /calendar --------------- */

/* --------------- organizations --------------- */
.organizations {
    padding-top: 22px;
}
.organizations a {
    display: block;
    margin-bottom: 26px;
}
.organizations img {
    display: block;
    margin-bottom: 11px;
}
.organizations span {
    font-size: 14px;
    line-height: 16px;
    color: #ea5518;
    border-bottom: 1px solid #ea5518;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.organizations a:hover span {
    border-bottom-color: transparent;
}
/* --------------- /organizations --------------- */

/* --------------- attraction --------------- */
.attraction {
    text-align: justify;
    padding-top: 21px;
}
.attraction:after {
    display: inline-block;
    width: 100%;
    content: '';
}
.attraction a {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    height: 135px;
    overflow: hidden;
    position: relative;
    text-align: left;
    margin-bottom: 22px;
}
.attraction img {
    position: absolute;
    top: 0;
    left: 0;
}
.attraction span {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: -100%;
    background: url("../img/black-fon.png");
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 5px 5px;
    min-height: 30px;
    text-decoration: underline;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: left 0.6s ease;
    transition: left 0.6s ease;
}
.attraction a:hover span {
    left: 0;
}
/* --------------- /attraction --------------- */

/* --------------- slider-banner --------------- */
.slider-banner {
    background: #dcdcdc;
    overflow: hidden;
    width: 100%;
    height: 418px;
    position: relative;
    margin: 5px 0 39px 0;
}
.slider-banner__item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.slider-banner__item img {
    display: block;
    width: 486px;
    height: 350px;
    overflow: hidden;
    margin-bottom: 11px;
}
.slider-banner__item span {
    font-size: 14px;
    color: #ea5518;
    text-decoration: underline;
    display: block;
    padding: 0 50px 0 80px;
}
.slider-banner__item:hover span {
    text-decoration: none;
}
.slider-banner__item p {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    padding: 0 50px 0 80px;
}
.slider-banner__points {
    position: absolute;
    height: 350px;
    width: 164px;
    top: 0;
    right: 0;
    cursor: default;
    overflow-y: auto;
    padding-left: 21px;
}
.slider-banner__points li:first-child {
    border-top: none;
}
.slider-banner__points li {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 90px;
    border-top: 1px dashed #000;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #585858;
    padding: 22px 10px 0 13px;
    background: #ededed;
}
.slider-banner__points li.active,
.slider-banner__points li:hover {
    background: #ee6d0e;
    color: #fff;
}
.slider-banner__points li.active:before {
    content: '';
    background: url("../img/point-arrow.png") no-repeat;
    width: 21px;
    height: 90px;
    position: absolute;
    top: 0;
    left: -21px;
}
.slider-banner__points time {
    font-size: 12px;
    display: block;
    margin-bottom: 1px;
}
.slider-banner__points p {
    font-size: 14px;
    line-height: 17px;
}
.slider_banner__next,
.slider_banner__prev {
    content: '';
    background: #ea5518;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 24px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.slider_banner__next {
    left: 40px;
}
.slider_banner__prev {
    left: 10px;
}
.slider_banner__next:before,
.slider_banner__prev:before {
    content: '';
    background: url("../img/arrows.png") no-repeat;
    width: 9px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2px 0 0 -4px;
}
.slider_banner__next:before {
    background-position: right 0;
}
.slider_banner__next:hover,
.slider_banner__prev:hover {
    background: #777777;
}
/* --------------- /slider-banner --------------- */

/* --------------- slider-news --------------- */
.slider-news {
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    background: #f3f3f3;
    height: 411px;
    padding-top: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.slider-news h2 {
    padding: 0 8px;
}
.slider-news__item img {
    display: block;
    margin-bottom: 11px;
}
.slider-news__item {
    width: 320px;
    height: 100%;
    position: absolute;
    top: 42px;
    left: 0;
    display: none;
}
.slider-news__item time {
    font-size: 36px;
    font-weight: 700;
    color: #585858;
    display: inline-block;
    vertical-align: top;
    width: 75px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 10px;
}
.slider-news__item time span:first-child {
    font-size: 12px;
    padding-top: 6px;
}
.slider-news__item time span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 3px;
}
.slider-news__title {
    display: inline-block;
    vertical-align: top;
    width: 240px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2px 0 0 5px;
}
.slider-news__title span {
    font-size: 14px;
    line-height: 16px;
    color: #ea5518;
    text-decoration: underline;
    display: block;
}
.slider-news__title:hover span {
    text-decoration: none;
}
.slider-news__title p {
    font-size: 14px;
    line-height: 17px;
    color: #000;
}
.slider-news__points {
    position: absolute;
    height: 370px;
    width: 303px;
    bottom: 0;
    right: 0;
    cursor: default;
    overflow-y: auto;
    padding: 0 0 0 5px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.slider-news__points li {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 92px;
    border-top: 1px dashed #000;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #585858;
    padding: 21px 10px 0 132px;
}
.slider-news__points li::before {
    content: '';
    background: transparent;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -5px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.slider-news__points li.active:before,
.slider-news__points li:hover:before {
    background: #ea5518;
}
.slider-news__points img {
    position: absolute;
    width: 122px;
    height: 91px;
    overflow: hidden;
    top: 0;
    left: 0;
}
.slider-news__points time {
    font-size: 12px;
    display: block;
    margin-bottom: 1px;
}
.slider-news__points p {
    font-size: 14px;
    line-height: 17px;
    text-decoration: underline;
}
.slider-news__points li.active p,
.slider-news__points li:hover p {
    color: #ea5518;
    text-decoration: none;
}
.slider-news__next,
.slider-news__prev {
    display: none;
}
/* --------------- /slider-news --------------- */

/* --------------- slider-smi --------------- */
.slider-smi {
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    background: #f3f3f3;
    height: 411px;
    padding-top: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}
.slider-smi h2 {
    padding: 0 8px;
}
.slider-smi__item img {
    display: block;
    margin-bottom: 11px;
}
.slider-smi__item {
    width: 320px;
    height: 100%;
    position: absolute;
    top: 42px;
    left: 0;
    display: none;
}
.slider-smi__item time {
    font-size: 36px;
    font-weight: 700;
    color: #585858;
    display: inline-block;
    vertical-align: top;
    width: 75px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 10px;
}
.slider-smi__item time span:first-child {
    font-size: 12px;
padding-top: 6px;
}
.slider-smi__item time span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 3px;
}
.slider-smi__title {
    display: inline-block;
    vertical-align: top;
    width: 240px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2px 0 0 5px;
}
.slider-smi__title span {
    font-size: 14px;
    line-height: 16px;
    color: #ea5518;
    text-decoration: underline;
    display: block;
}
.slider-smi__title:hover span {
    text-decoration: none;
}
.slider-smi__title p {
    font-size: 14px;
    line-height: 17px;
    color: #000;
}
.slider-smi__points {
    position: absolute;
    height: 370px;
    width: 303px;
    bottom: 0;
    right: 0;
    cursor: default;
    overflow-y: auto;
    padding: 0 0 0 5px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.slider-smi__points li {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 92px;
    border-top: 1px dashed #000;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #585858;
    padding: 21px 10px 0 132px;
}
.slider-smi__points li::before {
    content: '';
    background: transparent;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -5px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.slider-smi__points li.active:before,
.slider-smi__points li:hover:before {
    background: #ea5518;
}
.slider-smi__points img {
    position: absolute;
    width: 122px;
    height: 91px;
    overflow: hidden;
    top: 0;
    left: 0;
}
.slider-smi__points time {
    font-size: 12px;
    display: block;
    margin-bottom: 1px;
}
.slider-smi__points p {
    font-size: 14px;
    line-height: 17px;
    text-decoration: underline;
}
.slider-smi__points li.active p,
.slider-smi__points li:hover p {
    color: #ea5518;
    text-decoration: none;
}
.slider-smi__next,
.slider-smi__prev {
    display: none;
}
/* --------------- /slider-smi --------------- */

/* --------------- interview --------------- */
.interview {
    overflow: hidden;
    width: 100%;
    height: 249px;
    position: relative;
    margin-bottom: 40px;
}
.interview h2 {
    padding-left: 9px;
}
.interview__item {
    width: 100%;
    height: 208px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 179px;
}
.interview__item a:first-child {
    width: 145px;
    height: 208px;
    overflow: hidden;
    position: absolute;
    top: 2px;
    left: 0px;
}
.interview__item h3 {
    font-size: 24px;
    color: #ea5717;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.interview__item a {
    font-size: 18px;
    line-height: 27px;
    color: #000;
    text-decoration: underline;
}
.interview__item a:hover {
    text-decoration: none;
}
.interview__item p {
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #000;
    padding: 10px 0 0 0;
}
.interview__points {
    position: absolute;
    top: 8px;
    left: 167px;
    cursor: default;
}
.interview__points li {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    background: url("../img/points.png") no-repeat;
}
.interview__points li.active {
    background-position: right 0;
}
.interview__next,
.interview__prev {
    display: none;
}
/* --------------- /interview --------------- */

/* --------------- poster --------------- */
.poster {
    background: #ededed;
    width: 100%;
    height: 713px;
    position: relative;
    overflow: hidden;
    margin: 11px 0 20px;
    border-bottom: 1px dashed #000;
}
.poster__item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.poster__item a:first-child {
    display: block;
}
.poster__item img {
    display: block;
    margin: 10px auto !important;
    float: none!important;
}
.poster__title {
    background: #fff;
    width: 100%;
    height: 109px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 50px;
}
.poster__title a {
    color: #ea5518;
    font-size: 14px;
    text-decoration: underline;
}
.poster__title a:hover {
    text-decoration: none;
}
.poster__item a:first-child:hover + .poster__title a {
    text-decoration: none;
}
.poster__title p {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    display: block;
}
.poster__points {

}
.poster__next,
.poster__prev {
    content: '';
    background: #ea5518;
    width: 20px;
    height: 96px;
    position: absolute;
    top: 10px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.poster__next {
    right: 10px;
}
.poster__prev {
    left: 10px;
}
.poster__next:before,
.poster__prev:before {
    content: '';
    background: url("../img/arrows.png") no-repeat;
    width: 9px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2px 0 0 -4px;
}
.poster__next:before {
    background-position: right 0;
}
.poster__next:hover,
.poster__prev:hover {
    background: #777777;
}
/* --------------- /poster --------------- */

/* --------------- breadcrumbs --------------- */
.breadcrumbs {
    font-size: 14px;
    color: #000;
    cursor: default;
    text-align: left;
    padding: 3px 0 34px 8px;
    display: inline-block;
    width: 100%;
}
.breadcrumbs a {
    color: #ea5518;
    border-bottom: 1px solid #ea5518;
    position: relative;
    display: inline-block;
    margin-right: 11px;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.breadcrumbs a:hover {
    border-bottom-color: transparent;
}
.breadcrumbs span {
    position: relative;
    display: inline-block;
}
.breadcrumbs a:after {
    content: '>';
    color: #000;
    position: absolute;
    top: 0;
    right: -10px;
}
/* --------------- /breadcrumbs --------------- */

/* --------------- affiche --------------- */
.affiche {

}
.affiche h1 {
    padding-left: 8px;
    margin-bottom: 18px;
}
.affiche h2 {
    color: #ec6512;
    padding-left: 0;
    text-transform: none;
    line-height: 29px;
}
.affiche__menu {
    background: #ededed;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    text-align: justify;
    cursor: default;
    height: 31px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 15px 0;
    font-family: "Arial";
}
.affiche__menu:after {
    display: inline-block;
    content: '';
    width: 100%;
}
.affiche__menu a {
    border-radius: 3px;
    padding: 2px 5px;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #6d6d6d;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}
.affiche__menu a.active,
.affiche__menu a:hover {
    background: #fff;
    color: #232323;
}
.affiche__item {
    padding: 9px 0;
    border-bottom: 1px dashed #000;
    height: 180px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.grey {
    background: #ededed;
}
.affiche__item > a {
    display: inline-block;
    vertical-align: top;
    width: 176px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
}
.affiche__item img {
    width: 150px;
    height: 160px;
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    position: relative;
}
.affiche__item > a:hover img {
    box-shadow: 0 0 10px #000;
}
.affiche__item > a:hover + .affiche__title > a {
    border-bottom-color: transparent;
}
.affiche__title {
    display: inline-block;
    vertical-align: top;
    width: 450px;
    padding-top: 7px;
}
.affiche__title a {
    font-size: 14px;
    color: #4f4f4f;
    border-bottom: 1px solid #4f4f4f;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.affiche__title a:hover {
    border-bottom-color: transparent;
}
.affiche__date {
    font-family: "Arial";
    padding: 11px 0;
}
.affiche__date time {
    font-size: 12px;
    color: #4f4f4f;
    display: inline-block;
    vertical-align: top;
    padding-top: 2px;
    margin-right: 4px;
}
.affiche__date span {
    color: #343434;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    background: #e5e5e5;
    border-radius: 3px;
    padding: 2px 5px;
    margin-right: 7px;
}
.affiche__date a {
    font-size: 12px;
    color: #6d6d6d;
    border-bottom: 1px solid #6d6d6d;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}
.affiche__date a:hover {
    border-bottom-color: transparent;
}
.affiche__big-item {
    border-bottom: 1px dashed #000;
    padding: 14px 10px 60px;
}
.affiche__big-item img {
    display: block;
    margin: 0 auto 22px;
}
.affiche__big-item .affiche__date {
    padding: 5px 0;
    margin-bottom: 6px;
}
.affiche p {
    font-size: 14px;
    line-height: 21px;
    color: #343434;
    display: block;
    margin-bottom: 10px;
}
.affiche p.affiche-italic {
    font-style: italic;
}
/* --------------- /affiche --------------- */

/* --------------- filter --------------- */
.filter {
    font-family: "Arial";
    padding: 42px 0 17px;
}
.filter ul {
    background: #ededed;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    margin-bottom: 23px;
    padding: 9px 13px 7px;
}
.filter li:first-child {
    margin-top: 0;
}
.filter li {
    font-size: 16px;
    line-height: 18px;
    margin-top: 12px;
}
.filter li a {
    font-size: 16px;
    color: #000;
    text-decoration: underline;
    background: #dcdcdc;
    border-radius: 3px;
    padding: 4px 6px 4px 4px;
    margin-right: 8px;
    display: inline-block;
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    position: relative;
}
.filter li span {
    display: inline-block;
    color: #ec6512;
}
.filter span > span {
    display: block;
}
.filter li a:hover {
    box-shadow: 0 0 5px #000;
}
.filter li.active a {
    color: #fff;
    text-decoration: none;
    background: #ec6512;
}
/* --------------- /filter --------------- */

/* --------------- videos-wrapper --------------- */
.videos-wrapper {

}
.videos-wrapper h1 {
    padding-left: 8px;
    margin-bottom: 20px;
}
.videos-wrapper > div {
    border-bottom: 1px dashed #000;
    padding: 0 8px 22px 8px;
    margin-bottom: 24px;
}
.videos-wrapper iframe {
    display: block;
    margin-bottom: 13px;
}
.videos-wrapper a {
    font-size: 24px;
    color: #ec6512;
    text-decoration: underline;
    border-bottom:none !important;
}
.videos-wrapper a:hover {
    text-decoration: none;
}
.videos-wrapper time {
    display: block;
    font-size: 12px;
    color: #4f4f4f;
    padding: 11px 0 15px;
}
.videos-wrapper span {
    font-size: 14px;
    color: #343434;
}
/* --------------- /videos-wrapper --------------- */

/* --------------- news --------------- */
.news {

}
.news h1 {
    padding-left: 8px;
    margin-bottom: 18px;
}
.news h2 {
    color: #ec6512;
    padding-left: 0;
    text-transform: none;
    line-height: 29px;
}
.news__item {
    border-bottom: 1px dashed #000;
    margin-bottom: 14px;
}
.news__item > a {
    display: inline-block;
    vertical-align: top;
    width: 176px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    border-bottom: none !important;
}
.news__item img {
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 14px;
    display: block;
}
.news__item > a:hover img {
    box-shadow: 0 0 10px #000;
}
.news__item > a:hover + .news__title > a {
    border-bottom-color: transparent;
}
.news__title {
    display: inline-block;
    vertical-align: top;
    width: 450px;
    padding-top: 7px;
}
.news__title a {
    font-size: 14px;
    color: #4f4f4f;
    border-bottom: 1px solid #4f4f4f;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.news__title a:hover {
    border-bottom-color: transparent;
}
.news__date {
    font-family: "Arial";
    padding: 11px 0;
}
.news time {
    font-size: 12px;
    color: #4f4f4f;
    display: inline-block;
    vertical-align: top;
    padding-top: 2px;
    margin-right: 4px;
}
.news__date span {
    color: #343434;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    background: #e5e5e5;
    border-radius: 3px;
    padding: 2px 5px;
    margin-right: 7px;
}
.news__date a {
    font-size: 12px;
    color: #6d6d6d;
    border-bottom: 1px solid #6d6d6d;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}
.news__date a:hover {
    border-bottom-color: transparent;
}
.news__details {
    border-bottom: 1px dashed #000;
    padding: 0 8px;
    padding: 0 8px 4px;
    margin-bottom: 17px;
}
.news__details img {
    float: left;
    display: block;
    margin: 6px 27px 15px 0;
}
.news__source {
    padding: 0 8px;
}
.news__source > dl {
    font-size: 12px;
    line-height: 16px;
    color: #4f4f4f;
    padding-top: 7px;
    margin-bottom: 23px;
}
.news__source dt,
.news__source dd {
    display: inline;
    padding-right: 3px;
}
.news p {
    font-size: 14px;
    line-height: 21px;
    color: #343434;
    display: block;
    margin-bottom: 10px;
}
/* --------------- /news --------------- */

/* --------------- social --------------- */
.social {
    cursor: default;
}
.social a {
    display: inline-block;
    vertical-align: top;
    background: url("../img/social.png") no-repeat;
    margin-right: 30px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.social a:hover {
    opacity: 0.8;
}
.social a.twitter {
    background-position: 0 0;
    width: 16px;
    height: 16px;
}
.social a.vk {
    background-position: -50px 0;
    width: 16px;
    height: 16px;
}
.social a.facebook {
    background-position: -99px 0;
    width: 16px;
    height: 16px;
}
.social a.odnoklassniki {
    background-position: -149px 0;
    width: 16px;
    height: 16px;
}
.social a.mailru {
    background-position: -198px 0;
    width: 16px;
    height: 16px;
}
.social a.paint {
    background-position: -247px 0;
    width: 16px;
    height: 16px;
}
.social a.google {
    background-position: right 0;
    width: 24px;
    height: 16px;
}
/* --------------- /social --------------- */

/* --------------- organizations-wrap --------------- */
.organizations-wrap {

}
.organizations-wrap h1 {
    padding: 0 8px;
}
.organizations-wrap > ul {
    padding: 0 8px;
    text-align: justify;
}
.organizations-wrap > ul:after {
    display: inline-block;
    width: 100%;
    content: '';
}
.organizations-wrap > ul li {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 300px;
    min-height: 130px;
    margin-bottom: 25px;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 0 135px;
}
.organizations-wrap li a {
    font-size: 14px;
    color: #ea5617;
    border-bottom: 1px solid #ea5617;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.organizations-wrap li a:hover {
    border-bottom-color: transparent;
}
.organizations-wrap img {
    position: absolute;
    top: 2px;
    left: 0;
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
}
.organizations-wrap a:hover img {
    box-shadow: 0 0 5px #000;
}
/* --------------- /organizations-wrap --------------- */

/* --------------- form-filter --------------- */
.form-filter {
    background: #ededed;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
    font-size: 16px;
    color: #000;
    padding: 5px 8px;
    margin: 19px 0 27px;
}
.form-filter dl {
    cursor: default;
    margin-bottom: 19px;
}
.form-filter dt {
    margin-bottom: 2px;
}
.form-filter dd:first-child {
    margin-right: 8px;
}
.form-filter dd {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.form-filter dd > a {
    font-size: 16px;
    color: #ea5617;
    border-bottom: 1px solid #ea5617;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.form-filter dd > a:hover {
    border-bottom-color: transparent;
}
.form-filter ul {

}
.form-filter li:first-child {
    margin-left: 0;
}
.form-filter li {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    margin-left: 22px;
}
/* --------------- /form-filter --------------- */

/* --------------- ares-select --------------- */
.ares-select{
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 209px;
    height: 20px;
    margin: 7px 0;
    border: 1px solid #7e7e7e;
    background: #fff;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}
.ares-select:after{
    content: '';
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 0;
    border: 4px solid transparent;
    border-top: 7px solid #000;
}
.ares-select__item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding: 1px 5px 0;
}
.ares-select_mobile select {
    position: absolute;
    top: 0;
    left: 1px;
    width: 100%;
    bottom: -1px;
}
.ares-select_custom select{
    position: absolute;
    left: -100000px;
}
.ares-select__popup {
    position: absolute;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #7e7e7e;
    overflow: hidden;
    z-index: 10;
    background: #fff;
}
.ares-select__popup ul {
    z-index: 1;
}
.ares-select__popup li{
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    padding: 2px 5px;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
}
.ares-select__popup li.active,
.ares-select__popup li:hover {
    color: #ea5717;
    background: #ededed;
}
.ares-select__popup .iScrollVerticalScrollbar {
    position: absolute;
    width: 15px;
    top: 0;
    bottom: 0;
    background: #ccc;
    right: 0;
    z-index: 3;
    -webkit-transform: translateZ(0);
}
.ares-select__popup .iScrollIndicator {
    background: #aaa;
}
/* --------------- /ares-select --------------- */

/* --------------- organizations-details --------------- */
.organizations-details {
    border-bottom: 1px dashed #000;
    padding-bottom: 46px;
    margin-bottom: 20px;
}
.organizations-details h1 {
    padding-left: 8px;
}
.organizations-details > div {
    padding: 0 8px;
}
.organizations-details h3 {
    margin-bottom: 12px;
}
.organizations-details p {
    display: block;
    margin-bottom: 11px;
    line-height: 21px;
}
.organizations-details ul {
    border-bottom: 1px dashed #ea5717;
    padding: 38px 9px 24px;
    margin-bottom: 20px;
}
.organizations-details li {
    display: inline-block;
    vertical-align: top;
    width: 320px;
    color: #000;
}
.organizations-details li:first-child {
    width: 250px;
    overflow: hidden;
    margin-right: 22px;
}
.organizations-details li > img {
    display: block;
    margin: 0 auto 6px;
}
.organizations-details li span {
    font-size: 14px;
}
.organizations-details li strong {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    display: block;
    padding-top: 1px;
}
.organizations-details dl {
    font-size: 14px;
}
.organizations-details dl a {
    color: #000;
}
.organizations-details dd {
    font-weight: 700;
    margin-bottom: 10px;
}
.organizations__mail {
    text-decoration: underline;
}
.organizations__mail:hover {
    text-decoration: none;
}
/* --------------- /organizations-details --------------- */

/* --------------- footer --------------- */
.footer {
    z-index: 2;
    position: relative;
    margin-top: -305px;
    background: #e9e9e9;
    font-family: 'PT Serif', serif;
}
.footer__links {
    background: #fff;
    box-shadow: 0 0 20px #bebebe;
    padding-top: 8px;
    position: relative;
}
.footer__links > div {
    width: 1000px;
    margin: 0 auto;
    text-align: justify;
}
.footer__links > div:after {
    display: inline-block;
    width: 100%;
    content: '';
}
.footer__links a {
    display: inline-block;
    vertical-align: top;
    margin-top: 11px;
}
.footer__links img {
    border: 2px solid transparent;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
}
.footer__links a:hover img {
    border-color: #eb5d15;
}
.footer__layout {
    width: 1000px;
    height: 105px;
    margin: 0 auto;
    position: relative;
}
.footer__layout form {
    background: #dcdcdc;
    height: 68px;
    width: 760px;
    position: absolute;
    top: 20px;
    right: 0;
    border-radius: 6px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 0 0 29px;
}
.footer__layout form span {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    display: block;
}
.footer__layout fieldset {
    position: absolute;
    top: 16px;
    right: 30px;
    width: 427px;
    height: 34px;
}
.footer__layout input[type=text] {
    font-size: 14px;
    color: #9e9e9e;
    width: 286px;
    height: 100%;
    background: #fff;
    border: 1px solid #b7b7b7;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 11px;
}
.footer__layout input[type=submit] {
    height: 100%;
    width: 145px;
    background: #ed6810;
    border: none;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.footer__layout input[type=submit]:hover {
    background: #777777;
}
.footer__layout p {
    font-size: 14px;
    line-height: 17px;
    color: #000;
    position: absolute;
    top: 34px;
    left: 0;
}
.footer__layout p > span {
    display: block;
}
/* --------------- /footer --------------- */

/* --------------- person --------------- */
.person{
    padding: 0 6px 10px 9px;
    position: relative;
}
.person:after{
    content: '';
    position: absolute;
    background: url("../img/dott.jpg") repeat-x;
    left: 0;
    right: 0;
    height: 1px;
    bottom: 0;
}
.person h1{
    margin-bottom: 25px;
}
.person img{
    float: left;
    margin: 0 27px 27px -1px;
}
.person p{
    font-family: "Times New Roman";
    font-size: 14px;
    color: #343434;
    line-height: 21px;
    margin: -5px 0 14px 0;
}
/* --------------- /person --------------- */

/* --------------- persons --------------- */
.persons{
    font-family: "Times New Roman";
    font-size: 14px;
    color: #343434;
    line-height: 17px;
    padding: 2px 0 0 9px;
    margin-bottom: 89px;
}
.persons h1{
    margin-bottom: 14px;
    line-height: 24px;
}
.persons__text{
    position: relative;
    padding: 0 200px 0 0;
}
.persons img{
    float: left;
    margin: 5px 25px 13px 1px;
}
.persons p{
    margin: 0 0 7px 0;
}
.persons figure{
    position: absolute;
    top: -1px;
    right: 1px;
    width: 176px;
}
.persons figure img{
    float: none;
    margin: 5px 0 8px;
}
.persons figcaption{
    font-size: 11px;
    line-height: 13px;
    color: #9b9b9b;
    white-space: pre-line;
    margin: 0 13px;
}
/* --------------- /persons --------------- */

/* --------------- search --------------- */
.search{
    font-family: "Times New Roman";
    margin-bottom: 51px;
}
.search .form-filter{
    border: none;
    position: relative;
    padding: 7px 9px 4px;
}
.search .form-filter:before,
.search .form-filter:after{
    content: '';
    position: absolute;
    background: url("../img/dott.jpg") repeat-x;
    left: 0;
    right: 0;
    height: 1px;
    bottom: 0;
}
.search .form-filter:before{
    bottom: auto;
    top: 0;
}
.search  .ares-select__item{
    padding: 0 5px;
}
.search__result{
    font-size: 14px;
    color: #343434;
    line-height: 21px;
    margin-bottom: 21px
}
.search__result li{
    padding: 0 0 17px 150px;
    position: relative;
    margin-bottom: 14px;
    min-height: 113px;
}
.search__result li:after{
    content: '';
    position: absolute;
    background: url("../img/dott.jpg") repeat-x;
    left: 0;
    right: 0;
    height: 1px;
    bottom: 0;
}
.search__result img{
    position: absolute;
    top: 3px;
    left: 9px;
}
.search__result h2{
    font-size: 14px;
    color: #ea5617;
    text-transform: uppercase;
    font-family: "Times New Roman";
    margin: 0 0 10px;
    padding: 0;
}
.search__result h2 a{
    color: #ea5617;
    font-size: 14px;
}
/* --------------- /search --------------- */

/* --------------- pagination --------------- */
.pagination{
    font-family: 'PT Serif', serif;
    font-size: 14px;
    color: #505050;
    margin: 0 0 0 7px;
}
.pagination__status{
    margin-bottom: 7px;
    display: block;
}
.pagination__links{
    margin: 0 0 0 2px;
    cursor: default;
}
.pagination__links li{
    display: inline-block;
    vertical-align: top;
    border-left: 1px solid #505050;
    margin-left: 3px;
    padding-left: 5px;
}
.pagination__links li:first-child{
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}
.pagination__links li a{
    color: #ed6f01;
    text-decoration: underline;
    display: inline-block;
    vertical-align: top;
    border-bottom: none;
}
.pagination__links li a:hover{
    text-decoration: none;
}
.pagination__links li a.disabled{
    text-decoration: none;
    color: #505050;
    cursor: default;
}
.pagination__links li a.active{
    text-decoration: none;
    color: #000;
    font-weight: 700;
    cursor: default;
}
/* --------------- /pagination --------------- */