/**
 * @package portal
 */

/**
 * Сброс стандартных значений браузеров
 * Основан на Meyer's reset CSS
 *
 * @link http://meyerweb.com/eric/tools/css/reset/
 * @subpackage reset
 */

/**
 * Как 100% неиспользуемые из списка убраны:
 * abbr, acronym, del, dfn, font, ins, kbd, samp,
 * tt, var, center
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, q, pre,
a, address, big, cite, code, em, img, s, small,
strike, strong, sub, sup, u, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td {
	background: transparent none repeat scroll left top;
	border: 0;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	outline: 0;
	padding: 0;
	/*text-align: left; - @from: Imelstorn: объясните нафига? таблицы будут плакать */
	text-decoration: none;
	vertical-align: baseline;
}

/**
 * @note Нужно сделать overflow: visible для кнопок. Для простых текстовых
 *       полей это нельзя делать ни в коем случае! Они начинают разъезжаться
 *       при переполнении
 * @see portal.frameIe
 */
input, textarea, button, select {
	font: normal normal 1em 'Arial';
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

/**
 * @bugfix Дополнительный паддинг внутри элементов
 * @see http://dimox.name/input-submit-vertical-align-in-firefox/
 * @affected FF
 * @css-for FF
 */
input::-moz-focus-inner {
	border: none;
	padding: 0;
}

html {
	height: 100%;
}

/**
 * Основной размер шрифта нужно задавать в %, а не EM, иначе старые IE
 * при изменении размера шрифта будут сходить с ума
 */
body {
    background: #FFFFFF;
	color: #000000;
	font: normal normal 81.3%/1 'Arial';
	height: 100%;
}

/**
 * @bugfix Дрожжание псевдо-fixed блоков
 * @link http://www.artlebedev.ru/tools/technogrette/html/fixed_in_msie/
 * @affected IE6
 * @css-for IE6
 */
* html body {
	background-image: url('dummy');
	background-attachment: fixed;
}

a {
	color: #037DD3;
	text-decoration: underline;
}

ol, ul {
	list-style: none outside none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
}

a:focus {
	outline: 1px dotted #000000;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

sup {
	position: relative;
	top: -0.4em;
}

sub {
	position: relative;
	bottom: -0.4em;
}

/**
 * @package portal
 */

/**
 * Основной каркас
 *
 * Минимальная ширина страницы 960px. Максимальная 1280px
 *
 * @subpackage frame
 */

/**
 * @section reflowFix
 */

/**
 * Из-за того, что reflow не выполняется при вертикальном ресайзе футер
 * остаётся на месте и никуда не двигается, пока не сделать горизонтальный
 * ресайз или не совершить какое-нибудь действие на странице
 *
 * Сначала добавляем position: relative для html (нужно для Оперы)
 *
 * @bugfix Не выполняется reflow в Opera и IE8 при вертикальном ресайзе
 * @see http://brunildo.org/test/minheightIE8OP10.html
 * @affected Opera, IE8
 * @css-for Opera
 */
html {
    position: relative;
}

/**
 * Т.к. если блоку с min-heigth добавить position: relative в опере фикс перестаёт
 * работать, создаим отдельный элемент для этих целей
 *
 * @bugfix Не выполняется reflow в Opera и IE8 при вертикальном ресайзе
 * @link http://brunildo.org/test/minheightIE8OP10.html
 * @affected Opera, IE8
 * @css-for Opera
 */
#opera_frame_reflow {
    float: left;
    /*
    min-height: 100%;
    */
    width: 0;
}

/**
 * @bugfix Не выполняется reflow в Opera и IE8 при вертикальном ресайзе
 * @link http://brunildo.org/test/minheightIE8OP10.html
 * @affected Opera, IE8
 * @css-for Opera
 */
#opera_frame_reflow:after {
    content: '';
    height: 0%;
    position: absolute;
}

/**
 * @bugfix Не выполняется reflow в Opera и IE8 при вертикальном ресайзе
 * @link http://brunildo.org/test/minheightIE8OP10.html
 * @affected Opera, IE8
 * @css-for IE8
 */
#ie_frame_reflow #opera_frame_reflow:after {
    display: table;
    position: static;
}

/**
 * @bugfix Пустая строка при маленьком разрешении
 * @affected IE6, IE7
 * @css-for IE6
 */
* html #opera_frame_reflow {
    display: none;
}

/**
 * @bugfix Пустая строка при маленьком разрешении
 * @affected IE6, IE7
 * @css-for IE7
 */
*+html #opera_frame_reflow {
    display: none;
}

/**
 * @section frame
 */

#frame {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    margin-bottom: -140px;
    height: auto !important;
}

/**
 * @bugfix Поддержка минимальной высоты в IE6
 * @affected IE6
 * @css-for IE6
 */
* html #frame {
    height: 100%;
}

/**
 * @bugfix Поддержка минимальной ширины в IE6
 * @affected IE6
 * @css-for IE6
 */

* html body {
    padding-left: 1000px;
}

#head-wrap,
#body-wrap,
#foot-wrap {
    min-width: 1000px;
    position: relative;
}

#head-wrap,
#foot-wrap {
    background-color: #27b521;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#head-wrap {
    background-position: 0 0;
    background-repeat: repeat-x;
    position: static;
}

head-wrap, #head {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head_menu-top-logo a {
    margin-top: 0px !important;
}

/**
 * Чтобы распорка для Оперы и IE8 не мешала внутренним context блокам
 * создадим из обёртки контекст с помощью float: left;
 */
#body-wrap {
    float: left;
    padding: 0 0 80px;
    position: relative;
    width: 100%;
}

body #body {
    margin-top: 21px;
}

#foot-wrap {
    bottom: 0;
    top: auto;
}

#foot-wrap,
#foot {
    height: 60px;
}

#head, #body, #foot {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 1%;
    position: relative;
}
/**
 * @package portal
 */

/**
 * Шапка
 *
 * @subpackage head
 */

/**
 * Меню
 *
 * @section menu
 */

/**
 * Первый уровень
 *
 * @subsection first level
 */
#head {
	position:relative;
	z-index:980;
}

.head_menu {
	height: 30px;
	margin-left: 0px;
	padding-top: 0;
	clear: both;
	width: 100%;
	z-index:980;
}

.head_menu-top {
	height: 55px;
	position: relative;
	margin: 0;
	padding: 5px 0;
	display: flex;
	align-items: center;
}
.head_menu-top .head_menu-top-left {
	padding-top: 0;
	overflow: hidden;
	position: relative;
	width: unset;
	float: unset;
	display: flex;
	align-items: center;
	gap: 10px;
}
.head_menu-top .head_menu-top-left .head_menu-top-logo a {
	display: block;
	text-decoration: none;
	width: 93px;
	height: 54px;
	background-size: contain;
}

.head_menu-top .head_menu-top-left .head_menu-top-section { top: 11px; }
.head_menu-top .head_menu-top-left .head_menu-top-section { float: left; }

.head_menu-top .head_menu-top-left .head_menu-top-section, .head_menu-top .head_menu-top-left .head_menu-top-section a {
	white-space: nowrap;
	text-decoration: none;
	font-size: 25px;
	font-weight: bold;
	font-style: italic;
	color: white;
	position: unset;
	margin: 0;
	padding: 0;
	float: unset;
}

.head_menu-top .head_menu-top-right { float: right; }

.head_menu-tomorrow-td,
.head_menu-tomorrow-th { padding-left: 10px; }
.head_menu-tomorrow-th .head_menu-tomorrow { padding-left: 1px; }


.head_menu_item {
	float: left;
	font-size: 0.923em;
	height: 30px;
	margin-right: 1px;
	position: relative;
	z-index:981;
}

.head_menu_item-current { background: white; }
li.head_menu_item-current a.head_menu_item_link { color: #fc8100; }

.head_menu_item-begin { float: right; height: 23px; padding-top: 7px; }
.head_menu_item-profile {
	height: unset;
	margin: 0;
	padding: 0;
	float: unset;
}

.head_menu_item-begin .head_menu_item-enter { margin-right: 12px; text-decoration: none; border-bottom: 1px dashed white; color: white; font-size: 12px; font-family: arial; }
.head_menu_item-begin .head_menu_item-registration { margin-right: 3px; text-decoration: none; border-bottom: 1px dashed white; color: white; font-size: 14px; font-weight: bold; font-family: arial; }

.head_menu_item-profile .profile-logo {
	height: 7px;
	background: #d4eb9c;
	float: unset;
	padding: 12px;
	display: flex;
	align-items: center;
}
.head_menu_item-profile .profile-logo .profile-nick-name { float: left; color: #627636; font-size: 12px; text-decoration: none; font-weight: bold; }
.head_menu_item-profile .profile-logo .profile-nick-logout { float: left; width: 9px; height: 9px; margin-left: 12px; margin-top: 3px; background: url('../img/logout.png') 0 0 no-repeat; }

.head_menu_item-profile .profile-chat { float: left; margin-right: 17px; }
.head_menu_item-profile .profile-chat .profile-chat-a { display: block; width: 27px; height: 22px; background: url('../img/chat.png') 0 0 no-repeat; }

.head_menu_item-profile  .profile-people { float: left; margin-right: 17px; }
.head_menu_item-profile  .profile-people a { display: block; width: 26px; height: 23px; background: url('../img/people.png') 0 0 no-repeat; }

.head_menu_item-profile .profile-logo .profile-service { padding-left: 20px; background-repeat: no-repeat; height: 16px; line-height: 16px; }
.head_menu_item-profile .profile-logo .profile-service__vkontakte { background-image:url("../img/ico_auth_services.png");background-position: 0px -0px; }
.head_menu_item-profile .profile-logo .profile-service__facebook { background-image:url("../img/ico_auth_services.png");background-position: 0px -32px; }
.head_menu_item-profile .profile-logo .profile-service__twitter { background-image:url("../img/ico_auth_services.png");background-position: 0px -48px; }
.head_menu_item-profile .profile-logo .profile-service__yandex { background-image:url("../img/ico_auth_services.png");background-position: 0px -288px; }
.head_menu_item-profile .profile-logo .profile-service__lj { background-image:url("../img/ico_auth_services.png");background-position: 0px -256px; }


.head_menu_item_link {
	color: #FFFFFF;
	display: block;
	font-weight: bold;
	padding: 9px 8px;
	position: relative;
	font-size: 11px;
	font-family: arial, sans-serif;
}

.head_menu_item_link:hover {
	text-decoration: none;
}

/**
 * Активный (текущий) пункт меню
 *
 * Если комбинировать это правило со следующим
 * то начнутся глюки в IE6 и IE7, поэтому разделим их
 *
 * @bugfix Глюки комбинирования активных и пассивных селекторов
 * @affected IE6, IE7
 */
.head_menu_item-active .head_menu_item_link {
	background-color: #FFFFFF;
	color: #FC8100;
}

.head_menu_item-has-submenu:hover .head_menu_item_link {
	background-color: #FFFFFF;
	color: #FC8100;
	min-height: 0;
	text-decoration: none;
}

.head_menu_item #mailcount {
    position: absolute;
    top: -2px;
    right: -2px;
    color: #FFFFFF;
    font-size: 12px;
    font-family: Trebushet;
    font-weight: bold;
}

/**
 * Второй уровень
 *
 * @subsection second level
 */
.head_submenu {
	background-color: #FFFFFF;
	border: solid #5A7C0D;
	border-width: 0 1px 1px;
	margin: 0 -1px;
	display: none;
	padding: 3px 20px 15px;
	padding-left: 15px;
	position: absolute;
	width: 140px;
	z-index: 982;
}

/**
 * Показываем подменю
 */
.head_menu_item:hover .head_submenu,
	/**
	 * @bugfix Поддержка :hover
	 * @affected IE6
	 * @css-for IE6
	 */
.head_menu_item_link:hover .head_submenu,
.head_menu_item_link:hover .ie_head_submenu {
	display: block;
}

/**
 * Заодно не забываем вернуть line-height
 *
 * @bugfix Поддержка :hover
 * @affected IE6
 * @css-for IE6
 */
.head_menu_item_link .ie_head_submenu {
	display: none;
	left: -8px;
	line-height: 1em;
	position: absolute;
	top: 32px;
}

/**
 * @bugfix Поддержка :hover
 * @affected IE6
 * @css-for IE6
 */
.head_menu_item_link:hover .ie_head_submenu {
	display: block;
}

.head_submenu_item,
.head_subsubmenu_item {
	margin-top: 6px;
}

.head_submenu_item_link,
.head_subsubmenu_item_link {
	display: block;
	font-weight: bold;
	position: relative;
	line-height: 1.3;
}

.head_submenu_item_link:hover,
.head_subsubmenu_item_link:hover {
	background-color: #FC8100;
	color: #FFFFFF;
	margin: -3px -10px;
	padding: 3px 10px;
	text-decoration: none;
}

/**
 * Третий уровень
 *
 * @subsection third level
 */
.head_subsubmenu {
	padding-bottom: 4px;
}

.head_subsubmenu_item {
	margin-top: 4px;
	font-size: 0.95em;

}

.head_subsubmenu_item_link {
	font-weight: normal;
	padding-left: 15px;
}

.head_subsubmenu_item_link:hover {
	padding-left: 25px;
}
.admin_container { display: none; width: 100%; position: absolute; }
.admin_container  form { position: relative; z-index: 99999; }
/**
 * @package portal
 */

/**
 * Плавающие (floating) блоки
 *
 * @subpackage float
 */

/**
 * Создание контекста форматирования
 * для предотвращения выпадения плавающих блоков из родителя
 * Применяется непосредственно к родителю
 *
 * @see portal.floatIe.context
 * @section context
 */

/**
 * Для браузеров, которые поддерживают псевдоэлемент :after создаём такой элемент
 * и указываем для него clear:both и т.к. он создаётся непосредственно последним
 * внутри контейнера то он будет растягивать его по высоте самого
 * высокого элемента
 */
.context:after,
.js_context:after {
    clear: both;
    content: '';
    display: block;
}

/**
 * Очистка потока
 *
 * @see portal.floatIe.clear
 * @section clear
 */
.clear,
.js_clear {
    clear: both;
}


.fleft {
	float: left;
}

.fright {
	float: right;	
}
/**
 * @package portal
 */

/**
 * Рекоммендации
 *
 * 1 Все имена (id, классы) могут содержать в себе только латинские буквы
 *   в нижнем регистре, цифры, знак «-» и знак «_». Знак «_» может служить
 *   только для указания наследования. Все имена должны означать то, что они
 *   отображают, а не как они это отображают:
 *   .green-text { color: green; } — Это плохо!
 *   .user-info { color: green; } — Это хорошо!
 * 2 Стараться не использовать стандартное css наследование. Вместо этого нужно
 *   использовать уникальные классы вида grandparent_parent_child
 * 3 Правила для IE6 и IE7 стоит выносить в отдельные файлы только если в
 *   них используются нестандартные свойства или это влияет на приоритетность
 *   применения правил. В остальных случаях нужно указывать #ie, #ie_lt-7,
 *   #ie_lt-8, в начале селектора и которые действуют только внутри #frame!
 * 4 Не обращать внимания на опечатки в комментариях — мне стыдно.
 * 5 Необходимо пользоваться CSSDoc {@link http://cssdoc.net/attachment/wiki/CssdocDraft/cssdoc - 0.2.22.pdf}
 *   для разделения на секции и описания нетривильных правил.
 * 6 Свойства в правилах и аттрибуты html-элементов располагаются строго в
 *   алфавитном порядке
 * 7 Длинные строки (длиннее 80 символов) не допускаются
 * 8 Стараться все картинки делать спрайтами
 * 9 z-index распределяются следующим образом:
 *   192-255 для глобальных слоёв
 *   128-192 для окон
 *   до 128 для локальных словёв
 *
 * @section guides
 */

/**
 * Известные баги
 *
 * 1 Инлайн комментарии внутри правила неверно распознаются IE6. Необходимо
 *   или использовать многострочные комментарии или ставить в конце 2 звёздочки
 *   вместо одной
 * 2 Внутрь инлайн-блоков иногда лучше положить дополнительный блочный элемент
 *   для Оперы
 *
 * @section bugs
 */

/**
 * Общие правила
 * @subpackage common
 */

.invisible {
    left: -999em;
    position: absolute;
    top: -999em;
}

.hidden {
	display: none !important;
}

/**
 * Класс чтобы упростить работу с инлайн-блоками
 * @see portal.commonIe.inlineBlocks
 * @section inlineBlocks
 */
.inline-block,
.js_inline-block {
    display: -moz-inline-stack;
    display: inline-block;
}

/**
 * @bugfix Неверное позиционирование внутри инлайн-блоков
 * @affected Opera
 */
.opera_inline-block-wrap {
    display: block;
}

/**
 * @see portal.commonIe.pseudolink
 * @see inlineBlocks
 * @section pseudolink
 */
.pseudolink,
.js_pseudolink {
    border-bottom: 1px dashed #037DD3;
    color: #037DD3;
    cursor: pointer;
    display: -moz-inline-stack;
    display: inline-block;
}

/**
 * @section icons
 */

 /**
 * Иконка клубов
 * @subsection comments
 */
.club-icon {
	background:url("../img/icons.png") no-repeat scroll -35px -1373px transparent;
	display:inline-block;
	height:18px;
	width:18px;
}


/**
 * Количество комментариев
 * @subsection comments
 */
.comments,
.comments-count {
    background: url('../img/icons.png') no-repeat -251px -471px;
}

.comments-count
 {
    font-size: 0.846em;
    padding-left: 12px;
    white-space: nowrap;
    text-decoration: none;
}

/**
 * Ссылка на пользователя
 * @subsection user
 */
.js_user-m-on,
.js_user-m-off,
.js_user-f-on,
.js_user-f-off,
.js_user-u-on,
.js_user-u-off {
    background: url('../img/icons.png') no-repeat;
    padding-left: 11px;
    font-weight: bold;
}

.js_user-m-on {
    background-position: -317px 4px;
}

.js_user-m-off {
    background-position: -309px -55px;
}

.js_user-f-on {
    background-position: -301px -115px;
}

.js_user-f-off {
    background-position: -293px -175px;
}

.js_user-u-on {
    background-position: -285px -234px;
}

.js_user-u-off {
    background-position: -277px -293px;
}

.user-link-service {
    background-repeat: no-repeat;
    padding-left: 20px;
    height: 16px;
    line-height: 16px;
}
.user-link-service__vkontakte { background-image:url("../img/social-mini-icons.png");background-position: 0px 2px; }
.user-link-service__facebook { background-image:url("../img/social-mini-icons.png");background-position: 0px -12px; }
.user-link-service__twitter { background-image:url("../img/social-mini-icons.png");background-position: 0px -26px; }
.user-link-service__yandex { background-image:url("../img/social-mini-icons.png");background-position: 0px -288px; }
.user-link-service__lj { background-image:url("../img/social-mini-icons.png");background-position: 0px -40px; }



/**
 * @subsection media
 * @see inlineBlocks
 * @see portal.commonIe.icons.media
 */
.has-photo, .has-video, .has-audio, .has-poll, .has-infograph, .has-online {
    background: url('../img/icons.png') no-repeat;
    display: -moz-inline-stack;
    display: inline-block;
    height: 12px;
    text-indent: -999em;
    vertical-align: middle;
}

.has-photo {
    background-position: 0 -20px;
    width: 27px;
}

.has-video {
    background-position: -27px -20px;
    width: 32px;
}

.has-video {
    background-position: -27px -20px;
    width: 32px;
}

.has-audio {
    background-position: -59px -20px;
    width: 32px;
}

.has-poll {
    background-position: -91px -20px;
    width: 12px;
}

.has-infograph {
    background-position: -103px -20px;
    width: 11px;
}
.has-online {
	background-position: -116px -20px;
	width: 35px;
}
/**
 * @section message
 */
.message, .js_message {
    padding: 7px 10px;
}

.message_success, .js_message_success {
    background-color: #EAF5CE;
    border: 1px solid #779C22;
    color: #000000;
}

.message_fail, .js_message_fail {
    background-color: #FFD6BF;
    border: 1px solid #DE4713;
    color: #A32D05;
}

/**
 * @section loader
 */
.js_loader {
    background: url('../img/backgrounds-x.png') repeat-x 0 -170px;
    height: 14px;
    width: 160px;
}

* html .js_loader {
    background-image: url('../img/backgrounds-x.ie.png');
}

/**
 * Оформрелие фильра TWIG subString($start, $end, $png) 
 * для $png = 1
 */

.substring-filter-png {
	color: inherit !important; 
	font-size: inherit !important; 
	line-height: inherit !important; 
	font-style: inherit !important; 
	font-weight: inherit !important;
	letter-spacing: inherit !important;
	text-indent: inherit !important;
	position: absolute !important; 
	margin: inherit !important;
	margin-left: -30px !important;  
	width: 30px !important; 
	display: inline !important; 
	text-decoration: none !important;
	border: none !important;
	background: url('../img/substring-png.png') no-repeat right 0 !important;
 }

a:hover .substring-filter-png {
	text-decoration: none !important;
}



.b-pushout-left_20 {
	margin-left:-20px;
}

.b-pushin-left_20 {
	padding-left:20px;
}

.b-pushout-left_17 {
	margin-left:-17px;
}

.b-pushin-left_17 {
	padding-left:17px;


}

.b-pushout-right_20 {
	margin-right:-20px;
}

.b-pushin-right_15 {
	padding-right:15px;
}

.b-pushin-right_20 {
	padding-right:20px;
}

.b-pushout-right_17 {
	margin-right:-17px;
}

.b-pushin-right_17 {
	padding-right:17px;
}





/**
* Классы для распорок
*/

.b-sep {
	clear:both;
}

.b-sep-2 {
	height: 2px;
}

.b-sep-3 {
	height: 3px;
}

.b-sep-4 {
	height: 4px;
}

.b-sep-5 {
	height: 5px;
}

.b-sep-6 {
	height: 6px;
}

.b-sep-7 {
	height: 7px;
}

.b-sep-7 {
	height: 7px;
}

.b-sep-8 {
	height: 8px;
}

.b-sep-10 {
	height: 10px;
}

.b-sep-15 {
	height: 15px;
}

.b-sep-20 {
	height: 20px;
}

.b-sep-25 {
	height: 25px;
}

.b-sep-30 {
	height: 30px;
}

.b-sep-40 {
	height: 40px;
}

.b-sep-50 {
	height: 50px;
}

/**/

.search_zone .hidden {
	display: none;
}

.search_zone {
	border-bottom: 1px dashed #fff;
	cursor: pointer;
	float: left;
}

/* классы для быстрого редактирования блоков (при клике - редактирование, при выходе кликом из формы - сохранение (скрытие формы) */

.jsOriginal {

}

.jsEdittable {
	display: none;
	margin-bottom: 5px;
}

#foot div.v5-logo {
    padding-left:60px;
    padding-top:8px;
    position:relative;
}
#foot div.v5-logo a {
    color:#CEDCAC;
    font-size:12px;
    text-decoration:none;
}
#foot div.v5-logo a {
    display:inline-block;
}
#foot div.v5-logo a img {
    border:0 none;
    left:0;
    position:absolute;
    top:0;
}
* html #foot div.v5-logo a img {
    left:-60px;
}
#foot div.v5-logo span.v5-footer-links {
    color:#CEDCAC;
    font-size:12px;
    vertical-align:bottom;
}
#foot ul.v5-menu {
    list-style-type:none;
    margin:0 0 0 -14px;
    padding:4px 0 0;
}
#foot ul.v5-menu li {
    border-right:1px solid #FFFFFF;
    display:inline-block;
    font-size:12px;
    font-weight:bold;
    line-height:11px;
    padding:0 14px;
}
* html #foot ul.v5-menu li {
    display:inline;
}
#foot ul.v5-menu li.v5-last {
    border-right:medium none;
}
#foot ul.v5-menu li a {
    color:#FFFFFF;
    text-decoration:underline;
}
#foot div.v5-counters {
    position:absolute;
    right:5px;
    top:10px;
}

/* стандартный текстовый блок */
.c-standart-text-block {  }
.c-standart-text-block strong { font-weight: bold; }
.c-standart-text-block ol,
.c-standart-text-block ul { list-style-type: disc; padding-left: 30px; margin-bottom: 10px; line-height: 1.4; }
.c-standart-text-block p { margin-bottom: 10px; }
.c-standart-text-block table { border: 1px solid black; }


.rabota-not-found .content-block { margin-top: 15px; }
.rabota-not-found .content-block p { font-size: 24px; text-align: center; margin: 0; }

.hotels-not-found .content-block { margin-top: 15px; }
.hotels-not-found .content-block p { font-size: 24px; text-align: center; margin: 0; }

.search-not-found .content-block { margin-top: 15px; }
.search-not-found .content-block p { font-size: 24px; text-align: center; margin: 0; }

.out-head-wrap-content {
	height: auto; 
	margin: 0 auto;
	position: relative;
}


/* content-block */
.content-block p {
	margin: .5em 0;
	line-height: 1.25;
}

/* стили для заголовков в контент-блоках */
.content-block h1,
.content-block h2,
.content-block h3 { font-size: 18px; margin: 0 0 8px 0; line-height: 1.4; font-weight: normal; }

.content-block h1.big-header,
.content-block h2.big-header,
.content-block h3.big-header { font-size: 24px; margin: 0 0 10px 0; }

.content-block h1.middle-header,
.content-block h2.middle-header,
.content-block h3.middle-header { font-size: 18px; margin: 0 0 10px 0; }

.content-block h1.small-header,
.content-block h2.small-header,
.content-block h3.small-header { font-size: 13px; font-weight: bold; margin: 0 0 10px 0; }

.content-block p,
.content-block li { font-size: 13px; margin-bottom: 9px; line-height: 1.4; }
.content-block strong, .content-block b {font-weight: bold;}



/* нестандартные контент блоки */
.content-block .recommended .title { padding-top: 2px; padding-bottom: 2px; }
.content-block .recommended .text { margin-bottom: 0; font-weight: bold; color: white; font-size: 13px; }
.content-block .hotesls_news-h a { color: black; text-decoration: none; }
.content-block .advert_attention { margin-bottom: -8px; }
.content-block .advert_phone { margin-bottom: -9px; }
.right-context-text-job h2, .right-context-text-job h3{ font: bold 13px/18px Arial, Tahoma, Sans-Serif; margin-bottom: 10px; }
/**
 * @package portal
 */

/**
 * Декоративные элементы
 *
 * @subpackage decorations
 */

/**
 * Рамки
 *
 * Примери использования:
 *
 * .frame_wrap {
 *     padding: <top margin>px <right margin>px <bottom margin>px <left margin>px;
 * }
 *
 * .frame_content {
 *     background-color: <background-color>;
 * }
 *
 * .frame_bottom-left,
 * .frame_bottom-right,
 * .frame_top-left,
 * .frame_top-right {
 *     background: url('<image url>') no-repeat;
 *     left: -<right margin>px;
 * }
 *
 * .frame_top-left,
 * .frame_top-right {
 *     top: -<bottom margin>px;
 * }
 *
 * .frame_top-right,
 * .frame_bottom-right {
 *     width: <right margin>px;
 * }
 *
 * .frame_bottom-left,
 * .frame_bottom-right {
 *     height: <bottom margin>px;
 * }
 *
 * .frame_top-right {
 *     clip: rect(<bottom margin>px auto auto auto);
 * }
 *
 * .frame_top-left {
 *     clip: rect(<bottom margin>px auto auto <right margin>px);
 * }
 *
 * .frame_bottom-left {
 *     clip: rect(auto auto auto <right margin>px);
 * }
 *
 * @section frames
 */

.frame_wrap,
.js_frame_wrap {
    position: relative;
}

.frame_content,
.js_frame_content {
    position: relative;
    z-index: 1;
}

.frame_top-left,
.js_frame_top-left,
.frame_top-right,
.js_frame_top-right,
.frame_bottom-left,
.js_frame_bottom-left,
.frame_bottom-right,
.js_frame_bottom-right {
    font-size: 0;
    position: absolute;
    z-index: 0;
}

.frame_top-left,
.js_frame_top-left,
.frame_top-right,
.js_frame_top-right {
    height: 100%;
}

.frame_top-left,
.js_frame_top-left,
.frame_bottom-left,
.js_frame_bottom-left {
    width: 100%;
}

.frame_top-right,
.js_frame_top-right,
.frame_bottom-right,
.js_frame_bottom-right {
    margin-left: 100%;
}

/**
 * @subsection cute
 */
.frames_cute_frame,
.js_frames_cute_frame {
    margin: 0 -4px;
}

.frames_cute_frame_wrap,
.js_frames_cute_frame_wrap {
    padding: 9px 11px 9px 11px;
}

.frames_cute_frame_content,
.js_frames_cute_frame_content {
    background-color: white;
    padding: 5px 5px 5px 3px;
}

.frames_cute_frame_bottom-left,
.js_frames_cute_frame_bottom-left,
.frames_cute_frame_bottom-right,
.js_frames_cute_frame_bottom-right,
.frames_cute_frame_top-left,
.js_frames_cute_frame_top-left,
.frames_cute_frame_top-right,
.js_frames_cute_frame_top-right {
    background: url('../img/frames/cute.png') no-repeat;
    left: -11px;
}

.frames_cute_frame_top-left,
.js_frames_cute_frame_top-left,
.frames_cute_frame_top-right,
.js_frames_cute_frame_top-right {
    top: -9px;
}

.frames_cute_frame_top-right,
.js_frames_cute_frame_top-right,
.frames_cute_frame_bottom-right,
.js_frames_cute_frame_bottom-right {
    width: 11px;
}

.frames_cute_frame_bottom-left,
.js_frames_cute_frame_bottom-left,
.frames_cute_frame_bottom-right,
.js_frames_cute_frame_bottom-right {
    height: 9px;
}

.frames_cute_frame_top-right,
.js_frames_cute_frame_top-right {
    clip: rect(9px auto auto auto);
}

.frames_cute_frame_top-left,
.js_frames_cute_frame_top-left {
    clip: rect(9px auto auto 11px);
}

.frames_cute_frame_bottom-left,
.js_frames_cute_frame_bottom-left {
    clip: rect(auto auto auto 11px);
}

.news_single_image img {
	position: relative;
	top: 2px;
}

/**
 * @section hr
 */
.hr,
.js_hr {
    border-top: 1px solid #CCCCCC;
    height: 0;
}

.hr hr,
.js_hr hr {
    display: none;
}

/**
 * Обнуляем уголки rocon, т.к. он рисует все сразу
 * @section corners
 */
.js .rc-tl {
    border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -khtml-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
}

.js .rc-tl>.rocon-tl {
    display: none;
}

.js .rc-tr {
    border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    -khtml-border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
}

.js .rc-tr>.rocon-tr {
    display: none;
}

.js .rc-bl {
    border-bottom-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -khtml-border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
}

.js .rc-bl>.rocon-bl {
    display: none;
}

.js .rc-br {
    border-bottom-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -khtml-border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
}

.js .rc-br>.rocon-br {
    display: none;
}

.g-line-dashed {
	height:1px;	
	line-height:1px;
	font-size:1px;
	border:none;
	background:url(../img/dotted-pic.gif) repeat-x;	
}
/**
 * @package portal
 */

/**
 * @subpackage forms
 */
.forms_text, .js_forms_text,
.forms_password, .js_forms_password,
.forms_textarea, .js_forms_textarea,
.forms_select, .js_forms_select {
    padding: 0.385em 4px;
}

.js_comment_form-pad .forms_textarea { padding: 3px 0; width: 100%; text-indent: 3px;}
.js_comment_form-pad p {
    width: 100%;
    display: block;
}
/**
 * @bugfix Вертикальное выравнивание в IE
 * @affected IE
 * @css-for IE
 */
#ie_all .forms_text, #ie_all .js_forms_text,
#ie_all .forms_password, #ie_all .js_forms_password,
#ie_all .forms_select, #ie_all .js_forms_select,
#ie_all .forms_textarea, #ie_all .js_forms_textarea {
    line-height: 1.231em;
    vertical-align: middle;
}

/**
 * @bugfix Высота select в Opera 9
 * @affected Opera
 * @css-for Opera
 */
*|html[xmlns*=""] .forms_select,
*|html[xmlns*=""] .js_forms_select {
    height: 2.308em;
}

/**
 * @bugfix Высота select в Safari
 * @affected Safari
 */
.forms_select, .js_forms_select {
    line-height: 2em;
}

/**
 * @bugfix Лишние отступы внутри кнопок
 * @affected IE6, IE7
 * @css-for IE6, IE7
 */

.forms_wide-text_wrap, .js_forms_wide-text_wrap,
.forms_wide-password_wrap, .js_forms_wide-password_wrap,
.forms_wide-textarea_wrap, .js_forms_wide-textarea_wrap,
.forms_wide-select_wrap, .js_forms_wide-select_wrap {
    display: block;
    padding-right: 10px;
}

.forms_wide-text, .js_forms_wide-text,
.forms_wide-password, .js_forms_wide-password,
.forms_wide-textarea, .js_forms_wide-textarea,
.forms_wide-textarea_wrap .mceEditor, .js_forms_wide-textarea_wrap .mceEditor,
.forms_wide-textarea_wrap .mceLayout, .js_forms_wide-textarea_wrap .mceLayout,
.forms_wide-select, .js_forms_wide-select {
    margin-right: -10px;
    width: 100% !important;
}

.forms_wide-label, .js_forms_wide-label {
    display: block;
}
/**
 * @package portal
 */

/**
 * @subpackage popup
 */

.js_popup {
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999;
    white-space: nowrap;
}

.js_popup div {
    text-align: left;
}

.js_popup_sizer {
    display: inline-block;
    height: 100%;
    vertical-align: top;
    width: 1px;
}

.js_popup_overlay {
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=60)';
    background-color: #000000;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 250;
}

.js_popup_close {
    cursor: pointer;
    background: url('../img/icons.png') no-repeat 0 -32px;
    height: 32px;
    right: 17px;
    position: absolute;
    top: 8px;
    width: 32px;
}

.js_popup_close_small {
    cursor: pointer;
    background-image: url('../img/btn_close.png');
    background-attachment: scroll;
    background-color: transparent;
    position: absolute;
    cursor: pointer;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

/**
 * @section frame
 */
.js_popup_frame {
    display: inline-block;
    margin-bottom: 140px;
    position: relative;
    white-space: normal;
    z-index: 255;
	vertical-align: middle;
}

.js_popup_frame_wrap {
    padding: 18px;
    text-align: left;
}

.js_popup_frame_content {
    background-color: #F1F5E8;
    padding: 6px;
}

.js_popup_frame_bottom-left,
.js_popup_frame_bottom-right,
.js_popup_frame_top-left,
.js_popup_frame_top-right {
    background: url('../img/frames/popup.png') no-repeat;
    left: -18px;
}

.js_popup_frame_top-left,
.js_popup_frame_top-right {
    top: -18px;
}

.js_popup_frame_top-right,
.js_popup_frame_bottom-right {
    width: 18px;
}

.js_popup_frame_bottom-left,
.js_popup_frame_bottom-right {
    height: 18px;
}

.js_popup_frame_top-right {
    clip: rect(18px auto auto auto);
}

.js_popup_frame_top-left {
    clip: rect(18px auto auto 18px);
}

.js_popup_frame_bottom-left {
    clip: rect(auto auto auto 18px);
}

/**
 * Override bootstrap css for form
 */
.js_popup_frame .row {
    font-size: 12px;
    margin: 0;
}


/**
 * @section content
 */
.js_popup_title {
    color: #52544F;
    font-size: 1.846em;
    height: 40px;
    padding: 6px 65px 0 20px;
	min-width: 500px;
	width:expression(document.body.clientWidth < 500? "500px": "auto" );    
}

.js_popup_content {
    background-color: #FFFFFF;
    padding: 20px 30px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.for-map {
    padding: 0px !important;
    margin: 0px !important;
    width: 560px !important;
}

.js_popup_content_inside {
    background-color: #FFFFFF;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.js_popup_content_inside_buttons {
	margin: 10px 0px 0px 0px;
	text-align: center;
}

/**
 * @subsection buttons
 */
.js_popup_buttons {
    margin: 15px -10px -20px;
    text-align: center;
    white-space: nowrap;
}

.js_popup_button {
    margin: 0 10px;
    padding: 2px 15px;
    vertical-align: middle;
	min-width: 100px;
	//width: 100px;
}

.js_popup_button_wrap {
    margin: 0 10px;
    vertical-align: middle;
}

.js_popup_button-higlited {
    font-size: 1.077em;
    font-weight: bold;
    margin: 0;
    padding: 2px 30px;
	min-width: 100px;
	//width: 100px;
}
/**
 * @package portal
 */

/**
 * @subpackage user
 */

/**
 * @section popups
 */

/**
 * @subsection account
 */
.js_user_popup_tabs {
    background-color: #8A8F7E;
    height: 40px;
    margin: -20px -45px 20px;
    padding: 0 15px;
    position: relative;
    text-align: justify;
    white-space: nowrap;
    z-index: 10;
}

.js_user_popup_tabs_tab {
    float: left;
}

.js_user_popup_tabs_tab_link {
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    height: 34px;
    line-height: 34px;
    margin-top: 6px;
    padding: 0 15px;
    text-decoration: underline;
}

.js_user_popup_tabs_tab_link-active {
    background-color: #FFFFFF;
    color: #000000;
    line-height: 40px;
    padding: 0 20px;
    text-decoration: none;
}

.js_user_popup_tabs_tab_link-login,
.js_user_popup_tabs_tab_link-register {
    font-size: 1.385em;
}

.js_user_popup_tabs_tab_link-repair {
    font-size: 1.077em;
}

.js_user_popup_left-label {
    float: left;
    height: 28px;
    line-height: 28px;
}

.js_user_popup_right-field_wrap {
    display: block;
    overflow: hidden;
    text-align: right;
}

.js_user_popup_right-field {
    width: 230px;
}
/**
 * @package portal
 */

/**
 * Общие кнопки
 *
 * @subpackage buttons
 */

/**
 * @see portal.common.inlineBlocks
 * @see portal.buttonsIe
 */

.button {
    display: inline-block;
}

/**
 * Основные кнопки
 *
 * @section common
 */
.buttons_common {
    background: #759E17 url('../img/backgrounds-x.png') repeat-x 0 -90px;
}

.buttons_common {
    padding: 4px 8px;
}

.buttons_common,
.buttons_common * {
    border: none;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}

/**
 * Обёртка кнопок
 */
.buttons_wrap,
.buttons_wrap-grey {
    background: #759E17 url('../img/backgrounds-x.png') repeat-x 0 -120px;
    padding: 10px;
}

.button_wrap-width-link {
	background: #759E17 url('../img/background_width-link-x.png') repeat-x 0 0px;
	padding:5px 10px;
	color: #fff;
}

.buttons_wrap-grey {
	background:#ebe6d1;
}


/**
 * Маленькие квадратненькие иконки
 * @section small
 * @see portal.buttonsIe.small
 */
.buttons_edit_small,
.buttons_remove_small,
.buttons_remove2_small,
.buttons_anchor_small,
.buttons_report_small,
.buttons_union_small {
    background: url('../img/icons.png') no-repeat;
    border: none !important;
    cursor: pointer;
    display: inline-block;
    height: 14px;
    overflow: hidden;
    text-indent: -999px;
    vertical-align: middle;
    width: 14px;
}

.buttons_remove2_small.buttons_normal {
	width: auto !important; 
	text-indent: 0 !important;
	padding-left: 16px;
}

.buttons_edit_small.buttons_normal {
	width: auto !important; 
	text-indent: 0 !important;
	padding-left: 16px;
}

* html .buttons_edit_small,
* html .buttons_remove_small,
* html .buttons_remove2_small,
* html .buttons_anchor_small,
* html .buttons_report_small,
* html .buttons_union_small {
    background-image: url('../img/icons.ie.png');
}

.buttons_edit_small {
    background-position:  -117px -1047px;
}

.buttons_remove_small {
    background-position:  -103px -1111px;
}

.buttons_remove2_small {
    background-position:  -266px -353px;
}

.buttons_anchor_small {
    background-position:  -25px -1441px;
}

.buttons_report_small {
    background-position:  -11px -1505px;
}

.buttons_union_small {
    background-position:  -224px -594px;
    margin-left: 5px;
}

/**
 * Кнопка, которая выглядит как ссылка
 * @section link
 */
.buttons_link {
    background: transparent;
    border: none;
	color: #037DD3;
    cursor: pointer;
    padding: 0;
	text-decoration: underline;
}

.edit-button_icon,
.delete-button_icon,
.uploaderStatus__delete-button_icon  {
	background: url("../img/icons.png") no-repeat scroll -131px -982px transparent;
	padding-left: 18px;	
}

.delete-button_icon,
.uploaderStatus__delete-button_icon  {
	background-position: -258px -410px;
}

.page-grid .button_wrap-width-link a {
	font-size: 0.85em;
}

.button_wrap-width-link a:link,
.button_wrap-width-link a:visited {
	color: #fff;
}
.button_wrap-width-link a:hover,
.button_wrap-width-link a:active {
	color: #fff
}






.submenu_items .submenu_items__item{
	float:left;
	height:80px;
	width:9%;
	padding-left:1%;
}

.menu_title-bubble{
	position:absolute;
	z-index: 101 !important;
	top:18px;
	visibility:hidden;
	z-index:101;
	left:0px
}

.menu_title-bubble .menu_title-content{
	float:left;
	padding:0px 0px 0px 0px;
	float:left;
	min-width:205px;
	background:url(../img/empty.gif);
}

.framed, .framed .f_r, .framed .f_b, .framed .f_l, .framed .f_c {
	float: left;
	position: relative; z-index: 1;
	width: auto; height: auto;
	margin: 0; padding: 0;
}

.framed .f_tt, .framed .f_rr, .framed .f_bb, .framed .f_ll {
	display: none;
}

.framed {
	margin: 0 0px 15px 0;
	background: url('../img/menus/hint-t.png') no-repeat left top;
	_background: none;
}

.framed .f_r {
	left: 22px;
	margin-top: 5px;
	top: -13px;
	background: url('../img/menus/hint-r.png') no-repeat right top;
	_background: none;
}

.framed .f_b {
	top: 22px;
	left: 8px;
	background: url('../img/menus/hint-b.png') no-repeat right bottom;
	_background: none;
}

.framed .f_c {
	float: none;
	position: relative;
	left: 6px; 
	top: -16px;
	padding: 5px 0 9px; 
	margin: 0 -2px 0 0;
	background-color: #f2efe8;
}

.framed .f_l {
	left: -22px;
	top: 8px;
	padding: 0px 0;
	background: url('../img/menus/hint-l.png') no-repeat left bottom;
	_background: none;
}

* html .framed .f_r, 
* html .framed .f_b, 
* html .framed .f_l { height: 0; }
* html .framed .f_tt, 
* html .framed .f_rr, 
* html .framed .f_bb, 
* html .framed .f_bb *, 
* html .framed .f_ll, 
* html .framed .f_ll * {
	display: block;
	position: absolute;
	left: 0; top: 0;
}

* html .framed .f_tt {
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/menus/hint-t.png',sizingMethod='crop');
}

* html .framed .f_rr {
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/menus/hint-r.png',sizingMethod='crop');
}

* html .framed .f_tt, 
* html .framed .f_bb {
	width: expression( parentNode.offsetWidth ); 
	height: 22px;
}

* html .framed .f_rr, 
* html .framed .f_ll {
	width: 22px; 
	height: expression( parentNode.offsetHeight );
}

* html .framed .f_bb, 
* html .framed .f_ll {
	overflow: hidden;
}

* html .framed .f_bb * {
	width: 3000px; height: 22px;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/menus/hint-b.png,sizingMethod=crop);
}

* html .framed .f_ll * {
	width: 22px; height: 3000px;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=../img/menus/hint-l.png,sizingMethod=crop);
}

* html .framed .f_rr, 
* html .framed .f_bb * { 
	right: expression( this.parentNode.offsetWidth % 2 ? -1 : 0 ); 
	left: auto; 
}

* html .framed .f_ll, 
* html .framed .f_ll *,  
* html .framed .f_bb, 
* html .framed .f_bb * { 
	bottom: expression( this.parentNode.offsetHeight % 2 ? -1 : 0 ); 
	top: auto; 
}

.framed ul {
	padding: 0px;
	margin: 0px;
}

.framed ul li {
	list-style: none;
	color: #fff;
	font: 13px Arial, Tahoma, Sans-Serif;
	padding: 3px 10px 5px;
	margin-bottom: 0px;
	border-top: 1px solid transparent;
}

.framed ul li a:link, 
.framed ul li a:visited, 
li.b-submenu__item-current .framed a:link, 
li.b-submenu__item-current .framed a:visited  {
	color: #037dd3;
	z-index: 999;
	text-decoration: none;
	border-bottom: 1px solid #037dd3;
}

li.b-submenu__item-current .framed a:hover, 
li.b-submenu__item-current .framed a:active,
.framed ul li a:hover, 
.framed ul li a:active {
	color: #037dd3;
	z-index: 999;
	text-decoration: none;
	border-bottom: none;
} 

li.b-submenu__item-current a {
	color: #fff;
	text-decoration: none;
}

.b-submenu__drop {
	top: 18px;
	position: absolute;
	z-index: 1000;
	left: -18px;
	*padding:2px;
}

.b-submenu_lte_ie8 {
	display: none;
}

.b-submenu li.b-submenu__item {
	float: left;
	position: relative;
	padding: 0px 6px 0 10px;
	height: 19px;
	list-style: none;
	font-weight: bold;
	margin-right: 16px;
	font: bold 13px Arial, Tahoma, Sans-Serif;
}

.b-submenu__separator {
	/*background: url(../img/menus/submenu_separator.gif) 0 0 no-repeat;*/
	width: 6px;
	height: 12px;
	position: absolute;
	right:0px;
	top: 6px;
}

.b-submenu__item-current .b-submenu__separator {
	top: 6px;
}

.b-submenu__item-current .b-submenu__separator {
	right: -14px;
}

.b-submenu__item-current {
	top: -3px;
	//top: 0px;
}

.b-submenu__link-drop {
	background: url(../img/menus/submenu_push-down.gif) 0 0 no-repeat;
}

.b-submenu__item-current .b-submenu__link-drop-hover {
	margin-left: 8px;
	top:3px;
	z-index: 200;
} 

.b-submenu__item-current .b-submenu__link-drop {
	width: 15px;
	left: -2px;
	position: relative;
	height: 23px;
	cursor: pointer;
	margin-left: 10px;
	margin-bottom: -10px;
}

.b-submenu__item-current .b-submenu__link-drop-hover {
	left: -4px;
	margin-left: 10px;
	margin-right: -4px;
	top:2px;
	width: 19px;
}

.b-submenu__item-current .b-submenu__drop {
	top: 18px;
}

.menu_bubbles ul li.b-submenu__item-current {
	background: #ffa900;
	border-top: 1px solid #e59800;
	padding-top: 2px;
	margin-bottom:0px;
}

#ie_8 .menu_bubbles li.b-submenu__item-current {
	margin-top: 5px;
	margin-bottom: -1px;
}

.submenu_items__item .b-submenu__drop-pic {
	cursor: pointer;
	width: 25px;
	height: 25px;
	top:3px;
	position: relative;
	/*margin-right: 4px;*/
	margin-left:7px;
	background: url(../img/menus/submenu_push-down.png) no-repeat scroll 0 0;
}

.submenu_items .submenu_items__item-current .b-submenu__drop-pic {
	margin-right: 0px;
	top: 6px;
	background: url(../img/menus/submenu_push-down-cur.png) no-repeat scroll 0 0;
	width: 16px
}

.submenu_items .b-submenu__link-drop-hover {
	background: url(../img/menus/submenu_push-down-.png) 0 0 no-repeat;
	top: -4px;
	left:-5px;
	z-index: 1000;
}

.submenu_items .submenu_items__item-current .b-submenu__link-drop-hover {
	left:0px;
}

.submenu_items .submenu_items__item-current .b-submenu__separator {
	right:-15px;
}

.b-submenu__link-drop-hover .b-submenu__drop-pic {
	background: url(../img/menus/submenu_push-down-cur.gif) no-repeat scroll 0 0;
}

.b-submenu li.b-submenu__item-current .b-submenu__drop-pic {
	background: url(../img/menus/submenu_push-down-cur.gif) 0 0 no-repeat;
	top: -1px
}

.b-submenu li .b-submenu__link-drop-hover .b-submenu__drop-pic {
	background: url(../img/menus/submenu_push-down-.png) 0 0 no-repeat;
	z-index: 10000;
}

.submenu_items {
	height: auto;
	padding-bottom:10px;
	margin-top: 0px;
	overflow:visible;
	width:auto;
	position:relative;
	z-index: 100;
}

.submenu_items__short {
	margin-right:0px;
}

.submenu_items .submenu_items__item {
	height:26px;
	padding-top:3px;
	padding-left:14px;
    padding-right: 23px;
	width:auto;
	position:relative;
	margin-right: 0px;
	z-index: 101;
}
.submenu_items_with_subs {
    padding-right: 0px !important;
}

.submenu_items__item a {
	display: block;
	float:left;
	font: bold 13px Arial, Tahoma, Sans-Serif;
}

.submenu_items__item a.submenu_items__item-link:link,
.submenu_items__item a.submenu_items__item-link:visited {
	text-decoration: none;
	border-bottom: 1px solid #037DD3
}
.submenu_items__item a.submenu_items__item-link:hover,
.submenu_items__item a.submenu_items__item-link:active {
	text-decoration: none;
}

.submenu_items__item a {
	color:#037dd3;
} 

.submenu_items .submenu_items__item-current {
	background: url("../img/menus/curbg.png") repeat-x scroll 0 0 #F38500;
	padding-left: 0px;
	padding-right: 0px;
	margin-right: 14px;
    margin-left: 8px;
	padding-top: 0px;
	height: 28px;
    margin-bottom: 1px;
}

.submenu_items .submenu_items__item-current .submenu_items__item-link {
	color:#fff;
	text-decoration: none;
}

.submenu_items__item-current-pad {
	overflow: hidden;
	height: 28px;
	position: relative;
	padding-left: 8px;
	padding-right: 7px;
}

.submenu_items__item-current a.submenu_items__item-link {
	text-decoration: none;
	border: none;
}

.submenu_items__item-current a.submenu_items__item-link.with_subs {
}


.submenu_items__item-current-l,
.submenu_items__item-current-r {
	position:absolute;
	top: 0;
	height: 32px;
	width: 5px;
	z-index: 100;
} 

.submenu_items__item-current-l {
	background: url("../img/menus/submenu-left-cur.png") no-repeat scroll 0 0 transparent;
    left: 0;
}

.submenu_items__item-current-r {
	background: url("../img/menus/submenu-right-cur.png") no-repeat scroll 0 0 transparent;
    right: 0;
}

.submenu_items .submenu_items__item-current a.submenu_items__item-link {
	height: 24px;
	line-height: 21px; 
	border: none;
}

.menu_bubbles {
	position: relative;
	clear: both; 
	position: absolute; 
	top: 0px; 
	overflow: hideen; 
	z-index: 101;
}

.submenu_items__item-hover {
	z-index: 1000 !important;
}

.submenu_items__item-hover .submenu_items__item-current-l {
	background-image: url(../img/menus/submenu-left-cur-.png);
}
.submenu_items__item-hover .submenu_items__item-current-r {
	background-image: url(../img/menus/submenu-right-cur-.png);
}
.submenu_items__item-hover .submenu_items__item-current-bottom {
	background-image: url(../img/menus/botcur-.png);
}

.submenu_items__item-current-bottom {
	background: url("../img/menus/botcur.png") no-repeat scroll center bottom transparent;
	height: 9px;
	width: 100%;
	position: absolute;
	bottom: -3px;
	left: 0px;
	z-index: 1;
}

.b-right-cnr {
	display: none;	
	position: absolute;
	z-index: 1;
	height: 28px;
	right: -5px;
	width: 10px;
	top: 0px;
	/*background: url(../img/menus/submenu-right-cur-hover-dop.png) 0 0 no-repeat;*/
}

.g-48 {
  padding-right: 89.53%;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *padding-right: 0;
  *margin-right: 89.53%;
}
.g-48,
.g-row {
  *zoom: 1;
}
.g-48:before,
.g-48:after,
.g-row:before,
.g-row:after {
  clear: both;
  content: '';
  display: block;
}
.g-first {
  clear: left;
}
.g-span-1,
.g-span-2,
.g-span-3,
.g-span-4,
.g-span-5,
.g-span-6,
.g-span-7,
.g-span-8,
.g-span-9,
.g-span-10,
.g-span-11,
.g-span-12,
.g-span-13,
.g-span-14,
.g-span-15,
.g-span-16,
.g-span-17,
.g-span-18,
.g-span-19,
.g-span-20,
.g-span-21,
.g-span-22,
.g-span-23,
.g-span-24,
.g-span-25,
.g-span-26,
.g-span-27,
.g-span-28,
.g-span-29,
.g-span-30,
.g-span-31,
.g-span-32,
.g-span-33,
.g-span-34,
.g-span-35,
.g-span-36,
.g-span-37,
.g-span-38,
.g-span-39,
.g-span-40,
.g-span-41,
.g-span-42,
.g-span-43,
.g-span-44,
.g-span-45,
.g-span-46,
.g-span-47,
.g-span-48 {
  float: left;
  position: relative;
  *display: inline;
}
.g-span-1 {
  margin-right: -15%;
  width: 15%;
}
.g-col-1 {
  left: 0%;
}
.g-span-2 {
  margin-right: -35%;
  width: 35%;
}
.g-col-2 {
  left: 20%;
}
.g-span-3 {
  margin-right: -55%;
  width: 55%;
}
.g-col-3 {
  left: 40%;
}
.g-span-4 {
  margin-right: -75%;
  width: 75%;
}
.g-col-4 {
  left: 60%;
}
.g-span-5 {
  margin-right: -95%;
  width: 95%;
}
.g-col-5 {
  left: 80%;
}
.g-span-6 {
  margin-right: -115%;
  width: 115%;
}
.g-col-6 {
  left: 100%;
}
.g-span-7 {
  margin-right: -135%;
  width: 135%;
}
.g-col-7 {
  left: 120%;
}
.g-span-8 {
  margin-right: -155%;
  width: 155%;
}
.g-col-8 {
  left: 140%;
}
.g-span-9 {
  margin-right: -175%;
  width: 175%;
}
.g-col-9 {
  left: 160%;
}
.g-span-10 {
  margin-right: -195%;
  width: 195%;
}
.g-col-10 {
  left: 180%;
}
.g-span-11 {
  margin-right: -215%;
  width: 215%;
}
.g-col-11 {
  left: 200%;
}
.g-span-12 {
  margin-right: -235%;
  width: 235%;
}
.g-col-12 {
  left: 220%;
}
.g-span-13 {
  margin-right: -255%;
  width: 255%;
}
.g-col-13 {
  left: 240%;
}
.g-span-14 {
  margin-right: -275%;
  width: 275%;
}
.g-col-14 {
  left: 260%;
}
.g-span-15 {
  margin-right: -295%;
  width: 295%;
}
.g-col-15 {
  left: 280%;
}
.g-span-16 {
  margin-right: -315%;
  width: 315%;
}
.g-col-16 {
  left: 300%;
}
.g-span-17 {
  margin-right: -335%;
  width: 335%;
}
.g-col-17 {
  left: 320%;
}
.g-span-18 {
  margin-right: -355%;
  width: 355%;
}
.g-col-18 {
  left: 340%;
}
.g-span-19 {
  margin-right: -375%;
  width: 375%;
}
.g-col-19 {
  left: 360%;
}
.g-span-20 {
  margin-right: -395%;
  width: 395%;
}
.g-col-20 {
  left: 380%;
}
.g-span-21 {
  margin-right: -415%;
  width: 415%;
}
.g-col-21 {
  left: 400%;
}
.g-span-22 {
  margin-right: -435%;
  width: 435%;
}
.g-col-22 {
  left: 420%;
}
.g-span-23 {
  margin-right: -455%;
  width: 455%;
}
.g-col-23 {
  left: 440%;
}
.g-span-24 {
  margin-right: -475%;
  width: 475%;
}
.g-col-24 {
  left: 460%;
}
.g-span-25 {
  margin-right: -495%;
  width: 495%;
}
.g-col-25 {
  left: 480%;
}
.g-span-26 {
  margin-right: -515%;
  width: 515%;
}
.g-col-26 {
  left: 500%;
}
.g-span-27 {
  margin-right: -535%;
  width: 535%;
}
.g-col-27 {
  left: 520%;
}
.g-span-28 {
  margin-right: -555%;
  width: 555%;
}
.g-col-28 {
  left: 540%;
}
.g-span-29 {
  margin-right: -575%;
  width: 575%;
}
.g-col-29 {
  left: 560%;
}
.g-span-30 {
  margin-right: -595%;
  width: 595%;
}
.g-col-30 {
  left: 580%;
}
.g-span-31 {
  margin-right: -615%;
  width: 615%;
}
.g-col-31 {
  left: 600%;
}
.g-span-32 {
  margin-right: -635%;
  width: 635%;
}
.g-col-32 {
  left: 620%;
}
.g-span-33 {
  margin-right: -655%;
  width: 655%;
}
.g-col-33 {
  left: 640%;
}
.g-span-34 {
  margin-right: -675%;
  width: 675%;
}
.g-col-34 {
  left: 660%;
}
.g-span-35 {
  margin-right: -695%;
  width: 695%;
}
.g-col-35 {
  left: 680%;
}
.g-span-36 {
  margin-right: -715%;
  width: 715%;
}
.g-col-36 {
  left: 700%;
}
.g-span-37 {
  margin-right: -735%;
  width: 735%;
}
.g-col-37 {
  left: 720%;
}
.g-span-38 {
  margin-right: -755%;
  width: 755%;
}
.g-col-38 {
  left: 740%;
}
.g-span-39 {
  margin-right: -775%;
  width: 775%;
}
.g-col-39 {
  left: 760%;
}
.g-span-40 {
  margin-right: -795%;
  width: 795%;
}
.g-col-40 {
  left: 780%;
}
.g-span-41 {
  margin-right: -815%;
  width: 815%;
}
.g-col-41 {
  left: 800%;
}
.g-span-42 {
  margin-right: -835%;
  width: 835%;
}
.g-col-42 {
  left: 820%;
}
.g-span-43 {
  margin-right: -855%;
  width: 855%;
}
.g-col-43 {
  left: 840%;
}
.g-span-44 {
  margin-right: -875%;
  width: 875%;
}
.g-col-44 {
  left: 860%;
}
.g-span-45 {
  margin-right: -895%;
  width: 895%;
}
.g-col-45 {
  left: 880%;
}
.g-span-46 {
  margin-right: -915%;
  width: 915%;
}
.g-col-46 {
  left: 900%;
}
.g-span-47 {
  margin-right: -935%;
  width: 935%;
}
.g-col-47 {
  left: 920%;
}
.g-span-48 {
  margin-right: -955%;
  width: 955%;
}
.g-col-48 {
  left: 940%;
}
/**/
.g-col-1.g-main-col-1 {
  width: 545%;
  margin-right: -545%;
}
.l-body-wrap .g-col-30.g-main-col-2:before {
  content: '';
  background: #cccccc;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  left: -4.7%;
}
/*.g-col-29.g-main-col-2 {
    left: 571%;
	width: 374%;
	margin-right: -374%;
}

.g-col-38.g-main-col-2 {
    float: right;
    left: 0;
    margin-right: -850%;
    right: 0;
    width: 240px;
}*/
/**/
.g-restore,
.g-initial {
  position: relative;
}
.g-restore .g-12 {
  padding-right: 0;
  margin-right: -400%;
}
.g-restore .g-initial {
  margin-right: -1075%;
}
.g-span-1 .g-restore {
  margin-right: -33.33%;
}
.g-col-1 .g-restore .g-12,
.g-col-1 .g-restore .g-initial {
  left: 0%;
}
.g-span-2 .g-restore {
  margin-right: 42.86%;
}
.g-col-2 .g-restore .g-12,
.g-col-2 .g-restore .g-initial {
  left: -100%;
}
.g-span-3 .g-restore {
  margin-right: 63.64%;
}
.g-col-3 .g-restore .g-12,
.g-col-3 .g-restore .g-initial {
  left: -200%;
}
.g-span-4 .g-restore {
  margin-right: 73.33%;
}
.g-col-4 .g-restore .g-12,
.g-col-4 .g-restore .g-initial {
  left: -300%;
}
.g-span-5 .g-restore {
  margin-right: 78.95%;
}
.g-col-5 .g-restore .g-12,
.g-col-5 .g-restore .g-initial {
  left: -400%;
}
.g-span-6 .g-restore {
  margin-right: 82.61%;
}
.g-col-6 .g-restore .g-12,
.g-col-6 .g-restore .g-initial {
  left: -500%;
}
.g-span-7 .g-restore {
  margin-right: 85.19%;
}
.g-col-7 .g-restore .g-12,
.g-col-7 .g-restore .g-initial {
  left: -600%;
}
.g-span-8 .g-restore {
  margin-right: 87.1%;
}
.g-col-8 .g-restore .g-12,
.g-col-8 .g-restore .g-initial {
  left: -700%;
}
.g-span-9 .g-restore {
  margin-right: 88.57%;
}
.g-col-9 .g-restore .g-12,
.g-col-9 .g-restore .g-initial {
  left: -800%;
}
.g-span-10 .g-restore {
  margin-right: 89.74%;
}
.g-col-10 .g-restore .g-12,
.g-col-10 .g-restore .g-initial {
  left: -900%;
}
.g-span-11 .g-restore {
  margin-right: 90.7%;
}
.g-col-11 .g-restore .g-12,
.g-col-11 .g-restore .g-initial {
  left: -1000%;
}
.g-span-12 .g-restore {
  margin-right: 91.49%;
}
.g-col-12 .g-restore .g-12,
.g-col-12 .g-restore .g-initial {
  left: -1100%;
}

.g-48 {
  padding-right: 89.53%;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *padding-right: 0;
  *margin-right: 89.53%;
}
.g-48,
.g-row {
  *zoom: 1;
}
.g-48:before,
.g-48:after,
.g-row:before,
.g-row:after {
  clear: both;
  content: '';
  display: block;
}
.g-first {
  clear: left;
}
.g-span-1,
.g-span-2,
.g-span-3,
.g-span-4,
.g-span-5,
.g-span-6,
.g-span-7,
.g-span-8,
.g-span-9,
.g-span-10,
.g-span-11,
.g-span-12,
.g-span-13,
.g-span-14,
.g-span-15,
.g-span-16,
.g-span-17,
.g-span-18,
.g-span-19,
.g-span-20,
.g-span-21,
.g-span-22,
.g-span-23,
.g-span-24,
.g-span-25,
.g-span-26,
.g-span-27,
.g-span-28,
.g-span-29,
.g-span-30,
.g-span-31,
.g-span-32,
.g-span-33,
.g-span-34,
.g-span-35,
.g-span-36,
.g-span-37,
.g-span-38,
.g-span-39,
.g-span-40,
.g-span-41,
.g-span-42,
.g-span-43,
.g-span-44,
.g-span-45,
.g-span-46,
.g-span-47,
.g-span-48 {
  float: left;
  position: relative;
  *display: inline;
}
.g-span-1 {
  margin-right: -15%;
  width: 15%;
}
.g-col-1 {
  left: 0%;
}
.g-span-2 {
  margin-right: -35%;
  width: 35%;
}
.g-col-2 {
  left: 20%;
}
.g-span-3 {
  margin-right: -55%;
  width: 55%;
}
.g-col-3 {
  left: 40%;
}
.g-span-4 {
  margin-right: -75%;
  width: 75%;
}
.g-col-4 {
  left: 60%;
}
.g-span-5 {
  margin-right: -95%;
  width: 95%;
}
.g-col-5 {
  left: 80%;
}
.g-span-6 {
  margin-right: -115%;
  width: 115%;
}
.g-col-6 {
  left: 100%;
}
.g-span-7 {
  margin-right: -135%;
  width: 135%;
}
.g-col-7 {
  left: 120%;
}
.g-span-8 {
  margin-right: -155%;
  width: 155%;
}
.g-col-8 {
  left: 140%;
}
.g-span-9 {
  margin-right: -175%;
  width: 175%;
}
.g-col-9 {
  left: 160%;
}
.g-span-10 {
  margin-right: -195%;
  width: 195%;
}
.g-col-10 {
  left: 180%;
}
.g-span-11 {
  margin-right: -215%;
  width: 215%;
}
.g-col-11 {
  left: 200%;
}
.g-span-12 {
  margin-right: -235%;
  width: 235%;
}
.g-col-12 {
  left: 220%;
}
.g-span-13 {
  margin-right: -255%;
  width: 255%;
}
.g-col-13 {
  left: 240%;
}
.g-span-14 {
  margin-right: -275%;
  width: 275%;
}
.g-col-14 {
  left: 260%;
}
.g-span-15 {
  margin-right: -295%;
  width: 295%;
}
.g-col-15 {
  left: 280%;
}
.g-span-16 {
  margin-right: -315%;
  width: 315%;
}
.g-col-16 {
  left: 300%;
}
.g-span-17 {
  margin-right: -335%;
  width: 335%;
}
.g-col-17 {
  left: 320%;
}
.g-span-18 {
  margin-right: -355%;
  width: 355%;
}
.g-col-18 {
  left: 340%;
}
.g-span-19 {
  margin-right: -375%;
  width: 375%;
}
.g-col-19 {
  left: 360%;
}
.g-span-20 {
  margin-right: -395%;
  width: 395%;
}
.g-col-20 {
  left: 380%;
}
.g-span-21 {
  margin-right: -415%;
  width: 415%;
}
.g-col-21 {
  left: 400%;
}
.g-span-22 {
  margin-right: -435%;
  width: 435%;
}
.g-col-22 {
  left: 420%;
}
.g-span-23 {
  margin-right: -455%;
  width: 455%;
}
.g-col-23 {
  left: 440%;
}
.g-span-24 {
  margin-right: -475%;
  width: 475%;
}
.g-col-24 {
  left: 460%;
}
.g-span-25 {
  margin-right: -495%;
  width: 495%;
}
.g-col-25 {
  left: 480%;
}
.g-span-26 {
  margin-right: -515%;
  width: 515%;
}
.g-col-26 {
  left: 500%;
}
.g-span-27 {
  margin-right: -535%;
  width: 535%;
}
.g-col-27 {
  left: 520%;
}
.g-span-28 {
  margin-right: -555%;
  width: 555%;
}
.g-col-28 {
  left: 540%;
}
.g-span-29 {
  margin-right: -575%;
  width: 575%;
}
.g-col-29 {
  left: 560%;
}
.g-span-30 {
  margin-right: -595%;
  width: 595%;
}
.g-col-30 {
  left: 580%;
}
.g-span-31 {
  margin-right: -615%;
  width: 615%;
}
.g-col-31 {
  left: 600%;
}
.g-span-32 {
  margin-right: -635%;
  width: 635%;
}
.g-col-32 {
  left: 620%;
}
.g-span-33 {
  margin-right: -655%;
  width: 655%;
}
.g-col-33 {
  left: 640%;
}
.g-span-34 {
  margin-right: -675%;
  width: 675%;
}
.g-col-34 {
  left: 660%;
}
.g-span-35 {
  margin-right: -695%;
  width: 695%;
}
.g-col-35 {
  left: 680%;
}
.g-span-36 {
  margin-right: -715%;
  width: 715%;
}
.g-col-36 {
  left: 700%;
}
.g-span-37 {
  margin-right: -735%;
  width: 735%;
}
.g-col-37 {
  left: 720%;
}
.g-span-38 {
  margin-right: -755%;
  width: 755%;
}
.g-col-38 {
  left: 740%;
}
.g-span-39 {
  margin-right: -775%;
  width: 775%;
}
.g-col-39 {
  left: 760%;
}
.g-span-40 {
  margin-right: -795%;
  width: 795%;
}
.g-col-40 {
  left: 780%;
}
.g-span-41 {
  margin-right: -815%;
  width: 815%;
}
.g-col-41 {
  left: 800%;
}
.g-span-42 {
  margin-right: -835%;
  width: 835%;
}
.g-col-42 {
  left: 820%;
}
.g-span-43 {
  margin-right: -855%;
  width: 855%;
}
.g-col-43 {
  left: 840%;
}
.g-span-44 {
  margin-right: -875%;
  width: 875%;
}
.g-col-44 {
  left: 860%;
}
.g-span-45 {
  margin-right: -895%;
  width: 895%;
}
.g-col-45 {
  left: 880%;
}
.g-span-46 {
  margin-right: -915%;
  width: 915%;
}
.g-col-46 {
  left: 900%;
}
.g-span-47 {
  margin-right: -935%;
  width: 935%;
}
.g-col-47 {
  left: 920%;
}
.g-span-48 {
  margin-right: -955%;
  width: 955%;
}
.g-col-48 {
  left: 940%;
}
/**/
.g-col-1.g-main-col-1 {
  width: 545%;
  margin-right: -545%;
}
.l-body-wrap .g-col-30.g-main-col-2:before {
  content: '';
  background: #cccccc;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  left: -4.7%;
}
/*.g-col-29.g-main-col-2 {
    left: 571%;
	width: 374%;
	margin-right: -374%;
}

.g-col-38.g-main-col-2 {
    float: right;
    left: 0;
    margin-right: -850%;
    right: 0;
    width: 240px;
}*/
/**/
.g-restore,
.g-initial {
  position: relative;
}
.g-restore .g-12 {
  padding-right: 0;
  margin-right: -400%;
}
.g-restore .g-initial {
  margin-right: -1075%;
}
.g-span-1 .g-restore {
  margin-right: -33.33%;
}
.g-col-1 .g-restore .g-12,
.g-col-1 .g-restore .g-initial {
  left: 0%;
}
.g-span-2 .g-restore {
  margin-right: 42.86%;
}
.g-col-2 .g-restore .g-12,
.g-col-2 .g-restore .g-initial {
  left: -100%;
}
.g-span-3 .g-restore {
  margin-right: 63.64%;
}
.g-col-3 .g-restore .g-12,
.g-col-3 .g-restore .g-initial {
  left: -200%;
}
.g-span-4 .g-restore {
  margin-right: 73.33%;
}
.g-col-4 .g-restore .g-12,
.g-col-4 .g-restore .g-initial {
  left: -300%;
}
.g-span-5 .g-restore {
  margin-right: 78.95%;
}
.g-col-5 .g-restore .g-12,
.g-col-5 .g-restore .g-initial {
  left: -400%;
}
.g-span-6 .g-restore {
  margin-right: 82.61%;
}
.g-col-6 .g-restore .g-12,
.g-col-6 .g-restore .g-initial {
  left: -500%;
}
.g-span-7 .g-restore {
  margin-right: 85.19%;
}
.g-col-7 .g-restore .g-12,
.g-col-7 .g-restore .g-initial {
  left: -600%;
}
.g-span-8 .g-restore {
  margin-right: 87.1%;
}
.g-col-8 .g-restore .g-12,
.g-col-8 .g-restore .g-initial {
  left: -700%;
}
.g-span-9 .g-restore {
  margin-right: 88.57%;
}
.g-col-9 .g-restore .g-12,
.g-col-9 .g-restore .g-initial {
  left: -800%;
}
.g-span-10 .g-restore {
  margin-right: 89.74%;
}
.g-col-10 .g-restore .g-12,
.g-col-10 .g-restore .g-initial {
  left: -900%;
}
.g-span-11 .g-restore {
  margin-right: 90.7%;
}
.g-col-11 .g-restore .g-12,
.g-col-11 .g-restore .g-initial {
  left: -1000%;
}
.g-span-12 .g-restore {
  margin-right: 91.49%;
}
.g-col-12 .g-restore .g-12,
.g-col-12 .g-restore .g-initial {
  left: -1100%;
}
/* =VARIABLES (LESS @variables do not get compiled into the final CSS file)
   ---------------------------------------------------------------------------------------------------- */
/*белый*/
/*черный*/
/*белый*/
/*черный*/
/* синяя ссылка */
/* зеленая ссылка в меню футера */
/* зеленый текст */
/* серый текст */
/* оранжевый текст */
/* фон серый*/
/* фон оранжевый */
/* фон серый*/
/* фон зеленый темный */
/* фон зеленый яркий */
/* цвет чуть заметной полоски в футере */
/*@import "less/global/_colors.less";*/
.b-pushtop-16 {
  margin-top: -16px;
}
/*надо поднять специфичность этих классов*/
body .push-left {
  float: left;
}
body .push-right {
  float: right;
}
body .align_center {
  text-align: center;
}
body .float_none {
  float: none;
}
body .nowrap {
  white-space: nowrap;
}
.css-inline-block,
.i-inline-block {
  display: inline-block;
  float: none;
}
/* new clearfix */
.context:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
/*модификаторы, позволяющие вытолкнуть блок слева*/
.i-hightlinght_push-left_10 {
  padding-left: 10px;
}
.i-hightlinght_push-left_20 {
  padding-left: 20px;
}
.i-hightlinght_push-left_60 {
  padding-left: 60px;
}
.i-hightlinght_push-left_180 {
  padding-left: 180px;
}
html {
  -webkit-font-smoothing: antialiased;
  height: 100%;
}
body {
  font-size: 13px;
  min-width: 950px;
}
#body-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 0px;
}
#body {
  margin-bottom: 45px;
}
.l-body {
  margin-bottom: -140px;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  overflow: hidden;
}
.l-push {
  height: 140px;
}
.l-footer {
  background: #6a920f;
  height: 140px;
  overflow: hidden;
  font-family: Arial, Helvetica, Sans-Serif;
  z-index: 4;
}
.l-footer .l-width {
  z-index: 5;
}
.l-footer_v5 {
  margin-top: -140px;
}
#v5-body-wrap {
  padding-bottom: 150px !important;
}
/*для внутренних страниц сайта*/
.l-header-wrap {
  background: #6a920f;
  height: 45px;
  position: relative;
  z-index: 4;
}
.l-body-wrap {
  z-index: 1;
  position: relative;
}
.l-body-wrap .l-width {
  padding-bottom: 27px;
  padding-top: 16px;
}
.l-width {
  max-width: 1280px;
  min-width: 950px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1%;
  position: relative;
  /*width: 1284px;*/
}
.l-width-old {
  padding: 0 0%;
  position: relative;
}
.l-width-vertical-separator {
  background: #cccccc;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  right: -2%;
}
.l-width-col-2-pad {
  position: relative;
  padding-right: 2%;
  overflow: hidden;
}
.l-width-col-3-pad {
  padding-left: 1%;
}
.l-body-wrap .l-width-col-3-pad {
  margin-top: -16px;
}
.page-col-1-span-15-pad {
  padding-right: 5px;
}
.b-header-logo__img {
  position: relative;
  max-height: 35px;
  display: block;
}
.b-header-logo {
  position: relative;
  z-index: 1;
  display: block;
  float: left;
  padding: 5px 10px;
  height: 35px;
  background: #5f7e13;
  text-align: center;
}
.b-header-menu__item_hidemenu_yes {
  position: relative;
}
.b-header-menu__item_hidemenu_yes .b-header-menu__item__link:after {
  display: none !important;
  content: none;
}
.b-header-menu__item__sub.b-header-menu__hidemenu {
  background: #f2ffd3;
  padding-top: 6px;
  padding-bottom: 5px;
  min-width: 100px;
  width: auto !important;
  position: absolute;
  z-index: 1000;
  display: none;
  left: 0 !important;
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.b-header-menu__hidemenu__item {
  float: none;
  list-style: none;
}
a.b-header-menu__hidemenu__item__link {
  display: block;
  padding: 9px 10px 9px;
  height: auto;
  color: #3f530c;
  text-decoration: none;
  line-height: 16px;
}
a.b-header-menu__hidemenu__item__link:visited {
  color: #3f530c;
}
a.b-header-menu__hidemenu__item__link:hover {
  background: #e1f2ba;
  color: #3f530c;
}
.b-header-menu__hidemenu__item_current a.b-header-menu__hidemenu__item__link {
  background: #e1f2ba;
  color: #3f530c;
}
.b-header-menu__hidemenu__item_current a.b-header-menu__hidemenu__item__link:visited {
  color: #3f530c;
}
.b-header-menu__hidemenu__item_current a.b-header-menu__hidemenu__item__link:hover {
  color: #3f530c;
}
.b-header-menu__item {
  float: left;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
a.b-header-menu__item__link {
  position: relative;
  display: block;
  padding: 0px 10px 0px 10px;
  height: 45px;
  outline: none;
  color: #fff;
  text-decoration: none;
  line-height: 47px;
}
a.b-header-menu__item__link:visited {
  color: #fff;
}
a.b-header-menu__item__link:hover {
  color: #fff;
}
a.b-header-menu__item__link:after {
  position: absolute;
  top: 11px;
  right: -1px;
  display: inline-block;
  width: 1px;
  height: 25px;
  background-color: #9db959;
  content: '';
}
.b-header-menu__item_current .b-header-menu__item__link,
.b-header-menu__item.cur .b-header-menu__item__link {
  background-color: #e1f2ba;
  color: #3f530c;
}
.b-header-menu__item_current .b-header-menu__item__link:visited,
.b-header-menu__item.cur .b-header-menu__item__link:visited {
  color: #3f530c;
}
.b-header-menu__item_current .b-header-menu__item__link:hover,
.b-header-menu__item.cur .b-header-menu__item__link:hover {
  color: #3f530c;
}
.b-header-menu__item_hidemenu_yes.cur .b-header-menu__item__link {
  background-image: url(../css/less/blocks/b-header-menu/img/b-header-arr-dwn-.png);
}
.b-header-menu__item_hidemenu_yes .b-header-menu__item__link {
  padding-right: 18px;
  border: none;
  background-image: url(../css/less/blocks/b-header-menu/img/b-header-arr-dwn.png);
  background-position: right 24px;
  background-repeat: no-repeat;
  text-decoration: none;
}
.b-header-menu__item_current.b-header-menu__item_hidemenu_yes .b-header-menu__item__link {
  background-color: transparent;
  color: #fff;
}
.b-header-menu__item_current.b-header-menu__item_hidemenu_yes .b-header-menu__item__link:visited {
  color: #fff;
}
.b-header-menu__item_current.b-header-menu__item_hidemenu_yes .b-header-menu__item__link:hover {
  color: #fff;
}
.b-header-menu__item__sub {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 1000;
  display: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  background: #f2ffd3;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
}
.b-header-menu__item__sub .l-width {
  background: #f2ffd3;
}
.b-header-menu__item__sub__wrap {
  padding-top: 19px;
  padding-bottom: 17px;
}
.b-header-menu__item__sub__wrap__col {
  border-left: 1px solid #e1efbf;
}
.b-header-menu__item__sub__wrap__col_separator_no {
  border-left: none;
}
.b-header-menu__item__sub__wrap__col_for_ads {
  padding-left: 32px;
}
.b-header-menu__item__sub__wrap__col__list {
  margin-top: -6px;
  margin-bottom: -6px;
  padding-left: 18px;
  list-style-type: none;
  font-size: 13px;
}
.b-header-menu__item__sub__wrap__col__list__item {
  margin-top: 7px;
  margin-bottom: 12px;
  padding: 0px;
  list-style: none;
  line-height: 1.3;
}
.b-header-menu__item__sub__wrap__col__list__item_mb_24 {
  margin-bottom: 24px;
}
.b-header-menu__item__sub__wrap__col__list__item_for_ads {
  padding-left: 12px;
}
.b-header-menu__item__sub__wrap__col__list__item__link {
  color: #4d660f;
}
a.b-header-menu__item__sub__wrap__col__list__item__link,
.b-header-menu__item__sub__wrap__col__list__item__link {
  color: #4d660f;
  text-decoration: none;
  border-bottom: 1px solid #bccd92;
}
a.b-header-menu__item__sub__wrap__col__list__item__link:visited {
  color: #4d660f;
}
a.b-header-menu__item__sub__wrap__col__list__item__link:hover {
  color: #FF5400;
  border-bottom: 1px solid #FFCBB2;
}
a.b-header-menu__item__sub__wrap__col__list__item__link_size_l,
.b-header-menu__item__sub__wrap__col__list__item__link_size_l {
  font-size: 1.385em;
}
.b-submenu-item__bank-zajavka {
  padding-left: 12px;
}
.b-submenu-item__bank-zajavka_for_ads {
  display: inline-block;
  padding-left: 18px;
  margin-bottom: 6px;
}
a.b-submenu-item__bank-zajavka__btn {
  color: #fff !important;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  background: #ff8f00;
  padding-top: 10px;
  padding-bottom: 7px;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 5px;
}
.b-submenu-item__bank-zajavka__text {
  color: #3f530c;
  font-size: 11px;
  line-height: 13px;
  font-style: italic;
  text-align: center;
}
.b-submenu-item__day-theme {
  padding-left: 12px;
}
.b-submenu-item__day-theme__label {
  font-size: 11px;
  margin-bottom: 5px;
}
a.b-submenu-item__day-theme__link {
  font-size: 18px;
  line-height: 21px;
  color: #3f530c;
  text-decoration: none;
  border-bottom: 1px solid #c1d09f;
}
a.b-submenu-item__day-theme__link:visited {
  color: #3f530c;
}
a.b-submenu-item__day-theme__link:hover {
  border-bottom: 1px solid #FFCBB2;
  color: #FF5400;
}
/**/
.b-submenu-item__courses {
  text-align: center;
  float: left;
  margin-left: 12px;
}
.b-submenu-item__courses__table {
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
}
.b-submenu-item__courses__link {
  font-size: 13px;
}
.b-submenu-item__courses__table__cell-1 {
  font-size: 13px;
  line-height: 16px;
  width: 150px;
  vertical-align: middle;
}
.b-submenu-item__courses__table__cell-2 {
  vertical-align: top;
}
.b-submenu-item__courses .b-bank-item-miniCard__courses__table {
  margin: -5px 0 0;
}
.b-submenu-item__courses .b-bank-item-miniCard__courses__table__body_last {
  padding-right: 0px;
}
.b-submenu-item__courses__important {
  color: #84A830;
  text-decoration: none;
}
.js-header-menu {
  overflow: hidden;
  height: 45px;
}
.b-header-menu {
  margin: 0px;
  margin-right: -100%;
  padding: 0px;
  width: 100%;
}
.b-header-menu__inner-count {
  margin-left: 4px;
  color: #808080;
  font-size: 11px;
}
.b-header-menu__extra-heading {
  font-weight: normal;
  font-size: 12px;
}
#v5-frame .b-drop-menu__list li {
  margin-top: 5px;
  margin-bottom: 7px;
}
.b-header-search__subm {
  position: absolute;
  top: -1px;
  right: 2px;
  display: block;
  width: 27px;
  height: 27px;
  border: none;
  background: url(../css/less/blocks/b-header-search/img/b-header-search-btn.png) center center no-repeat;
  cursor: pointer;
  cursor: hand;
}
.b-header-search_state_active.b-header-search {
  background-color: #FFF;
}
.b-header-search_state_active input.b-header-search__text {
  color: #000;
}
.b-header-search_state_active .b-header-search__subm {
  background: url(../css/less/blocks/b-header-search/img/b-header-search-btn-.png) center center no-repeat;
}
input.b-header-search__text {
  border: none;
  background: none;
  color: #fff;
  font-size: 12px;
  height: 22px;
  padding-top: 1px;
  outline: none;
  font-family: Arial, Tahoma, Verdana;
}
.b-header-search_layout_oldsite {
  margin-left: -157px;
}
.b-header-search {
  float: left;
  position: relative;
  top: 11px;
  width: 60%;
  margin: 0px;
  padding: 0 0 0 6px;
  background-color: #afc971;
  box-shadow: 0 2px 4px 0px #8CA15A inset;
  border-radius: 5px;
  border-bottom: 1px solid #a8c468;
  border-left: 1px solid #8ca15a;
  border-right: 1px solid #8ca15a;
  border-top: 1px solid #809352;
}
.b-header-auth__tab {
  padding: 0 10px;
  width: 1%;
  height: 45px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}
a.b-header-auth__tab__link {
  position: relative;
  top: -1px;
  margin: 0 2px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
a.b-header-auth__tab__link:visited {
  color: #fff;
}
a.b-header-auth__tab__link:hover {
  color: #fff;
}
.b-header-auth__tab__logined-user {
  position: relative;
}
.b-header-auth__tab__logined-user-ellipsed {
  position: relative;
  top: 1px;
  overflow: hidden;
  width: 120px;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.b-header-auth__tab__logout-link {
  position: absolute;
  top: 6px;
  right: 3px;
}
a.b-header-auth__tab__logined-user__link {
  position: relative;
  padding-left: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}
a.b-header-auth__tab__logined-user__link:visited {
  color: #fff;
}
a.b-header-auth__tab__logined-user__link:hover {
  color: #fff;
}
.b-header-auth__tab__logined-user__link__pic {
  position: absolute;
  top: -3px;
  left: 0px;
  display: block;
  width: 20px;
  height: 20px;
  background-position: center center;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  box-shadow: 0 0 3px #8fa856;
}
a.b-header-auth__tab__mail-link {
  position: relative;
  top: 1px;
  margin-right: 5px;
  padding-right: 23px;
  background: url(../css/less/blocks/b-header-auth/img/b-header-mail.png) right -44px no-repeat;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
a.b-header-auth__tab__mail-link:visited {
  color: #fff;
}
a.b-header-auth__tab__mail-link:hover {
  color: #fff;
}
.b-header-auth__tab__mail-link__count {
  position: absolute;
  top: -7px;
  right: -3px;
  z-index: 100;
  display: none;
  padding: 2px 2px 1px 1px;
  border-radius: 3px;
  background: #ff5400;
  box-shadow: 1px 1px 3px 0px #566d1f;
  font-size: 10px;
}
.b-header-auth__tab__mail-link__label {
  text-decoration: none;
}
@media only screen and (max-width: 1300px) {
  .b-header-auth__tab__mail-link__label {
    display: none;
  }
}
a.b-header-auth__tab__mail-link_has_new {
  background-position: right 1px;
}
.b-header-auth__tab__mail-link_has_new .b-header-auth__tab__mail-link__count {
  display: block;
}
.b-header-auth__tab_active_yes {
  background: #a0bc60;
}
.b-header-auth {
  position: relative;
  width: 100%;
  border-collapse: collapse;
}
.page-fixed-right .b-header-auth {
  float: right;
  width: 240px;
}
#v5-frame .b-header-auth {
  float: right;
  width: 240px;
}
/*TODO: привести к общему модификатору img-pic*/
.b-icon {
  position: relative;
  display: inline-block;
}
.b-icon_pic_login {
  position: relative;
  width: 10px;
  height: 11px;
  background: url(../css/less/blocks/b-icon/img/b-header-login.png) 0 0 no-repeat;
  display: inline-block;
  margin-right: 5px;
  top: 1px;
}
.b-icon_pic_header-vk {
  background: url(../css/less/blocks/b-icon/img/b-header-vk-ico.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.b-icon_pic_header-fb {
  background: url(../css/less/blocks/b-icon/img/b-header-fb-ico.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.b-icon_pic_header-tw {
  background: url(../css/less/blocks/b-icon/img/b-header-tw-ico.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.b-icon-logout {
  background: url(../css/less/blocks/b-icon/img/logout.png);
  width: 9px;
  height: 9px;
  vertical-align: middle;
}
.b-icon_layout_whear-icon {
  position: relative;
  width: 35px;
  height: 26px;
  left: 0;
  top: 8px;
  background: url(../css/less/blocks/b-icon/img/v5-weather-icons.png) 0 0 no-repeat;
  margin-left: 1px;
}
.b-icon_img_weather-0 {
  background-position: 0 0;
}
.b-icon_img_weather-1 {
  background-position: 0 -26px;
}
.b-icon_img_weather-2 {
  background-position: 0 52px;
}
.b-username {
  position: relative;
  margin-left: 15px;
}
a.b-username,
a.b-username:visited,
a.b-username:hover,
a.b-username:active {
  border-bottom: 1px solid rgba(0, 120, 153, 0.3);
  color: #007899;
  text-decoration: none;
}
.username_sex_icon {
  position: absolute;
  top: 50%;
  left: -12px;
  display: block;
  margin-top: -4px;
  width: 10px;
  height: 10px;
  content: '';
}
.b-username_sex_male:before {
  position: absolute;
  top: 50%;
  left: -12px;
  display: block;
  margin-top: -4px;
  width: 10px;
  height: 10px;
  content: '';
  background: url(../css/less/blocks/b-username/img/user-m_off.gif) 0 0 no-repeat;
}
.b-username_sex_female:before {
  position: absolute;
  top: 50%;
  left: -12px;
  display: block;
  margin-top: -4px;
  width: 10px;
  height: 10px;
  content: '';
  background: url(../css/less/blocks/b-username/img/user-f_off.gif) 0 0 no-repeat;
}
.b-username_sex_male.b-username_status_online:before {
  background: url(../css/less/blocks/b-username/img/user-m.gif) 0 0 no-repeat;
}
.b-username_sex_female.b-username_status_online:before {
  background: url(../css/less/blocks/b-username/img/user-f.gif) 0 0 no-repeat;
}
.b-submenu-ads {
  padding-top: 0;
  padding-left: 0;
  list-style-type: none;
  line-height: 1.5;
}
.b-submenu-ads .b-submenu-ads__elem {
  margin-bottom: 20px;
}
.b-submenu-ads .b-submenu-ads__desc {
  overflow: hidden;
  margin-bottom: 0;
  margin-left: 50px;
  max-height: 36px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 12px;
}
.b-submenu-ads .b-submenu-ads__img-wrap {
  float: left;
  clear: both;
  overflow: hidden;
  width: 40px;
  height: 30px;
  text-align: center;
}
.b-submenu-ads .b-submenu-ads__img {
  max-width: 40px;
  max-height: 30px;
}
.b-submenu-ads .b-submenu-ads__price {
  margin-top: 2px;
  margin-left: 50px;
  color: #000;
  font-weight: bold;
  font-size: 12px;
}
.b-submenu-ads a.b-submenu-ads__link {
  border-bottom: 1px solid #bccd92;
  color: #4d660f;
  text-decoration: none;
}
.b-submenu-ads .b-submenu-ads__link:visited {
  color: #4d660f;
}
.b-submenu-ads .b-submenu-ads__link:hover {
  border-bottom: 1px solid #FFCBB2;
  color: #FF5400;
}
.b-footer-logo__pic {
  position: relative;
  top: 14px;
}
.b-footer-logo {
  display: inline-block;
  background: #5f7e13;
  height: 140px;
  float: left;
  width: 100px;
  text-align: center;
}
.b-footer-menu {
  overflow: hidden;
  margin: 0px;
  padding: 15px 0 7px 15px;
}
.b-footer-menu li {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  margin-right: 2px;
  margin-bottom: 2px;
}
.b-footer-menu li a {
  color: #e1f2ba;
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  outline: none;
}
.b-footer-menu li a:hover {
  color: #6a8e16;
  background: #d6eaaa;
}
.b-footer-menu li.cur a {
  color: #6a8e16;
  background: #d6eaaa;
}
.b-footer-links {
  float: left;
  margin: 0 20px 0 20px;
  font-size: 12px;
  line-height: 16px;
  padding: 11px 0 0 0;
}
.b-footer-links li {
  margin-bottom: 6px;
  padding: 0 0 0 5px;
  list-style: none;
}
.b-footer-links a {
  color: #ffffff;
  text-decoration: none;
}
.b-footer-links a:hover {
  border-bottom: 1px solid #ffffff;
}
.b-footer-seo {
  border-bottom: 1px solid #9cb958;
}
.b-footer-counters {
  float: right;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 0 20px;
  padding: 11px 0 0;
}


.layout{position:relative;-moz-box-sizing:border-box;box-sizing:border-box}.layout_height_global{min-height:100%}.layout_push-top_45{padding-top:45px}.layout_pull-bottom_140{margin-bottom:-140px}.layout__base{position:relative;-moz-box-sizing:content-box;box-sizing:content-box;margin:0 auto;padding:0 1%;padding-right:2.5%;min-width:960px;max-width:1280px}
.grid{position:relative;-moz-box-sizing:border-box;box-sizing:border-box;padding-right:96.09%}.grid:after,.grid:before{display:block;clear:both;content:''}.grid__module_first_yes{clear:left}.grid__module{position:relative;float:left}.grid__module_span_1{margin-right:-20%;width:20%}.grid__module_col_1{left:0}.grid__module_span_2{margin-right:-40%;width:40%}.grid__module_col_2{left:20%}.grid__module_span_3{margin-right:-60%;width:60%}.grid__module_col_3{left:40%}.grid__module_span_4{margin-right:-80%;width:80%}.grid__module_col_4{left:60%}.grid__module_span_5{margin-right:-100%;width:100%}.grid__module_col_5{left:80%}.grid__module_span_6{margin-right:-120%;width:120%}.grid__module_col_6{left:100%}.grid__module_span_7{margin-right:-140%;width:140%}.grid__module_col_7{left:120%}.grid__module_span_8{margin-right:-160%;width:160%}.grid__module_col_8{left:140%}.grid__module_span_9{margin-right:-180%;width:180%}.grid__module_col_9{left:160%}.grid__module_span_10{margin-right:-200%;width:200%}.grid__module_col_10{left:180%}.grid__module_span_11{margin-right:-220%;width:220%}.grid__module_col_11{left:200%}.grid__module_span_12{margin-right:-240%;width:240%}.grid__module_col_12{left:220%}.grid__module_span_13{margin-right:-260%;width:260%}.grid__module_col_13{left:240%}.grid__module_span_14{margin-right:-280%;width:280%}.grid__module_col_14{left:260%}.grid__module_span_15{margin-right:-300%;width:300%}.grid__module_col_15{left:280%}.grid__module_span_16{margin-right:-320%;width:320%}.grid__module_col_16{left:300%}.grid__module_span_17{margin-right:-340%;width:340%}.grid__module_col_17{left:320%}.grid__module_span_18{margin-right:-360%;width:360%}.grid__module_col_18{left:340%}.grid__module_span_19{margin-right:-380%;width:380%}.grid__module_col_19{left:360%}.grid__module_span_20{margin-right:-400%;width:400%}.grid__module_col_20{left:380%}.grid__module_span_21{margin-right:-420%;width:420%}.grid__module_col_21{left:400%}.grid__module_span_22{margin-right:-440%;width:440%}.grid__module_col_22{left:420%}.grid__module_span_23{margin-right:-460%;width:460%}.grid__module_col_23{left:440%}.grid__module_span_24{margin-right:-480%;width:480%}.grid__module_col_24{left:460%}.grid__module_span_25{margin-right:-500%;width:500%}.grid__module_col_25{left:480%}.grid__module_span_26{margin-right:-520%;width:520%}.grid__module_col_26{left:500%}.grid__module_span_27{margin-right:-540%;width:540%}.grid__module_col_27{left:520%}.grid__module_span_28{margin-right:-560%;width:560%}.grid__module_col_28{left:540%}.grid__module_span_29{margin-right:-580%;width:580%}.grid__module_col_29{left:560%}.grid__module_span_30{margin-right:-600%;width:600%}.grid__module_col_30{left:580%}.grid__module_span_31{margin-right:-620%;width:620%}.grid__module_col_31{left:600%}.grid__module_span_32{margin-right:-640%;width:640%}.grid__module_col_32{left:620%}.grid__module_span_33{margin-right:-660%;width:660%}.grid__module_col_33{left:640%}.grid__module_span_34{margin-right:-680%;width:680%}.grid__module_col_34{left:660%}.grid__module_span_35{margin-right:-700%;width:700%}.grid__module_col_35{left:680%}.grid__module_span_36{margin-right:-720%;width:720%}.grid__module_col_36{left:700%}.grid__module_span_37{margin-right:-740%;width:740%}.grid__module_col_37{left:720%}.grid__module_span_38{margin-right:-760%;width:760%}.grid__module_col_38{left:740%}.grid__module_span_39{margin-right:-780%;width:780%}.grid__module_col_39{left:760%}.grid__module_span_40{margin-right:-800%;width:800%}.grid__module_col_40{left:780%}.grid__module_span_41{margin-right:-820%;width:820%}.grid__module_col_41{left:800%}.grid__module_span_42{margin-right:-840%;width:840%}.grid__module_col_42{left:820%}.grid__module_span_43{margin-right:-860%;width:860%}.grid__module_col_43{left:840%}.grid__module_span_44{margin-right:-880%;width:880%}.grid__module_col_44{left:860%}.grid__module_span_45{margin-right:-900%;width:900%}.grid__module_col_45{left:880%}.grid__module_span_46{margin-right:-920%;width:920%}.grid__module_col_46{left:900%}.grid__module_span_47{margin-right:-940%;width:940%}.grid__module_col_47{left:920%}.grid__module_span_48{margin-right:-960%;width:960%}.grid__module_col_48{left:940%}.grid__module_span_49{margin-right:-980%;width:980%}.grid__module_col_49{left:960%}.grid__module_span_50{margin-right:-1000%;width:1000%}.grid__module_col_50{left:980%}.grid__module_span_51{margin-right:-1020%;width:1020%}.grid__module_col_51{left:1000%}.grid__module_span_52{margin-right:-1040%;width:1040%}.grid__module_col_52{left:1020%}.grid__module_span_53{margin-right:-1060%;width:1060%}.grid__module_col_53{left:1040%}.grid__module_span_54{margin-right:-1080%;width:1080%}.grid__module_col_54{left:1060%}.grid__module_span_55{margin-right:-1100%;width:1100%}.grid__module_col_55{left:1080%}.grid__module_span_56{margin-right:-1120%;width:1120%}.grid__module_col_56{left:1100%}.grid__module_span_57{margin-right:-1140%;width:1140%}.grid__module_col_57{left:1120%}.grid__module_span_58{margin-right:-1160%;width:1160%}.grid__module_col_58{left:1140%}.grid__module_span_59{margin-right:-1180%;width:1180%}.grid__module_col_59{left:1160%}.grid__module_span_60{margin-right:-1200%;width:1200%}.grid__module_col_60{left:1180%}.grid__module_span_61{margin-right:-1220%;width:1220%}.grid__module_col_61{left:1200%}.grid__module_span_62{margin-right:-1240%;width:1240%}.grid__module_col_62{left:1220%}.grid__module_span_63{margin-right:-1260%;width:1260%}.grid__module_col_63{left:1240%}.grid__module_span_64{margin-right:-1280%;width:1280%}.grid__module_col_64{left:1260%}.grid__module_span_65{margin-right:-1300%;width:1300%}.grid__module_col_65{left:1280%}.grid__module_span_66{margin-right:-1320%;width:1320%}.grid__module_col_66{left:1300%}.grid__module_span_67{margin-right:-1340%;width:1340%}.grid__module_col_67{left:1320%}.grid__module_span_68{margin-right:-1360%;width:1360%}.grid__module_col_68{left:1340%}.grid__module_span_69{margin-right:-1380%;width:1380%}.grid__module_col_69{left:1360%}.grid__module_span_70{margin-right:-1400%;width:1400%}.grid__module_col_70{left:1380%}.grid__module_span_71{margin-right:-1420%;width:1420%}.grid__module_col_71{left:1400%}.grid__module_span_72{margin-right:-1440%;width:1440%}.grid__module_col_72{left:1420%}.grid__module_span_73{margin-right:-1460%;width:1460%}.grid__module_col_73{left:1440%}.grid__module_span_74{margin-right:-1480%;width:1480%}.grid__module_col_74{left:1460%}.grid__module_span_75{margin-right:-1500%;width:1500%}.grid__module_col_75{left:1480%}.grid__module_span_76{margin-right:-1520%;width:1520%}.grid__module_col_76{left:1500%}.grid__module_span_77{margin-right:-1540%;width:1540%}.grid__module_col_77{left:1520%}.grid__module_span_78{margin-right:-1560%;width:1560%}.grid__module_col_78{left:1540%}.grid__module_span_79{margin-right:-1580%;width:1580%}.grid__module_col_79{left:1560%}.grid__module_span_80{margin-right:-1600%;width:1600%}.grid__module_col_80{left:1580%}.grid__module_span_81{margin-right:-1620%;width:1620%}.grid__module_col_81{left:1600%}.grid__module_span_82{margin-right:-1640%;width:1640%}.grid__module_col_82{left:1620%}.grid__module_span_83{margin-right:-1660%;width:1660%}.grid__module_col_83{left:1640%}.grid__module_span_84{margin-right:-1680%;width:1680%}.grid__module_col_84{left:1660%}.grid__module_span_85{margin-right:-1700%;width:1700%}.grid__module_col_85{left:1680%}.grid__module_span_86{margin-right:-1720%;width:1720%}.grid__module_col_86{left:1700%}.grid__module_span_87{margin-right:-1740%;width:1740%}.grid__module_col_87{left:1720%}.grid__module_span_88{margin-right:-1760%;width:1760%}.grid__module_col_88{left:1740%}.grid__module_span_89{margin-right:-1780%;width:1780%}.grid__module_col_89{left:1760%}.grid__module_span_90{margin-right:-1800%;width:1800%}.grid__module_col_90{left:1780%}.grid__module_span_91{margin-right:-1820%;width:1820%}.grid__module_col_91{left:1800%}.grid__module_span_92{margin-right:-1840%;width:1840%}.grid__module_col_92{left:1820%}.grid__module_span_93{margin-right:-1860%;width:1860%}.grid__module_col_93{left:1840%}.grid__module_span_94{margin-right:-1880%;width:1880%}.grid__module_col_94{left:1860%}.grid__module_span_95{margin-right:-1900%;width:1900%}.grid__module_col_95{left:1880%}.grid__module_span_96{margin-right:-1920%;width:1920%}.grid__module_col_96{left:1900%}.grid__module_span_97{margin-right:-1940%;width:1940%}.grid__module_col_97{left:1920%}.grid__module_span_98{margin-right:-1960%;width:1960%}.grid__module_col_98{left:1940%}.grid__module_span_99{margin-right:-1980%;width:1980%}.grid__module_col_99{left:1960%}.grid__module_span_100{margin-right:-2000%;width:2000%}.grid__module_col_100{left:1980%}.grid__module_span_101{margin-right:-2020%;width:2020%}.grid__module_col_101{left:2000%}.grid__module_span_102{margin-right:-2040%;width:2040%}.grid__module_col_102{left:2020%}.grid__module_span_103{margin-right:-2060%;width:2060%}.grid__module_col_103{left:2040%}.grid__module_span_104{margin-right:-2080%;width:2080%}.grid__module_col_104{left:2060%}.grid__module_span_105{margin-right:-2100%;width:2100%}.grid__module_col_105{left:2080%}.grid__module_span_106{margin-right:-2120%;width:2120%}.grid__module_col_106{left:2100%}.grid__module_span_107{margin-right:-2140%;width:2140%}.grid__module_col_107{left:2120%}.grid__module_span_108{margin-right:-2160%;width:2160%}.grid__module_col_108{left:2140%}.grid__module_span_109{margin-right:-2180%;width:2180%}.grid__module_col_109{left:2160%}.grid__module_span_110{margin-right:-2200%;width:2200%}.grid__module_col_110{left:2180%}.grid__module_span_111{margin-right:-2220%;width:2220%}.grid__module_col_111{left:2200%}.grid__module_span_112{margin-right:-2240%;width:2240%}.grid__module_col_112{left:2220%}.grid__module_span_113{margin-right:-2260%;width:2260%}.grid__module_col_113{left:2240%}.grid__module_span_114{margin-right:-2280%;width:2280%}.grid__module_col_114{left:2260%}.grid__module_span_115{margin-right:-2300%;width:2300%}.grid__module_col_115{left:2280%}.grid__module_span_116{margin-right:-2320%;width:2320%}.grid__module_col_116{left:2300%}.grid__module_span_117{margin-right:-2340%;width:2340%}.grid__module_col_117{left:2320%}.grid__module_span_118{margin-right:-2360%;width:2360%}.grid__module_col_118{left:2340%}.grid__module_span_119{margin-right:-2380%;width:2380%}.grid__module_col_119{left:2360%}.grid__module_span_120{margin-right:-2400%;width:2400%}.grid__module_col_120{left:2380%}.grid__module_span_121{margin-right:-2420%;width:2420%}.grid__module_col_121{left:2400%}.grid__module_span_122{margin-right:-2440%;width:2440%}.grid__module_col_122{left:2420%}.grid__module_span_123{margin-right:-2460%;width:2460%}.grid__module_col_123{left:2440%}.grid__module_span_124{margin-right:-2480%;width:2480%}.grid__module_col_124{left:2460%}.grid__module_span_125{margin-right:-2500%;width:2500%}.grid__module_col_125{left:2480%}.grid__module_span_126{margin-right:-2520%;width:2520%}.grid__module_col_126{left:2500%}.grid__module_span_127{margin-right:-2540%;width:2540%}.grid__module_col_127{left:2520%}.grid__module_span_128{margin-right:-2560%;width:2560%}.grid__module_col_128{left:2540%}
.submenu__list_separator_left{-moz-box-sizing:border-box;box-sizing:border-box;padding-left:30%;border-left:1px solid #e6f6c5}.submenu__list_tight_yes .submenu__elem{margin-bottom:5px}.submenu__list_tight_yes .submenu__elem_size_l{margin-bottom:9px}.submenu__elem{margin-bottom:9px;font-size:14px!important;line-height:1.3}.submenu__elem_size_l{font-size:18px!important}.submenu__link{padding-top:2px;border-bottom:1px solid #bccd92;color:#4d660f;text-decoration:none}.submenu__link:visited{color:#4d660f}.submenu__link:hover{border-bottom-color:#ffcbb2;color:#ff5400}.submenu__elem_hilite_yes .submenu__link{border-bottom-color:#e0ba9b;color:#b51b1b}.submenu__elem_hilite_yes .submenu__link:hover{border-bottom-color:#ffcbb2;color:#ff5400}
.case{position:relative;display:block;float:left;margin-right:1%;width:22%;height:130px;background:none center center no-repeat transparent;box-shadow:inset 0 -40px 50px rgba(0,0,0,.6);font-size:13px;-webkit-transition:box-shadow .2s;-o-transition:box-shadow .2s;transition:box-shadow .2s}.case:hover{box-shadow:inset 0 -40px 40px rgba(0,0,0,.3)}.case__desc{position:absolute;right:0;bottom:0;left:0;padding:5px 10px 5px 7px;background-color:#6a920f;background-color:rgba(0,0,0,0);color:#fff;line-height:1.3}.case__comments{color:#bbb;font-size:11px}
.l-header-wrap .button{position:relative;display:inline-block;-moz-box-sizing:border-box;box-sizing:border-box;padding:6px .8em;border:1px solid transparent;border-radius:4px;background-color:#fff;text-align:center;text-decoration:none;font-size:14px;font-family:Arial,Helvetica,sans-serif;line-height:1.2;cursor:pointer}.button_color_orange{border-top:1px solid #fed274;border-right:1px solid #ed9248;border-bottom:1px solid #d69145;border-left:1px solid #ed9248;background:#faa40c;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#feb00c),color-stop(100%,#f1870c));background:-webkit-linear-gradient(top,#feb00c 0,#f1870c 100%);background:-o-linear-gradient(top,#feb00c 0,#f1870c 100%);background:-webkit-linear-gradient(top,#feb00c 0,#f1870c 100%);background:-o-linear-gradient(top,#feb00c 0,#f1870c 100%);background:linear-gradient(to bottom,#feb00c 0,#f1870c 100%);color:#fff}.button_color_orange:hover{background:#f5930c;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f9a600),color-stop(73%,#f48900),color-stop(100%,#f17f00));background:-webkit-linear-gradient(top,#f9a600 0,#f48900 73%,#f17f00 100%);background:-o-linear-gradient(top,#f9a600 0,#f48900 73%,#f17f00 100%);background:-webkit-linear-gradient(top,#f9a600 0,#f48900 73%,#f17f00 100%);background:-o-linear-gradient(top,#f9a600 0,#f48900 73%,#f17f00 100%);background:linear-gradient(to bottom,#f9a600 0,#f48900 73%,#f17f00 100%);color:#fff}.button_color_orange:active{background:#f17f00;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f17f00),color-stop(95%,#f48900),color-stop(100%,#f9a600));background:-webkit-linear-gradient(top,#f17f00 0,#f48900 95%,#f9a600 100%);background:-o-linear-gradient(top,#f17f00 0,#f48900 95%,#f9a600 100%);background:-webkit-linear-gradient(top,#f17f00 0,#f48900 95%,#f9a600 100%);background:-o-linear-gradient(top,#f17f00 0,#f48900 95%,#f9a600 100%);background:linear-gradient(to bottom,#f17f00 0,#f48900 95%,#f9a600 100%);color:#fff}

    .b-bank-item-miniCard__courses__table__body {
        font-size: 18px;
        font-weight: normal;
        padding: 2px 12px 2px;
    }
    .b-bank-item-miniCard__courses__table__body:nth-child(3) {
        padding-left: 0 !important;
    }
    .b-bank-item-miniCard__courses__label {
        color: #84a830;
        font-size: 18px;
        text-decoration: none;
    }
    .b-bank-item-miniCard__courses__table__body_first {
        padding-left: 0px;
        padding-right: 0px;
    }
    .b-bank-item-miniCard__courses__dynamic {
        color: #808080;
        font-size: 14px;
        padding-right: 10px;
        white-space: nowrap;
        position: relative;
        float: left;
    }
    .b-bank-item-miniCard__courses__dynamic:after {
        position: absolute;
        right: 0px;
        width: 7px;
        height: 7px;
        content: "";
        display: block;
    }
    .b-bank-item-miniCard__courses__dynamic_down:after {
        background-image: url(../css/less/blocks/b-bank-item-miniCard/img/valute-dinamic.png);
        background-position: 0 -9px;
        background-repeat: no-repeat;
        top: 7px;
    }
    .b-bank-item-miniCard__courses__dynamic_up:after {
        background-image: url(../css/less/blocks/b-bank-item-miniCard/img/valute-dinamic.png);
        background-position: 0 0px;
        background-repeat: no-repeat;
        top: 4px;
    }

/**
 * Admin mode switch button
 */
a.admin-switch-btn {
    overflow: hidden;

    -webkit-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.9), inset 0px 0px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.9), inset 0px 0px 0px rgba(0, 0, 0, 1);
    box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.9), inset 0px 0px 0px rgba(0, 0, 0, 1);
}

a.admin-switch-btn:active {
    -webkit-box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.9), inset 0px 0px 2px rgba(0, 0, 0, 1);
    -moz-box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.9), inset 0px 0px 2px rgba(0, 0, 0, 1);
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.9), inset 0px 0px 2px rgba(0, 0, 0, 1);
    position: relative;
}

a.admin-switch-btn:active .text {
    top: 3px;
    left: 3px;
    position: relative;
}

a.admin-switch-btn .info {
    color: #fff;
    position: absolute;
    bottom: 3px;
    left: 10px;
}

a.admin-switch-btn:active .info {
    bottom: 0px;
    left: 13px;
}

a.admin-switch-btn,
a.admin-switch-btn .text,
a.admin-switch-btn .info {
    font-size: 11px;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}

a.to-admin-btn {
    font-size: 11px;
    color: #fff;
    position: absolute;
    left: 120px;
    bottom: 3px;
}
.main-menu {
	font-size: 14px;
	line-height: 45px;

	position: relative;

	height: 45px;
	margin-left: 90px;
}

.main-menu_js_no {
	overflow: hidden;
}

.main-menu_js_no .main-menu__more {
	display: none;
}

.main-menu__wrap:after {
	display: block;
	clear: both;

	content: '';
}

.main-menu__elem {
	display: block;
	float: left;

	height: 100%;
}

.main-menu__more {
	position: relative;

	display: block;

	height: 100%;
	padding: 0 10px;

	cursor: default;

	color: #fff;
}

.main-menu__more:hover {
	background: #afc971;
}

.main-menu__elem:hover .main-menu__link {
	background: #afc971;
}

.main-menu__elem:hover .main-menu__link:after {
	content: none;
}

.main-menu__elem_current .main-menu__link {
	color: #3f530c !important;
	background: #e1f2ba !important;
}

.main-menu__elem_current .main-menu__link:link {
	color: #3f530c;
}

.main-menu__elem_current .main-menu__link:hover {
	color: #3f530c;
	background: #e1f2ba;
}

.main-menu__elem_current .main-menu__link:after {
	content: none;
}

.main-menu__elem_current .main-menu__more {
	color: #3f530c;
	background: #e1f2ba;
}

.main-menu__elem_current .main-menu__sub {
	display: block;
}

.main-menu__arrow {
	font-size: 10px;

	vertical-align: top;
}

.main-menu__arrow-img {
	display: inline-block;

	width: 7px;
	height: 4px;
	margin-left: 4px;

	vertical-align: middle;

	background: none left top no-repeat transparent;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAQAAADoz+32AAAALUlEQVR4AUXDoQ3AIAAAwQ8O38FZBNsRutaB6yWX5bcybMA2kunjnkryeO90AHFkKdYJDjofAAAAAElFTkSuQmCC');
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI0IiB2aWV3Qm94PSIwIDAgNyA0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj48dGl0bGU+U2xpY2UgMTwvdGl0bGU+PHBhdGggZD0iTTMuNSA0bDMuNS00aC03bDMuNSA0eiIgZmlsbD0iI2ZmZiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCIvPjwvc3ZnPg=='), none;
}

.main-menu__elem_current .main-menu__arrow-img {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAQElEQVQI12OwC+SeYB/M8x8dg8QZgIDJLphnLYoEkA8SB0kyWFoycNoF8RwDSwBpEJ8BGRj7MojYBXNvA9EwMQA7/hmmRpF3WAAAAABJRU5ErkJggg==');
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI0IiB2aWV3Qm94PSIwIDAgNyA0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj48dGl0bGU+U2xpY2UgMTwvdGl0bGU+PHBhdGggZmlsbD0iIzNGNTMwQyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCIgZD0iTTMuNSA0bDMuNS00aC03eiIvPjwvc3ZnPg=='), none;
}

.main-menu__link {
	position: relative;

	display: block;

	height: 100%;
	padding: 0 10px;

	text-decoration: none;

	color: #fff;
}

.main-menu__link:link {
	text-decoration: none;

	color: #fff;
}

.main-menu__link:visited {
	color: #fff;
}

.main-menu__link:hover {
	color: #fff;
}

.main-menu__link:after {
	position: absolute;
	top: 10px;
	right: -1px;

	display: block;

	width: 1px;
	height: 25px;

	content: '';

	background: #8ba551;
}

.main-menu__sub {
	line-height: 1;

	position: absolute;
	top: 100%;
	left: 0;

	display: none;

	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 20px;
	padding-bottom: 15px;

	background: #f2ffd3;
	box-shadow: 0 17px 13px rgba(0, 0, 0, .2);
}

.main-menu__sub_padding-bottom_no {
	padding-bottom: 0;
}

.main-menu__sub_more {
	padding: 5px 0;
}

.submenu__list_separator_left {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 30%;
	border-left: 1px solid #e6f6c5;
}

.submenu__list_tight_yes .submenu__elem {
	margin-bottom: 5px;
}

.submenu__list_tight_yes .submenu__elem_size_l {
	margin-bottom: 9px;
}

.submenu__elem {
	margin-bottom: 9px;
	line-height: 1.3;
}

.submenu__elem_size_l {
	font-size: 18px;
}

.submenu__link {
	padding-top: 2px;
	border-bottom: 1px solid #bccd92;
	color: #4d660f;
	text-decoration: none;
}

.submenu__link:visited {
	color: #4d660f;
}

.submenu__link:hover {
	border-bottom-color: #ffcbb2;
	color: #ff5400;
}

.submenu__elem_hilite_yes .submenu__link {
	border-bottom-color: #e0ba9b;
	color: #b51b1b;
}

.submenu__elem_hilite_yes .submenu__link:hover {
	border-bottom-color: #ffcbb2;
	color: #ff5400;
}

.layout {
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.layout_height_global {
	min-height: 100%;
}

.layout_push-top_45 {
	padding-top: 45px;
}

.layout_pull-bottom_140 {
	margin-bottom: -140px;
}

.layout__base {
	position: relative;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: 0 auto;
	padding: 0 1%;
	padding-right: 2.5%;
	min-width: 960px;
	max-width: 1280px;
}

/**
 * @package portal
 */

/**
 * Колоночная сетка
 *
 * @subpackage grid
 */

/**
 * Контейнеры колонок
 *
 * Сначала нужно определить сколько колонок будет использоваться в сетке.
 * Известно, что ширина фиксированных областей должна быть равна 240px,
 * следовательно в эту ширину должно вписываться какое-либо количество колонок
 * без отступов по краям. Сразу видно, что можно взять 5 колонок по 40px с
 * расстояниями между ними 10px, что даст в итоге 240px (5 * 40px + 4 * 10px).
 * Т.к. фиксированные области могут быть слева, справа, одновременно справа
 * и слева, а могут и не быть будем использовать 20-колоночную сетку
 * (4 * 5 колонок). Остаётся расчитать:
 *
 * 1 Сетку без фиксированных областей (20 резиновых колонок)
 * 2 Сетку с одной фиксированной колонкой (15 резиновых колонок + 5 фиксированных)
 * 3 Сетку с двумя фиксированными колонками (10 резиновых + 10 фиксированных)
 *
 * Для минимизации CSS, удобства позиционирования, удобства задания глобальных
 * отступов и обхода непонимания Оперой десятичных дробей в размерах и маргинах
 * используем следующий метод: уменьшим свободное пространство контейнеров так,
 * чтобы в него помещалось 5 колонок, причём сделаем это с помощью правого
 * паддинга, равного 100% - <ширина необходимого пространства>, в следствие
 * чего ширина одной колонки с отступом будет равна 20% (100% / 5 колонок).
 * Отступ равен 20% ширины одной колонки (10px / 50px * 100%) но т.к. маргины
 * рассчитываются исходя из ширины родителя, то отступ относительно родителя
 * будет равен 4%. Т.к. 4% — не очень красивая цифра, сделаем так, чтобы
 * ширина свободного пространства была равен ширине не 5 колонок, а 4.
 * Следовательно ширина колонки вместе с отступом будет равна 25%, 5% из которых
 * — это отступ.
 *
 * В итоге получится так, что у нас правый край крайнего правого контейнера не
 * будет совпадать с правым краем контейнера и будет отличаться на 5% из-за
 * отступа. У нас возможны 4 вариант:
 *
 * 1 Отступ от края должен быть справа (когда фиксированная область справа)
 * 2 Отступ от края должен быть слева (когда фиксированная область слева)
 * 3 Отступ от края должен быть с обеих сторон (когда фиксированные области с
 *   обеихсторон)
 * 4 Отступов от края нет (когда нет фиксированных областей)
 *
 * Таким образом расстояние между резиновой и фиксированными областями будет
 * резиновым.
 *
 * Изначально у нас сразу имеется правый отступ.
 *
 * Чтобы компенсировать правый отступ и получить 4 вариант необходимо увеличить
 * ширину свободного пространства контейнера на размер отступа распределённый
 * по всем колонкам, т.е. если у нас 20 колонок, то мы должны ширину свободного
 * пространства разделить на 20 и взять от неё 20% (размер отступа относительно
 * ширины колонки) — это и будет распределённая величина отступа, которую нам
 * необходимо прибавить к ширине свободного пространства, т.е. вычесть из правого
 * паддинга
 *
 * Чтобы получить левый отступ, нам необходимо сдвинуть свободное пространство
 * вправо, но оставить его ширину неизменной. Чтобы получить размер сдвига
 * нужно узнать размер отступа колонки относителбно ширины родителя контейнера
 * (именно от него мы расчитываем ширину свободного пространства), для этого
 * нужно ширину свободного пространства разделить на 100 и умножить на размер
 * оступа относительно контейнера
 *
 * Чтобы сделать отступы с обеих сторон, необходимо сдвинуть свободное
 * пространство вправо и при этом уменьшить его ширину на величину равную
 * компенсации правого отступа
 *
 * Формулы расчёта:
 *
 * ширина с правым отступом = 100% / (количество колонок / 4 колонки)
 *
 * компенсация отступа = (ширина с правым отступом / количество колонок) *
 *                       размер отступа относительно ширины колонки
 *
 * левый отступ = (ширина с правым отступом / 100%) * размер оступа
 *                                                    относительно контейнера
 *
 * @section containers
 */
.grid-20, .grid-20-left, .grid-20-right, .grid-20-both,
.grid-15, .grid-15-left, .grid-15-right, .grid-15-both,
.grid-10, .grid-10-left, .grid-10-right, .grid-10-both,
.grid-5, .grid-5-left, .grid-5-right, .grid-5-both,
.page-grid, .page-grid-wrap {
	position: relative;
}

.grid-20 {
	margin-right: 79.8%;
}

.grid-20-left {
	margin-right: 79%;
	margin-left: 1%;
}

.grid-20-right {
	margin-right: 80%;
}

.grid-20-both {
	margin-right: 79.2%;
	margin-left: 1%;
}

.grid-15 {
	margin-right: 72.98%;
}

.grid-15-left {
	margin-right: 72.01%;
	margin-left: 1.33%;
}

.grid-15-right {
	margin-right: 73.34%;
}

.grid-15-both {
	margin-right: 72.37%;
	margin-left: 1.33%;
}

.grid-10 {
	margin-right: 59.2%;
}

.grid-10-left {
	margin-right: 58%;
	margin-left: 2%;
}

.grid-10-right {
	margin-right: 60%;
}

.grid-10-both {
	margin-right: 58.9%;
	margin-left: 2%;
}

.grid-5 {
	margin-right: 16.8%;
}

.grid-5-left {
	margin-right: 16%;
	margin-left: 4%;
}

.grid-5-right {
	margin-right: 20%;
}

.grid-5-both {
	margin-right: 19.2%;
	margin-left: 4%;
}

/**
* @section cols
*/
.col-1, .col-2, .col-3, .col-4, .col-5,
.col-6, .col-7, .col-8, .col-9, .col-10,
.col-11, .col-12, .col-13, .col-14, .col-15,
.col-16, .col-17, .col-18, .col-19, .col-20,
.page-col-1-span-5, .page-col-1-span-10, .page-col-1-span-15, .page-col-1-span-20,
.page-col-6-span-5, .page-col-6-span-10, .page-col-6-span-15, .page-col-11-span-5,
.page-col-11-span-10, .page-col-16-span-5 {
	position: relative;
/**
 * display: inline применённый к плавающему блоку помогает избавиться
 * от двойных границ
 * Нормальные браузеры это никак не затрагивает, т.к. по спецификации
 * элементы с float не принимают значения display отличные от none
 * Но если вдруг захочется убрать float у одного из таких элементов,
 * то надо не забыть ему вернуть display: block
 *
 * @bugfix Двойное увеличение границ у плавающих блоков в IE<=7
 * @affected IE6, IE7
 */
 display: inline;
 float: left;
}

.col-1 { left: 0; }
.col-2 { left: 25%; }
.col-3 { left: 50%; }
.col-4 { left: 75%; }
.col-5 { left: 100%; }
.col-6 { left: 125%; }
.col-7 { left: 150%; }
.col-8 { left: 175%; }
.col-9 { left: 200%; }
.col-10 { left: 225%; }
.col-11 { left: 250%; }
.col-12 { left: 275%; }
.col-13 { left: 300%; }
.col-14 { left: 325%; }
.col-15 { left: 350%; }
.col-16 { left: 375%; }
.col-17 { left: 400%; }
.col-18 { left: 425%; }
.col-19 { left: 450%; }
.col-20 { left: 475%; }

/**
* @section spans
*/
.span-1 { margin-right: -20%; width: 20%; }
.span-2 { margin-right: -45%; width: 45%; }
.span-3 { margin-right: -70%; width: 70%; }
.span-4 { margin-right: -95%; width: 95%; }
.span-5 { margin-right: -120%; width: 120%; }
.span-6 { margin-right: -145%; width: 145%; }
.span-7 { margin-right: -170%; width: 170%; }
.span-8 { margin-right: -195%; width: 195%; }
.span-9 { margin-right: -220%; width: 220%; }
.span-10 { margin-right: -245%; width: 245%; }
.span-11 { margin-right: -270%; width: 270%; }
.span-12 { margin-right: -295%; width: 295%; }
.span-13 { margin-right: -320%; width: 320%; }
.span-14 { margin-right: -345%; width: 345%; }
.span-15 { margin-right: -370%; width: 370%; }
.span-16 { margin-right: -395%; width: 395%; }
.span-17 { margin-right: -420%; width: 420%; }
.span-18 { margin-right: -445%; width: 445%; }
.span-19 { margin-right: -470%; width: 470%; }
.span-20 { margin-right: -495%; width: 495%; }

/**
* Размеры блоков для основной разметки.
* Зависят от класса у body, чтобы управлять внешним видом всех
* основных колонок на странице в одном месте.
*
* Для экономии опишем только основные. Т.к. IE6 не поддерживает
* .множественные.классы придётся склеить имена классов
*
* @section main
*/

/**
* Контейнеры
*
* @see containers
* @subsection containers
*/
.page-grid {
	margin-right: 79.8%;
}

.page-fixed-left .page-grid {
	margin-right: 72.01%;
	margin-left: 1.33%;
}

.page-fixed-left .page-grid-wrap {
	margin-left: 240px;
}

.page-fixed-right .page-grid {
	margin-right: 73.34%;
}

.page-fixed-right .page-grid-wrap {
	margin-right: 240px;
	margin-bottom: 20px;
}

.page-fixed-both .page-grid {
	margin-right: 58.9%;
	margin-left: 2%;
}

.page-fixed-both .page-grid-wrap {
	margin: 0 240px;
}

.page-fixed-right .page-grid-wrap_w-fluid {
	margin-right: 20%;
}

/**
* Положение резиновых блоков
*
* @see cols
* @subsection fluidBlocksPositions
*/
.page-col-1-span-5, .page-col-1-span-10, .page-col-1-span-15, .page-col-1-span-20 {
	left: 0;
}

.page-col-6-span-5, .page-col-6-span-10, .page-col-6-span-15 {
	left: 125%;
}

.page-fixed-left .page-col-6-span-5, .page-fixed-both .page-col-6-span-5,
.page-fixed-left .page-col-6-span-10, .page-fixed-both .page-col-6-span-10,
.page-fixed-left .page-col-6-span-15, .page-fixed-both .page-col-6-span-15 {
	left: 0;
}

.page-col-11-span-5, .page-col-11-span-10 {
	left: 250%;
}

.page-fixed-left .page-col-11-span-5, .page-fixed-both .page-col-11-span-5,
.page-fixed-left .page-col-11-span-10, .page-fixed-both .page-col-11-span-10 {
	left: 125%;
}

.page-col-16-span-5 {
	left: 375%;
}

.page-fixed-left .page-col-16-span-5, .page-fixed-both .page-col-16-span-5 {
	left: 250%;
}

/**
* Размеры резиновых блоков
*
* @see spans
* @subsection fluidBlocksSizes
*/
.page-col-1-span-5, .page-col-6-span-5, .page-col-11-span-5, .page-col-16-span-5 {
	margin-right: -120%;
	width: 120%;
}

.page-col-1-span-10, .page-col-6-span-10, .page-col-11-span-10 {
	margin-right: -245%;
	width: 245%;
}

.page-col-1-span-9, .page-col-6-span-9, .page-col-11-span-9 {
	position: relative;
	left: 250%;
	display: inline;
	float: left;
	margin-right: -215%;
	width: 215%;
	/*background: #fef;*/
}

.page-col-1-span-15, .page-col-6-span-15 {
	margin-right: -370%;
	width: 370%;
}

/**
* Размеры и положение фиксированных блоков
*
* @see spans
* @see cols
* @subsection fixedBlocks
*/
.page-fixed-left .page-col-1-span-5, .page-fixed-both .page-col-1-span-5 {
	left: -5%;
	margin-left: -240px;
	width: 240px;
}

.page-fixed-right .page-col-16-span-5, .page-fixed-both .page-col-16-span-5 {
	width: 240px;
}

.b-fluid-fixed__global {
}

.b-fluid-fixed__fluid {
	margin-right: 250px;
}

.b-fluid-fixed__fixed {
	float: right;
	width: 240px;
}

.case {
	position: relative;
	display: block;
	float: left;
	margin-right: 1%;
	width: 22%;
	height: 130px;
	background: none center center no-repeat transparent;
	box-shadow: inset 0 -40px 50px rgba(0, 0, 0, .6);
	font-size: 13px;
	-webkit-transition: box-shadow .2s;
	-o-transition: box-shadow .2s;
	transition: box-shadow .2s;
}

.case:hover {
	box-shadow: inset 0 -40px 40px rgba(0, 0, 0, .3);
}

.case__desc {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 5px 10px 5px 7px;
	background-color: #6a920f;
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	line-height: 1.3;
}

.case__comments {
	color: #bbb;
	font-size: 11px;
}

.flat-menu__elem {
  height: 32px;
  white-space: nowrap;
  line-height: 32px;
}

.flat-menu__link {
  display: block;
  padding-right: 30px;
  padding-left: 10px;
  color: #3f530c;
  text-decoration: none;
}

.flat-menu__link:visited {
  color: #3f530c;
}

.flat-menu__link:hover {
  background: #e1f2ba;
  color: #3f530c;
}

.flat-sub:after {
	display: block;
	clear: both;
	content: '';
}

.flat-sub__elem {
	display: inline-block;
	margin-right: 40px;
	padding-bottom: 15px;
	vertical-align: top;
}

.sub__list_separator_left {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 30%;
	padding-left: 12px;
	border-left: 1px solid #e6f6c5;
}

.sub__list_tight_yes .sub__elem {
	margin-bottom: 5px;
}

.sub__list_tight_yes .sub__elem_size_l {
	margin-bottom: 9px;
}

.sub__elem {
	margin-bottom: 9px;
	line-height: 1.3;
}

.sub__elem_size_l {
	font-size: 18px;
}

.sub__link {
	padding-top: 2px;
	border-bottom: 1px solid #bccd92;
	color: #4d660f;
	text-decoration: none;
}

.sub__link:link {
	color: #4d660f;
	text-decoration: none;
}

.sub__link:visited {
	color: #4d660f;
}

.sub__link:hover {
	border-bottom-color: #ffcbb2;
	color: #ff5400;
}

.sub__elem_hilite_yes .sub__link {
	border-bottom-color: #e0ba9b;
	color: #b51b1b;
}

.sub__elem_hilite_yes .sub__link:hover {
	border-bottom-color: #ffcbb2;
	color: #ff5400;
}

.text__h3 {
	font-size: 18px;
}

/*@novostroiki*/
.nowrap {white-space:nowrap;}
.nvs-object .dom-sdan, .nvs-photo .dom-sdan, .dom-sdan,
.realty_house-block .realty_house-block-td a.dom-sdan {
    background: url("../img/domsdan.png") repeat scroll 0 0 transparent;
    height: 42px;
    position: absolute;
    right: 10px;
    text-decoration: none;
    top: 5px;
    width: 40px;
    padding: 0px;
}

div.nvs-object-block {
    height: 140px;
    margin-bottom: 20px;
    margin-right: 10px;
    width: 130px;
}

.cols .col {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    word-spacing: normal;
}

div.nvs-builder-frame p {
    color: #484744;
    font-size: 14px;
    line-height: 24px;
}

dl.nvs-builder-objects dt.nvs-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 18px;
}
div.nvs-object-block {
    height: 140px;
    margin-bottom: 20px;
    margin-right: 10px;
    width: 130px;
}
dl.nvs-object {
    height: 140px;
    position: relative;
    width: 130px;
}
dl.nvs-object dt {
    background-color: #EAEAEA;
    font-size: 12px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 100px;
    width: 130px;
}
dl.nvs-object dt span {
    display: table-cell;
    height: 40px !important;
    left: 0;
    position: static !important;
    top: 50%;
    vertical-align: middle;
    width: 130px;
    text-align: center;
}
dl.nvs-object dt span a {
    position: static !important;
    top: -50%;
    width: 130px;
}
dl.nvs-object dd {
    height: 100px;
    overflow: hidden;
    text-align: center;
    width: 130px;
}
dl.nvs-object dd p {
    display: table-cell;
    height: 100px !important;
    left: 0;
    margin: 0;
    position: static !important;
    top: 50%;
    vertical-align: middle;
    width: 130px;
}
dl.nvs-object dd p img {
    position: static !important;
    top: -50%;
    width: 130px;
}
div.nvs-objects-search-frame h1 {
    font-size: 22px;
    margin-bottom: 15px;
}
form.nvs-objects-search {
    background-color: #EDE5C4;
    display: inline-block !important;
    margin-bottom: 18px;
    padding: 10px 0 0;
    position: relative;
    width: 100%;
}
html:first-child form.nvs-objects-search {
    display: block !important;
}
form.nvs-objects-search span.rdc {
    /*background-image: url("../img/sprites.gif");*/
}
* html form.nvs-objects-search span.rdc-5-bl, * html form.nvs-objects-search span.rdc-5-br {
    bottom: 0;
}
form.nvs-objects-search p {
    font-size: 14px;
    margin: 0 15px;
    padding-bottom: 10px;
}
form.nvs-objects-search p b.nvs-button {
    background-color: #FC8100;
    display: inline-block !important;
    margin-right: -10px;
    position: relative;
    top: -2px;
    vertical-align: top;
}
form.nvs-objects-search p b.nvs-button i {
    display: block;
    font-style: normal;
    padding: 4px;
    position: relative;
}
* html form.nvs-objects-search p b.nvs-button i {
    display: inline;
}
form.nvs-objects-search p b.nvs-button input {
    color: #484744;
    display: block !important;
    font-size: 14px;
    font-weight: bold;
    height: 25px;
    overflow: visible;
    padding: 0 4px 1px;
    width: auto !important;
}
form.nvs-objects-search p span.rdc {
    /*background-image: url("img/sprites.gif");*/
}
form.nvs-objects-search p span.rdc-4-tl {
    background-position: 6px -14px;
}
form.nvs-objects-search p span.rdc-4-tr {
    background-position: 0 -14px;
}
form.nvs-objects-search p span.rdc-4-bl {
    background-position: 6px -10px;
}
form.nvs-objects-search p span.rdc-4-br {
    background-position: 0 -10px;
}
* html form.nvs-objects-search p span.rdc-4-bl, * html form.nvs-objects-search p span.rdc-4-br {
    bottom: 0;
}
form.nvs-objects-search p select {
    font-size: 16px;
    height: 27px;
    margin-left: 1px;
    margin-right: 15px;
    padding-left: 2px;
    width: 160px;
}
form.nvs-objects-search p label {
    display: inline-block !important;
    text-align: right;
    width: 135px;
}
form.nvs-objects-search p #nvs-rooms {
    margin-right: 8px;
    width: auto;
}
form.nvs-objects-search p label.auto {
    width: auto;
}
form.nvs-objects-search p #nvs-price {
    width: 70px;
}
form.nvs-objects-search p #nvs-ready {
    vertical-align: middle !important;
}
form.nvs-objects-search p.nvs-district, form.nvs-objects-search p.nvs-district select {
    font-size: 18px;
}
form.nvs-objects-search p.nvs-district label {
    vertical-align: top;
}
form.nvs-objects-search p.nvs-district select {
    margin-left: 0;
    padding-left: 4px;
}
form.nvs-objects-search p.nvs-district select#nvs-districts {
    height: auto;
    width: auto;
}

dl.nvs-builder-objects dt.nvs-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 18px;
    font-size: 18px;
    margin: 0 0 8px;
    color: #5E5C58;
}


/*@news suplements*/
.realty-card .news-supplement__title { color: #000; font: normal 18px/24px Arial,Tahoma,Sans-Serif; left: -4px; margin: 0; position: relative; margin-bottom: 12px; }
.realty-card .news-supplement__table { border-collapse: collapse; margin: 0; width: 100%; position: relative; left: 5px; }
.realty-card .news-supplement__table td { background: none repeat scroll 0 0 transparent; font: 12px/18px Arial,Tahoma,Sans-Serif; padding: 2px 0 3px; vertical-align: top; }
.realty-card .news-supplement__table .news_single_date { bottom: 0px; float: right; font-size: 12px; font-style: normal; position: relative; right: 8px; color: #807f7f; }
.realty-card .news-supplement__table .news-supplement__table-last-row td { padding-top: 7px; }
.realty-card .news-supplement__table .news-supplement__table-last-row__service {
    text-align: right;
    padding-right: 8px;
}
.news-supplement__table-last-row b a:link, .news-supplement__table-last-row b a:visited, .news-supplement__table-last-row b a:hover, .news-supplement__table-last-row b a:active { font-weight: bold; text-decoration: none; border-bottom: 1px dotted #037dd3; }

/*advert*/

.realty-small-advt {
  position: relative;
  margin: 6px 0 6px 0;
}

.realty-small-advt-head {
  position: relative;
  z-index: 50;
  background: #f48700 url(../img/adv/adv-head-bg.jpg) 0 0 repeat-x;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  padding: 4px 20px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /*behavior: url(ie-css3.htc);*/
}

.realty-small-advt-head ins {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
  height: 13px;
  background: url(../img/adv/cnr.png) 0 0 no-repeat;
}

.realty-small-advt-head ins .lt {
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0px;
  bottom: 7px;
  display: block;
  background: url(../img/adv/lt.png) 0 0 no-repeat;
}

.realty-small-advt-head ins .rt {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 0px;
  bottom: 7px;
  display: block;
  background: url(../img/adv/rt.png) 0 0 no-repeat;
}

.realty-small-advt__table td {
  padding: 9px 11px
}

.realty-small-advt-color-ede5c4 {
  background: #ede5c4;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /*behavior: url(ie-css3.htc);*/
  width: 100%;
}

.realty-small-advt__table_cel-1 {
  vertical-align: middle;
}

.realty-small-advt__table_cel-2 {
  font-size: 13px;
  line-height: 18px;
}








.realty-info-menu__list {
    background: #8a8f7e;
    padding-top: 9px;
    padding-left: 10px;
}

.realty-info-menu__list li {

}


.realty-info-menu__list li.current {
    float: left;
    padding: 12px 10px 5px;
    background: #fff;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: normal;

}

.realty-info-menu__list li a {
    outline: none;
    float: left;
    padding: 0px;
    margin: 12px 10px 2px;
    position: relative;
    top: -5px;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: normal;
}

.realty-info-menu__list li a:link,
.realty-info-menu__list li a:visited,
.realty-info-menu__list li a:hover,
.realty-info-menu__list li a:active {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}




.realty-objects-gallery__list {
    margin-top: 5px;
}

.realty-objects-gallery__list img {
    display: block;
    float: left;
    margin-right: 5px;
}

.realty-objects-gallery__main-foto {
    width: 100%;
}

/**/

.ralty-list-documents {
    padding: 0px;
    margin: 0px;
    padding-left: 25px;

}

.link-xls {
    font-size: 14px;
    line-height: 21px;
    position: relative;

}

a.link-xls:link,
a.link-xls:visited,
a.link-xls:hover,
a.link-xls:active {
    text-decoration: none;
    border-bottom: 1px solid #037dd3;
}

.link-xls ins {
    display: block;
    top: 1px;
    left: -24px;
    position: absolute;
    width:16px;
    height: 16px;
    background: url(../img/ico-xls.gif) 0 0 no-repeat;
}

.ralty-list-documents li {
    margin-bottom: 5px;
}




.realty-objects-gallery {
    margin-bottom: 18px;
    position: relative;
}





/**/

b a {
    font-weight: bold
}

.realty-resume__table {
    width: 100%;
    margin-top: -3px;
}
.realty-resume__table td {
    border-bottom: 1px solid #e0e0e0;
    padding-top: 7px;
    padding-bottom: 10px;
}

.realty-resume__table .realty-resume__table-last-row td {
    border-bottom: none
}

.realty-resume__table-label {
    width: 1%;
}

.realty-resume__table-item {
    padding-left: 15px;
}

.realty-objects-map {
    margin-bottom: 10px;
}

.realty-objects-map .img-link-map {
    height:218px;
	width:100%;
	z-index: 999;
	display: block;
	position:absolute;
}






/**/

.realty-main-grid {
    width: 100%;
    border: 1px solid red;
}


.realty-main-grid__right {
    float: right;
    width: 240px;
    border: 1px solid red;
    margin-right: -33%;
}



.main_container-content_block {
	padding: 15px 20px;
}

/**/
.realty-news {
	margin-bottom: 10px;
}

.main-news__list-item {
	margin-bottom: 14px;
}

.main-news__list-item__pic {
	float: left;
	margin-right: 15px;
}

.main-news__list-item__pic img {
	display: block;
}

.main-news__list-item__wrap__title {
	font-size: 21px;
	line-height: 30px;
}

.main-news__list-item__wrap__title a:link,
.main-news__list-item__wrap__title a:visited,
.main-news__list-item__wrap__title a:hover,
.main-news__list-item__wrap__title a:active {
	text-decoration: none;
	border-bottom: 2px solid #037dd3;
}

.main-news__list-item__wrap__info {
	margin-top: 6px;
	margin-bottom: 6px;
}

.main-news__list-item__wrap {
	position: relative;
	top: -7px;
}

.main-news__list-item__wrap p {
	font-size: 11px;
	line-height: 16px;
	color: #494949;
}

/**/

.secondary-news__list {
	list-style: decimal;
	padding-left: 20px;
}

.secondary-news__list li {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 5px;
}

.realty-news .comments-count:link,
.realty-news .comments-count:visited,
.realty-news .comments-count:hover,
.realty-news .comments-count:active {
	color: #000;
	font-size: 11px;
	text-decoration: underline;
}

.secondary-news__list li.secondary-news__list__last {
	list-style: none;
	font-size: 13px;
	margin-top: 8px;
}

.link-rss {
	position: relative;
}

.secondary-news__list li.secondary-news__list__last i {
	font-size: 14px;
	font-style: normal;
	position: absolute;
	right: -7px;
	width: 5px;
	height: 5px;
}

.secondary-news__list li.secondary-news__list__last ins {
	width: 14px;
	height: 14px;
	position: absolute;
	left: -20px;
	top: 2px;
	/*�������� ���� ��� �� �������*/
	background: url(../img/icons.png) -61px -1246px no-repeat;
}


/**/

.realty-green-block {

}

.realty-green-block-left {

}

.realty-green-block-right {

}

.realty-green-block__pad {
	background: #f1f5e8;
	padding: 10px 20px 6px;
}

.realty-green-block__table {
	width: 100%;
	border-collapse: collapse;
}
.realty-green-block__table td {
	color: #676b5e;
	font-size: 11px;
	padding: 0px 0;
	width: 50%;
}

.realty-green-block__table li {
	padding: 3px 0px 2px;
	line-height: 15px;
}

.realty-green-block__table td a {
	font-size: 13px;
}

.realty-green-block__table em {
	font-size: 13px;
	color: #037dd3;
	font-weight: bold;
}

.realty-green-block__table a:link,
.realty-green-block__table a:visited,
.realty-green-block__table a:hover,
.realty-green-block__table a:active {
	text-decoration: none;
	border-bottom: 1px solid #037dd3;
}


.realty-green-block__table .link-bold:link,
.realty-green-block__table .link-bold:visited,
.realty-green-block__table .link-bold:hover,
.realty-green-block__table .link-bold:active {
	font-weight: bold;
}

.realty-green-block__table .link-red:link,
.realty-green-block__table .link-red:visited,
.realty-green-block__table .link-red:hover,
.realty-green-block__table .link-red:active {
	color: #ba0707;
	border-bottom: 1px solid #ba0707;
}

.realty-green-block h3 {
	font-size: 18px;
	line-height: 18px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-bottom: -3px;

}

.realty-green-block__table ul {
	padding-bottom: 10px;
	padding-top: 10px;
}


.realty-green-block__table .realty-green-block__table-sep {
	padding: 0px;
	height: 6px;
	border-bottom: 1px solid #b8bdae;
}

/**/

.advertisement__title {
	float: left;
	font-size: 18px;
	line-height: 18px;
	margin-left: 20px;
	margin-right: 33px;
}

.realty_caption-edit {
    background: url("../img/button-edit.png") no-repeat scroll 0 0 transparent;
    color: white;
    float: left;
    font-size: 12px;
    font-weight: bold;
    height: 18px;
    padding-left: 26px;
    padding-top: 5px;
	 position: relative;
	 top: -2px;
    width: 130px;
}


/*from alex*/
.item_offer { margin-bottom: 10px; border:#fff solid 1px; position: relative;}
.item_offer__sale-stage { padding-left: 9px;}
.item_offer_active {background: #E5EFCC; overflow: hidden; border:#678E0F solid 1px; }
.item_offer_description { margin-bottom: 7px; padding-top: 7px; }
.item_offer h3 { font-size: 14px; font-weight: bold; margin-left: 11px; }
.item_offer .item_offer_left { margin-right: 12px; float: left; width: 130px; }
.item_offer .item_offer_right {  }
.item_offer .item_offer_right h3 { position: relative; top: -3px; margin-bottom: 5px; }
.item_offer .item_offer_right h3 a { text-decoration: none; border-bottom: 1px solid #037DD3; color: #037dd3; font-size: 15px; font-weight: bold; }
.item_offer .item_offer_right p { line-height: 1.3; margin-bottom: 5px; }
.item_offer .item_offer_right p a { color: #037dd3; text-decoration: none; border-bottom: 1px solid #037DD3; }
.item_offer .wrap_data { padding: 0 11px 6px 11px; background: #f1f5e8; }
.item_offer .data { width: 100%; }
.item_offer .data th,
.item_offer .data td { background: #f1f5e8; text-align: left; }
.item_offer .data td.price { width:80px; white-space: nowrap; }
.item_offer .data td.square { width:80px; white-space: nowrap; }
.item_offer .data td.align-left { text-align: left; }
.item_offer .data td.name { line-height: 1.2em; }
.item_offer .data td { padding: 5px 0; }
.item_offer .data th { font-size: 11px; color: #8a8f7e; padding: 6px 0 4px 0; }
.item_offer .data tr { border-bottom: 1px solid white; }
.item_offer .data td a { text-decoration: none; border-bottom: 1px solid #037DD3; }
.item_offer .data tr.last a { text-decoration: none; border-bottom: 1px solid #037DD3; font-weight: bold;  }

.item_offer h3 b { font-weight: normal; color: #484744; }
.item_offer h3 b.orange { font-weight: bold; color: #f17e00; }
.item_offer h3 u { text-decoration: none; font-weight: normal }

.item_offer .stage-deadline {margin: 0 0 8px 11px;}
.item_offer .stage-deadline .key {}
.item_offer .stage-deadline .value {padding-left: 8px; font-weight: bold; color: #F17E00}

.data tr.no-sales td {
    color: #8a8f7e;
}
.data tr.no-sales td span.star {color: #BA0707;}

.item_offer .data tr.no-sales td a:link,
.item_offer .data tr.no-sales td a:visited,
.item_offer .data tr.no-sales td a:hover,
.item_offer .data tr.no-sales td a:active {
    color: #8a8f7e;
    border-bottom: 1px solid #8a8f7e;
}

.realty-info-block__objects-right .news-supplement {
    margin-top: 16px;
}

/**/

.advertisement-caption {
    padding: 10px 0 6px;
}

/**/

.tab-menu {
    background-color: #8A8F7E;
    clear: both;
    height: 27px;
    margin-bottom: 3px;
    overflow: hidden;
    padding: 4px 0 0 6px;
    width: 99%;
}

.tab-menu li {
    float: left;
    font-size: 18px;
    height: 28px;
    padding: 3px 12px 0;
}

.tab-menu li a {
    border-bottom: 1px dashed white;
    color: white;
    font-size: 12px;
    position: relative;
    text-decoration: none;
}

.tab-menu li.selected {
    background: none repeat scroll 0 0 white;
    height: 24px;
    margin: 0 6px;
    padding: 6px 18px 0;
}

.tab-menu li.selected .operafix span {
    color: black;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-top: -2px;
}
.tab-menu-new {
    color: white;
    float: left;
    font-size: 12px;
    font-weight: bold;
    margin: 8px 12px 0;
}

.tab-menu li.selected a, .tab-menu li.selected a:visited {
	color: #000;
	font-weight: bold;
}

/**/

.table-items {
    font-family: arial,sans-serif;
    margin-bottom: 10px;
    width: 100%;
}

.table-items td {
    padding: 8px 0;
	 line-height: 18px;
}

.table-items .nodd td {
    background-color: #F1F5E8;
}

.table-items .gold td {
    background-color: #f2eab4;
}

.table-items td.date {
    color: #669900;
    font-size: 11px;
    width: 90px;
	 text-align: center;

}

.table-items td.descr {
	padding-right: 24px;
}

.table-items .gold td.descr a {
	font-weight: bold;
}



.table-items a {
    color: #037DD3;
	 text-decoration: none;
	 border-bottom: 1px solid #037DD3;
    margin-right: 5px;
    outline: medium none;
}

/**/
.content-block h3 {
	font: 18px/18px Arial, Tahoma, Sans-Serif;
	margin: 0px 0 6px 0;
}

.content-block p {
	font: 13px/18px Arial, Tahoma, Sans-Serif;
	margin: 0 0 18px 0;
}


/**/

.b-chooser {
	margin-bottom: 10px;
}
.b-chooser-green {}
.b-chooser__head {
		background: #8a8f7e;
		padding: 12px 20px 0;
}
.b-chooser__head h2 {
	margin: 0 0 4px 0;
	font: 18px/18px Arial, Tahoma, Sans-Serif;
	color: #fff;
}

.b-chooser__head p {
	font: 11px/13px Arial, Tahoma, Sans-Serif;
	color: #d0d2cb;
}

.b-chooser__tab {
	padding-left: 0px;
	margin: 8px 0 0 -10px;
}

.b-chooser__tab li {
	float: left;
	font-size: 13px;
	line-height: 18px;
	padding: 5px 9px 3px;
	cursor: pointer;
}

.b-chooser__tab li.cur {
	background: #f1f5e8;
	font-weight: bold;
}

.b-chooser__tab span, .b-chooser__tab span:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted #fff;
}

.b-chooser__tab .cur span, .b-chooser__tab .cur span:hover {
	color: #000;
	font-weight: bold;
	border: none;
}

.b-chooser__content {
	padding: 10px 15px;
}

.b-chooser__table {
	width: 100%;
	border-collapse: collapse;
}

.b-chooser__table td {
	padding: 5px 5px;
	width: 50%;
}

.b-chooser__table tr.b-chooser__table__label-row td {
	padding: 0px 5px 2px 5px;
	white-space: nowrap;
}

.b-chooser__table tr.b-chooser__table__separate-row td {
	padding: 0;
	height: 5px;
}

.b-chooser__table tr.b-chooser__table__subm-row td {
	vertical-align: middle;
}


.b-chooser__table__subm-row a {
		font-size: 11px;
		line-height: 13px;
}

.b-chooser__table select, .b-chooser__table textarea {
	width: 100%;
	padding: 1px 0;
}

.b-chooser__table input {
	width: 98.5%;
	padding: 1px 0;
}

.b-chooser__table input.chkbx {
	position: relative;
	top: 3px;
	width: auto;
}

.b-chooser__col1 {
	width: 1%;
}

.b-chooser__col1 label {
	white-space: nowrap;
	//white-space: normal;
	font-size: 13px;
}

.b-chooser-green .b-chooser__content {
	background: #f1f5e8;
}

.b-chooser-grey .b-chooser__content {
	background: #eaeaea;
}

.b-chooser-grey .b-chooser__tab li.cur {
	background: #eaeaea;
}

.b-chooser__table input.b-chooser__subm {
	width: auto;
	padding: 3px 20px 5px;
	font-weight: bold;
	font-size: 13px;
}

/**/

.realty_house-block {
    margin-bottom: 20px;
    width: 100%;
	 padding-top:10px;
	 background: none repeat scroll 0 0 #e9efdb;
}


.realty_house-block .realty_house-block-tr {
    margin-bottom: 0px;
    overflow: hidden;
    padding-bottom: 5px;
    padding-top: 0px;
    width: 100%;
}

.realty_house-block .realty_house-block-td {
    float: left;
    overflow: hidden;
    padding-bottom: 5px;
    text-align: center;
    width: 50%;
     margin-top: 0px;
    position: relative;
}
.realty_house-block .realty_house-block-td img {
    display: block;
    margin: 0 auto 3px;
    height: 100px;
    width: 100%;
}
.realty_house-block .realty_house-block-td a {
    font-family: arial,sans-serif;
    font-size: 11px;
	padding: 0 5px;
	text-align: center;
    display: block;
    position: relative;
}
.realty_house-block .realty_house-block-td a.thumb {
	display: block;
	margin: 0 auto;
	overflow: hidden;
	width: 130px;
	height: 100px;
	padding: 0;
	position: relative;
}

/**/


/* ������� ���������� */

.realty_house-news {
	margin-bottom: 20px;
}

.realty_house-news__title {
	font-size: 18px;
	line-height: 18px;
	margin-left: 10px;
}

.realty_house-news dl {
	padding-left: 20px;
}
.realty_house-news dt {
	color: #807f7f;
	font-size: 12px;
	line-height: 12px;
	margin-top: 13px;
	margin-bottom: 3px;
	margin-left: -2px;
}

.realty_house-news dd {
	font-size: 12px;
	line-height: 18px;
	padding-left: 20px;
	margin-left: -20px;
	margin-bottom: 5px;
	background: url(../img/green-li.gif) 10px 8px no-repeat;
}

/**/
.wide-news-block {
    background: none repeat scroll 0 0 #EAEFDB;
    padding: 8px 10px 15px;
	 margin-bottom: 10px;
	 line-height: 18px;
}

.wide-news-block__header {
	padding: 0px 0 5px 10px;
}

.wide-news-block__header {

}

.wide-news-block__header .comments-count {
	font-size: 11px;
	text-decoration: underline;
	color: #000;
}

.wide-news-block__title {
	margin-bottom: 1px;
}

.wide-news-block__title a {
	font-weight: bold;
}

.wide-news-block__title a:link,
.wide-news-block__title a:visited,
.wide-news-block__title a:hover,
.wide-news-block__title a:active {
	text-decoration: none;
	border-bottom: 1px solid #037dd3;
}

/* ������� ������ */

.bank-raiting_title {
    font-family: Arial,Helvetica,Garuda,sans-serif;
	 font-size: 18px;
	line-height: 18px;
    margin-bottom: 8px;
    color: #000000;
    margin: 0 0 10px 18px;
}

.bank-raiting {
    margin-bottom: 10px;
    width: 100%;
}

.bank-raiting td {
    border-bottom: 1px solid #FFFFFF;
    padding: 4px 0 3px 0;
    vertical-align: top;
}

.bank-raiting td.bank-raiting_num {
    color: #555555;
    font-size: 11px;
    padding: 6px 6px 0 10px;
}

.bank-raiting__position-1 {
    background: none repeat scroll 0 0 #F2E291;
}
.bank-raiting__position-2 {
    background: none repeat scroll 0 0 #F2E6AA;
}
.bank-raiting__position-3 {
    background: none repeat scroll 0 0 #F7F0C8;
}
.bank-raiting__position-4 {
    background: none repeat scroll 0 0 #E6E6E6;
}
.bank-raiting__position-5 {
    background: none repeat scroll 0 0 #F2F2F2;
}
.bank-raiting td.bank-raiting_status {
    padding-right: 5px;
    padding-top: 3px;
}
.bank-raiting_status em {
    color: #000000;
    font-style: inherit;
}
.bank-raiting_status em.raiting-up {
    color: #3D6D00;
}
.bank-raiting_status-pic {
    background: url("../img/raiting-arr.gif") no-repeat scroll 0 1px transparent;
    height: 14px;
    margin-right: 5px;
    width: 9px;
}
.bank-raiting_status-down .bank-raiting_status-pic {
    background-position: 0 -24px;
}

/*��������*/

.j-popup-gallery-photoblock { margin-bottom: 14px; }
.j-popup-gallery-photoblock__header { font-size: 18px; margin-bottom: 15px; }
.j-popup-gallery-photoblock {/* margin-left: -8px;*/ }
.j-popup-gallery-photoblock .j-popup-gallery-preview { overflow: hidden; }
.j-popup-gallery-photoblock .j-popup-gallery-preview .j-popup-gallery-preview-item { float: left; margin: 0 10px 10px 0; }
.j-popup-gallery-photoblock { float:left; margin-right:-15px; width:260px; }

.j-gallery li { width: 75px; height: 75px; float: left; margin: 0 10px 10px 0; cursor:pointer; }
.j-gallery li a { display: block; width: 75px; height: 75px; }

.i-rooms_content-item-left .j-popup-gallery-photoblock { float: none; width: auto; margin-right: 0; }


.i-rooms_content .j-popup-gallery-preview .preview-item { width: 75px; height: 75px; }
.j-popup-gallery { display: none; }
.popup-gallery { overflow: hidden; left: -400px; top: 0; background: white; z-index: 99999; width: 680px; }
.popup-gallery .j-popup-gallery-thumbs-item { float: left; margin: 0 4px; }
.popup-gallery .j-popup-gallery-thumbs-item a { border: 1px solid white; display: block; outline: none; width: 75px; height: 75px; background-position: 0 0; background-repeat: no-repeat; }
.popup-gallery .j-popup-gallery-thumbs-item-current a { border: 1px solid black; }
.popup-gallery .popup-gallery-prev-next { text-align: center; }
.popup-gallery .popup-gallery-prev-next .popup-gallery-prev { margin-right: 60px; margin-bottom: 13px; font-size: 18px; color: #037DD3; font-family: arial; }
.popup-gallery .popup-gallery-prev-next .popup-gallery-next { margin-bottom: 13px; font-size: 18px; color: #037DD3; font-family: arial; }
.popup-gallery .popup-gallery-prev-next span.popup-gallery-prev,
.popup-gallery .popup-gallery-prev-next span.popup-gallery-next { color: gray; }
.popup-gallery .j-popup-gallery-images { display: none; border:1px solid green; }
.popup-gallery .j-popup-gallery-image-view { width: 680px; overflow: hidden; }
.popup-gallery .j-popup-gallery-image-view img { max-width: 680px; }
.popup-gallery .j-popup-gallery-thumbs { margin: 0 auto 10px; width: 680px; }

/**/

.newrealty_left { border-top: 3px solid #f17e00; padding-top: 9px; }
.newrealty_left h2, .newrealty_left h1 { font-size: 24px; margin-bottom: 11px; margin-left: 12px; }
.newrealty_left .cottege { overflow: hidden; height: 119px; margin-botom: 2px; }
.newrealty_left .cottege .cottege_item { overflow: hidden; width: 100px; float: left; position: relative; }
.newrealty_left .cottege .cottege_item img { width: 100%; height: 80px; display: block; }
.newrealty_left .cottege .cottege_item p { margin-bottom: 12px; height: 26px; overflow: hidden; color: #037dd3; font-size: 11px; line-height: 1.2; margin-top: 4px; }
.newrealty_left .cottege .cottege_item p a:link,
.newrealty_left .cottege .cottege_item p a:visited,
.newrealty_left .cottege .cottege_item p a:hover,
.newrealty_left .cottege .cottege_item p a:active {
    text-decoration: none;
    border: none;
}
.newrealty_left .search_form { background: #779f1a; }

.search_form { padding: 16px 20px 6px 20px; margin-bottom: 16px; }
.search_form table { width: 100%; }
.search_form .buy_cottege { margin-top: -4px; line-height: 1.3; width: 80px; margin-right: 42px; float: left; color: white; font-size: 18px; }
.search_form div.buy_novostroy { width: 140px; }
.search_form div.buy_novostroy div { margin-bottom: 5px; }
.search_form div.buy_novostroy label { font-size: 13px; }
.search_form div.buy_novostroy input { position: relative; top: 3px; }
.search_form .cost { float: left; margin-right: 32px; }
.search_form .area { margin-right: 17px; }
.search_form .costcost { float: left; margin-right: -4px; }
.search_form .cost .costin { color: white; margin-bottom: 5px; }
.search_form .cost .costin sup { font-size: 10px; }
.search_form .cost .cost_top { color: white; margin-bottom: 10px; }
div.novostroy .cost .cost_top select { width: 106px; margin-left: 0; }
.search_form .cost .cost_top input { width: 50px; color: #6e6e6e; }
div.novostroy .costcost .cost_top select { margin-left: 8px; }
.search_form .cost .cost_top span sup { font-size: 10px; }
.search_form .cost .cost_top select { margin-left: 5px; }
.search_form .cost .cost_top span { margin: 0 1px; }
.search_form .cost .cost_bottom { color: white; margin-bottom: 10px; margin-top: 2px; }
.search_form .cost div.novostroy_cost_top { margin-bottom: 12px; }
.search_form .cost .cost_bottom select { width: 119px; margin-right: 12px; }
.search_form .cost .cost_bottom span { margin-right: 6px; }
.search_form .cost .cost_bottom span.select_district { border-bottom: 1px dotted white;  }
.search_form .search input { font-weight: bold; width: 80px; height: 26px; margin-left: -1px; }
.search_form .area .cost_bottom select { width: 77px; }
.search_form .square .cost_bottom input { position: relative; top: 3px; }

.found_head { border-bottom: 1px solid #ababab; padding-bottom: 7px; }
.found_head .found_head_left { float: left; font-size: 18px; margin-left: 12px; }
.found_head .found_head_right { float: right; }
.found_head .found_head_right .found_head_right_in { color: #666666; float: left; margin-right: 8px; }
.found_head .found_head_right .found_head_right_in div a { cursor: pointer; color: #0066cc; border-bottom: 1px dotted #0066cc; text-decoration:none; }
.found_head .found_head_right .found_head_right_in div.left_angle,
.found_head .found_head_right .found_head_right_in div.right_angle { background: none; display: none; }

.found_head .found_head_right div.current_sorted { position: relative; top: -3px; }
.found_head .found_head_right div.current_sorted div { height: 24px; width: auto; float: left; }
.found_head .found_head_right div.current_sorted div a { position: relative; top: 3px; color: white; border-bottom: none; }
.found_head .found_head_right div.current_sorted div { background: url("../img/sort_criteria.png") -22px 0 no-repeat; }
.found_head .found_head_right div.current_sorted div.left_angle { width: 10px; display: block; background: url("../img/sort_criteria.png") 0 0 no-repeat; }
.found_head .found_head_right div.current_sorted div.right_angle { width: 10px; display: block; background: url("../img/sort_criteria.png") -11px 0 no-repeat; }

.found_body_full {width: 100%;}
.found_body .found_body_left,
.found_body .found_body_right { width: 50%; float: left; }
.found_body .found_body_left { padding-top: 13px; }
.found_body .found_body_right-in { padding-left: 10px; }
.found_body .item_offer { margin-bottom: 10px; }
.found_body .item_offer_description { margin-bottom: 7px; position:relative; width: 85%; margin-top: 10px; }
.found_body .item_offer h3, .found_body .item_offer h2 { font-size: 14px; font-weight: bold; margin-left: 11px; }
.found_body .item_offer .item_offer_left {margin-right: 12px;width: 130px;position: relative;padding-left: 10px;float: none;vertical-align: top;}
.found_body .item_offer .item_offer_right { padding-left: 0px;vertical-align: top;padding-left: 12px;padding-top: 4px;}
.found_body .item_offer .item_offer_right-bot {height: 20px;padding-left: 12px;padding-bottom: 3px;line-height: 18px;vertical-align: bottom;}
.found_body .item_offer .item_offer_right h3 { margin: 0 0 5px 0; line-height: 21px; }
.found_body .item_offer .item_offer_right h3 a { text-decoration: none; border-bottom: 1px solid #037DD3; color: #037dd3; font-size: 15px; font-weight: bold; }

.found_body .item_offer .wrap_data { padding: 0 11px 6px 11px; background: #f1f5e8; }
.found_body .item_offer .data { width: 100%; }
.found_body .item_offer .data th,
.found_body .item_offer .data td { background: #f1f5e8; text-align: center; }
.found_body .item_offer .data td { padding: 5px 0; }
.found_body .item_offer .data td.price { padding-left: 5px ; padding-right: 5px; }
.found_body .item_offer .data td.square { padding-left: 5px ; padding-right: 5px; }
.found_body .item_offer .data td.align-left { text-align: left; }
.found_body .item_offer .data th { font-size: 11px; color: #8a8f7e; padding: 6px 0 4px 0; }
.found_body .item_offer .data span.no-sales { color: #8a8f7e; }
.found_body .item_offer .data span.star { color: #BA0707; }
.found_body .item_offer .data tr { border-bottom: 1px solid white; }
.found_body .item_offer .data td a { text-decoration: none; border-bottom: 1px solid #037DD3; }
.found_body .item_offer .data tr.last a { text-decoration: none; border-bottom: 1px solid #037DD3; font-weight: bold;  }
.found_body .item_offer .announce { background-color: #eeeeee; padding: 6px 11px; line-height: 1.4em; }

.found_body .found_body_left .item_offer_type_exclusive {border: 1px solid #cec789; background-color: #fcf18b;}
.found_body .found_body_left .item_offer_type_exclusive:hover {border: 1px solid #f59d33; background-color: #fcf18b;}

.found_body .found_body_left .item_offer_type_exclusive .data tr {border-bottom: 1px solid #c2b96b;}
.found_body .found_body_left .item_offer_type_exclusive .data td {background-color: #fcf18b;}
.found_body .found_body_left .item_offer_type_exclusive .data th {background-color: #fcf18b;}
.found_body .found_body_left .item_offer_type_exclusive .wrap_data {background-color: #fcf18b;}

.item_offer__icon {position: absolute; top: 15px; right: 15px; width: 27px;height: 31px;background: url('../img/marks.png') left top no-repeat transparent;text-align: center;font-weight: bold;line-height: 27px;}
.item_offer_active .item_offer__icon {background-position: left bottom;}
.item_offer__icon_custom {width: 32px;height: 45px;background: url('') center center no-repeat transparent;}
.item_offer_active .item_offer__icon_custom {background-position: center center;}

.realty-list-pagination {margin-top:25px;}

/*
26.05.2011 verstka-43
*/
.newrealty_left { margin-bottom: 13px; padding: 9px 0px 4px; }
.newrealty_left .realty-search__left .content-block { color: white; font-size: 18px; line-height: 24px; margin: -6px 0 9px 0; }
.newrealty_left fieldset { vertical-align: top; margin-bottom: 10px; }

.realty-search__left { width: 150px; vertical-align: top; }
.realty-search__right { vertical-align: top; position: relative; top: -2px; margin-bottom: -6px; }

.fieldControlBlock input.colorGrey,  .fieldControlBlock select.colorGrey { color: #6e6e6e; }
.fieldControlBlock .labelBlock { display: block; margin-bottom: 5px }
.fieldControlBlock .chkBoxControl { position: relative; top: 3px; left: 1px; margin-right: 5px; }
.fieldControlBlock label, .fieldControlBlock span { color: white; font-size: 13px; }

.controlBox input.subm { font-weight: bold; padding: 2px 18px; }
.controlBox input.short { width: 40px; }
.controlBox { position: relative; margin-right: 20px; }
.controlBox span { position: relative }
.controlBox select, .controlBox input { font-size: 13px; padding: 2px 1px 2px 2px }
.realty-search__left_top .controlBox select { margin-left: 9px; }
.fieldControlBlock_area .controlBox input.short { width: 30px; }
.fieldControlBlock_area { margin-right: 15px; }
.fieldControlBlock_distanse .text { margin-left: 10px; }
.fieldControlBlock_distanse .distancefromcity { width: 30px; }

/**/
.districtNewRealty { margin-bottom: 20px; }
.districtNewRealtyTitle { font-size: 18px; border-bottom: 1px solid #d0d2cb; padding-bottom: 6px; }
.districtNewRealty li { color: #807f7f; line-height: 19px; font-size: 11px; margin-bottom: 5px; }
.districtNewRealty li sup { font-size: 9px; }
.districtNewRealty li a { font-size: 14px; font-weight: bold; }
.districtNewRealty li a:link, .districtNewRealty li a:visited, .districtNewRealty li a:hover, .districtNewRealty li a:active{ text-decoration: none; border-bottom: 1px solid #037dd3; }

.developertable { border-top: 3px solid #f17e00; border-bottom: 3px solid #f17e00; padding-top: 13px; }
.developertable h2 { margin-left: 10px; font-size: 24px; margin-bottom: 10px; }
.developer_search { background: #779f1a; width: 100%; padding: 10px 0; margin-bottom: 10px; position: relative; }
.developer_search  span { color: white; font-family: arial, sans-serif; }
.developer_search input { font-family: arial, sans-serif; font-size: 14px; }
.developer_search .developer_top { margin: 0 0 0 13px; }
.developer_search .developer_top .developer_search-text { margin-left: 6px; font-size: 14px; margin-right: 4px; }
.developer_search .developer_top .developer_prof { height: 25px; width: 55%; border: 1px solid #abadb3; padding: 0 1px; }
.developer_search .developer_top .developer_submit { margin-left: 8px; width: 81px; height: 29px; font-weight: bold; color: #202020; font-size: 14px; font-family: arial, sans-serif; }
.realtyAgencyFishPic {display: block; }
.developers { margin-bottom: 10px; border-top: 5px solid #f5f5f4; border-bottom: 5px solid #f5f5f4; width: 100%; border-collapse: separate; }
.developers tr td { vertical-align: middle; padding: 14px 20px 14px 20px; border-top: 1px solid #cdcdca; }
.developers tr td.first { text-align: center; width: 1%; padding-top: 10px; padding-bottom: 10px; padding-right: 0px; }
.developers tr td.middle { padding-top: 14px; padding-right: 0px; }
.developers tr td.developers-right { padding-top: 10px; padding-bottom: 10px; width: 1%; }
.developers tr td.middle a { position: relative; margin-right: 20px; font-size: 18px; text-decoration: none; border-bottom: 1px solid #037DD3; }
.developers tr td.middle span { font-size: 14px;  }
table.developers_agency tr td.middle a { position: static; }
.developers tr.lasttr td { border-bottom: 1px solid #cdcdca; }

.developers-right-pic { white-space: nowrap; }

.findcompanies { padding-bottom: 14px; }
.findcompanies span { color: #5a5a5a; font-size: 12px; margin-left: 10px; }
.catalogs { color: #5a5a5a; font-size: 12px; margin-left: 10px; padding-top: 15px; line-height: 1.5; }

/**/
.fieldControlBlock .checkBoxControl {
    position: relative;
    top: 2px;
}
.realty-card h2 {
	color: #000;
	font-size: 18px;
	font-weight: normal;
	margin: 0 0 14px;
}
.forms_error {
    background-color: #FFD6BF;
    border: 1px solid #DE4713;
    color: #A32D05;
    left: 10px;
    line-height: 1em;
    padding: 2px 15px 3px 10px;
    position: absolute;
    top: 26px;
	width: 160px;
    vertical-align: middle;
    z-index: 9999;
}
.controlBox span.forms_error__crn {
    background: url("../img/err.png") no-repeat scroll 0 0 transparent;
    height: 5px;
    left: 10px;
    position: absolute;
    top: -5px;
    width: 10px;
}
.controlBox span.forms_error__close {
    background: url("../img/close.gif") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 5px;
}

.last-activity-object {
    color: #666666;
    font-size: 0.8em;
}


/**/

.realtyPhotoBut {
    background: url(../img/fotoButBg.png) 0 0 repeat-x;
    height: 24px;
    line-height: 24px;
    position: relative;
    padding: 0 8px;
    margin-left: 5px;
    white-space: nowrap;
}

.realtyPhotoBut:link,
.realtyPhotoBut:visited,
.realtyPhotoBut:hover,
.realtyPhotoBut:active {
    color: #fff;
    text-decoration: none;
}

.realtyPhotoBut ins {
    display: block;
    position: absolute;
    height: 24px;
    width: 4px;
    background: url(../img/fotoButBgSpr.png) 0 0 no-repeat;
}

.realtyPhotoBut .lc {
    position: absolute;
    left: 0px;
    background-position: 0 0;
}
.realtyPhotoBut .rc {
    position: absolute;
    right: 0px;
    background-position: right 0;
}

.b_news-about__title a {
	color: #000000;
	text-decoration: none;
}

.b-map-popup {
	position:relative;
	width:400px;
	float:left;
	margin: 20px;
}

.b-map-popup__shadow {
	display: block;
	position:absolute;
	left: 2px;
	bottom: 5px;
	width: 97%;
	height: 80%;
	
   box-shadow: 18px 16px 20px -5px rgba(0, 0, 0, 0.51);
    -moz-box-shadow: 18px 16px 20px -5px rgba(0, 0, 0, 0.51);
    -webkit-box-shadow: 18px 16px 20px -5px rgba(0, 0, 0, 0.51);	
	
}

.b-map-popup__frame{
	position:relative;
	overflow:hidden;
	padding:10px 0;
}

.b-map-popup__content {
	padding:0px 6px 0 2px;
	position:relative;
	overflow:hidden;
	z-index:10;
}

.b-map-popup__frame .blc-cn {
	position:absolute;
	width:20px;
	height:24px;
	left:-10px;
	top:-14px;
}

.b-map-popup__frame .blc-cn.blc-tr, 
.b-map-popup__frame .blc-cn.blc-br {
	margin-left:100%;
}

.b-map-popup__frame .blc-cn.blc-bl, 
.b-map-popup__frame .blc-cn.blc-br {
	top:auto;
}

.b-map-popup__frame .blc-cn{
	background:url(../img/placeholder/map-popup.png);
}

.b-map-popup__frame .blc-cn.blc-tl, 
.b-map-popup__frame .blc-cn.blc-bl {
	width:100%;
} 

.b-map-popup__left-line {
	background:url(../img/placeholder/map-popup_l.png);
	position:absolute;
	left:1px;
	top:0px;
	width:3px;
	height:1000px;
}

.b-map-popup__right-line {
	background:url(../img/placeholder/map-popup_r.png);
	position:absolute;
	right:5px;
	top:0px;
	width:3px;
	height:1000px;
}

.b-map-popup__close,
.close {
	width: 8px;
	height: 8px;
	top: 0px;
	right: 10px;
	position:absolute;
	display: block;
	background: url(../img/placeholder/control-sprite.png) 0 0 no-repeat;
}

.b-map-popup__text {
	font-family: Arial;
	padding: 3px 7px 2px;
	background-color: #fff;
}
.b-map-popup__text h3 {
	font-size: 16px;
	line-height: 20px;
	color: #0d7ac0;
	font-weight: bold;
	margin-bottom: 6px;
}
.b-map-popup__text p, .b-map-popup__text div {
	margin: 0px;
	font-size: 13px;
	line-height: 20px;
	color: #505254;
	margin-bottom: 0px;
}

.b-map-popup__text p.b-map-popup__text_last {
	font-size: 14px;
}

.b-map-popup__text_bg-image_novostroy {
	padding-left: 50px;
	background-image: url(../img/placeholder/marker.png);
	background-position: 9px center;
	background-repeat: no-repeat;

}

.b-map-popup__text_bg-image_novostroy a {
	text-decoration: none;
	border-bottom: 1px solid #037dd3;
	color: #037dd3;
}



.realty-card { border: 1px solid #d3d5ce; border-top: 3px solid #f17e00; }
.realty-info-block { padding: 15px 20px 15px 20px; }

.realty-card .news-supplement__title {
    left: 0px;
}

.realty-block-bottom-brd { background: url(../img/realty-block-brd.gif) 0 bottom repeat-x; }
.realty-block-top-brd { border-top: 3px solid #f17e00; }
/*cardbuildershead*/
.realty-info-block__table { width: 100%; border-collapse: collapse; border-width: 0; }
.realty-info-block__table td { vertical-align: top; }
.realty-card .realty-info-block__table_cell-1 { width: 66%; }
.realty-card .realty-info-block__table_cell-2 { vertical-align: middle; width: 34%; text-align: center; padding: 0 20px; }
.realty-card .realty-info-block__table_cell-1 p { line-height: 21px }
.realty-info-block__phone { padding-top: 13px; padding-bottom: 8px; border-top: 1px solid #e0e0e0; float: left; font-size: 24px; font-weight: normal; }
a.link-map:link, a.link-map:visited, a.link-map:hover, a.link-map:active { color: #037dd3; text-decoration: none; border-bottom: 1px dotted #037dd3; }
/**/
.realty-card h1 { font-size: 24px; line-height: 30px; margin-bottom: 12px; }
.realty-card p { font-size: 13px; line-height: 18px; margin-bottom: 15px; }
.realty-info-block .span-10 .content-block { padding-right: 20px; }
/**/




/****/
.news_menu_item-active-b {background: url("../img/menus/botcurn.jpg") no-repeat scroll center 24px transparent;}
.news_menu_item { font-weight: bold; font-size: 13px; }
.news_menu_item a { font-weight: bold; }

.realty-info-block__objects-right {
    padding-left: 10px;
    padding-right: 0px;
}





.realty-table-block__item {
    background: #f1f5e8;
    padding: 10px 20px;
    margin-bottom: 10px;
}




.realty-table-block__item-compare {}
.realty-table-block__item-compare table {
    width: 100%;
    border-collapse: collapse;
}
.realty-table-block__item-compare td {
    border-bottom: 1px solid #d4d7cc;
    font-size: 13px;
    line-height: 18px;
    padding: 6px 0;
}

.realty-table-block__item-compare td.realty-table-block__item-compare__label {
    width: 110px;
}


.realty-table-block__item-compare__title {
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
    margin: 0px;
    margin-top: 4px;
    margin-bottom: 5px;
}








.realty-table-block__items__title {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 14px;
    margin-left: 10px;
    margin-top: 6px;
}

.realty-table-block__items__title a:link,
.realty-table-block__items__title a:visited,
.realty-table-block__items__title a:hover,
.realty-table-block__items__title a:active {
    color :#f28200;
}



.realty-table-block__item-resume-pic-canvas {
    background: url(../img/table-items-empty-pic.png) 0 0 no-repeat;
    width: 166px;
    height: 166px;
    display: block;
    position: relative;
}

.realty-table-block__item-resume-pic-canvas img {
    position: relative;
    top: 4px;
    left: 4px;
}

.realty-table-block__item-resume-pic {
    float: left;
    width: 175px;
}

.realty-table-block__item-resume-pic a:link,
.realty-table-block__item-resume-pic a:visited,
.realty-table-block__item-resume-pic a:hover,
.realty-table-block__item-resume-pic a:active {
    outline: none;
}


.realty-table-block__item-resume-table {
    /*overflow:hidden;*/
    margin-left: 180px;
    padding-top: 12px;
    padding-left: 20px;
}



.realty-table-block__item-resume-right {
    position: relative;
}


.realty-table-block__item-resume-table table {
    margin-left: -15px;
    width: 100%;
    border-collapse: collapse;
}

.realty-table-block__item-resume-table table th {
    color: #8a8f7e;
    font-size: 11px;
    padding-bottom: 10px;
}


.realty-table-block__item-resume-table table td {
    font-size:13px;
    line-height: 18px;
    padding-top:3px;
    padding-bottom: 3px;
    vertical-align: top;
}

.realty-table-block__item-resume-table table td.gray-border {
    border-top: 1px solid #D4D7CC;
}

.realty-table-block__item-resume-table table td.square {
    width: 47%;
}
.realty-table-block__item-resume-table table td.floors {
    width: 1%;
    text-align: center;
}

.realty-table-block__item-resume-table table tr.no-sales td {
    color: #8a8f7e;
}
.realty-table-block__item-resume-table table tr.no-sales td span.star {color: #BA0707;}


.realty-table-block__item-resume-table table td,
.realty-table-block__item-resume-table table th {
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
}

.realty-table-block__item-resume-table table th .pad,
.realty-table-block__item-resume-table table td .pad {
    padding-left: 5px;
    padding-right: 5px;
}

.realty-table-block__item-resume-table table td.price {
    width: 52%;
}

.realty-table-block__item-resume__small-pic-1,
.realty-table-block__item-resume__small-pic-2,
.realty-table-block__item-resume__small-pic-3,
.realty-table-block__item-resume__small-pic-4 {
    position: absolute;
    width: 60px;
    height: 60px;
    display: block;
    background: #f1f5e8;
    background-repeat: no-repeat;
    background-position: center center;
}

.realty-table-block__item-resume__small-pic-1 a,
.realty-table-block__item-resume__small-pic-2 a,
.realty-table-block__item-resume__small-pic-3 a,
.realty-table-block__item-resume__small-pic-4 a {
    display: block;
    width: 60px;
    height: 60px;
}

.realty-table-block__item-resume__small-pic-one {
    height: 155px;
    position: absolute;
    width: 155px;
    top:5px;
    left:5px;
    background-repeat: no-repeat;
    background-position: center center;
}

.realty-table-block__item-resume__small-pic-one a {
    height: 155px;
    width: 155px;
    display: block;
}

.realty-table-block__item-resume__small-pic-1 {
    left: 18px;
    top: 18px;
}
.realty-table-block__item-resume__small-pic-2 {
    right: 18px;
    top: 18px;
}

.realty-table-block__item-resume__small-pic-3 {
    left: 18px;
    bottom: 18px;
}
.realty-table-block__item-resume__small-pic-4 {
    right: 18px;
    bottom: 18px;
}


.realty-table-block__item-resume__small-pic-1 img,
.realty-table-block__item-resume__small-pic-2 img,
.realty-table-block__item-resume__small-pic-3 img,
.realty-table-block__item-resume__small-pic-4 img {
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
}



.realty-news-block {
    padding-top: 17px;
}

.realty-news-item {
    margin-bottom: 21px;
}

.realty-news-list__date {
    max-width: 160px;
    text-align: left;
    float: left;
    line-height: 21px;
    top: 2px;
    position: relative;
}

.realty-news-list__date .news_single_date {
    font-size: 12px;
}

.realty-news-list__text {
    margin-left: 160px;
    overflow: hidden;
    font-size: 14px;
    line-height: 21px;
}

.realty-news-list__text a:link,
.realty-news-list__text a:visited,
.realty-news-list__text a:hover,
.realty-news-list__text a:active {
    text-decoration: none;
    border-bottom: 1px solid #037dd3;
}

.realty-news-list__text a.object { color: #555555; border-bottom: 1px solid #555555; font-size: 12px; }

.realty-news-list__text a.comments-count {
    font-size: 11px;
}
.realty-news-list__text a.comments-count:link,
.realty-news-list__text a.comments-count:visited,
.realty-news-list__text a.comments-count:hover,
.realty-news-list__text a.comments-count:active {
    color: #000;
    border-bottom: none;
    text-decoration: underline;
}

.realty-construction-progress-item {
    clear: both;
    margin-bottom: 16px;
    display:block;

}
.realty-construction-progress-item img {
    display: block;
    background-position: 0 0;
}
.realty-construction-progress-item li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.realty-construction-progress-block {
    padding-top: 10px;
}

.realty-construction-progress-item__title {
    font-size: 18px;
    line-height: 21px;
}


.realty_news_gallery {
	margin: 20px 0 0 0;
    overflow: hidden;
    list-style: none outside none;
}
.realty_news_gallery .realty_news_gallery_thumb {
    list-style: none outside none;
	cursor: pointer;
    float: left;
    height: 100px;
    margin: 0 20px 20px 0;
    width: 100px;
    overflow: hidden;
    background: none;
    padding-left: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

/*
.realty-info-block .span-7 {

}*/

.b-markup {
	font: 13px/18px Arial, Tahoma, Sans-Serif;
	color: #000;
}

.b-markup_big {
	font: 16px/24px Arial, Tahoma, Sans-Serif;
	line-height: 1.4em;
}

.b-markup p {
	margin: 2px 0 21px 0;
}

.b-markup b, .b-markup strong {
	font-weight: bold;
}

.b-markup i, .b-markup em {
	font-style: italic;
}

.b-markup h1 {
	margin: 21px 0 10px 0;
	padding: 0px;
	font-size: 24px;
	line-height: 30px;
}

.b-markup h2 {
	margin: 23px 0 12px 0;
	padding: 0px;
	font-size: 21px;
	line-height: 24px;
}

.b-markup h3 {
	margin: 6px 0 13px 0;
	padding: 0px;
	font-size: 18px;
	line-height: 21px;	
}

.b-markup h4 {
	margin: 23px 0 14px 0;
	padding: 0px;
	font-size: 16px;
	line-height: 18px;		
}

.b-markup a {
	outline: none;
}

.b-markup__pic-left {
	float: left;
	margin-right: 20px;
	position:relative;
	top: -5px;
}

.b-markup__pic-right {
	float: right;
	margin-left: 20px;
	position:relative;
	top: -5px;
}

.b-markup__color-box {
	padding: 11px 20px 4px;
	margin-top: 25px;
}

.b-markup__color-box h1, 
.b-markup__color-box h2, 
.b-markup__color-box h3,
.b-markup__color-box h4 {
	margin-top: 0px;
}

.b-markup__color-box_color_grey {
	background: #898989;
	color: #fff;
}

.b-markup__color-box_color_grey a {
	color: #fff;
}

.b-markup__color-box h1 a, 
.b-markup__color-box h2 a, 
.b-markup__color-box h3 a,
.b-markup__color-box h4 a {
	text-decoration: none;
	border-width: 1px;
	border-style: solid;
	border-top: none;
	border-left: none;
	border-right: none;
}

.b-markup__color-box_color_grey h1,
.b-markup__color-box_color_grey h2,
.b-markup__color-box_color_grey h3,
.b-markup__color-box_color_grey h4 {
	border-color: #fff;
}

.b-markup hr {
	zoom: 1;
	margin: 0px;
	padding: 0px;
	height: 3px;
	background: #898989;
	border: none;
	font-size: 0px;
	margin-top: 26px;
	margin-bottom: 21px;
	margin-left: -20px;
}

.b-markup ul li {
	margin-bottom: 10px;
	margin-top: 13px;
	background: url(../img/b-markup-li.gif) 1px 8px no-repeat;
	list-style: none;
	padding-left: 12px;
}

.b-markup ol {
	padding-left: 21px;
}

.b-markup ol li {
	margin-bottom: 10px;
	margin-top: 13px;
	background: none;
	list-style: decimal;
	padding-left: 0px;
}

.b-markup ul.simple,
.b-markup ol.simple {
	padding-left: 0px;
}

.b-markup ul.simple li,
.b-markup ol.simple li {
	background: none;
	list-style: none;
	padding-left: 0px;
}

.b-markup table {
	width: 100%;
	margin: 21px 0 21px 0;
}

.b-markup table td,
.b-markup table th {
	padding-left: 20px;
}

.b-markup tr:nth-child(odd) td {
	background: #ebebeb;
}

.b-markup table th {
	background: #898989;
	font-size: 11px;
	line-height: 14px;
	padding: 10px 0 10px 20px;
	color: #fff;
	text-align: left;
}

.b-markup table td {
	padding-top: 10px;
	padding-bottom: 10px;
}







