/* Cascading Style Sheet */
/*
#000000 - черный
#FFFFFF - белый
#888888 - серый (тень)
#595959 - серый 1
#828282 - серый 2
#DDDDDD - серый (выделение при наведение)
#FF5400 - оранжевый 1
#FF7600 - оранжевый 2
*/
body {
  margin: 0px;
  color: #000000;
  background: #FFFFFF;
  padding: 0px 0px;
  font: 13px Arial,Times New Roman,sans-serif;
  min-width: 1024px;
}
#dialog * {
  font: 13px Arial,Times New Roman,sans-serif;
}
a img {
  border: none;
}
/* ------------------------------- ссылки ----------------------------------- */
a {
  color: #595959;
}
a:hover {
  color: #FF5400;
}
/* ------------------------- очень красивая кнопка -------------------------- */
.VEBE_button {
  border: 1px solid maroon;
  background-color: #FF5400;
  box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -o-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -webkit-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -moz-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  color: white;
  font-weight: bold;
  text-shadow: 0 1px 1px black;
  height: 25px;
  cursor: pointer;
}
.VEBE_button:hover {
  background-color: #595959;
}
.VEBE_button_2 {
  border: 1px solid #006600;
  background-color: #00FF00;
  box-shadow: inset 0 1px 3px #59FF59, inset 0 -5px 15px #006600, 1px 1px 3px #888888;
  -o-box-shadow: inset 0 1px 3px #59FF59, inset 0 -5px 15px #006600, 1px 1px 3px #888888;
  -webkit-box-shadow: inset 0 1px 3px #59FF59, inset 0 -5px 15px #006600, 1px 1px 3px #888888;
  -moz-box-shadow: inset 0 1px 3px #59FF59, inset 0 -5px 15px #006600, 1px 1px 3px #888888;
  color: #000000;
  font-weight: bold;
  text-shadow: 0 1px 1px #888888;
  height: 25px;
  cursor: pointer;
}
.VEBE_button_2:hover {
  background-color: #00CC00;
  color: #FFFFFF;
}

/* ---------------------------- тень у элемента ----------------------------- */
.el_shadow, .el_shadow_h:hover {
  box-shadow: 1px 1px 3px #888888;
  -o-box-shadow: 1px 1px 3px #888888;
  -moz-box-shadow: 1px 1px 3px #888888;
  -webkit-box-shadow: 1px 1px 3px #888888;
}
.el_shadow_2, .el_shadow_2_h:hover {
  box-shadow: 0px 0px 8px #888888;
  -o-box-shadow: 0px 0px 8px #888888;
  -moz-box-shadow: 0px 0px 8px #888888;
  -webkit-box-shadow: 0px 0px 8px #888888;
}
/* ------------------------------- градиент 1 ------------------------------- */
.gradientBlock_1 {
  background-color: #595959;
  background-image: -moz-linear-gradient(top, #828282 0, #595959 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #828282), color-stop(100%, #595959));
  background-image: -webkit-linear-gradient(top, #828282 0, #595959 100%);
  background-image: -o-linear-gradient(top, #828282 0, #595959 100%);
  background-image: -ms-linear-gradient(top, #828282 0, #595959 100%);
  background-image: linear-gradient(top, #828282 0, #595959 100%);
}
/* ------------------------------- градиент 2 ------------------------------- */
.gradientBlock_2 {
  background-color: #FF5400;
  background-image: -moz-linear-gradient(top, #FF5400 0, #FF7600 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #FF5400), color-stop(100%, #FF7600));
  background-image: -webkit-linear-gradient(top, #FF5400 0, #FF7600 100%);
  background-image: -o-linear-gradient(top, #FF5400 0, #FF7600 100%);
  background-image: -ms-linear-gradient(top, #FF5400 0, #FF7600 100%);
  background-image: linear-gradient(top, #FF5400 0, #FF7600 100%);
}
/* ------------------------------ border-radius ----------------------------- */
.borderRadius_5px {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
/* --------------------------- заголовок таблицы ---------------------------- */
.table_head_W, .table_head_W * {
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
/* ---------------------------- всплывающий слой ---------------------------- */
#PUL {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 10;
  background-color: #595959;
  background-color: rgba(89, 89, 89, 0.9);
  padding-bottom: 10px;
}
#PUL_close {
  text-align: right;
  margin: 5px;
}
#PUL_close img {
  cursor: pointer;
}
#PUL_body {
  margin: 5px;
}
/* ---------------------------------- load ---------------------------------- */
#loading {
  position: fixed;
  top: 40px;
  left: 50%;
  margin-left: -64px;
  z-index: 2000;
  width: 128px;
  height: 128px;
  display: none;
}
/* --------------------------- короткие сообщения --------------------------- */
#message {
  background-color: #FF5400;
  background-color: rgba(255, 89, 0, 0.9);
  padding: 5px 10px;
  display: none;
  position: fixed;
  z-index: 2500;
  text-align: center;
  width: 400px;
  font-size: 16px;
  box-shadow: 0px 0px 50px #000000;
  -o-box-shadow: 0px 0px 50px #000000;
  -moz-box-shadow: 0px 0px 50px #000000;
  -webkit-box-shadow: 0px 0px 50px #000000;
}
/* -------------------------------- подсветка ------------------------------- */
.flash:hover {
  background-color: #DDDDDD !important;
  background-color: rgba(221, 221, 221, 0.8) !important;
}
/* ----------------------------- заголовок блока ---------------------------- */
.block25 {
  height: 25px;
}
/* ---------------------------------- шапка --------------------------------- */
#bhead_1 span, #bhead_1 a {
  font-weight: _bold;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
#bhead_1_1 > span:hover, #bhead_1_1 > a:hover, #bhead_1_2 > span:hover, #bhead_1_2 > a:hover {
  color: #FF5400;
}
#bhead_1_1, #bhead_1_2 {
	width: 40%;
}
#bhead_1_3 {
	width: 20%;
	text-align: center;
}
#bhead_1_3 , #bhead_1_3 h1 {
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	font-weight: bold;
}
#bhead_1_2 {
  text-align: left;
}
#bhead_1_1 > span, #bhead_1_1 > a {
  margin: 0px 35px 0px 10px;
}
#bhead_1_2 > span, #bhead_1_2 > a {
  margin: 0px 10px 0px 35px;
}

#bhead_2_1, #bhead_2_3 {
  width: 200px;
}
#site_logo {
  display: block;
  border: 0;
  width: 200px;
  height: 60px;
}
#bhead_2_2 div {
  height: 52px;
  background-color: #FF5400;
  padding: 5px;
  margin: 5px;
  background-image: -moz-linear-gradient(left, #FF5400 10%, #595959 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #FF5400), color-stop(100%, #595959));
  background-image: -webkit-linear-gradient(left, #FF5400 10%, #595959 100%);
  background-image: -o-linear-gradient(left, #FF5400 10%, #595959 100%);
  background-image: -ms-linear-gradient(left, #FF5400 10%, #595959 100%);
  background-image: linear-gradient(left, #FF5400 10%, #595959 100%);
}
#bhead_2_2_setc, #bhead_2_2_date {
  vertical-align: top;
}


#search_field {
  width: 99%;
  height: 20px;
}
#search_button {
  /*border: 1px solid maroon;
  background-color: #FF5400;
  box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -o-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -webkit-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  -moz-box-shadow: inset 0 1px 3px pink, inset 0 -5px 15px maroon, 1px 1px 3px #888888;
  color: white;
  font-weight: bold;
  text-shadow: 0 1px 1px black;
  height: 25px;*/
  width: 100%;
}
#bhead_2_2_sf {
  margin-bottom: 7px;
}
#bhead_2_2_setc, #bhead_2_2_setc * {
  color: #FFFFFF;
  text-decoration: none;
}
#example_search a {
  border-bottom: #FFFFFF 1px dotted;
  color: #FFFFFF;
}

#bhead_2_2_date {
  text-align: right;
  color: #FFFFFF;
  padding-right: 5px;
  font-style: italic;
}
#bhead_2_3 > div {
  padding-right: 5px;
  margin-left: 3px;
  font-size: 80%;
  font-weight: bold;
  color: #595959;
}
#bhead_2_3 > div:before {
  content: url(/img/plus_circle.png);
  padding-right: 5px;
  vertical-align: sub;
}
#bhead_3 > td {
  border-top: #FF5400 3px solid;
}
#bhead_3_menu a {
  color: #FFFFFF;
  margin: 0px 20px 0px 10px;
  text-decoration: none;
}
#bhead_3_menu a:hover {
  color: #FF5400;
}
/* ------------------------------ левая панель ------------------------------ */
#bleft {
  width: 200px;
  vertical-align: top;
}
#bleft .block25 {
  padding-left: 10px;
  font-size: 90%;
  color: #FFFFFF;
  font-weight: bolder;
}
#bleft_1_2, #bleft_2_2, #bleft_3_2 {
  padding: 5px 0px 5px 5px;
}
#bleft .tel_name {
  font-size: 90%;
  margin: 8px 0px;
  line-height: 80%;
}
#bleft .tel {
  color: #FF5400;
  margin: 8px 0px;
  font-size: 120%;
  line-height: 80%;
}
#want_callback {
  display: none;
  background: url(/img/telephone.png) no-repeat;
  background-position: 0px -12px;
  height: 36px;
  padding: 2px 3px 2px 70px;
  vertical-align: middle;
  cursor: pointer;
  width: 200px;
}
#want_callback_p {
  margin: 3px 0px;
}
#cart_info:hover *, #want_callback:hover {
  color: #FF5400;
}
#skype {
  text-align: center;
}
#bleft .email a {
  color: #FF5400;
  margin-top: 5px;
}
#cart_info {
  background: url(/img/shopppingcart.png) no-repeat;
  background-position: 0px -2px;
  height: 64px;
  padding: 2px 3px 2px 70px;
  font-size: 90%;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
}
#cart_info_1 {
  color: #000000;
}
#cart_info_2 {
  color: #AAAAAA;
}
#bleft_1_2 a {
  text-decoration: none;
  border: 0;
}
/* -------------------------------- туловище -------------------------------- */
#main_body_tag {
  overflow-y: scroll;
}
#bbody {
  vertical-align: top;
  padding: 15px 50px 15px 15px;
}
/* --------------------------- таблица без границ --------------------------- */
.no_border {
  border: 0px;
  padding: 0px;
  border-collapse: collapse;
  border-spacing: 0px;
}
.no_border_100 {
  border: 0px;
  padding: 0px;
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}
.no_border td, .no_border_100 td {
  padding: 0px;
}
/* ------------------------------ выбор города ------------------------------ */
#city_select {
  display: none;
}
.div_city_select {
  float: left;
  width: 200px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  margin: 5px 0px;
}
.div_city_select:hover {
  color: #FF5400;
}
/* ---------------------------- группы товаров ------------------------------ */
.base_group {
  font-weight: bold;
  font-size: 120%;
}
.sub_group {
  font-size: 90%;
}
/* -------------------------- хлебные крошки -------------------------------- */
#crumbs * {
  text-decoration: none;
}
/* ----------------------------- буквы брэндов ------------------------------ */
.brands_let {
  float: left;
  margin: 0px 5px;
}
/* --------------------------- буква якоря брэнда --------------------------- */
.brands_anchor_content, .brands_anchor_content:hover {
  color: #000000;
  font-weight: bold;
}
/* ---------------------------- список без меток ---------------------------- */
ul.list {
  list-style-type: none;
  line-height: 2em;
}
/* --------------------------- популярные группы ---------------------------- */
#popular_group tr {
  text-align: center;
}
#popular_group a {
  font-size: 80%;
  text-decoration: none;
  border: 0;
}
/* --------------------------- выбор по параметрам -------------------------- */
#choice_of_parameters {
  color: #FFFFFF;
}
.goods_article {
  font-size: 160%;
  font-weight: normal;
  color: #FF5400;
  text-shadow: 0 0 3px #888888;
}
/* ----------------------------- description img ---------------------------- */
.big_img {
	cursor: pointer;
}
.div_small_img {
  border-radius: 5px;
  padding: 2px;
  margin: 2px;
  height: 60px;
  width: 60px;
  float: left;
  cursor: pointer;
  line-height: 60px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.div_small_img img {
  border-radius: 5px;
}
/* ----------------------------------- H ------------------------------------ */
h1 {font-size: 140%}
h2 {font-size: 14px; padding: 0; margin: 0;}
/* ------------------------------ выход с сайта ----------------------------- */
.logout {
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
}
/* ----------------------------- searcher_result ---------------------------- */
#searcher_result {
    text-align: right;
    margin: 0 20px;
    position: relative;
    height: 0;
    top: -16px;
    top: -16px;
}
#searcher_result span {
  cursor: pointer;
  margin: 0px 10px;
  padding: 3px 10px;
  color: #000000;
}
#searcher_result span:hover {
  color: #595959;
  text-decoration: underline;
  background-color: #FF5400;
}
/* ---------------------------- www.share42.com ----------------------------- */
#share42 {
  position: fixed;
  z-index: 9;
  right: 2px;
}
#share42 {
  padding: 6px 6px 0;
  background: #FFF;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
}
#share42:hover {
  background: #F6F6F6;
  border: 1px solid #D4D4D4;
  box-shadow: 0 0 5px #DDD;
}
#share42 a {opacity: 0.5}
#share42:hover a {opacity: 0.7}
#share42 a:hover {opacity: 1}
/* ------------------- прокручиваемый по горизонтали блок ------------------- */
.scroll-content {
  width: 600px;
  height: 130px;
  overflow-x: scroll;
  overflow-y: hidden;
  float: left;
}
.scroll-content-sl, .scroll-content-sr {
  width: 20px;
  float: left;
  font-size: 5em;
  color: #828282;
  cursor: pointer;
  display: none;
}
.scroll-content-sl:hover, .scroll-content-sr:hover {
  color: #FF5400;
}
.scroll-content-children {
  width: 4200px;
}
.scroll-content-children .scroll-content-item {
  float: left;
  width: 150px;
  text-align: center;
  display: table-cell;
}

/* название страница h1 */
.page_name_h1 * {
  font-size: 14px !important;
  text-align: center !important;
  font-weight: bold;
  color: #595959;
}


.LFS, .LFSS {
    background-color: #CCC;
    padding: 3px 5px;
    margin: 0 3px;
    cursor: pointer;
    font-weight: bold;
}
.LFSS {
    background-color: #FF5400;
    color: #FFF;
}

/* карусели в карточке товара */
#prev_img, #next_img {
    position: relative;
    top: -54px;
    text-decoration: none;
    height: 0;
}
#prev_img {
    left: -32px;
    float: left;
    margin-left: 10px;
}
#next_img {
    left: 32px;
    float: right;
    margin-right: 10px;
}
#prev_ra img, #next_ra img {
    margin: 10px 0;
}
#list_carousel_img {
    padding: 10px 32px 10px 32px;
}
#list_carousel_ra  {
    text-align: center;
}
#list_carousel_img ul, #list_carousel_ra ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
#list_carousel_img li {
    padding: 0;
    margin: 6px;
    display: block;
    float: left;
    height: 62px;
    width: 62px;
    line-height: 59px;
    text-align: center;
}
#list_carousel_ra li {
    text-align: center;
}
#list_carousel_ra li a {
    text-decoration: none;
    font-size: 95%;
    margin-top: 10px;
}
#list_carousel_img li div {
    height: 60px;
    width: 60px;
}
#list_carousel_img li img {
    vertical-align: middle;
}
.clearfix {
    float: none;
    clear: both;
}
/* формат цены */
/*.pPenny {
    vertical-align: super;
    font-size: 65%;
    padding-left: 2px;
}*/

.fhref {cursor: pointer;}

.want_callback {cursor: pointer;}

.feedbackFieldName {
	text-align: right;
	width: 30%;
	padding-right: 5px;
}
.feedbackForm input, .feedbackForm textarea {
	width: 90%;
}
.feedbackForm input[type=submit] {width: 40%;}
.feedbackForm textarea {height: 50px;}

.goodsReviews {font-size: 12px !important;}
.goodsReviews .goodsReviews_item {margin: 10px 0 20px;}
.goodsReviews .goodsReviews_head {background: #eee; padding: 5px;}
.goodsReviews .goodsReviews_name {float: left; font-weight: bold;}
.goodsReviews .goodsReviews_date {float: right; font-size: 12px; color: #aaa;}
.goodsReviews .goodsReviews_rating {margin: 5px 0px;}
.goodsReviews .ratingPlus, .goodsReviews .ratingMinus {float: left; width: 12px; height: 12px; background: url('/img/rating.png') 0 0 no-repeat; cursor: pointer;}
.goodsReviews .ratingPlus, .goodsReviews .ratingMinus {margin-top: 7px;}
.goodsReviews .ratingPlus {background-position: 0px 0px;}
.goodsReviews .ratingMinus {background-position: 0px -13px;}
.goodsReviews .goodsReviews_item input {width: 150px;}
.goodsReviews .goodsReviews_item textarea {width: 99%; height: 50px;}
.goodsReviews .goodsReviews_submit {text-align: right;}
.goodsReviews .goodsReviewsAddForm {background-color: #eee;}
.goodsReviews .goodsReviewsAddForm  .goodsReviews_item {padding: 5px 5px;}

.ui-tabs.ui-widget-content {border: none;}
.ui-tabs .ui-tabs-nav * {font-size: 12px; font-weight: bold;}

.partners {float: left; width: 300px; text-align: center;}
.partners  a {text-decoration: none;}