html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background-color: transparent;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
h1 {
    font-size: 24px;
    margin: 0.67em 0;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 40px;
}
hr {
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input {
    line-height: normal;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 100;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;

}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: bold;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
/*-  / - Перед селектором, заставляет отсечь родительские селекторы
    selector() - получает текущий селектор, позволяет допустим использовать в миксинах и т.д.
    unquote("") - для строк можно испльзовать которые мешают компиляции стилей
    Для удобства наверно лучше добавлять к наименованию переменной $, Вначало
    arguments в миксинах содержит аргументы функции
    .1. unless @.2. если не существует @.2., тогда отображается .1.
    @ и имя свойства заменяются на содержимое этого свойства встречанное выше у этого же правила либо у родителя
    for переменная in массив, массив может быть представлен в виде просто ряда через пробел
    {переменная} позволяет задавать через содержимое переменной, селекторы
    ! - нет
    not - нет
    - минус
    and , or     && ||
    list = 1 2 3 - массив    list[0] 1    list[-1] 3
    1..4 ряд чисел включая все
    1...4 ряд чисел включая все кроме последней
    Для расчеты дроби - заключить выражение в скобки
    2 ** 8   Степень
    ... in ... Есть ли внутри переменной
    ?= или := присваивание - если у переменной нет значения
    ... is a ... - Проверка на тип переменной 'unit' - число 'rgba' - цвет
    ... is defined - Проверка задано ли значение переменной
    Тернарный оператор можно использовать ... ? ... : ...
    К цветам можно плюсовать и вычитать другие цвета, проценты и градусы
    Переменные можно использовать внутри строк "...%s,,," % значение, произойдет замена
    В функции сделать {block} И вызов ее с плюсом вначале, позволит записывать содержимое в этот блок

*/
/*-------------------  Mixins  ---------------------*/
.re {
    position: relative;
    width: 1px;
}
.re .for {
    display: inline;
    width: 100px;
}
/*###################  Frame  ####################*/
html {
    height: 100%;
    display: block;
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    background: #fff;
    font-size: 14px;
    font-weight: normal;
}
body {
    background: #fff;
    line-height: 1.2em;
    min-height: 100%;
    text-align: left;
    letter-spacing: -0.01em;
}
.wrap {
    margin: 0 auto;
    width: 1030px;
    position: relative;
    z-index: 1;
}
.wrap:before,
.wrap:after {
    content: "";
    display: table;
}
.wrap:after {
    clear: both;
}
.middle:before,
.middle:after {
    content: "";
    display: table;
}
.middle:after {
    clear: both;
}
/*###################  Header and Footer  ####################*/
body > header,
body > footer {
    min-width: 1030px;
}
body > header:before,
body > footer:before,
body > header:after,
body > footer:after {
    content: "";
    display: table;
}
body > header:after,
body > footer:after {
    clear: both;
}
body > header {
    width: 100%;
    background: #6e87a3 url("../img/header.png") center top no-repeat;
    background: url("../img/header.png") center top no-repeat, -webkit-linear-gradient(left, #6e87a3 50%, #667f95 50%);
    background: url("../img/header.png") center top no-repeat, linear-gradient(to right, #6e87a3 50%, #667f95 50%);
    color: #fff;
    position: relative;
    min-width: 1030px;
    padding-bottom: 33px;
    z-index: 10;
    margin-bottom: 50px;
}
body > header .BTN {
    float: left;
    width: 111px;
}
body > header .BTN + .BTN {
    margin-left: 10px;
}
body > header a {
    color: #fff;
}
body > header > .wrap {
    padding-bottom: 18px;
}
body > header > .wrap .R {
    margin-top: 19px;
}
body > header > .wrap .R .B {
    float: left;
    margin-left: 54px;
    clear: none;
}
body > header > .wrap .R .B_bdLeft {
    text-transform: uppercase;
    color: #d7e6f4;
    margin-top: -4px;
    border-left: 4px solid #17518b;
    font-size: 16px;
    margin-left: 55px !important;
    padding-left: 8px;
    letter-spacing: -0.33px;
    line-height: 1.3em;
}
body > header > .wrap .R .B_search form {
    background: #fff;
    opacity: 0.6;
    border-radius: 5px;
    border: 2px solid #0b739a;
    position: relative;
}
body > header > .wrap .R .B_search form:before,
body > header > .wrap .R .B_search form:after {
    content: "";
    display: table;
}
body > header > .wrap .R .B_search form:after {
    clear: both;
}
body > header > .wrap .R .B_search form * {
    float: left;
}
body > header > .wrap .R .B_search form input[type="text"] {
    display: block;
    height: 29px;
    line-height: 29px;
    width: 183px;
    border: none;
}
body > header > .wrap .R .B_search form input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    text-indent: -9999px;
    width: 37px;
    height: 29px;
    z-index: 10;
}
body > header > .wrap .R .B_search form .BTN {
    height: auto;
    position: relative;
    z-index: 1;
    background: none;
    width: 19px;
    line-height: auto;
    padding: 5px 9px;
}
body > header > .wrap .R .B_search +.B {
    margin-left: 45px;
}
body > header > .wrap .R:first-child {
    margin-top: 0;
}
body > header > .wrap .R:first-child .B {
    float: right;
    font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    text-align: right;
    margin-top: 42px;
    margin-right: 30px;
}
body > header > .wrap .R:first-child .B_logo {
    float: left;
    margin-top: 0 !important;
    margin-left: 30px !important;
    padding: 8px 24px 8px 13px;
    border-radius: 0 0 5px 5px;
    background: #f3f6f8;
}
body > header > .wrap .R:first-child .B_logo [itemprop="name"] {
    height: 0;
    width: 0;
    opacity: 0;
    display: none;
    text-decoration: -9999px;
}
body > header > .wrap .phone {
    font-size: 26px;
    font-weight: 200;
    letter-spacing: 0.1px;
}
body > header > .wrap .phone a {
    text-decoration: none;
}
body > header > .wrap .phone strong {
    font-weight: 800;
}
body > header > .wrap .address {
    margin-top: 5px;
}
body > header > .wrap .address > img:first-child {
    display: inline-block;
    margin-right: 5px;
    position: relative;
}
body > header nav {
    position: absolute;
    bottom: -70px;
    z-index: 100;
    padding-bottom: 13px;
    left: 0;
    width: 100%;
    background: url("../img/shadow.png") center bottom no-repeat;
}
body > header nav > .ins {
    width: 100%;
    height: 48px;
    padding: 0;
    font-size: 15px;
    border-radius: 5px;
    background: #348bab; /* Old browsers */
    background: -webkit-linear-gradient(top, #348bab 50%, #0b739a 50%);
    background: linear-gradient(to bottom, #348bab 50%, #0b739a 50%); /* W3C */
}
body > header nav .M_hz {
    height: 48px;
    line-height: 48px;
    float: left;
}
body > header nav .BTN {
    background: #42adcd; /* Old browsers */
    background: -webkit-linear-gradient(top, #42adcd 50%, #0e8db9 50%);
    background: linear-gradient(to bottom, #42adcd 50%, #0e8db9 50%); /* W3C */
    float: right;
    margin: 10px 30px 10px 10px;
    width: 160px;
    font-weight: 300;
    letter-spacing: 0.01px;
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5);
    height: 27px;
    line-height: 30px !important;
}
body > header nav .BTN:hover {
    background: #ec772b; /* Old browsers */
    background: -webkit-linear-gradient(top, #ec772b 50%, #c15717 50%);
    background: linear-gradient(to bottom, #ec772b 50%, #c15717 50%); /* W3C */
}
body > header nav .BTN.ICN .ins {
    width: 18px;
    height: 18px;
    top: 5px;
}
body > header nav .BTN.ICN:hover {
    color: #fff;
}
body > header nav .BTN.ICN:hover img {
    top: 0 !important;
}
body > header nav a {
    text-decoration: none;
    text-transform: uppercase;
}
body > footer {
    margin-top: 40px !important;
    font-size: 13px;
    clear: both;
    text-align: left;
}
body > footer .navigate {
    background: #0b739a;
    text-align: center;
    border-radius: 5px 5px 0 0;
    height: 35px;
    line-height: 40px !important;
}
body > footer .navigate a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    padding: 0;
    margin: 0 23px;
}
body > footer .navigate a:hover {
    background: none;
    text-decoration: underline;
    color: #fff;
}
body > footer .navigate li:first-child {
    margin-left: 0 !important;
}
body > footer .navigate .M_hz {
    display: inline-block;
}
body > footer .navigate + .R {
    background: #e6e7e9; /* Old browsers */
    background: -webkit-linear-gradient(top, #e6e7e9 0%, #d7d7d7 100%);
    background: linear-gradient(to bottom, #e6e7e9 0%, #d7d7d7 100%); /* W3C */
    padding: 17px 30px 25px;
    font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    font-size: 12px;
    width: auto;
}
/*###################  Content  ####################*/
.middle:before,
.middle:after {
    content: "";
    display: table;
}
.middle:after {
    clear: both;
}
.middle .middle__top {
    padding: 0 30px;
}
.middle .content {
    margin-top: 15px;
    padding: 0 30px;
}
.mainPage .middle .content {
    padding: 0;
    margin-top: 0;
}
.middle .content:before,
.middle .content:after {
    content: "";
    display: table;
}
.middle .content:after {
    clear: both;
}
.middle .content > section {
    position: relative;
    background: #f0f8ff;
    border-radius: 0 5px 5px 5px;
    border-top: 1px solid #9dc7d7;
    margin-top: 41px;
    padding: 30px 30px 20px;
    margin-bottom: 20px;
}
.middle .content > section + section {
    margin-top: 60px;
}
.middle .content > section.bgGray,
.middle .content > section.bgGray h2 {
    background: #f1f3f5;
}
.middle .content > section.bgYellow,
.middle .content > section.bgYellow h2 {
    background: #fcfaf4;
}
.middle .content > section h2 {
    position: absolute;
    left: 0;
    top: -41px;
    max-width: 100%;
    color: #000;
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    border-top: 1px solid #9dc7d7;
    background: #f0f8ff;
    display: block;
    font-weight: normal;
    text-transform: uppercase;
    padding: 18px 30px 8px;
    letter-spacing: -0.3px;
    border-radius: 5px 5px 0 0;
    margin: 0 !important;
}
.middle .content > section .R > .CLM {
    text-align: center;
}
.middle .content > section .R > .CLM .PICT {
    border: 2px solid #348bab;
    height: auto !important;
    line-height: 0 !important;
    width: 216px;
    margin: 0 auto 8px;
    position: relative;
}
.middle .content > section .R > .CLM .PICT span {
    background: #333;
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    font-family: Verdana "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    color: #fefefe;
    font-size: 12px;
    text-transform: none;
    font-weight: normal;
    line-height: 1.3em;
    letter-spacing: 0;
    background: rgba(0,0,0,0.6);
    padding: 7px;
    width: 202px;
}
.middle .content > section .R a.CLM {
    text-transform: uppercase;
    text-decoration: none;
    /*font-weight: bold;*/
    letter-spacing: -0.4px;
}
.middle .content > section .R a.CLM span {
    padding: 7px 7px 6px;
    display: inline-block;
}
.middle .content > section .R a.CLM:hover .PICT {
    border-color: #17518b;
}
.middle .content > section .R a.CLM:hover .PICT span {
    display: block;
}
.middle .content > section .R a.CLM:hover > span {
    color: #fff;
    border-radius: 5px;
    background: #0b739a;
}
.middle .content aside.columnLeft,
.middle .content aside.columnRight {
    float: left;
    width: 230px;
    margin-right: 20px;
    margin-bottom: 50px;
}
.middle .content aside.columnLeft + article,
.middle .content aside.columnRight + article {
    float: left;
    width: 720px;
}
.middle .content aside.columnRight {
    margin-left: 20px;
    margin-right: 0;
    float: right;
}
.middle .content > article {
    font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    letter-spacing: -0.2px;
    line-height: 1.4em;
    margin-bottom: 50px;
}
.category {
    padding-left: 44px;
    position: relative;
    font-size: 16px;
    padding-top: 13px;
    margin-bottom: 30px;
}
.category a,
.category strong {
    color: #0b739a;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    display: inline-block;
    position: relative;
}
.category a + a,
.category strong + a,
.category a + strong,
.category strong + strong {
    margin-left: 45px;
}
.category a + a:after,
.category strong + a:after,
.category a + strong:after,
.category strong + strong:after {
    content: "/";
    position: absolute;
    top: 0px;
    left: -25px;
}
.category .pageBack {
    position: absolute;
    left: 3px;
    top: 4px;
}
.category .pageBack + a,
.category .pageBack + strong {
    margin-left: 0px;
}
.category .pageBack + a:after,
.category .pageBack + strong:after {
    display: none;
}
.breadcrumbs a {
    color: #85b9cc;
    display: inline-block;
    letter-spacing: -0.4px;
}
.breadcrumbs a + a {
    margin-left: 20px;
    position: relative;
}
.breadcrumbs a + a:after  {
    content: "/";
    position: absolute;
    left: -10px;
}
.breadcrumbs span {color:#aaa; position: relative;margin-left: 20px;}
.breadcrumbs span:after {
    content: "/";
    position: absolute;
    left: -10px;
}
/*###################  Universal  ####################*/
a {
    color: #0b739a;
}
a:hover {
    text-decoration: none;
}
p {
    margin: 0;
    margin-top: 20px;
}
p:before,
p:after {
    content: "";
    display: table;
}
p:after {
    clear: both;
}
p:first-child {
    margin-top: 0;
}
.text {
    margin: 0;
}
ul {
    margin: 20px 0;
    padding: 0 0 0 8px;
    list-style-position: inside;
    line-height: 1.7em;
}
ul li {
    position: relative;
}
ul li:after {
    content: ' ';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 10px;
    left: -8px;
    border-radius: 10px;
}
h1,
h2,
h3 {
    font-size: 18px;
    text-align: left;
    font-weight: normal;
    margin-bottom: 20px;
}
h1:first-child,
h2:first-child,
h3:first-child {
    margin-top: 0px;
}
h1 {
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 20px;
    letter-spacing: 0.1px;
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
}
h1 + h2 {
    margin-top: 0;
}
h2 {
    font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    color: #348bab;
    font-weight: 600;
    letter-spacing: 0.1px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.additional {
    background: #f3f6f8;
    padding: 27px 30px;
    line-height: 1.3em;
    letter-spacing: 0.4px;
    border-radius: 5px;
    margin-top: 30px;
    font-style: italic;
    color: #3a3a3a;
}
time {
    color: #8d8d8d;
    font-size: 12px;
}

table tr:nth-child(2n+1) th,
table tr:nth-child(2n+1) td {
    background: #f1f1f1;
}
.content table tr:nth-child(2n) th,
.content table tr:nth-child(2n) td {
    background: #f1f1f1;
}
table tr:nth-child(2n+1) th,
table tr:nth-child(2n+1) td {
    background: transparent;
}
table th {
    color: #fff;
    background: #0b739a !important;
    font-size: 16px;
    font-weight: 600;
}
table td,
table th {
    padding: 11px 45px;
    letter-spacing: 0.1px;
    border-left: 1px solid #fff;
}
table td:first-child,
table th:first-child {
    text-align: left;
    border: none;
}
/*----------  inputs  ----------*/
input, textarea {
    font-family: Verdana, "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
}
input[type="text"] {
    display: inline-block;
    font-size: 12px;
    background: #fff;
    color: #000;
    height: 30px;
    padding: 0px 7px;
    line-height: 30px;
    border: 1px solid #ccc;
}
input[type="text"] + input,
input[type="text"] + textarea {
    margin-top: 10px;
}
.R input[type="text"] + input,
.R input[type="text"] + textarea {
    margin-top: 0px;
}
textarea {
    display: block;
    font-size: 12px;
    padding: 7px;
    background: #fff;
    border: 1px solid #ccc;
}
textarea + input,
textarea + textarea {
    margin-top: 10px;
}

.checkwrap {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
}
.checkbox {
    border: 1px solid #c0c0c0;
    display: inline-block;
    width: 16px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 16px;
}
.checkbox.checked {
    background: url("../img/icons/check.png") center center no-repeat;
}
form .R {
    margin-bottom: 13px;
}
form .R label {
    margin-bottom: 3px;
    display: block;
}
.price strong {
    display: block;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 5px;
}
.price span {
    color: #989696;
    font-size: 12px;
}
/*----------  Rows  ----------*/
.R {
    position: relative;
    clear: both;
    width: 100%;
}
.R:before,
.R:after {
    content: "";
    display: table;
}
.R:after {
    clear: both;
}
.R > .B {
    float: left;
    display: block;
    margin-left: 11px;
}
.R > .B_rt {
    float: right;
    margin-left: 0;
    margin-right: 11px;
}
.R > .B_rt:first-child {
    margin-right: 0;
}
.R > .B:first-child {
    margin-left: 0;
}
.R_news {
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 15px;
    width: auto;
    padding-bottom: 50px;
}
.R_news > .CLM_1x2 {
    margin-left: 0% !important;
    width: 49.9% !important;
    width: 48.5% !important;
}
.R_news > .CLM_1x2 + .CLM_1x2 {
    margin-left: 1% !important;
    width: 50% !important;
}
/*----------  Blocks  ----------*/
.B {
    display: block;
}
.B:before,
.B:after {
    content: "";
    display: table;
}
.B:after {
    clear: both;
}
.B_count {
    text-align: center;
}
.B_count .count {
    display: inline-block;
}
/*----------  Columns  ----------*/
.CLM {
    float: left;
}
.CLM_1x2 {
    margin-left: 2% !important;
    width: 49% !important;
}
.CLM_2x3 {
    margin-left: 2% !important;
    width: 66% !important;
}
.CLM_1x3 {
    margin-left: 3% !important;
    width: 31.333333333333332% !important;
}
.CLM_1x4 {
    margin-left: 3% !important;
    width: 22.75% !important;
}
.CLM_1x5 {
    margin-left: 0% !important;
    width: 20% !important;
}
.wrap > footer .CLM_1x5 {
    padding-right: 3%;
    width: 17% !important;
}
.CLM_1x6 {
    margin-left: 2% !important;
    width: 15% !important;
}
.CLM:first-child {
    margin-left: 0 !important;
}
/*----------  wrappers  ----------*/
.W:before,
.W:after {
    content: "";
    display: table;
}
.W:after {
    clear: both;
}
.W_colored {
    margin-top: 0px;
    font-size: 18px;
    text-align: center;
    padding: 0 0px 40px;
    margin-bottom: 20px;
    line-height: 1.2em;
}
.W_colored a.CLM > .ins {
    border: 2px solid #fff;
    padding: 10px 1%;
    width: 98%;
    height: 100%;
}
.W_colored a.CLM:hover > .ins {
    background: #e8f2f6;
    border-color: #17518b;
    border-radius: 10px;
}
.W_colored .PICT {
    height: 130px;
    line-height: 130px;
    margin-bottom: 10px;
}
.W_colored .PICT img {
    vertical-align: middle;
    width: auto;
    max-height: 130px;
    max-width: none;
}
.W_colored .R {
    width: auto;
    padding: 0 80px;
}
.W_colored .R_split {
    border-bottom: 1px dashed #b2b2b2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.W_colored .R + .R {
    margin-top: 0px;
}
.W_colored .pageNext {
    background: url("../img/colored/pageNext.png") 0 0 no-repeat;
    width: 145px;
    padding: 40px 50px 80px 20px;
    color: #359bd1;
    margin-bottom: 20px;
    height: 43px;
    overflow: hidden;
    display: block;
    float: right;
    position: relative;
    right: -80px;
    bottom: -60px;
}
.W_colored .pageNext a {text-decoration: none;}
.W_colored .pageNext a:hover {
    text-decoration: underline;
}
.W > .W {
    overflow: visible;
}
.W_articles {
    margin-top: 25px;
    line-height: 1.5em;
    border-bottom: 1px dashed #b2b2b2;
    padding-bottom: 20px;
}
.W_articles .B + .B {
    margin-top: 20px;
    border-top: 1px dashed #b2b2b2;
    padding-top: 20px;
}
.W_articles .TL {
    font-size: 18px;
    text-transform: none;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
    letter-spacing: 0px;
}
.W_articles time {
    font-size: 13px;
}
.W_check {
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    line-height: 18px;
    letter-spacing: 0.1px;
    margin: 15px 0 0;
    padding: 10px;
    font-size: 16px;
}
.W_check + * {
    margin-top: 15px;
}
.W_check + .W_buttons {
    margin-top: 10px;
}
.W_check + .W_check {
    margin-top: 0;
}
.W_check_bd {
    border-radius: 5px;
    border: 1px solid #85b9cc;
}
.W_check .B {
    float: left;
}
.W_check .B + .B {
    margin-left: 28px;
}
.W_check .B input,
.W_check .B .checkwrap {
    margin-right: 6px;
    float: left;
}
.W_check .B label {
    float: left;
    vertical-align: middle;
}
.W_filter {
    border: 1px solid #cecece;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    line-height: 1.2em;
}
.W_filter .R {
    border-top: 1px solid #cecece;
    display: table;
}
.W_filter .R:first-child {
    border: none;
}
.W_filter .R:hover {
    background: #ececec;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.2);
}
.W_filter .B {
    display: table-cell;
    float: none;
    padding: 15px;
    vertical-align: middle;
    text-align: center;
}
.W_filter .B_1 {
    width: 75px;
}
.W_filter .B_1 img {
    max-width: 75px;
    height: auto;
}
.W_filter .B_2 {
    padding: 15px 0;
    width: 140px;
    text-align: left;
}
.W_filter .B_3 {
    width: 280px;
}
.W_filter .B_4 {
    width: 180px;
}
.W_filter .B_5 {
    float: none;
}
.W_buttons {
    text-align: left;
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    line-height: 1.2em;
}
article .W_buttons {
    margin-top: 30px;
}
.W_buttons .CLM {
    background: #e8f2f6;
    border-radius: 7px;
    color: #000;
    text-decoration: none;
    border:1px solid #e8f2f6;
    box-sizing: border-box;
}
.W_buttons .CLM .ins {
    padding: 10px;
}
.W_buttons .CLM .ins:before,
.W_buttons .CLM .ins:after {
    content: "";
    display: table;
}
.W_buttons .CLM .ins:after {
    clear: both;
}
.W_buttons .CLM .ins div {
    padding-top: 10px;
}
.W_buttons .CLM img {
    border-radius: 5px;
    float: left;
    margin-right: 10px;
}
.W_buttons a.CLM:hover {
    background: #e1f5fd;
    border-color:#99c5d5;
}
.middle__bottom .W_buttons {
    margin-bottom: 35px;
    padding: 0 30px;
}
.W_news .R,
.W_reviews .R {
    position: static;
}
.W_news article,
.W_reviews article {
    float: left;
    width: 45%;
    font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
}
.W_news article:after,
.W_reviews article:after {
    display: block;
    content: " ";
    border-bottom: 1px solid #eee;
    width: 216px;
    position: absolute;
    bottom: 45px;
}
.W_news article .text,
.W_reviews article .text {
    font-size: 13px;
    margin: 0;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 2px;
    line-height: 1.5em;
}
.W_news article + article,
.W_reviews article + article {
    margin-left: 8%;
}
.W_news .BTN_simply,
.W_reviews .BTN_simply {
    position: absolute !important;
    float: left;
    bottom: 0;
}
.W_reviews {
    padding-left: 1px;
}
.W_reviews .BTN_simply {
    margin-left: 10px;
}
.W_reviews .TL {
    margin-left: 10px;
    margin-bottom: 6px;
}
.W_reviews article {
    width: 49%;
}
.W_reviews article:after {
    margin-left: 10px;
    width: 220px;
}
.W_reviews article + article {
    margin-left: 2%;
}
.W_reviews article .text {
    border-radius: 5px;
    border: 1px solid #99c5d5;
    padding: 15px 20px;
    line-height: 1.4em;
    position: relative;
    margin-bottom: 9px;
}
.W_reviews article .text:after {
    position: absolute;
    bottom: -10px;
    left: 38px;
    content: " ";
    display: block;
    background: url("../img/angle.png") 0 0 no-repeat;
    width: 18px;
    height: 10px;
}
.W_reviews article .author {
    font-size: 14px;
}
.W_reviews article time {
    margin-left: 4px;
}
.W_reviews article time:before {
    content: "/";
    font-size: 11px;
    margin-right: 5px;
}
.W_reviews article footer {
    padding-left: 20px;
}
/*----------  Menu  ----------*/
.M {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    clear: both;
    line-height: 1.2em;
}
.M:before,
.M:after {
    content: "";
    display: table;
}
.M:after {
    clear: both;
}
.M li {
    list-style: none;
}
.M ul {
    margin: 0;
    padding: 0;
    line-height: 1.2em;
}
.M ul:before,
.M ul:after {
    content: "";
    display: table;
}
.M ul:after {
    clear: both;
}
.M li:after {
    display: none;
}
.M .BTN {
    display: inline-block;
    padding: 0 !important;
    background-position: center center;
    float: none;
}
.M_hz {
    width: auto;
}
.M_hz li:first-child {
    margin-left: 30px !important;
}
.M_hz li:first-child a {
    border: none;
}
.M_hz li {
    float: left;
    display: block;
    text-align: center;
    margin-left: 0px;
    margin-bottom: 0;
}
.M_hz li a {
    display: block;
    padding: 0;
    padding-left: 23px;
    padding-right: 22px;
    background: url("../img/nav_split.png") 0 0 no-repeat;
}
.M_hz li a:hover {
    background: #e6e5e5; /* Old browsers */
    background: -webkit-linear-gradient(top, #e6e5e5 50%, #d5d5d5 50%);
    background: linear-gradient(to bottom, #e6e5e5 50%, #d5d5d5 50%); /* W3C */
    color: #2d3744;
}
.M_hz li:hover + li a {
    background: none;
}
.M_hz li.active a,
.M_hz li:hover + li.active a {
    background: #e6e5e5; /* Old browsers */
    background: -webkit-linear-gradient(top, #e6e5e5 50%, #d5d5d5 50%);
    background: linear-gradient(to bottom, #e6e5e5 50%, #d5d5d5 50%); /* W3C */
    color: #2d3744;
}
.M_soc ul {
    float: right;
}
.M_soc ul li {
    float: left;
    margin-left: 8px;
}
.M_soc > span {
    float: right;
    font-size: 13px;
    letter-spacing: 0.08px;
    line-height: 24px;
}
.M_vt {
    display: block;
    font-size: 18px;
}
.M_vt strong {
    font-weight: normal;
}
.M_vt li {
    margin-bottom: 22px;
}
.M_vt .active {
    font-weight: bold;
}
.M_vt .active a {
    text-decoration: none;
    cursor: default;
}
.M_vt .active a:hover {
    color: #000 !important;
}
/*----------  Title  ----------*/
.TL {
    display: block;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: -0.7px;
    margin-bottom: 20px;
    line-height: 1.2em;
    text-transform: uppercase;
}
.TL_bold {
    font-weight: bold;
}
.TL_big {
    text-transform: uppercase;
}
/*----------  Button  ----------*/
.BTN, input[type=submit], button {
    height: 33px;
    line-height: 33px !important;
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    letter-spacing: -0.2px;
    border-radius: 5px;
    color: #fff;
    border: none !important;
    background: #348bab; /* Old browsers */
    background: -webkit-linear-gradient(top, #348bab 50%, #0b739a 50%);
    background: linear-gradient(to bottom, #348bab 50%, #0b739a 50%); /* W3C */
    text-decoration: none;
    font-size: 12px;
    font-family: Verdana, "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
}
.BTN:hover {
    background: #d1d1d1; /* Old browsers */
    background: -webkit-linear-gradient(top, #d1d1d1 50%, #cbcbcb 50%);
    background: linear-gradient(to bottom, #d1d1d1 50%, #cbcbcb 50%); /* W3C */
    color: #17518b;
}
.BTN_orange {
    background: #d36b33; /* Old browsers */
    background: -webkit-linear-gradient(top, #d36b33 50%, #ca582e 50%);
    background: linear-gradient(to bottom, #d36b33 50%, #ca582e 50%); /* W3C */
}
.BTN_simply {
    font-family: "Roboto Condensed", Tahoma, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    color: #0b739a;
    background: none;
    border: 1px solid #b9b9b9 !important;
    border-radius: 0;
    height: 23px;
    line-height: 23px !important;
}
.BTN_simply:hover {
    background: #0b739a;
    border-color: #0b739a !important;
    color: #fff;
}
/*----------  ICN  ----------*/
.ICN img {
    vertical-align: middle;
    display: inline-block;
}
.ICN img:first-child {
    margin-right: 7px;
}
.ICN img:last-child {
    margin-left: 16px;
}
.ICN.BTN {
    padding-left: 32px;
    text-align: center;
    position: relative;
}
.ICN.BTN .ins {
    margin: 0;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}
.ICN.BTN .ins img {
    margin: 0;
}
.ICN.BTN:hover img {
    position: relative;
    top: -16px;
}
.ICN.BTN_simply {
    padding-left: 27px;
}
.ICN.BTN_simply:hover img {
    top: -13px;
}
.ICN.BTN_simply .ins {
    left: 7px !important;
    top: 5px !important;
}
/*----------  picture  ----------*/
.PICT {
    height: 200px;
    line-height: 200px;
    text-align: center;
}
.PICT img {
    vertical-align: middle;
    max-width: 100%;
}
/*----------  small  ----------*/
.small {
    font-size: 12px;
    letter-spacing: 0.2px;
}
/*----------  Modificator  ----------*/
._div {
    padding: 0;
    margin: 0;
}
._centerImg {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
._center {
    text-align: center;
    margin: 0 auto;
}
._center > img {
    margin-top: 40px;
    margin-bottom: 10px;
}
._brown,
._black,
._normalCase {
    text-transform: none;
}
._font23 {
    font-size: 23px;
}
h2._font23 {
    letter-spacing: 0.39px;
}
._font18 {
    font-size: 18px;
}
._fz16 {
    font-size: 16px;
}
._fz16._italic {
    letter-spacing: 0px;
}
._italic {
    font-style: italic;
}
._margin35 {
    margin-top: 35px;
}
._noAfter:after {
    display: none !important;
}
._noBefore:before {
    display: none !important;
}
/*# sourceMappingURL=style.css.map */


/* FORMS */
ul.errors {padding: 0; margin: 5px 0 0 0; color: red; list-style-position: inside;}
label.required:after {content:' *'; color:#FF5F97;}
.felement .description {color:#999; margin-top:3px;}
.frow {margin-bottom: 15px;}
.flabel {margin-bottom: 5px; display: block;}
.form-wrapper td {padding: 7px 10px;vertical-align: middle !important; background-color: #fff !important;}

/* ALERTS */
.alert {padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; text-shadow: 0 1px 0 rgba(255,255,255,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);}
.alert-success {color: #3c763d; background-color: #dff0d8; background-repeat: repeat-x; border-color: #d6e9c6; border-color: #b2dba1; background-image: linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);}
.alert-danger {color: #a94442; background-color: #f2dede; background-repeat: repeat-x; border-color: #dca7a7; background-image: linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);}


.mfp-bg {background-color: #fff !important; opacity: 0 !important;}
.white-popup {box-shadow: 0 0  20px rgba(0,0,0,0.3)}

.form-wrapper td:first-child {display: none;}

#Module_Feedback_Form_Call input[type=text], #Module_Feedback_Form_Call textarea {width:300px; box-sizing: border-box;}
#Module_Feedback_Form_Default input[type=text], #Module_Feedback_Form_Default textarea {width:300px;box-sizing: border-box;}
#Module_Feedback_Form_Cons input[type=text], #Module_Feedback_Form_Cons textarea {width:300px;box-sizing: border-box;}

#Module_Feedback_Form_Cons {width:300px;}
#Module_Feedback_Form_Cons label {white-space: nowrap;}
#Module_Feedback_Form_Cons input[type=checkbox] {vertical-align: middle; margin-bottom:5px;}
#Module_Feedback_Form_Cons .flabel {display: none;}
#Module_Feedback_Form_Cons #themes-wrap .flabel {display: block; margin-bottom: 15px;}
a.cons-dop-link {text-decoration: none; border-bottom:1px dotted;}
#Module_Feedback_Form_Cons #comment-wrap, #Module_Feedback_Form_Cons #themes-wrap .felement {display: none;}

#Module_Feedback_Form_Call .flabel {display: none;}
#Module_Feedback_Form_Default .flabel {display: none;}
#submit-wrap {float: left; margin-right: 20px;}

/* NEW */
.new {margin-bottom:40px;}

.text-in-border {font-size: 15px; color:#17518b; border-radius: 10px; padding:15px; border:1px solid #99c5d5; font-style: italic;}
.new table td {padding: 0;}
.roboto {font-family: "Roboto Condensed"}
.new-subheader {color:#424242; font: bold 18px "Roboto Condensed"; border-bottom: 1px solid #c2dce6; margin-bottom: 15px; padding-bottom: 5px;}

.table4 {margin-bottom: 30px;}
.table4 img {margin-right: 15px;float: left;}
.table4 a {font:18px "Roboto Condensed"; color: #424242; text-decoration: none; border-bottom: 1px dashed; text-transform: uppercase; position: relative; top:8px;}
.table4 a:hover {border: none; color:#0b739a;}
.table4 .smaller a {font-size: 14px; position: static;}

.table5 {margin-bottom: 30px;}
.table5 img {margin-right: 15px;float: left;}

.table9 {width: 100%;}
.table9 a {font: 16px "Roboto Condensed"; position: relative; top:3px;}
.table9 .digit {color:#c7322d; font: bold 28px "Roboto Condensed"; display: block; float: left; width: 42px; height: 42px; line-height:42px; border:2px solid; border-radius: 42px; text-align: center; margin-right: 15px;}
.table9 td {background-color: transparent !important; padding-bottom: 30px !important;}
.table9 .text-in-border {text-align:left; background-color: #f9fbfc; font-size:14px; color:#000; padding:5px 15px;}
.table9 .text-in-border .star {color:#c7322d; font-weight: bold; font-size: 14px;}

.new-footer { background-color: #e8f2f6; border-radius: 10px; text-align: right; font:18px "Roboto Condensed"; padding:6px 20px;}
.call-but {width:200px; text-align: left; box-sizing: border-box; display: inline-block; color:#ca582e; font:15px "Roboto Condensed"; padding:7px 10px 7px 30px; border:1px solid #ca582e; border-radius: 5px; text-decoration: none; background: url(../img/icons/new/phone.png) 5px center no-repeat;}
.call-but:hover {background: url(../img/icons/new/phone-hover.png) 5px center no-repeat, linear-gradient(to bottom, #d36b33 0%,#d36b33 50%,#ca582e 51%,#ca582e 100%); color:#fff;}


.spoiler {margin-top: 20px; }
.spoiler a {display: inline-block; margin-bottom: 10px; border-bottom: 1px dotted; text-decoration: none;}
.spoiler div {display: none;}




.bold { font-weight: bold; }
.fwn { font-weight: normal }
.italic {font-style: italic}
.uc {text-transform: uppercase}

.m0 {margin: 0}
.mb3 {margin-bottom: 3px} .mt3 {margin-top: 3px} .ml3 {margin-left: 3px} .mr3 {margin-right: 3px}
.mb5 {margin-bottom: 5px} .mt5 {margin-top: 5px} .ml5 {margin-left: 5px} .mr5 {margin-right: 5px}
.mb10 {margin-bottom: 10px} .mt10 {margin-top:10px} .ml10 {margin-left: 10px} .mr10 {margin-right: 10px}
.mb15 {margin-bottom: 15px} .mt15 {margin-top:15px} .ml15 {margin-left: 15px} .mr15 {margin-right: 15px}
.mb20 {margin-bottom: 20px} .mt20 {margin-top:20px} .ml20 {margin-left: 20px} .mr20 {margin-right: 20px}
.mb30 {margin-bottom: 30px} .mt30 {margin-top:30px} .ml30 {margin-left: 30px} .mr30 {margin-right: 30px}
.mb40 {margin-bottom: 40px} .mt40 {margin-top:40px} .ml40 {margin-left: 40px} .mr40 {margin-right: 40px}
.mb50 {margin-bottom: 50px} .mt50 {margin-top:50px} .ml50 {margin-left: 50px} .mr50 {margin-right: 50px}


.centered {margin-right: auto; margin-left: auto}

.p0 {padding: 0}
.p5 {padding: 5px}
.p10 { padding: 10px }
.p15 {padding: 15px}
.p20 { padding: 20px }
.p40 { padding: 40px }


.flr { float: right }
.fll { float: left }

.di { display: inline }
.db { display: block }
.dib { display: inline-block;}
.dit { display: table; _height: 0; zoom:1; }
.hide { display: none }
.hidden {visibility: hidden}

.c { text-align:center }
.ar { text-align:right }
.al { text-align: left }
.aj { text-align: justify }

.fs90 {font-size: 90%}

.fs10px {font-size: 10px}
.fs11px {font-size: 11px}
.fs12px {font-size: 12px}
.fs13px {font-size: 13px}
.fs14px {font-size: 14px}
.fs15px {font-size: 15px}
.fs16px {font-size: 16px}
.fs17px {font-size: 17px}
.fs18px {font-size: 18px}
.fs20px {font-size: 20px}
.fs21px {font-size: 21px}
.fs22px {font-size: 22px}
.fs25px {font-size: 25px}
.fs26px {font-size: 26px}
.fs30px {font-size: 30px}

.lh1 {line-height: 1em}

.vam, table.vamtd { vertical-align:middle }
.vat, table.vat td { vertical-align:top }
.vab, table.vab td { vertical-align:bottom }

.oh { overflow: hidden }

.cl {clear: both}
.clear {
    height: 0px;
    clear: both;
    font-size: 0;
    line-height:0;
    /* margin-top:-1px; */
}

.nobr { white-space: nowrap }

.pr { position: relative }
.pa { position: absolute }

a.nou, a.hover-nou:hover { text-decoration: none }
.u, a.u { text-decoration: underline }
.hover-u:hover {text-decoration: underline}

.link {cursor: pointer}
.not_link {cursor: default}

.w100p {width: 100%}
.h100p {height: 100%}
.w96p {width: 96%}
.w98p {width: 98%}
.w50p {width: 50%}

.test {
    border: 1px solid red;
}


.white { color: #fff !important}
.black { color: #181818 !important}
.grey {color: #bdbdbd}
.red {color: #f00}

.w20 {width: 20px}
.w30 {width: 30px}
.w50 {width: 50px}
.w80 {width: 80px}
.w100 {width: 100px}
.w150 {width: 150px}
.w200 {width: 200px}
.w250 {width: 250px}
.w300 {width: 300px}


.r5 {border-radius: 5px;}
.r10 {border-radius: 10px;}

.noborder {border:none !important;}

table.normal-padding th, table.normal-padding td {padding: 4px 5px}
table.small-padding th, table.small-padding td {padding: 3px}
table.wide-padding th, table.wide-padding td {padding: 4px 10px}
table.big-padding th, table.big-padding td {padding: 10px 10px}

.clearfix { *zoom:1; }
.clearfix:before, .clearfix:after { display:table; content:""; line-height:0; }
.clearfix:after { clear:both; }

.dotted {text-decoration: none; border-bottom:1px dotted;}

.no-image {background-color: #eee; display: inline-block; text-align: center; color:#bbb;}

.img-wrapper {display: inline-block; vertical-align: top; margin-bottom: 10px; max-width: 100% !important; font-style: normal; font-weight: normal;}
.img-wrapper span {display: block; padding: 10px 15px; background: #f3f6f8; color: #3a3a3a; font-size: 13px; line-height: 17px; text-transform: none; font-family: Arial}
.img-wrapper img {float:none; transition: 0.3s; max-width: 100%; height:auto; vertical-align: middle;}
.img-wrapper img:hover {transform: scale(1.1)}

.mfp-title {color:#333 !important; font-size: 2em;}