/**
* @site http://advaction.ru
* @version 1
* @author camomile <camomile@advaction.ru>
*/

/**
* Global Reset
*
* @section reset
* @link http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
    empty-cells: show;
}
html, body {
	height: 100%;
}
body {
	font: 0.625em/1 Arial, Tahoma, sans-serif;
	color: #464646;
}
input, select, textarea {
	font-family: Arial, Tahoma, sans-serif;
	font-size: 100%;
	color: #464646;
}
input {
	vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
}
a {
    color: #0077C0;
	border-bottom: 1px solid rgba(12, 79, 114, 0.2);
    cursor: pointer;
    text-decoration: none;
}
a:hover {
	color: #025c93;
	border-bottom: 1px solid rgba(12, 79, 114, 0.3);
}
a img {
	text-decoration: none;
}
abbr, acronym {
    color: #025c93;
    border-bottom: 1px dashed rgba(12, 79, 114, 0.2);
}

/**
* Common styles
*
* @section common styles
*/

/**
* Clearfix
*
* @section common styles
* @subsection clearfix
*/
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
	font-size: 0;
}
.clearfix {
	display: block;
}

/**
* Some useful helpers
*
* @section common styles
* @subsection helper classes
*/
.clear {
    clear: both;
}
.hidden {
    display: none;
}
.show {
    display: block;
}
.align-left {
	text-align: left !important;
}
.align-right {
	text-align: right !important;
}
.align-center {
	text-align: center !important;
}
.rel {
	position: relative;
}
.link {
	color: #0077C0;
	border-bottom: 1px solid rgba(12, 79, 114, 0.2);
    cursor: pointer;
    text-decoration: none;
}
.link_no-border,
.link_no-border:hover {
	border: 0 !important;
}
.link_simple,
.link_simple:hover {
	border: 0;
	text-decoration: underline;
}
.link_black {
	color: #000;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_black:hover {
	color: #444;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_white {
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.link_white:hover {
	color: #f5f5f5;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.link_gray {
	color: #464646;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_gray:hover {
	color: #000;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_light {
	color: #888;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_light:hover {
	color: #777;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_webinar {
	position: absolute;
	right: 0;
	top: 115px;
}
.pseudo-link,
.pseudo-link:hover {
    border-bottom: 1px dotted;
    cursor: pointer;
    text-decoration: none;
	line-height: 1;
}
.pseudo-link_black {
    color: #000;
}
.pseudo-link_edit {
    color: #AAA;
}
.pseudo-link_delete {
    color: #AAA;
}
.pseudo-link__arrow {
	font-size: 13px;
}
.note {
	color: #888;
    font-size: 90%;
    font-style: italic;
    line-height: 1.2em;
}
.note_half {
	width: 65%;
}
.date {
	background: #e5e5e5;
	padding: 2px 10px;
	display: inline-block;
	font-size: 12px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #555;
	margin-left: 5px;
	border: 1px solid #ccc;
}

/**
* Tooltip
*
* @section common styles
* @subsection tooltip
*/
.tooltip {
	text-decoration: none;
	position: relative;
}
.tooltip span{
	display: none;
}
.tooltip_jq_hover{
	position: relative;
}
.tooltip_span_jq_hover{
	display: block !important;
	position: absolute;
	top: -5px;
	left: 80px;
	background: #fff;
	padding: 15px;
	color: #000;
	width: 200px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 11px;
	line-height: 1.3em;
	box-shadow: 0 0 3px #C0C0C0;
	-moz-box-shadow: 0 0 3px #C0C0C0;
	-webkit-box-shadow: 0 0 3px #C0C0C0;
	border: 1px solid #FFFFFF;
	text-align: left;
}

/**
* Lists
*
* @section common styles
* @subsection lists
*/
.hlist, .hlist li {
	margin: 0;
    padding: 0;
}
.hlist li {
    float: left;
}
.hlist .vlist li {
	clear: both;
}
.hlist li:first-child:before {
    content: "";
}
.hlist_slash li:before {
    content: "\/\a0\a0";
}
.hlist_vslash li:before {
    content: "\a0\a0|\a0\a0";
	font-size: 9px;
}

.vlist,
.vlist li {
    margin: 0 0 0.3em;
    padding: 0;
    list-style: none;
}
.vlist li:before {
    position: absolute;
    margin-left: -1.8em;
}
.content .vlist_mdash li {
	margin-left: 27px;
}
.vlist_mdash li:first-child:before {
    content: "\2014\a0";
}
.vlist_mdash li:before {
    content: "\2014\a0";
}
.content .vlist_dot li {
	list-style: disc;
	margin-left: 20px;
}

.dlist {
	overflow: hidden;
}
.dlist dt,
.dlist dd {
	margin-bottom: 5px;
}
.dlist dt {
	float: left;
	white-space: nowrap;
}
.dlist dd {
	text-align: left;
}

/**
* Icon
*
* @section common styles
* @subsection icon
*/
.icon {
	background: url(/i/icons.png) no-repeat;
}
.icon_small {
    margin-right: 8px;
    cursor: pointer;
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: text-bottom;
}
.icon_top {
	vertical-align: top;
}
.icon_bottom {
	vertical-align: bottom;
}
.icon_middle {
	vertical-align: middle;
}
.icon_small:hover {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}
.icon_blocks {
	background-image: url("/i/block.png");
}
.icon_stat {
	background-image: url("/i/stat.png");
}
.icon_lock {
	background-image: url("/i/lock.png");
}
.icon_options {
	background-image: url("/i/settings.png");
}
.icon_copy {
	background-image: url("/i/copy.png");
}
.icon_delete {
	background-image:url("/i/trash.png");
}
.icon_restore {
	background-image:url("/i/undo.png");
}
.icon_edit {
	background-image:url("/i/edit.png");
}
.icon_link {
	background-image:url("/i/icon_link.png");
	margin-left: 5px;
}
.icon_csv {
	margin-left: 10px;
	background: url("/i/excel.png") no-repeat left center;
	padding: 3px 0 3px 20px;
	float: right;
}
.icon_right {
	margin: 0 0 0 8px;
}

/**
* Buttons
*
* @section common styles
* @subsection buttons
*/
.btn_big,
.btn_big a,
.btn,
.btn a,
.btn input {
	background: url(/i/buttons.png) no-repeat 0 0;
	text-transform: uppercase;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 12px;
}
.btn_big { /* ie.css */
	float: left;
	margin-right: 45px;
	margin-left: 16px;
	background-position: right -60px;
	cursor: pointer;
}
.btn_big a {
	position: relative;
	display: block;
	background-position: left -60px;
	text-decoration: none;
	white-space: nowrap;
	left: -16px;
	display: block;
	padding: 0 10px 0 18px;
	height: 38px;
	color: #8c96a0;
	line-height: 38px;
	font-size: 110%;
}
.btn_big img {
    display: inline-block;
    float: left;
    margin: 6px 15px 0 0;
}
.btn { /* ie.css */
	float: left;
	margin-right: 15px;
	margin-left: 15px;
	background-position: right 0;
	cursor: pointer;
}
.btn a,
.btn input{
	position: relative;
	display: block;
	background-position: left 0;
	text-decoration: none;
	white-space: nowrap;
	left: -15px;
	display: block;
	padding: 0 0 0 15px;
	height: 26px;
	color: #FFF;
	line-height: 30px;
	border: 0;
	cursor: pointer;
}
.btn:hover {
	background-position: right -30px;
}
.btn a:hover,
.btn:hover a,
.btn input:hover,
.btn:hover input {
	background-position: left -30px;
}
.btn_disabled {
	opacity: 0.5;
	filter: alpha(opacity = 50);
	cursor: default;
}
.btn_disabled a,
.btn_disabled input {
	cursor: default;
}
.btn_disabled:hover{
	background-position: right 0;
}
.btn_disabled a:hover,
.btn_disabled:hover a,
.btn_disabled input:hover,
.btn_disabled:hover input {
	background-position: left 0;
}
.btn_right {
	float: right;
	margin-left: 20px;
}
.btn_period {
	margin-top: -1px;
	margin-left: 20px;
}
.filter .btn,
.filter .btn:hover {
	background-position: right -102px;
	margin-left: 25px;
}
.filter .btn a,
.filter .btn input,
.filter .btn a:hover,
.filter .btn input:hover {
	background-position: left -102px;
	color: #333333;
	text-transform: none;
	left: -25px;
    line-height: 26px;
    padding: 0 0 0 15px;
	text-shadow: 0 1px 0 #FFFFFF;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
}
.filter .btn:hover,
.filter .btn a:hover,
.filter .btn input:hover
.filter .btn:hover a,
.filter .btn:hover input {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}

/**
* Forms
*
* @section common styles
* @subsection forms
*/
.b-input,
.b-textarea,
.b-select {
    width: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	border: 1px solid #E8E8E8;
    border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	margin-bottom: 7px;
    padding: 5px 7px;
    font-size: 100%;
	color: #929CA4;
	background: #FFF;
}
.b-form .b-input,
.b-form .b-textarea,
.b-form .b-select {
    width: 435px;
    margin-bottom: 10px;
}
.b-form_lightbox .b-input,
.b-form_lightbox .b-textarea,
.b-form_lightbox .b-select,
.b-form_lightbox .b-form__error-common,
.b-form_lightbox .b-form__message-common {
    width: 100%;
}
.b-form_lightbox .b-form__error,
.b-form_lightbox .b-form__message {
    font-size: 100%;
    padding-left: 0;
}
.b-form_lightbox .b-form__note {
    margin-bottom: 5px;
    width: 95%;
}
.b-form .b-input_small,
.b-input_small {
    font-size: 95%;
    padding: 2px 7px;
    width: 80px;
	vertical-align: baseline;
}
.b-input_half {
    width: 50%;
}
.b-select {
	padding: 0 0 0 7px;
	height: 28px;
	line-height: 21px;
}
.b-form .b-select_format {
	margin: 0 5px 0 40px;
	float: left;
	width: 150px;
}
.b-select_campaign {
	margin: 1px 5px 0 0;
	float: left;
}
.b-select-holder {
	background: #ececec;
	padding: 10px 10px 3px;
	margin-bottom: 10px;
	display: inline-block;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.b-select-holder .b-select {
	padding: 1px 0 1px 7px;
	height: 21px;
}
.b-select-holder .b-select_choose {
	max-width: 400px;
	min-width: 200px;
	width: auto;
}
.b-select-holder .b-select_auto {
	width: auto;
}
.b-input:focus,
.b-textarea:focus {
	background: #F9F9F9;
}
.b-label,
.b-label_fix {
    color: #616161;
}
.b-label {
    display: block;
    line-height: 1.2em;
	padding: 3px 0;
    white-space: nowrap;
}
.b-label_fix {
    margin-left: -3px;
    padding: 0 18px 0 6px;
}
.b-label_right {
	padding-right: 0;
}
.b-label .b-label__asterisk,
.asterisk {
    color: #FF0000;
}
.b-label .b-label__quantity {
    color: #2DC8EB;
}
.b-radio,
.b-checkbox {
    margin: 0 0 5px;
    padding: 0;
    width: 15px;
}
.b-button {
    margin-top: 5px;
}
.b-form__title {
    margin: 15px 0 5px;
}
.b-form__range {
    padding: 0 5px;
}
.b-form__error-common,
.b-form__message-common {
    background: #FCCAC1 url("/i/icon_error.png") no-repeat 7px 5px;
    color: #565656;
	font-size: 12px;
	height: 40px;
	line-height: 40px;
    padding: 0 10px 0 50px;
    margin-bottom: 20px;
	border: 1px solid #EB5439;
	width: 435px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    box-shadow: inset 0 0 3px #FFF;
	-moz-box-shadow: inset 0 0 3px #FFF;
	-webkit-box-shadow: inset 0 0 3px #FFF;
	position: relative;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.b-form__message-common {
    background: #effeb9 url("/i/icon_ok.png") no-repeat 7px 3px;
	border: 1px solid #98c700;
}
.b-form__error-common:after,
.b-form__message-common:after {
	content: url("/i/corner_error.png");
	position: absolute;
	left: 40px;
	top: 28px;
}
.b-form__message-common:after {
	content: url("/i/corner_ok.png");
}
.b-form__error,
.b-form__message {
    color: #b72e2e;
    display: inline-block;
    font-style: normal;
    vertical-align: top;
	padding-top: 6px;
    font-size: 12px;
	margin-left: 3px;
}
.b-form__message {
    color: #58b80b;
}
.b-form__error_checkbox {
	vertical-align: baseline;
	padding-top: 0;
}
.b-form__note {
    color: #999;
    font-size: 90%;
    font-style: italic;
    line-height: 1.2em;
    text-align: right;
    width: 400px;
    margin: -7px 0 10px;
	padding-left: 35px;
}
.b-form__note_button {
	margin-top: 5px;
	padding-left: 0;
	text-align: left;
}
.b-field-holder {
	margin-bottom: 7px;
}
.b-form_registration {
    margin-top: 20px;
	background: #F0F0F0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 20px;
}

.content input[type="checkbox"] {
    display:none;
}



.content input[type="checkbox"] + label::before {
    display:inline-block;
    width:19px;
    height:19px;
    margin: 0 4px 5px 0;
    vertical-align:middle;
    background:url("/i/ui.png") left top no-repeat;
    cursor:pointer;
    content:"";
}

.content input[type="checkbox"]:checked + label::before {
    background:url("/i/ui.png") -20px top no-repeat;
}

.content input[type="radio"] {
    display:none;
}



.content input[type="radio"] + label::before {
    display:inline-block;
    width:19px;
    height:19px;
    margin: 0 4px 5px 0;
    vertical-align:middle;
    background:url("/i/ui.png") -39px top no-repeat;
    cursor:pointer;
    content:"";
}

.content input[type="radio"]:checked + label::before {
    background:url("/i/ui.png") -59px top no-repeat;
}

/**
* @section common styles
* @subsection messages
*/
.service-error,
.service-message {
    border-left: 3px solid #F00;
    color: #000;
    padding: 1%;
    margin-bottom: 10px;
}
.service-message {
    border-left: 3px solid #58b80b;
}
.service-warning, .service-info, .service-ok, .service-additional-info {
    background: none repeat scroll 0 0 #FFEEED;
    border: 1px dashed #E0B1B1;
    color: #AD7676;
    font-size: 12px;
    padding: 5px 20px;
    text-shadow: 1px 1px 1px #FFFFFF;
    width: 750px;
	margin-bottom: 15px;
}
.service-ok {
    background: none repeat scroll 0 0 #DFF7DD;
    border: 1px dashed #B9DBB6;
    color: #7EA57B;
}
.service-info {
    background: none repeat scroll 0 0 #F9F9DC;
	border: 1px dashed #D6D69E;
    color: #ADA771;
}
.service-additional-info {
    background: none repeat scroll 0 0 #CDECFA;
	border: 1px dashed #D6D69E;
    color: #0778A8;
}
.service .service__title {
	margin-bottom: 0;
	line-height: 2em;
}

/**
* @section common styles
* @subsection rubl
* @link http://www.artlebedev.ru/tools/technogrette/html/rouble/
*/
@font-face { font-family: "Rubl Sign"; src: url(http://www.artlebedev.ru/;-)/ruble.eot); }
span.rur { font-family: "Rubl Sign"; text-transform: uppercase; // text-transform: none;}
span.rur span { position: absolute; overflow: hidden; width: .45em; height: 1em; margin: .1ex 0 0 -.55em; // display: none; }
span.rur span:before { content: '\2013'; }

/**
* @section common styles
* @subsection preloader
*/
.preloader {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #fff;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}
.preloader__img {
	top: 50%;
	left: 50%;
	margin-left: -64px;
	position: relative;
	width: 128px;
	height: 128px;
	background: url("/i/preloader.png");

}

/**
* @section common styles
* @subsection paging
*/
.paging {
	font-size: 120%;
}
.paging a,
.paging span {
	margin: 0 5px;
	color: #606060;
}
.paging a.arrow {
	text-decoration: none;
	font-family: "Times New Roman", Times, serif;
}
.paging a.arrow_left {
	margin: 0 5px 0 0;
}
.paging a.arrow span {
	text-decoration: underline;
	font-family: Tahoma, Geneva, sans-serif;
	margin: 0;
}
.paging a.arrow_left span {
	margin: 0 0 0 3px;
}
.paging a:hover,
.paging a:hover span {
	color: #000;
}
.paging span.selected {
	background: #a2a2a2;
	color: #FFF;
	padding: 1px 4px;
	margin: 0 2px;
}

/**
* @section common styles
* @subsection filters
*/
.filter {
	background: url(/i/filter_bg.png) repeat-x 0 0;
	padding: 10px 20px 10px 30px;
	font-size: 110%;
	line-height: 1.2em;
	margin: 0 0 0 -30px;
	border-bottom: 1px solid #EEEEEE;
}
.filter_stat {
	background: none;
	margin: 0 0 20px;
    overflow: hidden;
    padding: 0 0 10px;
}

.filter_table {
	background: #F9F9F9 none;
	/*background: rgba(255, 255, 255, 0.3) none;*/
	margin: 20px 0 30px;
    overflow: hidden;
    padding: 12px 20px 4px;
	box-shadow: 0 0 6px #C0C0C0;
	border: 1px solid #FFF;
}
.filter_censor {
	margin: 20px 0 15px;
}
.filter_buttons {
	background: none;
	margin: 0;
    overflow: hidden;
    padding: 0 0 10px;
}
.filter_table .b-label {
	display: inline;
}
.filter_table .b-select {
	height: 21px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.filter__item {
	float: left;
	margin-right: 30px;
}
.filter__item_last {
	float: right;
	margin-right: 0;
}
.filter__item_separated {
	margin-right: 50px;
}
.filter__settings {
	margin-bottom: 10px;
}
.filter__settings li {
	margin-right: 10px;
}
.filter__settings li a {
	display: inline-block;
    padding: 4px 10px;
}
.filter__settings li .active {
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: inset 0 0 3px #ccc;
    -webkit-box-shadow: inset 0 0 3px #ccc;
    box-shadow: inset 0 0 3px #ccc;
    text-decoration: none;
    background-color: #FFF;
}
.filter__status,
.filter__type {
    clear: both;
}
.filter__status li,
.filter__type li {
    padding-bottom: 12px;
}
.filter .filter__type__all {
    color: #717171;
}
.filter .filter__type__active {
    color: #58b80b;
}
.filter .filter__type__inactive {
    color: #b3b3b3;
}
.filter .filter__status__moderation {
    color: #00c9af;
}
.filter .filter__status__accepted {
    color: #58b80b;
}
.filter .filter__status__excluded {
    color: #b72e2e;
}
.filter .filter__status__archive {
    color: #af820a;
}
.filter__status-holder {
	float: left;
	margin-right: 30px;
}
.filter__item .b-select {
	border: 1px solid #ccc;
}
.filter h1 {
	margin-top: 10px;
}
.filter .filter__item-title {
	margin-right: 10px;
	color: #8C8C8C;
}

/**
* @section wrap
*/
.wrap {
	min-width: 980px;
	min-height: 100%;
	height: auto !important;
	height: 100%;
    position: relative;
	width: 100%;
	background: #fff url(/i/bg_inner.png) 0 0 repeat-x;
}
.wrap_public {
    background:  #fff url(/i/bg.jpg) 50% 0 no-repeat;
	margin: 0 auto;
}

/**
* @section head
*/
.head_public {
    width: 960px;
    margin: 0 auto;
	background: none;
}
.head__logo {
    display: inline-block;
    float: left;
	padding: 10px 0 10px 30px;
}
.head__logo_public {
	padding: 67px 0 55px;
	width: 267px;
	height: 84px;
}

.target_mail__logo {
	float: right;
	padding: 10px 460px 10px 30px;
}
.target_mail__logo_public {
	padding: 77px 110px 55px;
}

/**
* @section head
* @subsection user info
*/
.user-info {
	float: right;
    display: inline-block;
	font-size: 120%;
	line-height: 1.3em;
	padding: 0 10px;
	position: relative;
}
.user-info li {
	padding: 10px 10px 7px;
}
.user-info .user-info__account {
	background: #4b7cb6 url(/i/menu_item_hover.png) 0 -2px repeat-x;
	text-align: center;
	color: #FFF;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
.user-info .user-info__client {
	padding-top: 11px;
}
.user-info a {
	color: #10498C;
}
.user-info__account-balance {
	margin-bottom: 2px;
}
.user-info__account-balance span {
	font-size: 150%;
}
.user-info .user-info__account__pay {
	color: #FFF;
}

/**
* @section head
* @subsection auth and register forms
*/
.user {
    float: right;
    display: inline-block;
    margin: 80px 0 0 0;
    font-size: 135%;
    color: #5a6e7a;
    background: #FFFFFF;
    border:  1px solid #b4e3fb;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(0.5, #e4f4fd), color-stop(0.8, #FFFFFF) );
    background: -moz-linear-gradient(center bottom, #FFFFFF 0%, #e4f4fd 50%, #FFFFFF 80%);
    position: relative;
}
.user .separator {
    padding: 0 8px;
    color: #2DC8EB;
}
.user-entrance,
.user-register {
    z-index: 1001;
    position: relative;
    font-weight: bold;
	color: #2DC8EB;
}
.user-register {
    z-index: 901;
}
.user-entrance_hide {
    z-index: 100 !important;
}
.user__exit {
    text-decoration: none;
    border-bottom:  1px dotted #2DC8EB;
    margin-left: 20px;
    float: left;
    line-height: 1.3em;
}
.user__user {
    line-height: 1.3em;
    display: inline-block;
    float: left;
}
.user-login__form,
.user-register__form {
    position: absolute;
    display: none;
    background: #FFFFFF;
    border: 1px solid #b4e3fb;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 40px 15px 12px;
	background: #FFF;
    left: -1px;
    top: -1px;
    width: auto;
    z-index: 1000;
    font-size: 90%;
    color: #929CA4;
}
.user-login__form {
	background: #FFF url("/i/login_bg.png") repeat-x 0 bottom;
}
.user-register__form {
    z-index: 900;
    left: -139px;
    width: 283px;
}
.user .b-input {
    width: 150px;
}
.user .b-form__message {
    color: #666666;
    display: block;
    font-size: 11px;
    font-style: italic;
    line-height: 1.1em;
    margin: -3px 0 5px;
    padding-left: 0;
}
.user .b-form__error {
    color: #B72E2E;
    font-style: normal;
    display: inline-block;
    font-size: 11px;
    line-height: 1.1em;
    margin: -3px 0 5px;
    padding: 0;
}
.user .b-form__note {
	width: 90%;
	font-style: normal;
}
.user .b-form__note a {
	color: #929CA4;
}
.user .btn {
	margin-right: 0;
}
.user-login__form .b-label,
.user-login__form .b-label_fix {
	color: #929CA4;
	font-style: normal;
}
.user-login__form .b-label_fix {
	padding-right: 0;
}
.user-login__form .remember-me {
	clear: both;
	margin-top: 45px;
	margin-bottom: 3px;
}

.client-type .client-type__item {
    position: relative;
    padding: 3px 7px;
    margin-left: 5px;
    background-color: #FFF;
	margin-top: 2px;
}
.client-type .client-type__who {
    font-size: 165%;
    color: #000;
    font-family: Georgia,"Times New Roman",serif;
}
.client-type label {
    cursor: pointer;
    border-bottom: 1px dotted #929CA4;
}
.client-type .b-radio_client {
    height: 1px;
    left: 10px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 5px;
    width: 1px;
    z-index: -1;
}
.client-type .client-type__item_selected {
	color: #FFF;
	display: inline-block;
	background: #2DC8EB;
	text-decoration: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    border-radius: 3px;
}
.client-type__item_selected label {
    border-bottom: 0;
	cursor: default;
}
.user .b-input_email-reg {
	margin: 10px 0;
	width: 100%;
}

/**
* @section head
* @subsection howto
*/
.instruction {
	background: url("/i/faq_inner.png") no-repeat 0 4px;
    height: 50px;
    position: absolute;
    right: 450px;
    text-align: right;
    top: 0;
    width: 285px;
}
.instruction__link {
	line-height: 22px;
	display: inline-block;
	padding-left: 30px;
	padding-top: 7px;
	color: #464646;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/**
* @section nav
*/
.nav {
	border-bottom: 1px solid #DFE3E8;
}
.nav-tabs {
    font-size: 12px;
    padding-left: 30px;
	font-family:  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
}
.nav-tabs .nav-tabs__item {
    margin-right: 5px;
}
.nav-tabs .nav-tabs__item-link {
	display: inline-block;
	padding: 0 15px;
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	color: #FFF;
	background: #4B7CB6 url("/i/menu_item_hover.png") repeat-x 0 0;
	border: 1px double #1e7db9;
	border-width: 0 1px;
}
.nav-tabs .nav-tabs__item-link:hover {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}
.nav-tabs .nav-tabs__item-active {
	display: inline-block;
	padding: 0 15px;
	height: 35px;
	line-height: 35px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	color: #404040;
	background: #E2E5EA url("/i/menu_item.png") repeat-x 0 0;
	border: 1px double #dce1e6;
	border-width: 0 1px;
}

/**
* @section content
*/
.content {
    padding: 0 0 190px 30px;
	background: #FFF;
	/*background: #FFF url("/i/texturebg.gif") repeat 0 0;*/
}
.content_public {
    width: 855px;
	padding-left: 95px;
    margin: 0 auto;
	background: transparent none;
}

/**
* @section content
* @subsection content layout
*/
.page-holder {
	float: left;
    margin-right: -250px;
    width: 100%;
}
.page {
	padding: 20px 20px 0 0;
	font-size: 120%;
	line-height: 1.4em;
	max-width: 950px;
}
.page_wide {
	padding: 20px 20px 0 0;
	font-size: 120%;
	line-height: 1.4em;
	width: calc(100% - 30px);
	margin-right: 30px;
}
.page_left {
	margin-right: 22%;
	min-width: 670px;
}

.aside-left {
    float: left;
    position: relative;
}
.aside-right {
    margin-left: 2%;
    display: inline-block;
}

/**
* @section content
* @subsection sidebar
*/
.sidebar {
	padding-top: 20px;
    float: right;
    width: 20%;
	font-size: 120%;
	line-height: 1.2em;
	margin-right: 20px;
}
.sidebar .sidebar__item {
	margin-bottom: 30px;
}
.sidebar .sidebar__item-title {
	font-size: 14px;
	color: #FFF;
	padding: 0 15px;
	margin: 0;
	height: 33px;
	line-height: 33px;
	background: #449ED2 url("/i/title_bg.png") repeat-x 0 -1px;
	text-shadow: #666 1px 1px 1px;
	-moz-text-shadow: #666 1px 1px 1px;
	-webkit-text-shadow: #666 1px 1px 1px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	border-top: 1px solid #CCCCCC;
}
.sidebar .sidebar__item-content {
	padding: 10px 15px;
	background-color: #FFF;
	border: 1px solid #DDD;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.sidebar__item-content a {
	color: #000;
}

.news .news-item {
	margin: 0 0 1em;
	padding: 0 0 1em;
	border-bottom: 1px dotted #DDD;
	position: relative;
	color: #444;
	width: 100%;
}
.news_inner .news-item {
	border-bottom: 0;
}
.news .news-item_last {
	margin: 0;
	padding: 0;
	border: 0;
}
.news .news-item__date {
	color: #888;
	position: absolute;
	right: 0;
	top: 1px;
	font-size: 10px;
}
.news_inner .news-item__date {
	left: 0;
	width: 70px;
}
.news .news-item__title {
	display: block;
	margin-bottom: 7px;
	color: #000;
	padding-right: 70px;
	font-size: 110%;
	line-height: 1.4em;
}
.news_inner .news-item__title,
.news_inner .news-item__text {
	padding: 0 0 0 70px;
	margin-bottom: 0;
}
.news_inner .news-item__text {
	font-size: 12px;
}
.news_inner .news-item__text p {
	margin-bottom: 0.5em;
}

.news_all .news-item {
	background: #FFF;
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 7px #C0C0C0;
    margin: 0 0 20px;
    padding: 15px 20px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: auto;
}
.news_all .news-item:hover {
	background: #F4F4F4;
}
.news_all .news-item__date {
	background: #F1F1F1;
	-webkit-border-radius: 0 0 0 5px;
	-moz-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
    font-size: 11px;
    font-style: italic;
    padding: 5px 20px;
    top: 0;
}
.news_all .news-item:hover .news-item__date {
	background: #e5e5e5;
}
.news_all .news-item__title,
.news_all .news-item__text {
	padding: 0;
	margin-bottom: 0;
}
.news_all .news-item__title {
	color: #0077C0;
	margin-bottom: 10px;
	font-size: 17px;
	margin: 0 0 10px;
}
.news_all .news-item__text {
	font-size: 13px;
	line-height: 1.4em;
}

.sidebar .news-item__title {
    font-weight: bold;
	line-height: 1.2em;
}
.show-all {
	background: url("/i/squares.gif") no-repeat left 2px;
    padding: 0 0 0 20px;
}


/**
* Common styles for articles
*
* @section content
* @subsection text
*/
.text {
    font-size: 14px;
    line-height: 1.4em;
	padding: 20px 0 0 0;
	max-width: 960px;
}
.banner-public {
	float: right;
	margin: 0 0 0 1em;
}
.content_public .text {
	padding: 0;
}
.ui-dialog .text {
	font-size: 100%;
}
.content h1 {
    font-size: 20px;
	color: #000;
    line-height: 1.2em;
    margin-bottom: 0.5em;
}
.content h1 a {
	color: #000;
}
.content_public h1 {
    font-size: 23px;
	margin-bottom: 1em;
}
.content_public h1 span,
.previous {
    color: #9c9c9c !important;
}


.text p {
    margin-bottom: 1.5em;
}

.text ol, .text ul {
	margin: 0.5em 0 2em;
}
.text ul {
    list-style: disc;
}
.text ul li {
	padding-left: 2px;
	margin-left: 3em;
}
.text li {
	margin: 0 0 7px;
}
.text ol {
	padding-left: 1.5em;
    list-style-type: decimal;
}
.text ol li {
	padding: 0 0 2px 0;
}
.text ol ol, .text ul ul, .text ol ul, .text ul ol {
	margin-bottom: 0;
	font-weight: normal;
}
.text ol ol {
	padding-left: 2em;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
	margin: 0 0 10px;
	line-height: 1em;
}
.content h2 {
    color: #000;
    font-size: 20px;
    margin: 0 0 15px;
}
.content h3 {
	color: #000;
    font-size: 18px;
    margin: 20px 0 10px;
}	
.content h4 {
	font-size: 14px;
	color: #000;
	margin-bottom: 6px;
}	
.content h5, .content h6 {
	font-size: 110%;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.content h5 span {
	color: #F00;
}
.text blockquote {
	margin : 0 0 2em 4em;
	padding: 1em 0 1em 2em;
	font-style: italic;
	border-left: 3px solid #ccc;
}
.text q {
	font-style: italic;
	background: #eee;
	padding: 3px 5px;
}
.text q:before {
	content:'\00ab';
}
.text q q:before {
	content:'\201e';
}
.text q:after {
	content:'\00bb';
}
.text q q:after {
	content:'\201c';
}
.text sub {
	vertical-align:sub;
	font-size:11px;
}
.text sup {
	vertical-align:super;
	font-size:11px;
}
code {
	font-family: Consolas, monospace;
	margin: 5px 0 15px;
    padding: 5px 15px;
	background: #ECEAEA;
    border-left: 1px solid #D9D4D3;
	display: inline-block;
	clear: both;
	font-size: 11px;
	line-height: 1.4em;
	color: #464646;
}	
.text strong, .text b {
	font-weight: bold;
}
.text em, .text i, .text cite {
	font-style: italic;
}
.text small {
	font-size:11px;
}	
.text table {
	margin-bottom: 1em;
	font-size: 90%;
}
.text table th {
	color: #000;
	border-bottom: 2px solid #000;
	font-weight: bold;
	padding: 5px 20px;
	text-align: left;
}
.text table td {
	border-bottom: 1px solid #F1F1F1;
    padding: 10px 20px;
    text-align: left;
	vertical-align: middle;
}
.text .b-form {
    font-size: 90%;
}

/**
* Docs
*
* @section content
* @subsection terms list
*/
.text_contract {
	font-size: 13px;
	line-height: 17px;
	padding: 0;
	color: #000;
}
.text_contract h1 {
    font-size: 22px;
	color: #000;
    line-height: 1;
    margin-bottom: 0.7em;
}
.contract-points {
    list-style: decimal;
    font-weight: bold;
}
.contract-points__agent {
	font-weight: normal;
}
.contract-points ol {
    list-style: none;
    font-weight: normal;
}
.contract-points ul {
    margin: 0;
    padding: 0.8em 0 0 2em;
}
.contract-points ul li {
    margin-left: 1em;
}
.contract-points p {
    margin: 0.8em 0 0;
    font-weight: normal;
}
.text_contract .essential-elements {
	font-weight: normal;
	width: 100%;
	line-height: 1.2em;
}
.text_contract .essential-elements th {
	font-size: 120%;
	padding: 5px;
	text-align: center;
}
.text_contract .essential-elements td {
	padding: 5px 5px 5px 0;
	border: 0;
}
.text_contract .essential-elements th.gap {
	border: 0;
}

.text_contract .contract-table {
	font-weight: normal;
	width: auto;
	line-height: 1.2em;
	margin: 10px 0;
}
.text_contract .contract-table th {
	font-size: 100%;
	padding: 5px;
	text-align: center;
	border: 1px solid #000;
	vertical-align: middle;
}
.text_contract .contract-table td {
	padding: 5px;
	border: 1px solid #000;
}


/**
* Index page
*
* @section content
* @subsection advertising campaign
*/
.adv-campaign {
	margin-bottom: 1em;
}
.content_public .adv-campaign {
	margin-left: -95px;
}
.adv-campaign__title {
    padding-left: 95px;
}
.adv-campaign__list .adv-campaign__type {
    width: 350px;
    padding: 20px 24px 20px 95px;
	list-style: none;
	margin: 0;
	font-size: 90%;
	line-height: 1.5em;
}
.adv-campaign__list .adv-campaign__target {
    background: url(/i/target.png) 20px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__application {
    background: url(/i/application.png) 18px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__calls {
    background: url(/i/calls.png) 10px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__mobhistory {
    background: url(/i/mob_history.png) 15px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__name {
    font-size: 125%;
    color: #2DC8EB;
    text-decoration: none;
}

/**
* Index page
*
* @section content
* @subsection company info
*/
.company-info {
	font-size: 1.2em;
	line-height: 1.5;
	margin-bottom: 4em;
	max-width: 960px;
}
.company-info__item {
	width: 30%;
	margin-right: 40px !important;
}
.company-info__item_last {
	margin-right: 0 !important;
}
.company-info__item .news a {
	font-weight: normal;
}
.company-info__item .news .news-item__date {
	top: 2px;
}
.news-item__date_gray {
	color: #9c9c9c;
	font-size: 90%;
	font-style: italic;
}

/**
* Index page
*
* @section content
* @subsection partners
*/
.slider {
    background: url("/i/slider_bg.png") no-repeat scroll 0 0 transparent;display: inline;float: left;height: 73px;margin: 5px 0 50px 0;position: relative;width: 854px;
}
.slider ul {
	margin: 0 30px 0;
}
.slider .slider__item {
	text-align: center; margin: 0 10px; padding: 0; height: 70px; line-height: 70px;
}
.slider .slider__item img {
	max-width: 100%;
	vertical-align: middle;
}
.jcarousel-skin-tango .jcarousel-direction-rtl {direction: rtl;}
.jcarousel-skin-tango .jcarousel-container-horizontal {width:854px;}
.jcarousel-skin-tango .jcarousel-clip-horizontal {margin: 0 70px 0;}
.jcarousel-skin-tango .jcarousel-item {margin: 0;}
.jcarousel-skin-tango .jcarousel-next-horizontal{position:absolute;top:21px;right:31px;width:29px;height:29px;cursor:pointer;background:url(/i/slide_right.png) no-repeat;}
.jcarousel-skin-tango .jcarousel-prev-horizontal {position:absolute;top:21px;left:31px;width:29px;height:29px;cursor:pointer;background:url(/i/slide_left.png) no-repeat;}

/**
* Technology page
*
* @section content
* @subsection technology list
*/
.technology-list {
	font-size: 90%;
}
.technology-list li {
	margin-bottom: 20px;
}

/**
* Contacts page
*
* @section content
* @subsection phone
*/
.phone {
	margin-bottom: 7px;
}
.phone span {
	font-size: 150%;
	line-height: 1.2em;
}

/**
* Terms page
*
* @section content
* @subsection terms list
*/
.terms-list {
    list-style: decimal;
    font-size: 90%;
    font-weight: bold;
}
.terms-list ol {
    list-style: none;
    font-weight: normal;
}
.terms-list ul {
    margin: 0;
    padding: 0.8em 0 0 2em;
}
.terms-list ul li {
    margin-left: 1em;
}
.terms-list p {
    margin: 0.8em 0 0;
    font-weight: normal;
}


/**
* @section content
* @subsection campaign info
*/
.campaign-info {
	border: 1px dashed #bbb;
	padding: 10px 10px 5px;
	background: #FAFAFA;
	display: inline-block;
	margin-top: 21px;
	width: 240px;
	color: #000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.campaign-info_product {
	border: 0;
	width: 95%;
	background: #F1F1F1;
	margin-bottom: 15px;
}
.campaign-info_product-links {
	width: 270px;
}
.campaign-data dt {
	width: 130px;
}
.campaign-data_product dt {
	width: 150px;
}
.campaign-data_product dd {
	padding-left: 150px;
}
.campaign-data__price {
	font-size: 150%;
}
.campaign-settings {
	width: 530px;
	float: left;
}
.campaign-settings .b-input,
.campaign-settings .b-textarea {
	width: 100%;
	max-width: 100%;
}
.campaign-settings .b-textarea_link {
	width: 85%;
	max-width: 85%;
	margin-right: 1%;
}
.campaign__state-wrap {
    display: inline-block;
    float: left;
    margin: 8px 15px 0 0;
    position: relative;
}
.offer__state-wrap {
    display: inline-block;
    margin: 0 15px 0 0;
    position: relative;
}
.cb_campaign_active_state,
.cb_banner_active_state {
    height: 1px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 1px;
    z-index: -1;
}
.slider-frame {
	position: relative;
	padding: 0;
	width: 85px;
	height: 17px;
	background-color: #404040;
	background-repeat: no-repeat;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#111), to(#404040));
	background-image: -webkit-linear-gradient(#2b2b2b, #404040);
	background-image: -moz-linear-gradient(#2b2b2b, #404040);
	background-image: -o-linear-gradient(top, #2b2b2b, #404040);
	background-image: -khtml-gradient(linear, left top, left bottom, from(#111), to(#404040));
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr = '#111', EndColorStr = '#404040', GradientType = 0);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#111', EndColorStr='#404040', GradientType=0))";
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #333333;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 1px 8px 0 rgba(0, 0, 0, 0.25);
	-moz-box-shadow: inset 0px 1px 8px 0 rgba(0, 0, 0, 0.25);
	box-shadow: inset 0px 1px 8px 0 rgba(0, 0, 0, 0.25);
}
.slider-frame .slider-button {
	display: block;
	margin: 0;
	padding: 0;
	width: 43px;
	height: 15px;
	line-height: 15px;
	background: #999;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #70430e;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	color: #000;
	font-family: Helvetica;
	font-size: 10px;
	font-weight: bold;
	text-shadow: 1px 1px 2px #FFF;
	text-align: center;
	cursor: pointer;
}
.slider-frame .slider-button.campaign__state-on {
	margin-left: 40px;
	background: #2372c6;
	color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	border: 1px solid #0f3f74;
}
.slider-frame .slider-button:before {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	width: 43px;
	height: 9px;
	background: rgba(255, 255, 255, 0.25);
	content: '';
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}

.banner-preview {
	display: inline-block;
    margin-bottom: 10px;
    text-align: right;
    vertical-align: top;
}
.banner-img img {
	max-width: 100%;
	box-shadow: 0 0 5px #CCCCCC;
}
.data-table-holder {
	display: inline-block;
	margin-right: 20px;
}


/**
*  My sites page
*
* @section content
* @subsection sites
*/
.product {
	box-shadow: 0 0 2px #BBBBBB;
	-moz-box-shadow: 0 0 2px #BBBBBB;
	-webkit-box-shadow: 0 0 2px #BBBBBB;
	margin-bottom: 30px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    border-radius: 5px;
	max-width: 880px;
}
.product .product__title-box {
	background: #449ED2 url("/i/title_bg.png") repeat-x 0 -1px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	padding: 0 20px;
	height: 33px;
	line-height: 33px;
	margin: 0;
	color: #FFF;
}
.product .product__title-box_gray {
	background: #BBB url("/i/title_bg_gray.png") repeat-x 0 -1px;
	color: #555;
}
.product .product__title {
	line-height: 34px;
	display: inline;
	margin: 0;
	color: #FFF;
	font-size: 130%;
}
.product .product__title a {
	color: #FFF;
}
.product .product__title-box_gray a,
.product .product__title-box_gray .product__title a,
.product__title-box_gray .campaign-id {
	color: #555;
}
.product .product__title-box_gray a,
.product .product__title-box_gray .product__title a {
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.product .product__title-box_gray a:hover,
.product .product__title-box_gray .product__title a:hover {
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.product__id {
	color: #000;
	margin-right: 15px;
}
.product__info {
	padding: 10px 20px;
	background-color: #FFF;
}
.product__info-sidebar {
	float: right;
	width: 200px;
	margin-bottom: 10px;
	text-align: right;
}
.product__info-sidebar__img {
	max-width: 100%;
	margin-bottom: 10px;
	max-height: 170px;
}
.product__info-text {
	margin: 0 220px 10px 0;
}
.product__info-text p {
	margin-bottom: 0;
}
.product__info_blocks {
	padding: 10px 20px;
}
.product__data-box {
	border: 1px dashed #bbb;
	padding: 10px 10px 5px;
	background: #FAFAFA;
	display: inline-block;
	width: 200px;
	color: #000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.product__data-box_inner {
	border: 0;
	width: 96%;
	padding: 10px 2% 5px;
	background: #F1F1F1;
}
.product__data-box_inner-links {
	width: 250px;
}
.product__data dt {
	width: 130px;
}
.product__data_inner dt {
	width: 90px;
}
.product__data_inner dd {
	padding-left: 100px;
}
.product__data-price {
	font-size: 150%;
}

.tabs-box,
.product__tabs-box {
	margin: 0;
	position: relative;
}
.tabs-box_settings {
	width: 792px;
}
.tabs-box_settings_wide {
	width: 100%;
}
.product__tabs-box_total {
	margin-bottom: 20px;
	max-width: 880px;
}

.tabs li,
.product__tabs li {
    display: inline-block;
	font-family:  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
	text-shadow: 0 1px 0 #FFFFFF;
}
.tabs li a,
.product__tabs li a {
    color: #000;
    text-decoration: none;
    padding: 0;
    margin: 6px 10px;
	border-bottom: 1px dotted #000;
	display: inline-block;
	line-height: 1em;
}
.tabs li.selected,
.product__tabs li a.selected,
.product__tabs li a.selected:hover {
    cursor: default;
	margin: 0;
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	background: url("/i/menu_item.png") repeat-x scroll 0 0 #eee;
	border: 1px double #DCE1E6;
    border-width: 0 1px;
}
.product__tabs li a.selected,
.product__tabs li a.selected:hover {
	padding: 6px 10px;
}
.tabs li.selected a {
	cursor: default;
	border-bottom: 0;
}
.product__tabs_total {
	display: inline-block;
}
.product__graph,
.product__tab-content,
.tab-content {
    border: 1px solid #DCE1E6;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
    padding: 10px;
    margin-top: -1px;
}
.tab-content {
	display: none;
}

.tabs_stat {
    font-size: 12px;
	font-family:  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
	height: 30px;
}
.tabs_stat li {
    margin-right: 5px;
}
.tabs_stat a {
	display: inline-block;
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	color: #404040;
	background: #E2E5EA url("/i/menu_item.png") repeat-x 0 0;
	border: 1px double #dce1e6;
	border-width: 0 1px;
}
.tabs_stat a:hover {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}
.tabs_stat .tabs_stat__item-active {
	display: inline-block;
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
	color: #FFF;
	background: #4B7CB6 url("/i/menu_item_hover.png") repeat-x 0 0;
	border: 1px double #1e7db9;
	border-width: 0 1px;
}
.tabs_stat-content {
	border: 1px solid #DFE3E8;
	box-shadow: 0 0 85px #EFEFEF inset;
	padding: 10px 15px 20px;
}
.tabs_offers-content {
	border: 1px solid #DFE3E8;
	padding: 0px 10px 0px;
}
.tabs_filter li {
	font-family: Arial, sans-serif;
	color: #8C8C8C;
}
.tabs_filter li.selected {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    border-radius: 5px;

}


.product__graph_partner {
	padding: 0 0 10px;
	margin: 4px 0 20px;
}
.product__details {
	float: right;
	width: 300px;
}
.product_status {
	float: right;
}
.product__options {
	float: right;
	white-space: nowrap;
	margin-left: 40px;
}
.product__options a {
	color: #FFF;
}
.product__period {
	position: absolute;
    right: 0;
    top: 0;
}
.choose-campaign {
	position: absolute;
    right: 275px;
	top: 0;
	z-index: 100;
}
.choose-campaign-link {
    border: 1px solid #E8E8E8;
	text-decoration: none;
    border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
    color: #6a6a6a;
	padding: 1px 24px 1px 10px;
	background: #fafafa url(/i/expand.gif) no-repeat 127px center;
	display: inline-block;
	cursor: pointer;
}
.campaign-list {
	display: none;
	position: absolute;
    color: #a2a2a2;
	padding: 5px 11px;
	background: #FFF;
	z-index: 101;
	white-space: nowrap;
	top: 23px;
	border: 1px solid #E8E8E8;
}

.data-table {
    width: 100%;
	color: #000;
}
.data-table th,
.data-table td {
    border-bottom: 1px solid #F1F1F1;
    padding: 6px 10px 2px 5px;
    text-align: right;
	vertical-align: middle;
}
.data-table td {
	font-size: 110%;
	padding: 6px 10px 6px 5px;
}
.data-table th {
    color: #000;
	border-bottom: 1px solid #CCCCCC;
}
.data-table th span {
	font-weight: normal;
	color: #A2A2A2;
}
.data-table .data-table__section {
    text-align: left;
    font-size: 120%;
	color: #929CA4;
	/*width: 200px;*/
}
.data-table .data-table__left {
    text-align: left;
}
.data-table .data-table__right {
    text-align: right;
}
.data-table .data-table__center {
    text-align: center;
}
.data-table .data-table__noborder {
    border-bottom: 0;
}
.data-table .data-table__result {
	padding-bottom: 2px;
	background: url("/i/menu_item.png") repeat-x scroll 0 -2px #E9EBF0;
	font-size: 18px;
}
.data-table .data-table__result span {
	font-size: 12px;

}
.data-table .data-table__total {
    text-align: left;
}
.data-table .data-table__totals td {
	border-top: 2px solid #10498C;
	border-bottom: 0;
}
.data-table .data-table__name {
	color: #000;
	font-weight: bold;
	text-align: left;
}
.data-table .data-table__details {
    max-width: 200px;
	word-wrap: break-word;
}
.data-table .data-table__more {
    text-align: left;
	border-bottom: 0;
	font-size: 100%;
}
.add-more-link {
	color: #000000;
    display: inline-block;
    margin: 5px 0 0 5px;
}
.data-table .data-table__more a,
.add-more-link a {
    color: #000000;
}
.data-table .data-table__more .add-more-link {
    margin: 0;
}
.data-table .data-table__advaction,
.data-table .data-table__today,
.data-table .data-table__highlight {
	border-bottom: 2px solid #10498C;
    color: #10498C;
	text-align: center;
}
.data-table__important {
	background: #F9F9F9;
}
.data-table .data-table__weather_header {
	border-bottom: 2px solid #0E9B0D;
	color: #0E9B0D;
	text-align: center;
}
.data-table .data-table__weather {
	background: #e9fadb;
	border-bottom: 1px solid #dcf0cb;
	color: #404040;
	font-size: 90%;
	width: 270px;
	padding: 2px 0 0;
}
.data-table .data-table__attendance {
	border-bottom: 0;
}
.data-table .data-table__empty {
	border-color: #FFFFFF !important;
}
.data-table .msg td,
.data-table .msg_first td {
	border-bottom: 0;
}
.data-table .msg_hidden td {
	display: none;
}
.data-table tfoot td {
	border-bottom: 0;
	color: #000;
	font-size: 150%;
	padding-top: 10px;
}
.data-table_colored tr {
	border: 1px solid #DFE3E8;
	border-width: 0 1px;
}
.data-table_colored th {
	background: url(/i/menu_item.png) repeat-x 0 0;
}
.data-table_colored__total {
	border: 0 !important;
}
.data-table_colored__total td {
	border-bottom: 0 !important;
}
.data-table_type_text th,
.data-table_type_text td {
    text-align: left;
	font-size: 100%;
}

.data-table_products th,
.data-table_products td {
	font-size: 100%;
}
.data-table_products tr {
	border: 1px solid #F1F1F1;
	border-width: 0 1px;
}
.data-table_products th {
	border-right: 1px solid #CCCCCC;
}
.data-table_products td {
	border-right: 1px solid #F1F1F1;
}



/*.data-table_offers .offer__off td {
	background: #f7f7f7;
}*/

.offer {
	background: #F4F4F4;
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 3px #C0C0C0;
    margin: 0 0 10px;
    padding: 0 10px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.offer_head {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 5px;
}
.offer_on {
	background: #fff;
}
.offer-table {
	width: 100%;
}
.offer-table td {
	border-right: 1px solid #EEEEEE;
	padding: 8px;
	vertical-align: top;
}
.offer-table_head td {
	color: #000;
	padding: 0 8px;
	font-weight: bold;
	border-right: 1px solid transparent;
}
.offer td:last-child {
	border-right: 0;
	padding-right: 0;
}
.offer .offer__img {
	width: 90px;
	border-right: 0;
	padding-left: 0;
}
.offer .offer__img img {
	max-width: 90px;
	box-shadow: 0 0 5px #ccc;
}
.offer .offer__title {
	font-size: 17px;
	margin-bottom: 10px;
}
.offer .offer__info {
	color: #888888;
	font-size: 12px;
	text-align: left;
}
.offer .offer__link {
	margin-bottom: 3px;
}
.offer .offer__type,
.offer .offer__price,
.offer .offer__regions,
.offer .offer__category {
	width: 75px;
	text-align: center;
}
.offer .offer__category {
	width: 100px;
}
.offer .offer__price {
	color: #000;
	font-size: 18px;
}
.offer-table_head .offer__price {
	font-size: 12px;
}
.offer .offer__price span {
	font-size: 12px;
	color: #aaa;
	font-weight: normal;
}
.offer .offer__regions,
.offer .offer__status {
	white-space: nowrap;
}
.offer .offer__status {
	color: #c0c0c0;
	width: 55px;
}
.offer .offer__status_on {
	color: #71afdf;
}
.offer-table_head .offer__status {
	color: #000;
}
.all-offers {
	padding-left: 21px;
}

/**
*  Requests page
*
* @section content
* @subsection requests
*/
.data-table_type_requests {
    width: 100%;
	margin-top: 15px;
}
.data-table_type_requests th,
.data-table_type_requests td {
    text-align: left;
	vertical-align: top;
	font-size: 100%;
	max-width: 100px;
	word-wrap: break-word;
}
.data-table_type_requests .b-textarea {
	width: 200px;
	height: 100px;
	float: left;
	margin: 5px 10px 5px 0;
}
.data-table_type_requests th.data-table__advaction {
	text-align: center;
}
.data-table_type_requests .pseudo-link {
	color: #000;
}
.data-table_type_requests .request-type {
	margin-right: 10px;
}
.data-table_type_requests .request-type_excellent {
	color: #0E9B0D;
}
.data-table_type_requests .request-type_work {
	color: #2DC8EB;
}
.data-table_type_requests .request-type_fake {
	color: #F00;
}
.data-table_type_requests .request-buttons {
	width: 200px;
}
.data-table_type_requests .data-table_type_requests__section {
	margin-top: 10px;
	width: 200px;
}
.request-form td {
	text-align: left;
}
.weather .temperature {
	font-size: 165%;
	color: #000;
	width: 46px;
}
.weather td {
	vertical-align: middle;
	border-bottom: 0;
	padding: 3px 15px;
	text-align: left;
	white-space: nowrap;
}


/**
*  Placement page
*
* @section content
* @subsection placement block
*/
.placement-block {
	font-size: 90%;
}
.placement-block__item {
	float: left;
	margin-right: 20px;
	margin-top: 0;
	clear: none;
}
.placement-block__title {
	width: 120px;
}
.placement-block__code {
	width: 600px;
}


/**
*  Rotator page
*
* @section content
* @subsection rotator block
*/
.rotator-block {
	font-size: 90%;
	width: 500px;
}
.rotator-block__item {
	margin-right: 20px;
	margin-top: 0;
	clear: none;
}
.rotator-block__title {
	width: 120px;
}
.rotator-block__code {
	width: 600px;
}
.rotator-block__note {
    color: #999;
    font-size: 90%;
    font-style: italic;
    line-height: 1.2em;
    text-align: left;
    width: 400px;
    margin: -7px 0 10px;
	padding-right: 35px;
}

/**
* FAQ
*
* @section content
* @subsection FAQ
*/
.faq-list {
	/*background: rgba(250, 250, 250, 0.5);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;*/
    padding: 17px 20px 10px 40px !important;
	border-left: 3px solid #2DC8EB;
}
.faq-list_instruction {
	padding: 20px !important;
}
.faq-list a {
	color: #000;
}
.faq-list__first {
	float: left;
	width: 50%;
}
.faq-list__second li { list-style-type: none; }
.faq-list__second {
	counter-reset: list 9;
}
.faq-list__second li:before {
    counter-increment: list;
    content: counter(list) ".\a0\a0";
}

/**
* @section content
* @subsection lightbox
*/
.ui-dialog {
	padding: 1.5em;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border:  0;
}
.ui-dialog .ui-dialog-title {
	color: #000000;
    font-family: georgia;
    font-size: 200%;
	line-height: 1.1;
    font-style: italic;
    font-weight: normal;
}
.ui-dialog .ui-dialog-titlebar-close {
    height: 25px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 25px;
	border: 0;
}
.ui-widget-header .ui-icon-closethick {
	background: url("/i/close.png") no-repeat 0 0;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
	background: none;
	border: 0;
}
.ui-dialog .ui-dialog-buttonpane {
	border-width: 0;
	padding: 0;
	margin: 0 7px 0 0;
}


/**
* Share icons
*/
#share42 {
	background: transparent;
}
#share42 a {
	opacity: 0.5;
	vertical-align: bottom;
	border-bottom: 0;
}
#share42:hover a {opacity: 0.7}
#share42 a:hover {opacity: 1}


/**
* @section foot
*/
.foot {
    position: relative;
	min-width: 980px;
    height: 135px;
    margin-top: -135px;
    font-size: 110%;
    line-height: 1.5em;
	color: #616161;
	background: #FFF;
}
.foot_public {
	background: transparent;
	width: 960px;
	margin: -135px auto 0;
}
 .foot-info {
	padding: 0 20px 0 30px;
}
.foot_public .foot-info {
	margin: 0 auto;
	padding: 0 10px 0 30px;
}
.foot-menu-holder {
	border: 1px solid #dedede;
	border-width: 1px 0;
	height: 37px;
	line-height: 37px;
	padding: 0 20px 0 30px;
	background: #F9F9F9 url("/i/footer_menu_bg.png") repeat-x 0 0;
}
.foot_public .foot-menu-holder {
	margin: 0 auto;
	padding: 0 10px 0 30px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-width: 1px;
}
.foot-menu {
	float: left;
	margin: 0 60px 0 0;
	color: #000;
}
.foot-networks {
	float: right;
	color: #000;
	margin-top: 7px;
	line-height: 1;
}
.foot-networks .foot-networks__item {
	margin-left: 10px;
}
.foot-menu .foot-menu__item-active {
	font-weight: bold;
}
.foot-info__item {
    float: left;
    display: inline;
	margin-right: 140px;
	padding-top: 10px;
}
.foot-info__item_last {
    float: right;
	margin-right: 0;
	text-align: right;
}
.foot-info__item_contacts {
	color: #000;
	margin-right: 0;
}
.foot-info__item__working-time {
    border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px dashed #DEDEDE;
    padding: 10px 10px 4px 30px;
	text-align: left;
	position: relative;
}
.foot-info__item-link_contacts {
    margin-left: 15px;
}



/** Partner Path: Breadcrumbs **/
#partner_path {
    /*clear: both;*/
    display: table;
    height: 30px;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    width: 100%;
}
#partner_path div, #partner_path a {
    /*clear: right;*/
	display: block;
    float: left;
    height: 30px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 12%;
    z-index: 0;
	text-align: center;
	border: none;
	text-decoration: none;
}
#partner_path .passed .grey_blue {
    background-image: url("/i/path/grey_corner.gif");
}
#partner_path .passed span {
    background-image: url("/i/path/grey_corner3.gif");
}
#partner_path div span, #partner_path a span {
    background: url("/i/path/white_corner.gif") no-repeat scroll right 0 rgba(0, 0, 0, 0);
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
#partner_path #last_status span { background-image: url(/i/path/white_corner2.gif); }
#partner_path #first_status span { border-left:#b3b3b3 solid 1px; }
#partner_path .passed p {
    background-image: url("/i/path/statusbar_bg_passed.gif");
    color: #FFFFFF;
}
#partner_path div span p, #partner_path a span p {
    background: url("/i/path/statusbar_bg.gif") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
    color: #999999;
	font-size: 12px;
    height: 30px;
    line-height: 30px;
    margin: 0 11px 0 0;
    padding: 1px 3px 0 6px;
}
#partner_path .current span {
    background-image: url("/i/path/blue_corner.gif");
}
#partner_path #last_status.current .blue_white { background-image:url(/i/path/blue_corner2.gif); }
#partner_path .current p {
    background-image: url("/i/path/statusbar_bg_current.gif");
    color: #FFFFFF;
    height: 30px;
}
/** /Partner Path: Breadcrumbs **/

.cert_icon {
	position: absolute;
	top: 7px;
	left: 45px;
}

.cert_info {
	text-align: left;
	white-space: nowrap;
	background: #ffffff none repeat scroll 0 0;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	padding: 10px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 500;
}
