/** * Base CSS rules * * @author      Viacheslav Glushko aka iXax <mail@ixax.ru>, Renat Samatov <scribblex@yandex.ru> * @version     1.0.201210.03.1 * @since       1.0.201202.01.1 * @link        http://ixax.ru/portfolio/company/vgtrk/, http://samatovrenat.moikrug.ru/----------------------------------------------------------------------------- */
/** * Конфигурация------------------------------------------------------------------------------ */
/** * Устанавливаем кодировку------------------------------------------------------------------------------ */
@charset "UTF-8";
/** * Подключаем внешние mixins------------------------------------------------------------------------------ */
/** * Main mixins * * 1.0.201202.11.1 *    .size -> .box-size * * @author      Viacheslav Glushko aka iXax <flutter@ixax.ru> * @version     1.0.201202.11.1 * @since		1.0.201202.01.1 * @link        http://ixax.ru/projects/less-stuff/----------------------------------------------------------------------------- */
/** * Устанавливаем размер блока----------------------------------------------------------------------------- */
/** * font-size/line-height----------------------------------------------------------------------------- */
/** * Абсолютное позиционирование----------------------------------------------------------------------------- */
/** * Multi-browser horizontal menu----------------------------------------------------------------------------- */
/** * Vertical centered (необходимо задавать высоту элемента)----------------------------------------------------------------------------- */
/** * DISPLAY: <block>, <inline-block>, <none>----------------------------------------------------------------------------- */
/** * POSITION----------------------------------------------------------------------------- */
/**
 * CSS3 mixins
 * 
 * History:
 * 		1.0.201202.01.1
 * 			Старт проекта
 * 		1.0.201202.09.1
 * 			Добавлена частичная поддержка CSS3Pie (http://css3pie.com): .gradient добавляем -pie- свойство;
 *
 * @author      Viacheslav Glushko aka iXax <flutter@ixax.ru>
 * @version     1.0.201204.11.1
 * @since		1.0.201202.01.1
 * @link        http://ixax.ru/projects/less-stuff/
----------------------------------------------------------------------------- */
/* PRIVATE background-clip */
/**
 * GRADIENTS
----------------------------------------------------------------------------- */
/**
 * border-radius
----------------------------------------------------------------------------- */
/**
 * box-shadow
----------------------------------------------------------------------------- */
/*

.transition-duration(@duration: 0.2s) {
  -moz-transition-duration: @duration;
  -webkit-transition-duration: @duration;
  transition-duration: @duration;
}



.scale(@ratio:1.5){
  -webkit-transform:scale(@ratio);
  -moz-transform:scale(@ratio);
  transform:scale(@ratio);
}

.transition(@duration:0.2s, @ease:ease-out) {
  -webkit-transition: all @duration @ease;
  -moz-transition: all @duration @ease;
  transition: all @duration @ease;
}

.columns(@colwidth: 250px, @colcount: 0, @colgap: 50px, @columnRuleColor: #EEE, @columnRuleStyle: solid, @columnRuleWidth: 1px) {
  -moz-column-width: @colwidth;
  -moz-column-count: @colcount;
  -moz-column-gap: @colgap;
  -moz-column-rule-color: @columnRuleColor;
  -moz-column-rule-style: @columnRuleStyle;
  -moz-column-rule-width: @columnRuleWidth;
  -webkit-column-width: @colwidth;
  -webkit-column-count: @colcount;
  -webkit-column-gap: @colgap;
  -webkit-column-rule-color: @columnRuleColor;
  -webkit-column-rule-style: @columnRuleStyle;
  -webkit-column-rule-width: @columnRuleWidth;
  column-width: @colwidth;
  column-count: @colcount;
  column-gap: @colgap;
  column-rule-color: @columnRuleColor;
  column-rule-style: @columnRuleStyle;
  column-rule-width: @columnRuleWidth;
}

.translate(@x:0, @y:0) {
  -moz-transform: translate(@x, @y);
  -webkit-transform: translate(@x, @y);
  -o-transform: translate(@x, @y);
  -ms-transform: translate(@x, @y);
  transform: translate(@x, @y);
}
*/
/** * Подключаем mixins/variables проекта------------------------------------------------------------------------------ */
/**
 * Переменные проекта
 *
 * @author      Viacheslav Glushko aka iXax <mail@ixax.ru>
 * @version     1.0.201205.12.1
 * @since     	1.0.201202.01.1
 * @link        http://ixax.ru/portfolio/company/vgtrk/
----------------------------------------------------------------------------- */
/**
 * Box sizes
----------------------------------------------------------------------------- */
/**
 * Цвета текста
----------------------------------------------------------------------------- */
/* Цвет фона у активных элементов */
/**
 * Цвета в градиентных блоках и кнопках
----------------------------------------------------------------------------- */
/* #ddd */
/**
 * Цвета фона и рамок у блоков
----------------------------------------------------------------------------- */
/**
 * Иконки
------------------------------------------------------------------------------ */
/**
 * BODY Theming
----------------------------------------------------------------------------- */
/*@theme-light-bg:    #ededed;*/
/** * Presets mixins *  * * @author      Viacheslav Glushko aka iXax <mail@ixax.ru> * @version     1.0.201205.12.1 * @since     	1.0.201202.01.1 * @link        http://ixax.ru/portfolio/company/vgtrk/----------------------------------------------------------------------------- */
/** * Font----------------------------------------------------------------------------- */
/** * Градиенты----------------------------------------------------------------------------- */
/** * Background  с точечками------------------------------------------------------------------------------ */
/** * Background с диагональным полосками------------------------------------------------------------------------------ */
/** * Подложка под блоками------------------------------------------------------------------------------ */
/** * Вогнутая кнопка с тенюшками------------------------------------------------------------------------------ */
/** * Иконка поверх превьюшки видео <a>----------------------------------------------------------------------------- */
/** * PICTURE LINK------------------------------------------------------------------------------ */
/** * Фотка в персонах и галереях------------------------------------------------------------------------------ */
/** * Малые иконки просмотров / фотографий / комментариев / подробнее------------------------------------------------------------------------------ */
/** * “Правильный” text-shadow------------------------------------------------------------------------------ */
/** * Стиль текста в статьях------------------------------------------------------------------------------ */
/** * Close button------------------------------------------------------------------------------ */
/** * BODY----------------------------------------------------------------------------- */
body {
  font: 13px/15px Arial, Tahoma, Sans-Serif;
  color: #555555;
  /*background: transparent url("@{root}/main_bg-russia1.jpg") 50% -90px no-repeat;*/
  background: transparent url("/i/main_bg-russia1-new.jpg") 50% -90px no-repeat;
  /* background: transparent url("@{root}/main_bg-russia1-new.jpg") 50% -90px no-repeat;*/
}
body a {
  color: #555555;
  text-decoration: none;
}
body div.parental-fade {
  background: #ededed;
  border: 1px solid #000;
  display: none;
}
body a.icon:hover div.pardental-fade {
  display: block;
}
/** * INPUTS----------------------------------------------------------------------------- */
input,
textarea,
select {
  font: 13px/15px Arial, Tahoma, Sans-Serif;
}
/** * HEADERS    H4 используется в заголовках блоков с картинками или в заголовках с подписями и/или линией посередине----------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "RussiaRegular";
  font-weight: normal;
  margin: 0;
  padding: 0;
  color: #555555;
  text-transform: uppercase;
}
h1 p.title,
h2 p.title,
h3 p.title,
h4 p.title,
h5 p.title,
h6 p.title {
  display: block;
}
h1,
h1 a {
  width: auto;
  float: left;
  font-size: 38px;
  line-height: 38px;
}
h2 {
  font-size: 22px;
  line-height: 24px;
}
h1.real_name,
h1.real_name a {
  font-size: 22px;
  line-height: 24px;
  float: none;
}
/* Цветовые настройки лежат в project/theming.less */
h4 {
  min-height: 22px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 25px;
  position: relative;
}
h4 span {
  /*.dIblock;*/
  margin-bottom: -5px;
}
h4 a.icon {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: auto;
  cursor: default;
}
h4 span.subtitle {
  vertical-align: middle;
  height: 24px;
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 22px;
  font-family: Tahoma;
  text-transform: none;
}
/* Если есть ссылка */
h4.link a.icon {
  cursor: pointer;
}
h4.link a.icon:hover span.title {
  text-decoration: underline;
}
/* Под текстом - линия по центру */
h4.line a.icon {
  padding-right: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
h4.line p.line {
  display: block;
  height: 1px !important;
  border-bottom-width: 0;
  border-bottom-style: none;
  position: absolute;
  left: 0;
  top: 50%;
  zindex: 1;
  margin: 0;
  padding: 0;
  margin-top: 0;
  font-size: 1px;
  line-height: 1px;
}
h4.line p.line_full {
  width: 980px;
}
h4.line p.line_wide {
  width: 672px;
}
h4.line p.line_narrow {
  width: 475px;
}
/* subtitle находится справа от заголовка */
h4.left_right span.subtitle:before {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  content: '/';
  margin: 0 5px;
}
/* subtitle находится под заголовком */
h4.top_down {
  height: auto;
  margin-bottom: 0;
}
h4.top_down span.subtitle {
  display: block;
  margin-top: -2px;
  margin-left: 30px;
  height: auto;
  line-height: 15px;
}
/* По центру с линией наверху */
h4.centred {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #999999;
}
h5 {
  font-size: 18px;
  line-height: 20px;
}
/** * CONTAINER----------------------------------------------------------------------------- */
#triggers {
  display: none;
}
#overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7000;
  background: transparent url("/i/overlay_pattern.png") 0 0 repeat;
}
#container {
  width: 1020px;
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
}
#container div.wrapper {
  overflow: hidden;
}
/** * HEADER----------------------------------------------------------------------------- */
header {
  height: 40px;
  margin-top: 17px;
  position: relative;
  /*  Морда юзверя  */
}
header ul.vgtrk_soc_links {
  display: block;
  position: absolute;
  top: 0;
  right: 123px;
  width: 140px;
  height: 24px;
  background: #3e3e3e;
  background: linear-gradient(#3e3e3e, #1b1c1d);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#3e3e3e), to(#1b1c1d));
  background: -webkit-linear-gradient(#3e3e3e, #1b1c1d);
  background: -ms-linear-gradient(#3e3e3e, #1b1c1d);
  background: -moz-linear-gradient(#3e3e3e, #1b1c1d);
  background: -o-linear-gradient(#3e3e3e, #1b1c1d);
  border-top: 1px solid #636363;
  border-bottom: 1px solid #1b1d26;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_soc_links li {
  float: left;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  width: 28px;
  height: 24px;
}
header ul.vgtrk_soc_links li div {
  position: relative;
  width: 1px;
  height: 24px;
}
header ul.vgtrk_soc_links li div.border-left {
  float: left;
  background: #515151;
  background: linear-gradient(#515151, #202021);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#515151), to(#202021));
  background: -webkit-linear-gradient(#515151, #202021);
  background: -ms-linear-gradient(#515151, #202021);
  background: -moz-linear-gradient(#515151, #202021);
  background: -o-linear-gradient(#515151, #202021);
}
header ul.vgtrk_soc_links li div.border-right {
  float: right;
  background: #3c3c3c;
  background: linear-gradient(#3c3c3c, #151516);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#3c3c3c), to(#151516));
  background: -webkit-linear-gradient(#3c3c3c, #151516);
  background: -ms-linear-gradient(#3c3c3c, #151516);
  background: -moz-linear-gradient(#3c3c3c, #151516);
  background: -o-linear-gradient(#3c3c3c, #151516);
}
header ul.vgtrk_soc_links li a {
  display: block;
  float: left;
  width: 26px;
  height: 24px;
  background-image: url("/i/vgtrk-soc-links-sprite.png?v=4");
  background-repeat: no-repeat;
}
header ul.vgtrk_soc_links li a.fb {
  background-position: 10px center;
}
header ul.vgtrk_soc_links li a.vk {
  background-position: -18px center;
}
header ul.vgtrk_soc_links li a.cm {
  background-position: -46px center;
}
header ul.vgtrk_soc_links li a.gp {
  background-position: -74px center;
}
header ul.vgtrk_soc_links li a.tv {
  background-position: -101px center;
}
header ul.vgtrk_soc_links li a.insta {
  background-position: -133px center;
}
header ul.vgtrk_soc_links li a.yt {
  background-position: -161px center;
}
header ul.vgtrk_soc_links li a.tamtam {
  background-position: -190px center;
}
header ul.vgtrk_soc_links li:first-child {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_soc_links li:first-child div.border-left {
  display: none;
}
header ul.vgtrk_soc_links li:last-child {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_soc_links li:last-child div.border-right {
  display: none;
}
header ul.vgtrk_soc_links li:hover {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
}
header ul.vgtrk_bar {
  display: block;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  top: 0;
  left: 0;
  position: absolute;
}
header ul.vgtrk_bar li.root {
  float: left;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
}
header ul.vgtrk_bar li.root .root {
  width: 105px;
}
header ul.vgtrk_bar li.root:hover ul {
  display: block;
}
header ul.vgtrk_bar li.root .root {
  width: 104px;
  height: 26px;
  display: block;
  background: #424242;
  background: linear-gradient(#424242, #252627);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#424242), to(#252627));
  background: -webkit-linear-gradient(#424242, #252627);
  background: -ms-linear-gradient(#424242, #252627);
  background: -moz-linear-gradient(#424242, #252627);
  background: -o-linear-gradient(#424242, #252627);
  color: #ffffff;
  text-shadow: 1px 1px 0 #222222;
  font-size: 13px;
  line-height: 25px;
  font-family: "RussiaRegular";
  border-right: 1px solid #000;
  border-left: 1px solid #494949;
  text-align: center;
}
header ul.vgtrk_bar li.root .root:hover {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header ul.vgtrk_bar li.root .root.active {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header ul.vgtrk_bar li.first .root {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-left: 0;
}
header ul.vgtrk_bar li.last .root {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-right: 0;
  width: 160px;
}
header ul.vgtrk_bar li.last .root span {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_bar li.dropdown a span.drop,
header ul.vgtrk_bar li.dropdown div span.drop {
  float: right;
  display: inline-block;
  width: 31px;
  height: 26px;
  background: transparent url('/i/el/dropdown_arrow.png') 100% 0 no-repeat;
}
header ul.vgtrk_bar li.dropdown a:hover span,
header ul.vgtrk_bar li.dropdown div:hover span {
  background-position: 0 -26px;
}
header ul.vgtrk_bar ul {
  display: none;
  position: absolute;
  left: 0;
  top: 26px;
  z-index: 100;
  min-width: 106px;
  background: #47484d;
  background: linear-gradient(#47484d, #1d1e20);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#47484d), to(#1d1e20));
  background: -webkit-linear-gradient(#47484d, #1d1e20);
  background: -ms-linear-gradient(#47484d, #1d1e20);
  background: -moz-linear-gradient(#47484d, #1d1e20);
  background: -o-linear-gradient(#47484d, #1d1e20);
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_bar ul li {
  height: 26px;
  border-top: 1px solid #1d1e20;
}
header ul.vgtrk_bar ul li a {
  display: block;
  padding: 0 15px;
  color: #fff;
  font-size: 13px;
  line-height: 26px;
  text-shadow: 1px 1px 0 #000;
  position: relative;
}
header ul.vgtrk_bar ul li a:hover {
  background: transparent url("/i/el/vgtrk_bar_item_hover.png") 0 0 repeat-x;
}
header ul.vgtrk_bar ul li a:last-child {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header ul.vgtrk_bar ul li a span.dot {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #f01e28;
  text-shadow: 1px 1px 0 #000;
  font-size: 10px;
  position: absolute;
  top: -1px;
  left: 5px;
}
header div.header-current-date {
  position: relative;
  left: 422px;
  margin-right: 14px;
  margin-top: 7px;
  width: 216px;
  float: left;
  text-align: center;
  font: 11px normal 'Tahoma';
  text-shadow: 0 1px 0 #fff;
}
header div.live_broadcast {
  width: 400px;
  position: absolute;
  right: 130px;
  top: 0;
  line-height: 25px;
  text-align: right;
}
header div.live_broadcast a {
  width: 80px;
  height: 26px;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  float: left;
  padding: 0 20px;
  display: block;
  background: #ebebeb;
  background: linear-gradient(#ebebeb, #c4c4c4);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#ebebeb), to(#c4c4c4));
  background: -webkit-linear-gradient(#ebebeb, #c4c4c4);
  background: -ms-linear-gradient(#ebebeb, #c4c4c4);
  background: -moz-linear-gradient(#ebebeb, #c4c4c4);
  background: -o-linear-gradient(#ebebeb, #c4c4c4);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  color: #333333;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 13px;
  line-height: 26px;
  font-family: "RussiaBold";
  text-align: center;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-right: 30px;
}
header div.live_broadcast a:hover {
  color: #a81c1a;
}
header a.init_auth {
  width: 100px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background: #424242;
  background: linear-gradient(#424242, #252627);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#424242), to(#252627));
  background: -webkit-linear-gradient(#424242, #252627);
  background: -ms-linear-gradient(#424242, #252627);
  background: -moz-linear-gradient(#424242, #252627);
  background: -o-linear-gradient(#424242, #252627);
  color: #ffffff;
  text-shadow: 1px 1px 0 #222222;
  font-size: 13px;
  line-height: 25px;
  font-family: "RussiaRegular";
  border-right: 1px solid #000;
  border-left: 1px solid #494949;
  text-align: center;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header a.init_auth:hover {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header a.init_auth.active {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header a.init_auth span.drop {
  float: right;
  display: inline-block;
  width: 31px;
  height: 26px;
  background: transparent url('/i/el/dropdown_arrow.png') 100% 0 no-repeat;
}
header a.init_auth:hover span {
  background-position: 0 -26px;
}
header div.auth_block {
  display: none;
  width: 310px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 200;
  background-color: #3f4044;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #c5c6ca;
}
header div.auth_block input {
  width: 85px;
  height: 25px;
  padding: 0 5px;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #d4d4d6;
}
header div.auth_block a.btn {
  display: block;
  background: #ebebeb;
  background: linear-gradient(#ebebeb, #c4c4c4);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#ebebeb), to(#c4c4c4));
  background: -webkit-linear-gradient(#ebebeb, #c4c4c4);
  background: -ms-linear-gradient(#ebebeb, #c4c4c4);
  background: -moz-linear-gradient(#ebebeb, #c4c4c4);
  background: -o-linear-gradient(#ebebeb, #c4c4c4);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  color: #333333;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 13px;
  line-height: 25px;
  font-family: "RussiaBold";
  text-align: center;
  font-weight: normal;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
header div.auth_block a.btn:hover {
  color: #a81c1a;
}
header div.auth_block a.close {
  display: block;
  background: #424242;
  background: linear-gradient(#424242, #252627);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#424242), to(#252627));
  background: -webkit-linear-gradient(#424242, #252627);
  background: -ms-linear-gradient(#424242, #252627);
  background: -moz-linear-gradient(#424242, #252627);
  background: -o-linear-gradient(#424242, #252627);
  color: #ffffff;
  text-shadow: 1px 1px 0 #222222;
  font-size: 13px;
  line-height: 25px;
  font-family: "RussiaRegular";
  border-right: 1px solid #000;
  border-left: 1px solid #494949;
  text-align: center;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 26px;
}
header div.auth_block a.close:hover {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header div.auth_block a.close.active {
  background: #f01e28;
  background: linear-gradient(#f01e28, #c40000);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#f01e28), to(#c40000));
  background: -webkit-linear-gradient(#f01e28, #c40000);
  background: -ms-linear-gradient(#f01e28, #c40000);
  background: -moz-linear-gradient(#f01e28, #c40000);
  background: -o-linear-gradient(#f01e28, #c40000);
  border-top-color: #a61b19;
  border-left-color: #92201e;
}
header div.auth_block a.close span.drop {
  float: right;
  display: inline-block;
  width: 31px;
  height: 26px;
  background: transparent url('/i/el/dropdown_arrow.png') 100% 0 no-repeat;
}
header div.auth_block a.close:hover span {
  background-position: 0 -26px;
}
header div.auth_block div.base_auth {
  padding: 16px;
  background: #3f4044;
  background: linear-gradient(#3f4044, #3d3e42);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#3f4044), to(#3d3e42));
  background: -webkit-linear-gradient(#3f4044, #3d3e42);
  background: -ms-linear-gradient(#3f4044, #3d3e42);
  background: -moz-linear-gradient(#3f4044, #3d3e42);
  background: -o-linear-gradient(#3f4044, #3d3e42);
}
header div.auth_block div.base_auth form {
  display: block;
  margin-top: 15px;
  overflow: hidden;
}
header div.auth_block div.base_auth form div.col {
  float: left;
  vertical-align: top;
}
header div.auth_block div.base_auth form div.col label {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 8px;
}
header div.auth_block div.base_auth form div.login {
  width: 100px;
  margin-right: 8px;
}
header div.auth_block div.base_auth form div.pass {
  width: 100px;
  margin-right: 8px;
}
header div.auth_block div.base_auth form div.submit {
  width: 60px;
}
header div.auth_block div.base_auth form div.submit a.btn {
  width: 100%;
  margin-top: 23px;
}
header div.auth_block div.recover_success {
  display: none;
  padding: 16px;
  background-image: url('/i/el/lined_bg-light.png');
  background-repeat: repeat;
  background-position: 0 0;
  background-color: #35a818;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #fff;
}
header div.auth_block div.auth_fail {
  display: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
header div.auth_block div.auth_fail div.block {
  padding: 16px;
  background-image: url('/i/el/lined_bg-light.png');
  background-repeat: repeat;
  background-position: 0 0;
  background-color: #aa1c18;
  color: #fff;
}
header div.auth_block div.auth_fail div.recover {
  border-top: 1px solid #871514;
}
header div.auth_block div.auth_fail div.recover form {
  display: block;
  margin-top: 16px;
  overflow: hidden;
}
header div.auth_block div.auth_fail div.recover form input {
  width: 150px;
  margin-right: 16px;
}
header div.auth_block div.auth_fail div.recover form a.btn {
  width: 100px;
  float: right;
}
header div.auth_block div.auth_fail div.recover div.msg_fail {
  display: none;
  padding-top: 16px;
}
header div.auth_block div.providers {
  padding: 16px;
  background-image: url('/i/el/lined_bg-light.png');
  background-repeat: repeat;
  background-position: 0 0;
  border-top: #000;
}
header div.auth_block div.providers ul.list {
  margin-top: 15px;
  overflow: hidden;
}
header div.auth_block div.providers ul.list li {
  float: left;
}
header div.auth_block div.providers ul.list li a {
  display: block;
  width: 34px;
  height: 34px;
  background-image: url("/i/auth/social_icons.png");
  background-repeat: no-repeat;
  backgroun-position: 11px 0;
}
header div.auth_block div.providers ul.list li a.active {
  background-color: #494a4e;
  border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header div.auth_block div.providers ul.list li a:hover {
  background-color: #494a4e;
  border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header div.auth_block div.providers ul.list li a.fb {
  background-position: 11px 0;
}
header div.auth_block div.providers ul.list li a.tw {
  background-position: -25px 2px;
}
header div.auth_block div.providers ul.list li a.vk {
  background-position: -59px 3px;
}
header div.auth_block div.providers ul.list li a.ya {
  background-position: -131px 2px;
}
header div.auth_block div.providers ul.list li a.gp {
  background-position: -172px 2px;
}
header div.auth_block div.providers ul.list li a.mm {
  background-position: -207px 4px;
}
header div.auth_block div.providers ul.list li a.oi {
  background-position: -246px 4px;
}
header div.auth_block div.providers ul.list li a.ok {
  background-position: -92px 0;
}
header div.auth_block div.providers div.more div.provider {
  display: none;
  height: 30px;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #494a4e;
}
header div.auth_block div.providers div.more div.active {
  display: block;
}
header div.auth_block div.providers div.more a.connect {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 89px;
  height: 21px;
  float: left;
  vertical-align: top;
  background-image: url("/i/auth/social_buttons.png");
  background-repeat: no-repeat;
}
header div.auth_block div.providers div.more a.connect_fb {
  background-position: 0 -21px;
}
header div.auth_block div.providers div.more a.connect_tw {
  background-position: 0 -42px;
}
header div.auth_block div.providers div.more a.connect_vk {
  background-position: 0 -63px;
}
header div.auth_block div.providers div.more a.connect_gp {
  background-position: 0 0;
}
header div.auth_block div.providers div.more a.connect_mm {
  background-position: 0 -84px;
}
header div.auth_block div.providers div.more a.connect_ok {
  background-position: 0 -105px;
}
header div.auth_block div.providers div.more p.info {
  width: 150px;
  margin-left: 100px;
  vertical-align: top;
  font-size: 11px;
  line-height: 13px;
  overflow: hidden;
}
header div.auth_block div.providers div.more input {
  margin-right: 10px;
}
header div.auth_block div.providers div.more a.btn {
  width: 60px;
  margin-left: 10px;
  float: right;
}
header div.auth_block div.providers div.more div.oi input {
  width: 175px;
  margin-right: 0;
}
header div.auth_block div.no_login {
  padding: 6px 16px;
  overflow: hidden;
}
header div.auth_block div.no_login span {
  line-height: 26px;
}
header div.auth_block div.no_login a.btn {
  float: right;
  width: auto;
  padding: 0 10px;
}
header div.auth_user {
  height: 40px;
  position: absolute;
  right: 0;
  top: -8px;
  z-index: 10;
  overflow: hidden;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header div.auth_user a.pic {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  background: transparent url("/i/forum/default_avatar.png") 0 0 no-repeat;
}
header div.auth_user a.pic img {
  width: 100%;
}
header div.auth_user a.pic img {
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header div.auth_user a.go {
  width: 178px;
  height: 30px;
  padding: 4px 12px;
  display: block;
  margin-left: 45px;
  vertical-align: top;
  border: 1px solid #ccc;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ecf3f9;
  position: relative;
}
header div.auth_user a.close {
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(/i/el/close-sprite.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -6px;
}
header div.auth_user a.close:hover {
  background-position: 0 -16px;
}
/** * PROMO----------------------------------------------------------------------------- */
#promo {
  position: relative;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* Есть промо-картинка */
  /* Нет промо-картинки (только в брендах) */
  /* Нет промо-картинки (везде, кроме брендов) */
  /* Логотип. Ваш КО */
  /* Ссылка высотой и шириной с промо-блок */
  /* Основное меню */
  /* Форма поиска в основном меню */
  /* Менюшка с иконками слева внизу */
  /* Расписание на брендах */
  /* Список форумов */
  /* Заголовки на всех основных страниц */
  /* Заголовок бренда для дефолтной темы */
  /* Маленькая картинка бренда для дефолтной темы */
  /* Список брендов в шапке */
  /* Жанры видео */
}
#promo.high {
  height: 420px;
}
#promo.high div.wrap {
  height: 100%;
}
#promo.low {
  height: 300px;
  margin-bottom: -4px;
  position: relative;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: rgba(255, 255, 255, 0.5);
}
#promo.low div.wrap {
  height: 300px;
  background-image: url('/i/el/lined_bg-light.png');
  background-repeat: repeat;
  background-position: 0 0;
}
#promo.thin {
  height: 160px;
  position: relative;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: rgba(255, 255, 255, 0.3);
}
#promo.thin div.wrap {
  height: 160px;
  background: transparent url("/i/header/lined_bg.png") 0 0 repeat;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo.promo_olymp {
  background: #fff;
  /* Логотип. Олимпиада 2016 */
}
#promo.promo_olymp a.logo {
  width: 152px;
  height: 111px;
  display: block;
  top: 8px;
  left: 10px;
  position: absolute;
  z-index: 10;
  background: url("/i/logo/logo_rio.png") 0 0 no-repeat;
  background-size: contain;
}
#promo.promo_olymp2018 {
  background: #fff;
  /* Логотип. Олимпиада 2016 */
}
#promo.promo_olymp2018 a.logo {
  width: 164px;
  height: 118px;
  display: block;
  top: 8px;
  left: 10px;
  position: absolute;
  z-index: 10;
  background: url("/i/logo/logo_olymp2018.svg?v=1") 0 0 no-repeat;
  background-size: contain;
}
#promo a.logo {
  width: 105px;
  height: 64px;
  display: block;
  top: 21px;
  left: 40px;
  position: absolute;
  z-index: 10;
  background: url("/i/logo-smotrim2.png") 0 0 no-repeat;
  background-size: 100%;
}
#promo a.to_brand {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo nav {
  height: 40px;
  position: absolute;
  top: 31px;
  right: 0;
  z-index: 10;
  padding: 0 26px 0 13px;
  background: #ebebeb;
  background: linear-gradient(#ebebeb, #c4c4c4);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#ebebeb), to(#c4c4c4));
  background: -webkit-linear-gradient(#ebebeb, #c4c4c4);
  background: -ms-linear-gradient(#ebebeb, #c4c4c4);
  background: -moz-linear-gradient(#ebebeb, #c4c4c4);
  background: -o-linear-gradient(#ebebeb, #c4c4c4);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  z-index: 11;
}
#promo nav ul.menu {
  float: left;
}
#promo nav ul.menu li {
  float: left;
}
#promo nav ul.menu li a {
  display: block;
  width: auto;
  padding: 0 8px;
  color: #333333;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 14px;
  line-height: 44px;
  font-family: "RussiaBold";
  text-transform: uppercase;
  text-align: center;
}
#promo nav ul.menu li a[href$='fifaworldcup/'] {
  color: #0049c4;
}
#promo nav ul.menu li a.active {
  color: #a81c1a;
}
#promo nav ul.menu li a:hover {
  color: #a81c1a;
}
#promo nav ul.menu li a sup {
  color: #a81c1a;
}
#promo div.search {
  width: 165px;
  height: 22px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 5px 0;
  margin-left: 13px;
  border-bottom: 1px solid #fff;
  position: relative;
  float: right;
}
#promo div.search input {
  width: 115px;
  height: 21px;
  padding: 3px 33px 3px 15px;
  border: 1px solid #cfd0d2;
  background: #fefefe;
  background: linear-gradient(#fefefe, #dedede);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#fefefe), to(#dedede));
  background: -webkit-linear-gradient(#fefefe, #dedede);
  background: -ms-linear-gradient(#fefefe, #dedede);
  background: -moz-linear-gradient(#fefefe, #dedede);
  background: -o-linear-gradient(#fefefe, #dedede);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 10px;
  line-height: 20px;
  font-family: Tahoma;
  text-transform: uppercase;
}
#promo div.search input:focus {
  background-color: #fefefe;
}
#promo div.search a.go {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 12px;
  right: 9px;
  background: transparent url("/i/el/search.png") 0 0 no-repeat;
}
#promo ul.brand_menu {
  position: absolute;
  left: -65px;
  bottom: 0;
  z-index: 15;
  width: 55px;
}
#promo ul.brand_menu li {
  height: 55px;
  background: rgba(0, 0, 0, 0.6);
  margin-top: 1px;
  display: block;
}
#promo ul.brand_menu li a {
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: "alpha(opacity=50)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  position: relative;
  margin: 16px 15px;
}
#promo ul.brand_menu li a.active {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#promo ul.brand_menu li a.active span {
  display: block;
}
#promo ul.brand_menu li a:hover {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#promo ul.brand_menu li a span {
  display: none;
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  /* левый наклон стрелки */
  border-right: 6px solid transparent;
  /* правый наклон стрелки */
  border-bottom: 6px solid transparent;
  /* низ, указываем цвет стрелки */
}
#promo .brand_schedule-wrap {
  background: transparent url('/i/brand/menu_bg.png') 0 0 repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 11px 20px;
  width: 974px;
  height: 22px;
}
#promo div.brand_schedule {
  height: 44px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  text-align: right;
  color: #fff;
}
#promo div.brand_schedule div.days {
  margin: 8px 180px 0 0;
  font-size: 13px;
  line-height: 15px;
  font-family: "RussiaRegular";
  text-align: right;
  text-transform: uppercase;
  vertical-align: top;
}
#promo div.brand_schedule div.days p {
  text-align: right;
}
#promo div.brand_schedule div.days ul {
  margin-left: 0;
  text-align: right;
}
#promo div.brand_schedule div.days ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: -0.36em;
  *display: inline;
  *zoom: 1;
  *margin-left: 0;
}
#promo div.brand_schedule div.days ul li li {
  display: block;
  margin-left: 0;
}
#promo div.brand_schedule div.days ul li:first-child {
  margin-left: 0;
}
#promo div.brand_schedule div.days ul li {
  margin-left: 20px;
}
#promo div.brand_schedule div.days ul li.inactive {
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: "alpha(opacity=50)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
#promo div.brand_schedule div.time {
  width: 118px;
  height: 100%;
  float: right;
  vertical-align: top;
  font-family: "DINCondensedCRegular";
  font-size: 36px;
  line-height: 48px;
  text-align: left;
  padding: 0 22px;
  background: transparent url('/i/brand/sheldule_bg.png') 0 0 repeat;
}
#promo div.brand_schedule div.time div.parental {
  width: 31px;
  height: 31px;
  margin-top: 7px;
  float: right;
}
#promo div.brand_schedule span.title div.parental {
  width: 22px;
  height: 21px;
  float: left;
  background: red;
}
#promo div.brand_schedule div.age_18 {
  background: url('/i/brand/age-sprite.png') -2px -3px no-repeat;
}
#promo div.brand_schedule div.age_16 {
  background: url('/i/brand/age-sprite.png') -2px -37px no-repeat;
}
#promo div.brand_schedule div.age_12 {
  background: url('/i/brand/age-sprite.png') -2px -71px no-repeat;
}
#promo div.brand_schedule div.age_6 {
  background: url('/i/brand/age-sprite.png') -2px -105px no-repeat;
}
#promo div.brand_schedule div.age_0 {
  background: url('/i/brand/age-sprite.png') -2px -139px no-repeat;
}
#promo a.forum_list_show {
  display: block;
  width: 176px;
  height: 24px;
  padding-left: 14px;
  position: absolute;
  bottom: 21px;
  right: 21px;
  z-index: 15;
  background: #ebebeb;
  background: linear-gradient(#ebebeb, #c4c4c4);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#ebebeb), to(#c4c4c4));
  background: -webkit-linear-gradient(#ebebeb, #c4c4c4);
  background: -ms-linear-gradient(#ebebeb, #c4c4c4);
  background: -moz-linear-gradient(#ebebeb, #c4c4c4);
  background: -o-linear-gradient(#ebebeb, #c4c4c4);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 12px;
  line-height: 24px;
  font-family: "RussiaBold";
  font-family: Arial;
  font-weight: normal;
  color: #333333;
}
#promo a.forum_list_show:hover {
  color: #c40000;
}
#promo a.forum_list_show span.drop {
  display: block;
  float: right;
  margin-top: -1px;
  width: 31px;
  height: 26px;
  background: transparent url("/i/forum/forum_list_bg.png") 0 0 no-repeat;
}
#promo ul.forum_list_items {
  display: none;
  width: 190px;
  position: absolute;
  /*        top: 175px; */
  margin-top: 134px;
  right: 21px;
  z-index: 14;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo ul.forum_list_items li {
  border-top: 1px solid #dcdcdc;
  position: relative;
}
#promo ul.forum_list_items li a {
  display: block;
  height: 26px;
  padding: 0 7px;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 12px;
  line-height: 26px;
  font-family: "RussiaBold";
  background-color: #c4c4c4;
  font-family: Arial;
  font-weight: normal;
  color: #333333;
  text-shadow: none;
}
#promo ul.forum_list_items li a:hover {
  background-color: #898989;
  color: #fff;
}
#promo ul.forum_list_items li:first-child {
  border-top: 0;
  margin-top: 4px;
}
#promo ul.forum_list_items li:last-child a {
  border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo ul.forum_list_items li ul {
  display: none;
  width: auto;
  position: absolute;
  right: 191px;
  top: -4px;
}
#promo ul.forum_list_items li ul a {
  word-wrap: normal;
  width: 250px;
  overflow: hidden;
}
#promo ul.forum_list_items li ul li:first-child {
  border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  -webkit-border-radius: 0 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo ul.forum_list_items li ul li:first-child a {
  border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  -webkit-border-radius: 0 4px 0 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#promo div.title {
  position: absolute;
  z-index: 12;
  /*overflow: hidden;*/
  top: 113px;
  left: 20px;
}
#promo div.title h1 a {
  font-family: "RussiaRegular";
}
#promo div.title h1 a:hover {
  text-decoration: underline;
}
#promo div.title h1 a.forum_title {
  float: none;
  vertical-align: bottom;
  font-family: "RussiaRegular";
  color: #a1a4a6;
  font-size: 24px;
  text-decoration: underline;
}
#promo div.title h1 a.forum_title:hover {
  text-decoration: none;
}
#promo div.title h1 span {
  font-family: "RussiaRegular";
  color: #a1a4a6;
  font-size: 24px;
  vertical-align: bottom;
}
#promo div.title ul.action_menu {
  float: left;
  margin-left: 0;
  margin-left: 50px;
  margin-top: 10px;
}
#promo div.title ul.action_menu li {
  display: inline-block;
  vertical-align: top;
  margin-left: -0.36em;
  *display: inline;
  *zoom: 1;
  *margin-left: 0;
}
#promo div.title ul.action_menu li li {
  display: block;
  margin-left: 0;
}
#promo div.title ul.action_menu li:first-child {
  margin-left: 0;
}
#promo div.title ul.action_menu li {
  margin-right: 16px;
}
#promo div.title ul.action_menu li a.item {
  width: 25px;
  height: 32px;
  display: block;
  background-image: url("/i/el/promo_action_menu.png");
  background-repeat: no-repeat;
}
#promo div.title ul.action_menu li a.mail {
  background-position: 0 0;
}
#promo div.title ul.action_menu li a.feed {
  background-position: -26px 0;
}
#promo div.title ul.action_menu li a.days {
  background-position: -52px 0;
}
#promo div.title ul.action_menu li a.print {
  background-position: -78px 0;
}
#promo h1.brand_title.brand_title--with-promo-pic,
#promo h2.brand_title.brand_title--with-promo-pic {
  width: 600px;
  position: absolute;
  bottom: 0px;
  left: 23px;
  color: #fff;
  text-transform: uppercase;
  float: none;
  font-size: 18px;
  line-height: 44px;
  height: 44px;
  z-index: 9;
  display: block;
}
#promo h1.brand_title.brand_title--with-promo-pic p.subdata,
#promo h2.brand_title.brand_title--with-promo-pic p.subdata {
  overflow: hidden;
  margin: 12px 0 -10px;
  line-height: 13px;
}
#promo h1.brand_title.brand_title--with-promo-pic span.title,
#promo h2.brand_title.brand_title--with-promo-pic span.title {
  display: inline-block;
  line-height: 18px;
}
#promo h1.brand_title.brand_title--with-promo-pic span.title.title,
#promo h2.brand_title.brand_title--with-promo-pic span.title.title {
  display: block;
  transform: translateY(-50%);
  top: 50%;
  position: relative;
}
#promo h1.brand_title.brand_title--with-promo-pic a,
#promo h2.brand_title.brand_title--with-promo-pic a {
  color: #fff;
  font-size: 14px !important;
  line-height: 18px !important;
  font-family: "RussiaRegular";
  float: none;
}
#promo h1.brand_title.brand_title--with-promo-pic a.title_long,
#promo h2.brand_title.brand_title--with-promo-pic a.title_long {
  font-size: 28px;
  line-height: 28px;
}
#promo h1.brand_title.brand_title--with-promo-pic a.title_orig,
#promo h2.brand_title.brand_title--with-promo-pic a.title_orig,
#promo h1.brand_title.brand_title--with-promo-pic a.country,
#promo h2.brand_title.brand_title--with-promo-pic a.country,
#promo h1.brand_title.brand_title--with-promo-pic a.year,
#promo h2.brand_title.brand_title--with-promo-pic a.year {
  font-size: 14px;
  line-height: 14px;
  margin-left: 0;
}
#promo h1.brand_title.brand_title--with-promo-pic a.title_orig,
#promo h2.brand_title.brand_title--with-promo-pic a.title_orig {
  margin-right: 7px;
}
#promo h1.brand_title.brand_title--no-promo-pic,
#promo h2.brand_title.brand_title--no-promo-pic {
  width: 535px;
  position: absolute;
  top: 120px;
  left: 25px;
  color: #566A8B;
  text-transform: uppercase;
  z-index: 9;
}
#promo h1.brand_title.brand_title--no-promo-pic span,
#promo h2.brand_title.brand_title--no-promo-pic span {
  font-family: "RussiaRegular";
  font-size: 18px;
  float: none;
}
#promo h1.brand_title.brand_title--no-promo-pic span.title,
#promo h2.brand_title.brand_title--no-promo-pic span.title {
  display: block;
}
#promo h1.brand_title.brand_title--no-promo-pic span.title_long,
#promo h2.brand_title.brand_title--no-promo-pic span.title_long {
  font-size: 28px;
  line-height: 28px;
}
#promo h1.brand_title.brand_title--no-promo-pic span span.subdata,
#promo h2.brand_title.brand_title--no-promo-pic span span.subdata {
  overflow: hidden;
  margin: 12px 0 -10px;
  line-height: 13px;
  display: block;
}
#promo h1.brand_title.brand_title--no-promo-pic span a,
#promo h2.brand_title.brand_title--no-promo-pic span a {
  float: none;
  font-size: 28px;
  line-height: 28px;
}
#promo h1.brand_title.brand_title--no-promo-pic span a.title_orig,
#promo h2.brand_title.brand_title--no-promo-pic span a.title_orig,
#promo h1.brand_title.brand_title--no-promo-pic span a.country,
#promo h2.brand_title.brand_title--no-promo-pic span a.country,
#promo h1.brand_title.brand_title--no-promo-pic span a.year,
#promo h2.brand_title.brand_title--no-promo-pic span a.year {
  font-size: 18px;
  line-height: 18px;
  margin-left: 0;
}
#promo h1.brand_title.brand_title--no-promo-pic span a.title_orig,
#promo h2.brand_title.brand_title--no-promo-pic span a.title_orig {
  margin-right: 7px;
}
#promo div.brand_small_pic {
  height: 227px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
}
#promo div.brand_small_pic img {
  height: 100%;
  width: auto;
}
#promo div.brands_list {
  width: 338px;
  height: 56px;
  position: absolute;
  right: 23px;
  bottom: 12px;
  z-index: 9;
  background-color: #37363b;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
#promo div.brands_list div.panel {
  height: 41px;
  background: #4e4f54;
  background: linear-gradient(#4e4f54, #36363a);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#4e4f54), to(#36363a));
  background: -webkit-linear-gradient(#4e4f54, #36363a);
  background: -ms-linear-gradient(#4e4f54, #36363a);
  background: -moz-linear-gradient(#4e4f54, #36363a);
  background: -o-linear-gradient(#4e4f54, #36363a);
  -webkit-box-shadow: 0 1px 3px #000000;
  -moz-box-shadow: 0 1px 3px #000000;
  box-shadow: 0 1px 3px #000000;
  position: relative;
}
#promo div.brands_list div.panel a.ctrl {
  display: block;
  width: 34px;
  height: 40px;
  border-top: 1px solid #58595d;
  position: absolute;
  top: 0;
  z-index: 1;
}
#promo div.brands_list div.panel a.ctrl span.icon {
  margin: 12px auto 0;
}
#promo div.brands_list div.panel a.ctrl:hover {
  background: #656d70;
  background: linear-gradient(#656d70, #49484d);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#656d70), to(#49484d));
  background: -webkit-linear-gradient(#656d70, #49484d);
  background: -ms-linear-gradient(#656d70, #49484d);
  background: -moz-linear-gradient(#656d70, #49484d);
  background: -o-linear-gradient(#656d70, #49484d);
}
#promo div.brands_list div.panel a.ctrl_prev {
  display: none;
  left: 0;
}
#promo div.brands_list div.panel a.ctrl_next {
  display: none;
  width: 33px;
  right: 0;
}
#promo div.brands_list div.panel div.viewport {
  width: 269px;
  float: left;
  vertical-align: top;
  overflow: hidden;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  margin: 0 34px;
}
#promo div.brands_list div.panel div.viewport ul.stack {
  width: 120000px;
  margin-left: -1px;
}
#promo div.brands_list div.panel div.viewport ul.stack li.item {
  float: left;
  width: 53px;
  height: 41px;
  border-left: 1px solid #000;
}
#promo div.brands_list div.panel div.viewport ul.stack li.item a {
  width: 53px;
  height: 41px;
  display: block;
  position: relative;
  overflow: hidden;
}
#promo div.brands_list div.panel div.viewport ul.stack li.item a img {
  width: 100%;
  height: 100%;
}
#promo div.brands_list div.panel div.viewport ul.stack li.item a span.line {
  display: none;
  width: 55px;
  height: 3px;
  background-color: #c40000;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 3px;
  line-height: 3px;
}
#promo div.brands_list div.panel div.viewport ul.stack li.item a.active span.line {
  display: block;
}
#promo div.brands_list div.panel a.overlay {
  display: none;
  width: 108px;
  height: 82px;
  position: absolute;
  bottom: -6px;
  z-index: 2;
  border-bottom: 3px solid #c40000;
  padding-bottom: 3px;
}
#promo div.brands_list div.panel a.overlay span.img {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#promo div.b-video-genres {
  width: 980px;
  position: absolute;
  left: 20px;
  bottom: 0;
}
#promo div.b-video-genres ul.items li {
  float: left;
  margin-left: 2px;
}
#promo div.b-video-genres ul.items li a {
  height: 26px;
  background: rgba(153, 153, 153, 0.5);
  border-top: 1px solid transparent;
  font: 11px/26px Arial;
  color: #333333;
  text-shadow: 0 1px 0 #eee;
}
#promo div.b-video-genres ul.items li a:hover {
  background-color: #ededed;
  border-top-color: #fff;
}
#promo div.b-video-genres ul.items li a.active {
  background-color: #ededed;
  border-top-color: #fff;
}
#promo div.b-video-genres div.like {
  top: -19px;
}
.supportedie #promo nav ul.menu li a {
  padding-left: 10px;
  padding-right: 10px;
}
/** * MAIN----------------------------------------------------------------------------- */
#main {
  overflow: hidden;
  padding: 20px;
}
#main div.content_wrap {
  overflow: hidden;
}
#main div.content {
  vertical-align: top;
  float: left;
  width: 672px;
}
#main aside {
  vertical-align: top;
  float: right;
  width: 240px;
  margin-left: 20px;
}
#main aside div.b {
  position: relative;
}
#main div.content_wide {
  clear: both;
}
#main div.p-asd {
  margin-top: 17px;
}
p.alt {
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-transform: lowercase;
  font-size: 11px;
}
.ie aside .alt {
  display: none;
}
/** * FOOTER----------------------------------------------------------------------------- */
footer {
  background-color: #ededed;
  overflow: hidden;
  /* Плашка меню вверху футера */
  /* Ссылки на бренды */
  /* Многобукв */
  /* Счетчики */
}
footer div.wrap {
  padding: 0 20px;
}
footer div.wrapper {
  padding-bottom: 20px;
}
footer div.bottom_menu {
  background: #ebebeb;
  background: linear-gradient(#ebebeb, #c4c4c4);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#ebebeb), to(#c4c4c4));
  background: -webkit-linear-gradient(#ebebeb, #c4c4c4);
  background: -ms-linear-gradient(#ebebeb, #c4c4c4);
  background: -moz-linear-gradient(#ebebeb, #c4c4c4);
  background: -o-linear-gradient(#ebebeb, #c4c4c4);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  width: 100%;
  height: 40px;
  position: relative;
  margin-bottom: 40px;
}
footer div.bottom_menu ul {
  margin-left: 0;
}
footer div.bottom_menu ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: -0.36em;
  *display: inline;
  *zoom: 1;
  *margin-left: 0;
}
footer div.bottom_menu ul li li {
  display: block;
  margin-left: 0;
}
footer div.bottom_menu ul li:first-child {
  margin-left: 0;
}
footer div.bottom_menu ul li a {
  display: block;
  width: auto;
  padding: 0 24px;
  text-align: center;
  color: #333333;
  text-shadow: 0px 1px 0 #eeeeee;
  font-size: 14px;
  line-height: 44px;
  font-family: "RussiaBold";
}
footer div.bottom_menu ul li a.active {
  color: #a81c1a;
}
footer div.bottom_menu ul li a:hover {
  color: #a81c1a;
}
footer div.bottom_menu ul li a sup {
  color: #a81c1a;
}
footer div.bottom_menu ul li.border a {
  background: transparent url("/i/el/footer_menu.png") 100% 50% no-repeat;
  padding-right: 26px;
}
footer div.bottom_menu ul.content a:hover {
  color: #a81c1a;
}
footer div.bottom_menu ul.about {
  width: auto;
  height: 40px;
  background: #dcdcdc;
  background: linear-gradient(#dcdcdc, #b2b2b2);
  background: -webkit-gradient(linear, 0, 0, 0 bottom, from(#dcdcdc), to(#b2b2b2));
  background: -webkit-linear-gradient(#dcdcdc, #b2b2b2);
  background: -ms-linear-gradient(#dcdcdc, #b2b2b2);
  background: -moz-linear-gradient(#dcdcdc, #b2b2b2);
  background: -o-linear-gradient(#dcdcdc, #b2b2b2);
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #7c868e;
  position: absolute;
  top: -1px;
  right: 0;
}
footer div.bottom_menu ul.about a {
  text-transform: uppercase;
}
footer div.bottom_menu ul.about a:hover {
  color: #a81c1a;
}
footer .push-foot {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
footer div.items_menu {
  margin: 45px 0;
  overflow: hidden;
}
footer div.items_menu div {
  float: left;
}
footer div.items_menu div.items_programs {
  margin-right: -20px;
  float: right;
}
footer div.items_menu h5 {
  margin-bottom: 15px;
}
footer div.items_menu ul {
  width: 165px;
  margin-right: 20px;
  float: left;
}
footer div.items_menu ul li {
  padding: 8px 0;
  border-top: 1px solid #e1e1e1;
}
footer div.items_menu ul li:first-child {
  border-top: 0;
}
footer div.items_menu ul li a {
  color: #87898b;
  font-size: 11px;
  line-height: 13px;
}
footer div.items_menu ul li a:hover {
  text-decoration: underline;
}
footer div.copy {
  color: #87898b;
  font-size: 11px;
  line-height: 13px;
  margin-right: 100px;
}
footer div.copy a {
  color: #0055d0;
  text-decoration: underline;
  font-size: 11px;
  line-height: 13px;
}
footer div.counters {
  float: right;
  width: 100px;
}
/** * Большие кнопки архив/звезды----------------------------------------------------------------------------- */
ul.b-pvideo-external_btns {
  margin-left: 0;
  float: right;
}
ul.b-pvideo-external_btns li {
  display: inline-block;
  vertical-align: top;
  margin-left: -0.36em;
  *display: inline;
  *zoom: 1;
  *margin-left: 0;
}
ul.b-pvideo-external_btns li li {
  display: block;
  margin-left: 0;
}
ul.b-pvideo-external_btns li:first-child {
  margin-left: 0;
}
ul.b-pvideo-external_btns li {
  width: 100px;
  height: 48px;
  background-image: url("/i/video/external_btns.png");
  background-repeat: no-repeat;
  margin-right: 20px;
}
ul.b-pvideo-external_btns li.archive {
  background-position: 0 0;
}
ul.b-pvideo-external_btns li.stars {
  background-position: 0 -50px;
}
ul.b-pvideo-external_btns li a {
  display: block;
  height: 38px;
  padding: 10px 0 0 55px;
  font-family: "RussiaMedium";
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
}
.brand_menu-wrap {
  z-index: 15;
  position: relative;
  /* Менюшка с иконками слева внизу */
}
.brand_menu-wrap ul.brand_menu {
  position: absolute;
  left: -65px;
  top: 10px;
  z-index: 15;
  width: 55px;
}
.brand_menu-wrap ul.brand_menu li {
  height: 55px;
  background: rgba(0, 0, 0, 0.6);
  margin-top: 1px;
  display: block;
}
.brand_menu-wrap ul.brand_menu li a {
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: "alpha(opacity=50)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  position: relative;
  margin: 16px 15px;
}
.brand_menu-wrap ul.brand_menu li a.active {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.brand_menu-wrap ul.brand_menu li a.active span {
  display: block;
}
.brand_menu-wrap ul.brand_menu li a:hover {
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.brand_menu-wrap ul.brand_menu li a span {
  display: none;
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  /* левый наклон стрелки */
  border-right: 6px solid transparent;
  /* правый наклон стрелки */
  border-bottom: 6px solid transparent;
  /* низ, указываем цвет стрелки */
}
div.panel-external-btns {
  margin-top: 20px;
}
body.site_russia2 div.header-current-date {
  color: #fff;
  text-shadow: 0 0 0;
}
/** * Шаринг----------------------------------------------------------------------------- */
.b-share-wrap {
  position: absolute;
  top: 150px;
  right: -72px;
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.6);
  width: 44px;
  padding: 19px 9px;
  z-index: 666;
}
.b-share-wrap .b-share {
  margin-left: 6px;
}
.b-share-wrap .b-share-btn__wrap {
  margin-left: 0px !important;
}
.b-share-wrap .b-share__link {
  display: block !important;
  margin-top: 20px;
}
.b-share-wrap .b-share_theme_counter .b-share-btn__wrap:first-child .b-share__link {
  margin-top: 0;
}
.b-share-wrap .b-share_theme_counter .b-share-btn__wrap:first-child .b-share-btn__counter,
.b-share-wrap .b-share-btn__counter {
  margin-top: 40px;
}
.b-share-wrap .b-share-counter {
  position: absolute;
  top: 11px;
  left: -10px;
  background: none repeat scroll 0 0 #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  color: #828282;
  font-family: Tahoma;
  font-size: 14px;
  width: 100%;
  padding-top: 0px;
  height: 23px;
  width: 44px;
  text-align: center;
  margin: 0px;
  line-height: 22px;
}
.b-share-wrap .b-share-counter:after {
  display: block;
  content: '';
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-top: 5px solid #FFFFFF;
  height: 0;
  position: absolute;
  right: 17px;
  width: 0;
  top: 23px;
}
/* Autocomplete */
div.search {
  position: relative;
}
.au-list {
  display: none;
  position: absolute;
  top: 50px;
  left: -236px;
  background: #fff;
  width: 400px;
  z-index: 1000;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  min-height: 50px;
  padding: 0;
  border-radius: 4px;
}
.au-list:before {
  content: "";
  height: 5px;
  width: 7px;
  position: absolute;
  top: -5px;
  right: 15px;
  background: transparent url(/i/auto-arrow.png) 0 0 no-repeat;
}
.au-item {
  margin: 0;
  padding: 8px 10px 10px;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.au-item:first-child,
.au-title:first-child {
  border-top: none;
  border-radius: 4px 4px 0 0;
}
.au-item:last-child {
  border-radius: 0 0 4px 4px;
}
.au-item:hover {
  background: #ececec;
  cursor: pointer;
}
.au-title {
  margin: 0;
  padding: 20px 10px 8px;
  border-top: 1px solid #e0e0e0;
  position: relative;
  font-size: 15px;
  font-family: RussiaRegular;
  text-decoration: underline;
}
.au-title + .au-item {
  border-top: none;
}
.au-link {
  display: block;
  padding: 5px 52px 0 0;
  background: none;
  color: #404040;
}
.au-link.person {
  min-height: 37px;
}
.au-link span {
  display: block;
  color: #808080;
  font-size: 12px;
  padding-top: 3px;
}
.au-link span.video {
  display: inline-block;
  height: 23px;
  line-height: 24px;
  position: absolute;
  right: 10px;
  background: url('/i/icon-play-search-red.svg') 100% 50% no-repeat;
  color: #c40000;
  padding: 0;
  top: 50%;
  margin-top: -11px;
  padding-right: 30px;
}
.au-link img {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 42px;
  height: 42px;
}
.overlay_pics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
}
.overlay_pics .pics_content {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  border: 10px solid #c1c1c1;
  position: absolute;
}
.overlay_pics .pics_content img {
  max-width: 1000px;
}
.overlay_pics .pics_content .close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 30px;
  height: 30px;
  background: transparent url(http://russia.tv/css/fancybox/fancybox.png) -40px 0px;
  cursor: pointer;
  z-index: 1103;
}
.overlay_pics .pics_content .description {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.overlay_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
}
.overlay_video .video_content {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
  border: 10px solid #c1c1c1;
  position: absolute;
}
.overlay_video .video_content .close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 30px;
  height: 30px;
  background: transparent url(http://russia.tv/css/fancybox/fancybox.png) -40px 0px;
  cursor: pointer;
  z-index: 1103;
}
.overlay_video .video_content iframe {
  display: block;
}
.overlay_video .video_content .title {
  padding: 10px;
  background: #000;
  color: #fff;
}
/* PUSH*/
.b-push-notification {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: default;
}
.b-push-notification.b-push-notification--hidden {
  z-index: -100;
  opacity: 0;
  transition: opacity 0.5s, 0.5s z-index 0.1s;
}
.b-push-notification.b-push-notification--visible {
  z-index: 100;
  opacity: 1;
  transition: z-index 0.1s, 0.5s opacity 0.1s;
}
.b-push-notification__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.b-push-notification__pop-up {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  width: 50%;
  padding: 24px 24px 36px 48px;
  box-sizing: border-box;
  margin: 0 auto;
  background: white;
}
@media (max-width: 900px) {
  .b-push-notification__pop-up {
    width: 90%;
    padding: 24px;
  }
}
.b-push-notification__controll.b-push-notification__controll--top {
  margin: 0 0 12px;
  text-align: right;
}
.b-push-notification__controll.b-push-notification__controll--bottom {
  margin: 12px 0 0;
  text-align: left;
}
.b-push-notification__confirm {
  display: inline-block;
  padding: 8px 12px;
  background: #fff;
  font: normal 14px/14px "RobotoLight", sans-serif;
  text-decoration: none;
  color: #777;
  border: 1px solid #e1e1e1;
  cursor: pointer;
  outline: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.b-push-notification__confirm:hover {
  text-decoration: none;
}
.b-push-notification__unsubscribe {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 0 0 10px;
  background: #fff;
  font: normal 14px/14px "RobotoLight", sans-serif;
  color: #999;
  border: 1px solid #e1e1e1;
  cursor: pointer;
  outline: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.b-push-notification__unsubscribe:hover {
  text-decoration: none;
}
.b-push-notification__refuse {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: transparent url("/i/push-close.png") center center no-repeat;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.b-push-notification__message {
  margin: 12px 0;
}
.b-push-notification__message p {
  font: normal 14px/16px "RobotoLight", sans-serif;
  color: #777;
  margin: 0;
  padding: 0;
}
.b-push-notification__open {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  background: none;
  font: normal 14px/14px "RobotoLight", sans-serif;
  color: #999;
  border: none;
  cursor: pointer;
  outline: none;
}
.b-push-notification__btn {
  display: inline-block;
  margin: 0 18px 0 0;
  padding: 9px 15px;
  color: #c40000;
  font-size: 12px;
  border-radius: 2px;
  background-color: transparent;
  border: 1px solid #c40000;
  line-height: 1;
  cursor: pointer;
}
.b-push-notification__btn:hover {
  color: #fff;
  background-color: #c40000;
  border-color: #c40000;
  text-decoration: none;
}
.b-push-notification__link {
  font-weight: 500;
  font-size: 11px;
  color: #555;
  margin: 10px 0 0;
  display: block;
  float: right;
}
.vgtrk-widget-form input[type=checkbox] {
  width: auto;
}
