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: 2em;
  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 {
  -moz-box-sizing: content-box;
  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"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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  ---------------------*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*###################  Frame  ####################*/
html {
  height: 100%;
  display: block;
  font-family: "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
  background: #fff;
  font-size: 14px;
  font-weight: normal;
}
body {
  line-height: 1.2em;
  min-height: 100%;
  text-align: left;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 950px) {
  body {
    background: #253f47;
  }
}
.stick {
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding-bottom: 107px;
}
.stick:before,
.stick:after {
  content: "";
  display: table;
}
.stick:after {
  clear: both;
}
@media screen and (max-width: 950px) {
  .stick {
    padding-bottom: 10px;
    background: #fff;
  }
}
.wrap {
  margin: 0 auto;
  max-width: 952px;
  min-width: 290px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  z-index: 1;
}
.wrap:before,
.wrap:after {
  content: "";
  display: table;
}
.wrap:after {
  clear: both;
}
@media (max-width: 982px) {
  .wrap {
    padding: 0 15px;
  }
}
.middle:before,
.middle:after {
  content: "";
  display: table;
}
.middle:after {
  clear: both;
}
/*###################  Header and Footer  ####################*/
.header,
.footer {
  min-width: 290px;
}
.header:before,
.footer:before,
.header:after,
.footer:after {
  content: "";
  display: table;
}
.header:after,
.footer:after {
  clear: both;
}
.header {
  width: 100%;
  background: #fff;
  color: #fff;
  position: relative;
  padding-top: 6px;
  z-index: 10;
  margin-bottom: 33px;
}
@media screen and (max-width: 820px) {
  .header {
    margin-bottom: 0px;
  }
}
.header .ins {
  position: relative;
  width: 100%;
  clear: both;
  display: block;
  height: 0px;
}
.header a {
  color: #fff;
}
.header > .wrap {
  padding-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .header > .wrap {
    padding-bottom: 0px;
  }
}
.header > .wrap .R {
  margin-top: 18px;
  /*line-height: 50px;*/
  text-align: right;
  padding-bottom: 7px;
}
.header > .wrap .R .B {
  display: inline-block;
  float: none;
  text-align: left;
  vertical-align: middle;
  margin-left: 54px;
  clear: none;
}
@media (max-width: 952px) {
  .header > .wrap .R .B {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .header{
      border-bottom: 1px solid #e8e8e8;
      box-shadow:0 2px 4px rgba(0,0,0,0.1)
  }
  
  .header > .wrap .R .B {
    clear: both;
    display: block;
  }
}
.header > .wrap .R .B_logo {
  margin-left: 0;
  float: left;
  padding-top: 3px;
}
.header > .wrap .R .B_logo img {
  vertical-align: top;
}
.header > .wrap .R:first-child {
  margin-top: 0;
}
@media (max-width: 550px) {
  .header > .wrap .R .BTN {
    clear: both;
    margin: 7px 0 8px;
  }
}
@media (max-width: 480px) {
  .header > .wrap .R .BTN {
    clear: none;
    margin: 0 16px 10px 0;
  }
}
@media (max-width: 952px) {
  .header > .wrap .planeLeft {
    clear: none !important;
    float: none !important;
    display: inline-block !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
@media (max-width: 815px) {
  .header > .wrap .planeLeft {
    margin: 0 0 15px !important;
    clear: left !important;
    float: left !important;
  }
}
.header .navHide {
  border-radius: 100px;
  width: 30px;
  height: 22px;
  border: 2px solid #000;
  position: absolute;
  z-index: 1000;
  right: 2px;
  top: 56px;
  padding: 4px 0;
  display: none;
  opacity: 0.7;
}
.header .navHide span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  margin: 4px auto;
}
.header .navHide:hover {
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .header .navHide {
    display: block;
  }
}
@media screen and (max-width: 350px) {
  .header .navHide {
    top: 10px;
  }
}
.header nav {
  position: absolute;
  top: -5px;
  border-radius: 5px;
  z-index: 100;
  left: 0;
  width: 100%;
  font-weight: 600;
  border-top: 1px solid #4d9712;
  background: #4e9712;
/* Old browsers */
  background: -moz-linear-gradient(top, #4e9712 0%, #569e13 21%, #5a9f15 45%, #589d14 47%, #519513 50%, #4f9412 53%, #42810f 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #4e9712 0%, #569e13 21%, #5a9f15 45%, #589d14 47%, #519513 50%, #4f9412 53%, #42810f 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #4e9712 0%, #569e13 21%, #5a9f15 45%, #589d14 47%, #519513 50%, #4f9412 53%, #42810f 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e9712', endColorstr='#42810f',GradientType=0 );
/* IE6-9 */
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
}
@media screen and (max-width: 820px) {
  .header nav {
    top: -10px;
    display: none;
  }
}
.header nav .M_hz {
  min-height: 40px;
  line-height: 16px;
  text-align: justify;
  padding: 0px 20px 0;
  box-sizing: border-box;
  text-align-last: justify;
  width: 100%;
}
@media (max-width: 400px) {
  .header nav .M_hz {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header nav .M_hz:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.header nav .M_hz li {
  display: inline-block;
  float: none;
  padding-top: 13px;
}
.header nav .M_hz .active,
.header nav .M_hz .active a,
.header nav .M_hz a:hover {
  text-decoration: underline;
}
.header nav .M_hz .active:hover,
.header nav .M_hz .active a:hover {
  cursor: default;
}
.header nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
.footer {
  font-size: 14px;
  background: #fff;
  text-align: left;
  /*padding: 10px 0;*/
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 1.6em;
  /*border-top: 1px solid;
  border-top-color: darkgray;*/
}
@media screen and (max-width: 950px) {
  .footer {
    position: static;
  }
}
.footer > .R {
  line-height: 50px;
}
.footer .R > .B {
  display: inline-block !important;
  width: 49%;
  margin-left: 0;
}
@media screen and (max-width: 700px) {
  .footer .R > .B {
    width: 100% !important;
    margin-left: 2px !important;
  }
  .footer .R > .B + .B {
    margin-top: 20px;
  }
  .footer .R > .B > .B {
    margin-left: 0 !important;
  }
}
.footer .B {
  vertical-align: middle;
  display: block !important;
  float: none !important;
}
.footer .B_logo {
  margin-left: 11px !important;
}
.footer .B_copy {
  margin-left: 11px !important;
  margin-top: 5px;
  min-height: 0;
  line-height: 1.2em;
}
.footer a {
  color: #fff;
}
/*###################  Content  ####################*/
.middle:before,
.middle:after {
  content: "";
  display: table;
}
.middle:after {
  clear: both;
}
.middle .content {
  margin-top: 15px;
}
.middle .content:before,
.middle .content:after {
  content: "";
  display: table;
}
.middle .content:after {
  clear: both;
}
.middle .content section {
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 10px 0px #808080;
  padding: 5px;
  margin-bottom: 30px;
}
.middle .content section header {
  margin-bottom: 4px;
}
.middle .content section header > span,
.middle .content section header > strong {
  display: inline-block;
}
.middle .content section header > span + strong,
.middle .content section header > strong + strong,
.middle .content section header > span + span,
.middle .content section header > strong + span {
  margin-left: 10px;
}
.middle .content section header + p {
  margin-top: 0;
}
.middle .content section .R > .CLM {
  text-align: center;
}
@media screen and (max-width: 990px) {
  .middle .content .R_columns .CLM {
    height: auto !important;
  }
  .middle .content .R_columns .CLM img {
    max-width: 100%;
  }
}
.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;
}
/*###################  Universal  ####################*/
a {
  color: #4a8d1a;
}
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: none;
  line-height: 1.7em;
}
ul li {
  position: relative;
  list-style: none;
}
ul li:after {
  content: ' ';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 10px;
  left: -8px;
  border-radius: 10px;
}
h1,
h2,
h3,
.TL {
  font-size: 18px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
}
h1:first-child,
h2:first-child,
h3:first-child,
.TL:first-child {
  margin-top: 0px;
}
h1 {
  color: #4a8d1a;
}
time {
  font-size: 12px;
}
table {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  border-collapse: collapse;
  border-radius: 7px;
  overflow: hidden;
  line-height: 1.3em;
}
table td,
table th {
  border: 1px solid #ededed;
  background: #fff;
  padding: 5px 10px;
  vertical-align: top;
}
table th {
  font-weight: 600;
}
/*----------  inputs  ----------*/
input {
  font-family: Verdana, "Open Sans", Verdana, Arial, "Helvetica CY", Helvetica, "Nimbus Sans L", sans-serif;
}
input:focus {
  outline: none;
}
input[type="text"],
input[type="password"] {
  display: block;
  background: #fff;
  color: #253f47;
  border: none;
  height: 34px;
  padding: 0px 7px;
  line-height: 34px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  width: 100%;
}
input[type="text"] + input,
input[type="password"] + input,
input[type="text"] + textarea,
input[type="password"] + textarea {
  margin-top: 10px;
}
.R input[type="text"] + input,
.R input[type="password"] + input,
.R input[type="text"] + textarea,
.R input[type="password"] + textarea {
  margin-top: 0px;
}
textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 5px 7px;
  border: 1px solid #d9d9d9;
  background: #fff;
  min-height: 80px;
  line-height: 1.4em;
}
textarea + input,
textarea + textarea {
  margin-top: 10px;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 100;
}
form .R + .R {
  margin-top: 10px;
}
form .R label {
  margin-bottom: 3px;
  display: block;
}
/*-------- Forms --------*/
.FORM:before,
.FORM:after {
  content: "";
  display: table;
}
.FORM:after {
  clear: both;
}
.FORM_mulcts {
  padding: 15px;
  display: block;
}
.FORM_mulcts > .B {
  margin-right: 16px;
}
.FORM_mulcts > .B:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 450px) {
  .FORM_mulcts {
    padding: 5px;
    text-align: center;
  }
  .FORM_mulcts .B,
  .FORM_mulcts input[type="submit"] {
    display: inline-block !important;
    float: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.FORM_mulcts input {
  border: none;
}
.FORM_mulcts .BTN {
  margin-top: 2px;
  width: 128px;
}
/*-------- Tables --------*/
table.TABLE {
  border-collapse: collapse;
}
table.TABLE td,
table.TABLE th {
  border: 1px solid #ededed;
  background: #fff;
  min-width: 120px;
}
table.TABLE .R {
  display: table-row;
  width: auto;
}
table.TABLE .B {
  display: table-cell;
  float: none;
  margin-left: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 650px) {
  table.TABLE {
    display: block;
  }
  table.TABLE thead {
    display: none;
  }
  table.TABLE .R {
    display: block;
    background: #fff;
    padding: 7px 0;
  }
  table.TABLE .R + .R {
    border-top: 1px solid #ddd;
  }
  table.TABLE .B {
    display: inline-block;
    border: none;
    width: auto !important;
  }
  table.TABLE .B_text {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100% !important;
  }
  table.TABLE .BTN {
    margin-top: 6px;
  }
}
.TABLE_div {
  background: #ededed;
}
table.TABLE_div {
  width: 100%;
  box-sizing: border-box;
  display: block;
  padding: 7px;
}
section> table.TABLE_div {
  margin-top: 0;
  margin-bottom: 0;
}
table.TABLE_div th,
table.TABLE_div td {
  font-weight: normal;
  min-width: 0;
}
table.TABLE_div .R {
  width: 100%;
}
@media screen and (max-width: 650px) {
  table.TABLE_div thead {
    display: none !important;
  }
}
.TABLE_div .R {
  border-radius: 8px;
  overflow: hidden;
}
.TABLE_div .R .B {
  background: #fff;
}
.TABLE_div .R_title .B {
  background: none;
}
.TABLE_div .R {
  display: table !important;
}
.TABLE_div .R + .R {
  margin-top: 7px;
}
.TABLE_div .R .B {
  display: table-cell;
  float: none;
  margin: 0;
  padding: 14px 10px;
  text-align: center;
  width: 14%;
  box-sizing: border-box;
  border: 1px solid #ededed;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.TABLE_div .R .B > span {
  margin-top: 3px;
  display: inline-block;
}
.TABLE_div .R .B:last-child {
  border: none;
}
.TABLE_div .R .B:nth-child(4) {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 650px) {
  .TABLE_div .R {
    display: block !important;
    background: #fff;
  }
  .TABLE_div .R .B {
    display: inline-block;
    border: none;
    background: none;
    width: auto !important;
  }
  .TABLE_div .R .B_text {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    width: 100% !important;
  }
  .TABLE_div .R .BTN {
    margin-top: 6px;
  }
}
.TABLE_div .R_title .B {
  padding: 7px 0;
}
.TABLE_div .R_title .B:nth-child(4) {
  text-align: center;
}
.TABLE_mulcts .B:nth-child(1) {
  width: 12% !important;
  word-wrap: break-word !important;
  word-break: break-all !important;
}
.TABLE_mulcts .B:nth-child(2) {
  width: 11% !important;
}
.TABLE_mulcts .B:nth-child(3) {
  width: 9.5% !important;
}
.TABLE_mulcts .B:nth-child(4) {
  width: 47% !important;
}
.TABLE_mulcts .B:nth-child(5) {
  width: 8% !important;
}
.TABLE_mulcts .B:nth-child(6) {
  width: 13.5% !important;
}
/*----------  Adaptiv ----------*/
.VIS-SM,
.VIS-SM_inlineBlock {
  display: none;
}
@media screen and (max-width: 650px) {
  .VIS-SM,
  .VIS-SM_inlineBlock {
    display: block;
  }
  .VIS-SM_inlineBlock,
  .VIS-SM_inlineBlock_inlineBlock {
    display: inline-block;
    margin-right: 5px;
  }
}
.MgTop_XS {
  margin-top: 10px;
}
/*----------  boxInfo ----------*/
.boxInfo {
  color: #4e9912;
  font-weight: 600;
  font-size: 12px;
  margin-top: 15px;
  background: url("../../img/info.png") 5px center no-repeat;
  padding-left: 65px;
  text-align: left !important;
}
@media (max-width: 500px) {
  .boxInfo {
    margin-top: 20px;
    padding-left: 0;
    padding-top: 55px;
    background-position: center top;
  }
}
/*----------  Rows  ----------*/
.R {
  position: relative;
  clear: both;
  width: 100%;
  box-sizing: border-box;
}
.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;
}
/*----------  Blocks  ----------*/
.B {
  display: block;
}
.B:before,
.B:after {
  content: "";
  display: table;
}
.B:after {
  clear: both;
}
.B_bgNumberAuto,
.B_bgNumberTS {
  background: url("../../img/bg_numberAuto.png") 0 1px no-repeat;
  width: 251px;
  min-height: 54px;
  float: left;
  margin-right: 18px;
  text-align: center;
  margin-bottom: 15px;
}
.B_bgNumberAuto input,
.B_bgNumberTS input {
  background: none;
  text-align: center;
  box-sizing: border-box;
  padding: 0 7px;
  height: 54px;
  line-height: 54px;
  display: block;
  font-size: 34px;
  font-weight: 300 !important;
  letter-spacing: -2px;
  width: 100%;
}
.B_bgNumberAuto label,
.B_bgNumberTS label {
  font-size: 16px;
  display: block;
  margin-top: 8px;
}
.B_bgNumberAuto #region,
.B_bgNumberTS #region {
  position: relative;
  top: -3px;
}
.B_bgNumberAuto .CLM,
.B_bgNumberTS .CLM {
  margin-left: 0 !important;
}
.B_bgNumberAuto .CLM:first-child,
.B_bgNumberTS .CLM:first-child {
  margin-left: 2% !important;
}
.B_bgNumberAuto .CLM:last-child,
.B_bgNumberTS .CLM:last-child {
  padding-right: 15px !important;
}
.B_bgNumberAuto .CLM:last-child input,
.B_bgNumberTS .CLM:last-child input {
  padding-right: 0 !important;
}
.B_bgNumberTS {
  background-image: url("../../img/bg_numberTS.png");
  background-position: 0 0;
}
.B_bgNumberAuto .CLM {
  display: block;
}
.B_bgNumberAuto .CLM_3x4 {
  width: 165px !important;
  padding-left: 8px;
}
.B_bgNumberAuto .CLM_1x4 {
  width: 77px !important;
}
.B_bgNumberAuto .CLM_1x4 input {
  font-size: 29px !important;
}
.B_bgNumberAuto .CLM_1x4 label {
  position: relative;
  left: 5px;
}
.B_bgNumberAuto .CLM_1x4:last-child {
  padding-right: 10px !important;
}
.B_copy {
  margin-left: 80px !important;
  min-height: 38px;
  line-height: 38px;
}
.B_copy span {
  line-height: 1.2em;
  vertical-align: middle;
}
/*----------  Columns  ----------*/
.CLM {
  float: left;
  box-sizing: border-box;
}
.CLM_1x2 {
  margin-left: 1.5% !important;
  width: 49.25% !important;
}
@media screen and (max-width: 650px) {
  .CLM_1x2 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_2x3 {
  margin-left: 2% !important;
  width: 66% !important;
}
@media screen and (max-width: 650px) {
  .CLM_2x3 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_1x3 {
  margin-left: 3% !important;
  width: 31.333333333333332% !important;
}
@media screen and (max-width: 650px) {
  .CLM_1x3 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_1x4 {
  margin-left: 3% !important;
  width: 22.75% !important;
}
@media screen and (max-width: 820px) {
  .CLM_1x4 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_3x4 {
  margin-left: 3% !important;
  width: 74.25% !important;
}
@media screen and (max-width: 820px) {
  .CLM_3x4 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_1x5 {
  margin-left: 1% !important;
  width: 19.2% !important;
}
@media screen and (max-width: 650px) {
  .CLM_1x5 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_2x5 {
  margin-left: 1% !important;
  width: 39.4% !important;
}
@media screen and (max-width: 650px) {
  .CLM_2x5 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_3x5 {
  margin-left: 1% !important;
  width: 59.599999999999994% !important;
}
@media screen and (max-width: 650px) {
  .CLM_3x5 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_4x5 {
  margin-left: 1% !important;
  width: 79.8% !important;
}
@media screen and (max-width: 650px) {
  .CLM_4x5 {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.CLM_1x6 {
  margin-left: 2% !important;
  width: 15% !important;
}
.CLM_2x6 {
  margin-left: 2% !important;
  width: 32% !important;
}
.CLM_3x6 {
  margin-left: 2% !important;
  width: 49% !important;
}
.CLM_4x6 {
  margin-left: 2% !important;
  width: 66% !important;
}
.CLM_5x6 {
  margin-left: 2% !important;
  width: 83% !important;
}
.CLM:first-child {
  margin-left: 0 !important;
}
/*----------  wrappers  ----------*/
.W {
  overflow: hidden;
}
.W:before,
.W:after {
  content: "";
  display: table;
}
.W:after {
  clear: both;
}
.W_accordion {
  padding: 14px 0;
}
.W_accordion h1,
.W_accordion h2,
.W_accordion h3 {
  padding: 0px 8px 0 !important;
  cursor: pointer;
  margin: 0;
}
.W_accordion > .B:before,
.W_accordion > .B:after {
  content: "";
  display: table;
}
.W_accordion > .B:after {
  clear: both;
}
.W_accordion > .B + .B {
  margin-top: 20px;
}
.W_accordion table {
  margin-bottom: 0;
}
.W_accordion .-close > h2 {
  text-decoration: underline;
  color: #253f47 !important;
}
/*----------  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;
  padding-left: 1px;
}
.M_hz li:first-child {
  margin-left: 0 !important;
}
.M_hz li {
  float: left;
  display: block;
  text-align: center;
  margin-left: 0px;
  margin-bottom: 0;
}
.M_hz li a {
  display: block;
  padding: 0 25px 0 24px;
}
.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: #253f47 !important;
}
/*----------  Title  ----------*/
.TL {
  display: block;
}
/*----------  Button  ----------*/
.BTN {
  height: 32px;
  line-height: 29px !important;
  display: block;
  padding: 0 25px;
  text-align: center;
  letter-spacing: -0.2px;
  min-width: 40px;
  margin: 2px;
  border-radius: 5px;
  color: #fff;
  border: none;
  background: #a4da52;
/* Old browsers */
  background: -moz-linear-gradient(top, #a4da52 0%, #9fd54c 20%, #93cb46 44%, #8dc644 52%, #80ba41 56%, #62a443 92%, #42712f 96%, #40702f 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #a4da52 0%, #9fd54c 20%, #93cb46 44%, #8dc644 52%, #80ba41 56%, #62a443 92%, #42712f 96%, #40702f 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a4da52 0%, #9fd54c 20%, #93cb46 44%, #8dc644 52%, #80ba41 56%, #62a443 92%, #42712f 96%, #40702f 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4da52', endColorstr='#40702f',GradientType=0 );
/* IE6-9 */
  box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.2);
  border: 1px solid #315423;
  text-decoration: none;
  font-size: 14px;
}
.BTN_orange {
  background: #523e28;
/* Old browsers */
  background: -moz-linear-gradient(top, #523e28 0%, #b57c3b 3%, #ae7a3d 26%, #946f43 88%, #684e32 91%, #674e31 94%, #523e28 97%, #57646b 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #523e28 0%, #b57c3b 3%, #ae7a3d 26%, #946f43 88%, #684e32 91%, #674e31 94%, #523e28 97%, #57646b 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #523e28 0%, #b57c3b 3%, #ae7a3d 26%, #946f43 88%, #684e32 91%, #674e31 94%, #523e28 97%, #57646b 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#523e28', endColorstr='#57646b',GradientType=0 );
/* IE6-9 */
}
.BTN:hover {
  color: #17518b;
}
.BTN_gray {
  background: #b8b8b8;
/* Old browsers */
  background: -moz-linear-gradient(top, #b8b8b8 0%, #bfbfbf 23%, #d9d9d9 79%, #dfdfdf 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #b8b8b8 0%, #bfbfbf 23%, #d9d9d9 79%, #dfdfdf 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #b8b8b8 0%, #bfbfbf 23%, #d9d9d9 79%, #dfdfdf 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8b8b8', endColorstr='#dfdfdf',GradientType=0 );
/* IE6-9 */
  border: 1px solid #878787;
  box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.2);
  color: #253f47;
}
.BTN_gray2 {
  background: #eaeaea;
/* Old browsers */
  background: -moz-linear-gradient(top, #eaeaea 0%, #dedede 52%, #d4d4d4 55%, #cdcdcd 94%, #8f8f8f 97%, #8f8f8f 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #eaeaea 0%, #dedede 52%, #d4d4d4 55%, #cdcdcd 94%, #8f8f8f 97%, #8f8f8f 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #eaeaea 0%, #dedede 52%, #d4d4d4 55%, #cdcdcd 94%, #8f8f8f 97%, #8f8f8f 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#8f8f8f',GradientType=0 );
/* IE6-9 */
  color: #448421;
  font-weight: 700;
  border: 1px solid #999;
  text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
}
.BTN_lg {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  height: 50px;
  line-height: 50px;
}
.BTN_sm {
  min-width: 0 !important;
  padding: 0 10px;
  height: 28px;
  line-height: 28px !important;
  display: inline-block;
}
.header .BTN {
  float: left;
  font-weight: 700;
  margin-right: 5px;
  background: #599e44;
/* Old browsers */
  background: -moz-linear-gradient(top, #599e44 0%, #67a743 19%, #7eb742 45%, #81ba42 48%, #8dc644 52%, #92cb45 58%, #9dd44b 77%, #a4d952 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #599e44 0%, #67a743 19%, #7eb742 45%, #81ba42 48%, #8dc644 52%, #92cb45 58%, #9dd44b 77%, #a4d952 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #599e44 0%, #67a743 19%, #7eb742 45%, #81ba42 48%, #8dc644 52%, #92cb45 58%, #9dd44b 77%, #a4d952 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#599e44', endColorstr='#a4d952',GradientType=0 );
/* IE6-9 */
  box-shadow: 0px 0px 0px 2px rgba(255,255,255,0.2);
}
.header .BTN_orange {
  background: #a06e45;
/* Old browsers */
  background: -moz-linear-gradient(top, #a06e45 0%, #a67247 13%, #c0824c 48%, #cf9057 52%, #d5904e 77%, #d58c47 100%);
/* FF3.6-15 */
  background: -webkit-linear-gradient(top, #a06e45 0%, #a67247 13%, #c0824c 48%, #cf9057 52%, #d5904e 77%, #d58c47 100%);
/* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a06e45 0%, #a67247 13%, #c0824c 48%, #cf9057 52%, #d5904e 77%, #d58c47 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a06e45', endColorstr='#d58c47',GradientType=0 );
/* IE6-9 */
}
.header .BTN + .BTN {
  margin-left: 10px;
}
/*----------  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;
}
/*----------  picture  ----------*/
.PICT {
  height: 100px;
  line-height: 100px;
  text-align: center;
}
.PICT img {
  vertical-align: middle;
  max-width: 100%;
}
/*----------  Modificator  ----------*/
._div {
  padding: 0;
  margin: 0;
}
h1._div,
h2._div,
h3._div {
  padding: 0 0 5px;
}

._download {
  max-width: 90%;
  margin-top: 9px;
  margin-left: 2%;
  margin-right: 2%;
  display: inline-block;
  position: relative;
}
._download.-open {
  cursor: default;
}
._download > span {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30%;
  left: 0;
  font-size: 20px;
  color: #444;
  font-weight: bold;
  background: rgba(255,255,255,0.6);
  padding: 5px 0;
}
.ios_dis_big._download > span {
  top: 20%;
}
._download img {
  max-width: 100%;
}

._full {
  width: 100%;
}
._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;
}
._pdMD {
  padding: 10px !important;
}
._pdNO {
  padding: 0 !important;
}
._mbSM {
  margin-bottom: 20px !important;
}
._left {
  float: left;
}
img._left {
  padding-right: 10px;
}
._right {
  float: right !important;
}
img._right {
  padding-left: 10px;
}
._dispBlock {
  display: block;
}
._dispIB {
  display: inline-block;
}
._textDecNo {
  text-decoration: none;
}
._line-normal {
  line-height: 1.2em;
}
._fontMD {
  font-size: 18px;
  line-height: 1.2em;
}
._fontLight {
  font-weight: 300;
}
._fontColor {
  color: #4e9912;
}
._fontSmall {
  font-size: 12px;
}
._fontSBold {
  font-weight: 600;
}
._textCenter {
  text-align: center !important;
}
._imgFull img {
  width: 100%;
}
section._imgFull {
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
}
._bgGray {
  background: #ededed;
}
._bgGray > .B {
  background: #fff;
  border-radius: 6px;
}
._bgGray > .B + .B {
  margin-top: 7px;
}
._bgGray > .B > .R {
  padding: 12px 9px 14px;
}
._bgGray > .B > .R + .R {
  border-top: 1px solid #ededed;
}
._shGreen {
  box-shadow: 0px 1px 10px 0px #5b8f38 !important;
}
._noAfter:after {
  display: none !important;
}
._noBefore:before {
  display: none !important;
}
._MTOP_sm {
  margin-top: 5px;
}
.fancybox-skin {
  padding: 25px !important;
  background: #253f47;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0px 1px 10px 0px #5b8f38 !important;
  background-color:#fff;
}
.fancybox-skin .fancybox-close {
  display: none;
}
.fancybox-skin .FORM input + input {
  margin-top: 15px;
}

.tooltip_custom {
  padding: 0 !important;
  max-width: 500px !important;
  border-radius: 25px !important;
  overflow: hidden !important;
}
.tooltip_custom .ui-tooltip-content {
  overflow: hidden !important;
  max-width: 100% !important;
}
.tooltip_custom img {
  display: block;
  max-width: 100%;
}
@media (max-width: 500px) {
  .tooltip_custom {
    max-width: 100% !important;
  }
}

.-delete {
  font-size: 11px;
  color: #f00;
  position: relative;
  display: inline-block;
  margin-left: 3px;
  bottom: 5px;
  margin-right: 8px;
  font-weight: 600;
}
/*------------- Адаптив --------------*/
@media (max-width: 952px) {
  .planeLeft {
    float: left !important;
    clear: left !important;
    display: block !important;
  }
}
/*# sourceMappingURL=style.css.map */