body {
	margin:0;
	color: #777;
font-family:verdana,arial;
background: #fff;
font-size: 13px;

}

a {
    color: #555;
    text-decoration: none;
}
a:hover {
    color: #555;
    text-decoration: underline;
}
h1 {
    color: #0481E2;
    font-size: 24px;
    margin: 5px 0 15px;
}
h2 {
    color: #0481E2;
    font-size: 21px;
    font-weight: normal;
    margin: 12px 0;
}
h3 {
    color: #0481E2;
    font-size: 21px;
    font-weight: normal;
    margin: 12px 0 10px;
}
h4 {
    color: #0481E2;
    font-size: 19px;
    font-weight: normal;
    margin: 10px 0 8px;
}
h5 {
    color: #0481E2;
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0 8px;
}
h6 {
    color: #0481E2;
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0 8px;
}


/*-- СЛУЖЕБНЫЕ СТИЛИ (не менять) --*/

div.deliver{
	margin-bottom:10px;
	position:relative;
	padding:3px;
}

div.relative{
	position:relative;
}

div.absolute{
	position:absolute;
}

div.table {
	display:table;
	position:relative;
	width:100%;
}

div.centertable {
	display:table;
	position:relative;
	margin:0 auto;
}

div.cellrelative {
	display:table-cell;
	position:relative;
}

div.inlinerelative {
	display:inline-block;
	position:relative;
}

div.verseparator {
	display:table-cell;
	height:100%;
}

div.horseparator {
	display:block;
	width:100%;
}

table.allwidth {
	width:100%;
}


/*-- ЗАТЕМНЯЮЩИЙ ФОН --*/

div.fon{
	display:none;
	background:#000000;
	width:100%;
	height:100%;
	position:fixed;
	z-index:400;
	opacity:0.8;
}




/*-- ОБЩИЙ СТИЛЬ ДЛЯ ВСЕХ КНОПОК --*/

input[type="button"]{
	cursor:pointer;
	cursor:hand;
	padding:5px 25px 5px 25px;
	text-align:center;	
	font-family:verdana,arial;
	font-size: 12px;
	color: #0095f4;
	font-weight: bolder;
	text-transform: uppercase;
	padding: 5px 14px 8px 10px;
	border: 1px solid #e2e2e2;
	border-bottom:2px solid #D0D0D0;
	background-color: #ECECEC;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	outline:none;
}

input[type="button"]:hover {
	cursor:pointer;
	cursor:hand;
	padding:5px 25px 5px 25px;
	text-align:center;	
	font-family:verdana,arial;
	font-size: 12px;
	color: #fff;
	font-weight: bolder;
	text-transform: uppercase;
	padding: 5px 14px 8px 10px;
	border: 1px solid #e2e2e2;
	border-bottom:2px solid #D0D0D0;
	background-color:#ff9431;
	background-image: -moz-linear-gradient(top, #f3b552, #f08522);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3b552), to(#f08522));
	background-image: -webkit-linear-gradient(top, #f3b552, #f08522);
	background-image: -o-linear-gradient(top, #f3b552, #f08522);
	background-image: linear-gradient(to bottom, #f3b552, #f08522);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3b552', endColorstr='#f08522', GradientType=0);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	outline:none;
}



/*-- ОБЩИЙ СТИЛЬ КНОПКИ ЗАКРЫТЬ --*/

input.close{
	padding:3px 8px ;
}

input.close:hover{
	padding:3px 8px ;
}



/*-- ОБЩИЙ СТИЛЬ ДЛЯ ПОЛЕЙ ВВОДА --*/

input[type="text"]{
	font-size:11px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color:#000;
	border: 1px solid #ccc;
}



/*-- СТИЛЬ ДЛЯ ПОЛЯ ВВОДА ПАРОЛЯ --*/

input[type="password"]{
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color:#000;
	border: 1px solid #ccc;
}


/*-- СТИЛЬ ДЛЯ ПОЛЯ ВВОДА (при ошибке) --*/

input.fail{
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#000;
	border:1px solid #ffcfcf;
}


/*-- СТИЛЬ ДЛЯ ТЕКСТОВОГО БЛОКА --*/

textarea {
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color:#000;
	border: 1px solid #ccc;
}

/*-- СТИЛЬ ДЛЯ ТЕКСТОВОГО ПОЛЯ (при ошибке) --*/

textarea.fail{
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#000;
	border:1px solid #ffcfcf;
}


/*-- СТИЛЬ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА --*/

select{
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color:#000;
	border: 1px solid #ccc;
}

/*-- СТИЛЬ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА (при ошибке) --*/

select.fail{
	font-size:12px;
	font-family:verdana,arial,tahoma;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#000;
	border:1px solid #ffcfcf;
}


/*-- СТИЛЬ НАДПИСИ ПРИ ОШИБКЕ --*/

div.textfail{
	font-size:11px;
	font-family:arial,tahoma;
	color:red;
}

/*-- СТИЛЬ НАДПИСИ ПРИ ОШИБКЕ, ЗВЕЗДОЧКА --*/

td.solutionfail {
	color:red;
}

span.star {
	color:red;
}


/*-- СТИЛЬ НАДПИСИ КОГДА НИЧЕГО НЕ НАЙДЕНО --*/

div.nothingfound{
	text-align:center;
    color: red;
    font-size: 11px;
    font-weight: bolder;
    padding: 3px;
   
}





/*-- ОБЩАЯ РАЗМЕТКА САЙТА --*/


/*-- Стиль для общего блока всего сайта--*/

div.allbloc {
	margin:0 auto;
}

/*--Стиль для общего блока шапки сайта--*/

div.allheader {
	margin:0 auto;
}


/*--Стиль для верхнего блока шапки--*/

div.overhead {
	position:relative;
	z-index:150;
}

/*--Стиль для  информации верхнего блока шапки--*/

div.overheadinfo {
	max-width:1100px;
	width:100%;
	display:table;
	margin:0 auto;
	border-bottom:1px solid #FF9C00;
	
}


/*--Стиль для верхнего блока шапки часть слева--*/

div.overheadleft {

	vertical-align:middle;
}

/*--Стиль для верхнего блока шапки часть справа--*/

div.overheadright {
	float:right;
	vertical-align:middle;
}



/*--Стиль для блока шапки--*/

div.head {
	
	position:relative;
	z-index:100;	
}


/*--Стиль для информации блока шапки--*/

div.headinfo {
	max-width:1100px;
	width:100%;
	display:table;
	margin:0 auto;
}


/*-- Деление шапки на четыре блока--*/

div.headcolumnlogo {
	width:200px;
	vertical-align:middle;
	padding:5px 25px 5px 5px;
}
div.headcolumnlogo:hover {
	opacity:0.7;
}

div.headcolumn1 {
	vertical-align:middle;
}


div.headcolumn2 {
	vertical-align:middle;
}

div.head-flagi{
	width:110px;
	height:44px;
	display:block;
	background:url(./infolight/flagi.png) no-repeat;
	float:left;
	margin-top:12px;
}
div.head-tel{
	display:block;
	height:45px;
	font-size:17px;
	color:#1C8EEE;
	font-weight:bold;
	float:left;
	margin-top:12px;
	padding-left:30px;
	padding-right:30px;	
}
div.head-mts{
	padding-left:26px;
	background:url(./infolight/mts.png) center left no-repeat;
	padding-bottom:2px;
	padding-top:1px;
}
div.head-kiev{
	padding-left:26px;
	background:url(./infolight/kiev.png) center left no-repeat;
	padding-bottom:2px;
	padding-top:1px;
}
div.head-email{
	padding-bottom: 2px;
    padding-left: 30px;
}
div.head-email a{
	font-size: 14px;
    font-weight: normal;
}
div.head-karta{
	float:left;
	padding-top:35px;
	margin-top:7px;
	background:url(./infolight/head-karta.png) top center no-repeat;
}

div.head-karta a{
	color:#000;
	text-decoration:underline;
}
div.head-karta a:hover{
	text-decoration:none;
}



div.headcolumn3 {
	vertical-align:middle;

}


/*--Стиль для нижнего блока шапки--*/

div.underhead {
	max-width:1100px;
	width:100%;
	margin:0 auto;
	background-color: #5b5b5b;
background-image: -moz-linear-gradient(top, #5b5b5b, #3f3f3f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5b5b5b), to(#3f3f3f));
background-image: -webkit-linear-gradient(top, #5b5b5b, #3f3f3f);
background-image: -o-linear-gradient(top, #5b5b5b, #3f3f3f);
background-image: linear-gradient(to bottom, #5b5b5b, #3f3f3f);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5b5b5b', endColorstr='#3f3f3f', GradientType=0);
}


/*--Стиль для информации нижнего блока шапки--*/

div.underheadinfo {
	width:100%;
	display:table;
	margin:0 auto;
}


/*--Стиль для левой части нижнего блока шапки--*/

div.underheadleft {
	float:left;
	vertical-align:middle;
}


/*--Стиль для правой  части нижнего блока шапки--*/

div.underheadright {
	
	vertical-align:middle;
}

/*--Общий блок под шапкой, центральный--*/

div.allcenter {
	max-width:1100px;
	width:100%;
	margin:0 auto;
	min-height:550px;
	padding-bottom:15px;
}

table.allcenterblock{
	width:100%;
	padding-top:15px;
}


/*--Центральный блок, левая колонка--*/

td.leftcolumn {
	width:270px;
	padding-right:10px;
}

div.leftcolumn {
	width:270px;
}


/*--Центральный блок, центральная колонка--*/

div.centercolumn {
	width:100%;
	
}

td.centercolumn {

}

/*--Внутренний блок центральной колонки--*/

div.centerinfo {
  
}

/*--Центральный блок, правая колонка--*/

div.rightcolumn {
	max-width:220px;
}

td.rightcolumn {
	padding-left:5px;
	width:220px;
	background:white;
}



/*--Создаём класс для общего блока подвала--*/

div.allfooter {

	
	
	
	
}

div.allfooterinfo {
	width:100%;
	border-bottom:15px solid #FF9431;
	height:100px;
	background:url("infolight/bottom-bg.jpg") center top no-repeat #1A50C6;
		max-width:1080px;
	display:table;
	margin:0 auto;
	padding:0px 10px 0px;
}

div.overfooter {
	
}

div.underfooter {
	
}

div.underfooterleft {
	
}

div.underfooterright {
	float:right;
}

a.powered {
	text-decoration:none;
	color:#555;
}




/*-- МОДУЛИ САЙТА --*/

/*-- РАЗДЕЛЫ НА ШАПКЕ (МЕНЮ) --*/

/*-- Подложка под разделы --*/

div.chaptershead {

}

/*-- Разделитель для разделов--*/

div.chapterseparator {
	display:none;
}

/*-- Ссылки--*/
/*-- Стиль для ссылки неактивного раздела--*/

div.chapter a {
	text-decoration:none;
	color: #333;
	font-size:12px;
	
}

/*-- Стиль для ссылки неактивного раздела при наведении--*/

div.chapter:hover a {
	text-decoration:none;
	font-size:12px;
	color:#fc273c;
	
}

/*-- Стиль для ссылки активного раздела--*/

div.activechapter a {
	text-decoration:none;
	font-size:12px;
	color: #fc273c;
}


/*-- Блоки--*/
/*-- Неактивный раздел--*/

div.chapter {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	
	
}

/*-- Неактивный раздел при наведении --*/

div.chapter:hover {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	
}

/*-- Активный раздел --*/

div.activechapter {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	
}



/*-- ВЫПАДАЮЩИЙ СПИСОК МЕНЮ--*/
/*-- Блок подменю разделов общий--*/

div.submenu{
	display:none;
	top:26px;
	left:-5px;
	z-index:200;
    box-shadow:0 0 2px #eee;
	border:1px solid #e8e8e8;
}

div.chapter:hover div.submenu{
	display:block;

}

div.activechapter:hover div.submenu{
	display:block;

}

/*-- Раздел подменю первый--*/

div.chaptersubmenu0{
	padding:5px 10px 5px 10px;
	white-space:nowrap;
	min-width:200px;
	border-bottom: 1px dotted #d3d3d3;
}

div.chaptersubmenu0:hover {
	padding:5px 10px 5px 10px;
	white-space:nowrap;
	min-width:200px;
}

/*-- Раздел подменю второй--*/

div.chaptersubmenu1{
	padding:5px 10px 5px 10px;
	white-space:nowrap;
	min-width:200px;
	border-bottom: 1px dotted #d3d3d3;
}

div.chaptersubmenu1:hover{
	padding:5px 10px 5px 10px;
	white-space:nowrap;
	min-width:200px;
	
}

/*-- Ссылка первого раздела подменю--*/


div.chaptersubmenu0 a.linksubmenu0{
	text-decoration:none;
	color:#777777;
}

div.chaptersubmenu0:hover a.linksubmenu0{
	text-decoration:underline;
	color:#777777;
}

/*-- Ссылка второго раздела подменю--*/


div.chaptersubmenu1 a.linksubmenu1{
	text-decoration:none;
	color:#777777;
}


div.chaptersubmenu1:hover a.linksubmenu1{
	color:#777777;
text-decoration:underline;
}



/*-- Блоки для расположения иконок  --*/

div.chaptericon {
	position:absolute;
	display:none;
}

/*-- Блоки для расположения иконок активных --*/

div.chaptericonact {
	display:none;
	position:absolute;
}

/*-- Действия с иконками при наведени на блоки --*/

div.chapter:hover div.chaptericon {
	display:none;
	position:absolute;
}

div.chapter:hover div.chaptericonact {
	position:absolute;
	display:none;
}


div.activechapter div.chaptericon {
	display:none;
	position:absolute;
}

div.activechapter div.chaptericonact {
	position:absolute;
	display:none;
}




/*-- МОДУЛЬ РАЗДЕЛЫ В КОЛОНКЕ --*/
/*-- Блок разделы --*/

div.chapters {

 padding: 5px;	
}

div.chaptersallblock {
   
}

/*-- Заголовок РАЗДЕЛЫ --*/

div.chapterstitle {
	display:none;
/*    background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
*/}

/*-- Иконка разделов --*/

div.chapterstitleicon {
   display:none;
}

/*-- Блок первого уровня разделов --*/
/*-- Ссылки --*/

div.chapter0 a {
	text-decoration:none;
	color: #fff;
    display: block;
    font-size: 17px;
}


div.chapter0:hover a {
	text-decoration:none;
	color: #333;
    display: block;
    font-size: 17px;
}

div.chapter0act a {
	text-decoration:none;
	color: #333;
    display: block;
    font-size: 17px;
}

/*-- Плашки --*/


div.chapter0  {
	
	background-color: #ff9431;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
    padding: 8px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
    z-index: 1;
	
	cursor:pointer;
	cursor:hand;

}


div.chapter0:hover  {
	cursor:pointer;
	cursor:hand;
	background:#ECECEC;
}

div.chapter0act  {
	background:#ECECEC;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
    padding: 8px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
    z-index: 1;
}



/*-- Блок второго уровня разделов --*/
/*-- Ссылки --*/


div.chapter1 a {
	text-decoration:none;
	color: #333;
	font-size:12px;	
}


div.chapter1:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size:12px;
}

div.chapter1act a {
	text-decoration:none;
	color: #fc273c;
	font-size:12px;
}



div.chapter1act:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size:12px;
}

/*-- Плашки --*/


div.chapter1  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}


div.chapter1:hover  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}

div.chapter1act  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}




/*-- Блок третьего уровня разделов --*/
/*-- Ссылки --*/


div.chapter2 a {
	text-decoration:none;
	color: #333;
	font-size:12px;	
}


div.chapter2:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size:12px;
}

div.chapter2act a {
	text-decoration:none;
	color:#fc273c;
	font-size:12px;
}


div.chapter2act:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size:12px;
}

/*-- Плашки --*/


div.chapter2  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}


div.chapter2:hover  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}

div.chapter2act  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}








/*-- СТРАНИЦА РАЗДЕЛОВ В КАРТИНКАХ--*/
/*-- Блок для страницы разделов --*/

div.chaptersview {
    
}

/*-- Блок для страницы каталога --*/

div.chapterviewinfo {
	

}

/*-- Блок всех разделов --*/

div.chapterview {
   text-align:center;
	
}

/*-- Разделительная полоса по вертикали --*/

div.chapterviewverseparator {
	width: 1px;
}

/*--  Разделительная полоса по горизонтале --*/

div.chapterviewhorseparator {
	height: 1px;
}

/*-- Блок для картинки --*/

div.chapterviewimg {
	width:220px;
	height:150px;
	margin:0 auto;
}

/*-- Картинка --*/

img.chapterviewimg {
	max-width:220px;
	max-height:150px;
	border:0;
}


/*-- Позиционирование картинки --*/

div.chapterviewimgtable {
	display:table;
	height:150px;
	margin:0 auto;
}

div.chapterviewimgcell {
	display:table-cell;
	vertical-align:middle;
}

/*-- Вывод названия раздела над картинкой --*/
/*-- Блок названия раздела --*/

div.topchapterviewname {
	display:none;
}


/*-- Ссылка названия раздела --*/

div.topchapterviewname a{
	
}


div.topchapterviewname:hover a{
	
}


/*-- Вывод названия раздела под картинкой --*/
/*-- Блок для названия раздела --*/

div.bottomchapterviewname {
	padding:3px;
}

/*-- Ссылка названия раздела --*/

div.bottomchapterviewname a{
	text-decoration:none;
	color:#353535;
	font-size:13px;
	font-weight:bolder;
}

div.bottomchapterviewname:hover a{
	text-decoration:none;
	color: #fc273c;
	font-size:13px;
	font-weight:bolder;
}





/*-- МОДУЛЬ  СЛАЙДЕР  --*/

/*--Разметка колонок для слайдера--*/
/*--Общий блок для слайдера--*/

div.centerunderslider {
	margin:0 auto;
	display:table;
	width:100%;
	
}

/*--Блок для информации слева от слайдера--*/

div.leftunderslider {

}

/*--Блок для информации справа от слайдера--*/

div.rightunderslider {
	vertical-align:top;
}




/*-- Подложка под модуль слайдер --*/
div.sliderback{
	
}

div.slider{
	margin:0 auto;
	

}

/*-- Подложка под картинку в слайдере --*/

div.sliderimg {
	display:table-cell;
	position:relative;
	z-index:100;
}

/*-- Подложка под текст на слайдере --*/

div.slidertext {
	z-index:200;
}


/*-- Блок для стрелок --*/

div.sliderarrows{
	position:relative;
	z-index:200;
	top:50%;
	vertical-align:middle;

}

/*-- Блок для стрелки влева --*/

div.sliderleftrel{
	position:relative;
	z-index:200;
	top:50%;
	left:-1px;
	
}


div.sliderleft{
	position:absolute;
	top:-18px;
	
}


/*-- Блок для стрелки вправо --*/

div.sliderrightrel{
	position:relative;
	z-index:200;
	top:50%;
	left:-48px;

}

div.sliderright{
	position:absolute;
	top:-18px;
	left:100%;
}




/*-- Стрелка влево --*/

input.sliderleft{
   
}




/*-- Стрелка вправо --*/

input.sliderright{
   	
}




/*-- Страницы на подложке --*/

div.sliderbottomin {
	margin:0 auto;
	position:relative;
	z-index:250;
	top:90%;
	display:none;	
}

/*-- Страницы вне подложки --*/

div.sliderbottomout {
	position:relative;
	z-index:250;
	margin:0 auto;
	top:6px;
}

/*-- Страницы слайдера отступ --*/
div.sliderbutton {
	padding:4px;
}

/*-- Страницы слайдера, неактивная --*/

div.slidernext {
	cursor:pointer;
	cursor:hand;
	width:45px;
	height:4px;
	background:#b0b8b9;
	font-size:0;
}

/*-- Страницы слайдера, активная --*/

div.slidernextact {
	cursor:pointer;
	cursor:hand;
	width:45px;
	height:4px;
	background:#1C8EEE;
	font-size:0;
}








/*-- МОДУЛЬ ПОИСКА --*/
/*-- Общий блок для модуля поиска --*/

div.search {
	position:relative;
	float:left;
	margin-bottom:5px;
	margin-top:5px;
}

/*-- Блок для поля ввода --*/

div.searchinput {
	
}

/*-- Поля ввода --*/

input.search {
	width:450px;
	height:29px;
	border-radius:0px;
	padding:5px 10px;
	transition:all 0.5s ease 0s;
}
input.search:focus{
	box-shadow:0 0 3px silver;
	
}

/*-- Блок для кнопки --*/

div.searchbut {
	padding:0 10px;
	left:-40px;
}

input.searchbut {
	height:25px;
	background:url("/themes/infolight/search_a.png")no-repeat;
	width:25px;
	border:0;
	font-size:0;
	padding:0;
}

input.searchbut:hover {
	height:25px;
	background:url("/themes/infolight/search_p.png")no-repeat;
	width:25px;
	border:0;
	font-size:0;
	padding:0;
}




/*-- ВЫПАДАЮЩИЙ СПИСОК ПОИСКА --*/
/*-- Выпадающий список поиска --*/

div.dropdownsearch {
	position:absolute;
	z-index:3000;

}

/*-- Общий блок для выпадающего списка --*/

div.dropdownsearchfon {
	position:relative;
	width: 242px;
	  box-shadow:0 0 2px #eee;
	border:1px solid #e8e8e8;
	left:3px;
	background:white;
}

/*-- Первая строка --*/

div.searchrow0 {
	display:table;
	width:100%;
	cursor:pointer;
	cursor:hand;
   
}

/*-- Вторая строка --*/

div.searchrow1 {
 	display:table;
	width:100%;
	cursor:pointer;
	cursor:hand;
   background:#efefef;
}

/*-- Первая строка ,название товара --*/

div.dropdownname0 {
    text-align:left;
	color:#777;
	padding:5px;	  font-size: 11px;
}

/*-- Первая строка,название товара при наведении  --*/

div.searchrow0:hover div.dropdownname0 {
	text-align:left;
	color: #777;
 font-size: 11px;
}

/*-- Вторая строка,название товара --*/

div.dropdownname1 {
    text-align:left;
	color:#777; 
	padding:5px;  font-size: 11px;	 
}

/*-- Вторая строка,название товара при наведении --*/

div.searchrow1:hover div.dropdownname1 {
	color: #777;
 font-size: 11px;
	text-align:left;
}


/*-- Первая строка, цена товара --*/

div.dropdownprice0 {
	text-align:right;
    color: #fc273c;
    font-size: 11px;
   
	padding:5px;
}

/*-- Первая строка, цена товара при наведении --*/

div.searchrow0:hover div.dropdownprice0 {

}

/*-- Вторая строка, цена товара --*/

div.dropdownprice1 {
	text-align:right;
    color: #fc273c;
    font-size: 11px;
    
	padding:5px;
}

/*-- Вторая строка, цена товара при наведении  --*/

div.searchrow1:hover div.dropdownprice1 {

}













/*-- МОДУЛЬ НОВОСТИ ПО ЦЕНТРУ (статьи) --*/
/*-- Заглавие новости (статьи) --*/


div.articlescentertitle {
   background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Иконка новости (статьи) --*/

div.articlescentertitleicon {
   display:none;
}

div.articlescentertitleicon  img{
	display:none;
	
}

/*-- Подложка под модуль новости  (статьи)  --*/

div.articlescenter {
   
}


/*-- Разделитель для новостей  (статьи)  --*/

div.articlescentverseparator {
	width: 1px;
}

div.articlescenthorseparator {
	height:1px;
	
}
/*-- Блок одной новости  (статьи)   --*/

div.articlecenter {
	padding:5px;
}


/*-- Блок для картинки  --*/

div.articlecenterimg {
	height:200px;
	margin:0 auto;
	text-align:center;
	display:table;
	width:100%;
	vertical-align:middle;
}


/*-- Картинка   --*/

img.articlecenterimg {
	max-width:270px;
	max-height:200px;
	text-align:center;
	margin:0 auto;
	vertical-align:top;
}


/*-- Блок для названия и даты  --*/

div.articlecenterinfo {
	
	vertical-align:top;
    padding-left:5px;	
}

/*--  название   --*/

div.articlecentername {
	margin:10px 0 ;
	
}

div.articlecentername a {
	text-decoration:none;
	color:#353535;
	font-size:13px;
	font-weight:bolder;
}



div.articlecentername a:hover {
	text-decoration:none;
	color: #fc273c;
	font-size:13px;
	font-weight:bolder;

}

/*-- Краткий текст  --*/

div.articlecentershort {
	
}


/*-- Блок для кнопки читать все  --*/

div.articlecenterseeall {
	text-align:right;
}

input.articlecenterseeall {

}

/*-- МОДУЛЬ НОВОСТИ В КОЛОНКЕ (статьи) --*/
/*-- Общая подложка включая заглавие --*/

div.articlecolumnallblock {
	border:1px solid #ECECEC;
	border-radius:5px 5px 0px 0;
}
/*-- Заглавие новости (статьи) --*/

div.articlescolumntitle {
	 background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #0095f4;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Иконка новости (статьи) --*/

div.articlescolumntitleicon {
	
	
}

/*-- Подложка под модуль новости  (статьи) без заглавия --*/

div.articlescolumn {
	padding:5px;	
}


/*-- Разделяющая полоса  --*/

div.articlecolumnseparator {
   border-bottom: 1px dotted #d3d3d3;
}


/*-- Блок одной новости  (статьи)  --*/

div.articlecolumn {

}

/*-- Блок картинки слева  --*/

div.articlecolumnimgleft {
	width:190px;
	margin:0 auto;
	text-align:center;
	
	
}


/*-- Картинка слева  --*/

img.articlecolumnimgleft {
	max-width:178px;
	max-height:88px;
	text-align:center;
	margin:0 auto;
}



/*-- Блок картинки справа  --*/

div.articlecolumnimgright {
	width:190px;
	height:100px;
	margin:0 auto;
	text-align:center;
}


/*-- Картинка справа  --*/

img.articlecolumnimgright {

	max-width:190px;
	max-height:100px;
	
	
}


/*-- Блок для названия и даты  --*/

div.articlecolumninfo {
	padding:3px 0 3px 0;
}


/*--  название   --*/

div.articlecolumnname a {
	text-decoration:none;
	color:#333;
	font-size: 12px;
}

div.articlecolumnname a:hover {
	text-decoration:none;
	color:#FF9431;
	font-size: 12px;
}

/*-- дата  --*/

div.articlecolumndate {
	color:#333;
	font-size: 11px;
	text-align:right;
}

div.articlecolumnseeall {
	text-align:right;
	padding-top:5px;
}

input.articlecolumnseeall {

}



/*-- СТРАНИЦА НОВОСТЕЙ (статей) --*/
/*-- Подложка под модуль новости  (статьи)  --*/

div.articlespage {
   
}

/*-- Разделитель по вертикале --*/

div.articlesverseparator {
	width: 1px;
}

/*-- Разделитель по горизонтале --*/

div.articleshorseparator {
	height:1px;
}

/*-- Блок одной новости  (статьи)  --*/

div.articlepage {
	padding:5px;
}



/*-- Блок картинки слева  --*/

div.articlepageimg {
	width:180px;
	vertical-align:middle;
	display:table-cell;
	text-align:center;
}

/*-- Картинка слева  --*/

img.articlepageimg {
	max-width:180px;
	max-height:180px;
	vertical-align:middle;
}


/*-- Блок для названия и даты  --*/

div.articlepageinfo {
	display:table-cell;
	padding-left:10px;
}


/*--  название   --*/
div.articlepagename {
	padding-bottom:10px;
}

div.articlepagename a {
	text-decoration:none;
	color:#353535;
	font-size:13px;
	font-weight:bolder;
}

div.articlepagename a:hover {
	text-decoration:none;
	color: #fc273c;
	font-size:13px;
	font-weight:bolder;
}

/*-- Краткий текст  --*/

div.articlepageshort {
	
}



/*-- дата  --*/

div.articlepagedate {
	color:#333;
	font-size:11px;
}



/*-- СТРАНИЦА НОВОСТИ ОДНОЙ (статьи) --*/
/*-- Блок для кнопки НАЗАД  --*/

div.articleback {
	margin-bottom:12px;
}


/*-- Кнопка НАЗАД  --*/

input.back{
	
}


/*-- Заглавие новости (статьи)  --*/

div.articlename {
	
}

h1.articlename {
	text-decoration:none;
	color: #fc273c;
	font-size:14px;
	font-weight:bolder;
	padding:0px;
	margin:0;	
	margin-top:10px;
	margin-bottom:10px;
}

/*-- Полный текст новости (статьи)  --*/

div.articletext {
	
}

/*-- дата  --*/

div.articledate {
	color:#333;
	font-size:12px;
	text-align:right;
}





/*-- МОДУЛЬ КОММЕНТАРИИ В КОЛОНКЕ  --*/
/*-- Заглавие комментарии  --*/


div.commentscolumntitle {
   background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Иконка комментраии --*/

div.commentscolumntitleicon {
   display:none;
}

/*-- Подложка под модуль комментраии  --*/

div.commentscolumn {
	
}

/*-- Разделяющая полоса  --*/

div.commentcolumnseparator {
    border-bottom: 1px dotted #d3d3d3;
	padding:5px 0;
}

/*-- Блок одного комментраия  --*/

div.commentcolumn {

}


/*--  ФИО   --*/

div.commentcolumnname {
   text-decoration:none;
	color: #fc273c;
	font-size: 12px;
}

/*-- Дата  --*/

div.commentcolumndate {
    color: #666;
	font-size: 11px;
}

/*-- Краткий текст  --*/

div.commentcolumntext {
  
	
}

/*-- Ссылка на товар в отзывах  --*/

div.commentcolumnitem a{
	color:#333;
	text-decoration:none;
	font-size:11px;
}

/*-- Ссылка на товар в отзывах  --*/

div.commentcolumnitem a:hover{
	color: #fc273c;
	text-decoration:none;
	font-size:11px;
}

/*-- Блок кнопки читать все  --*/

div.commentscolumnseeall {
	text-align:right;
}

input.commentscolumnseeall {

}



/*-- МОДУЛЬ КОММЕНТАРИИ ПО ЦЕНТРУ (--*/
/*-- Заглавие новости (статьи) --*/


div.commentscentertitle {
    background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Иконка новости (статьи) --*/

div.commentscentertitleicon {
	display:none;
	
}

/*-- Подложка под модуль новости  (статьи)  --*/

div.commentscenter {
	
}

/*-- Разделитель   --*/

div.commentscenthorseparator {
	height:1px;
	
}

/*-- Общий блок для одного комментария   --*/

div.commentcenter {
	padding:6px 0px 6px 0px;
}

/*-- Общий блок для имени и даты   --*/

div.commentcenterinfo {
	display:table;
	width:100%;
}

/*--  ФИО   --*/

div.commentcentername  {
	float:left;
color: #fc273c;
	font-size: 12px;
}

/*-- дата  --*/

div.commentcenterdate  {
	padding-right:6px;
	text-align:right;
	color: #666;
	font-size: 11px;
}

/*-- Краткий текст  --*/

div.commentcentertext {
	text-align:left;
	
}

/*-- Блок для кнопки читать все  --*/

div.commentscenterseeall {
	text-align:right;
}

/*-- Кнопки читать все  --*/

input.commentscenterseeall {

}


/*-- СТРАНИЦА КОММЕНТАРИЕВ --*/
/*-- Общий блок для комментариев  --*/

div.commentspage {
   
}

/*-- Блок одного комменатрия  --*/

div.commentpage {
	margin:3px 0 3px 0;
	width:100%;
}

/*-- Разделяющая полоса  --*/

div.commenthorseparator {
	height:1px;
	
}

/*-- Блок для ФИО и даты  --*/

div.commentinfo {
	display:table;
	width:100%;
	padding-bottom:7px;
}


/*--  ФИО   --*/

div.commentname  {
	float:left;
   color: #fc273c;
	font-size: 12px;
}

/*-- дата  --*/

div.commentdate  {
	float:right;
	color: #666;
	font-size: 11px;
}

/*-- Краткий текст  --*/

div.commenttext {
	text-align:left;
	
}

/*-- Надпись Добавить Комментарий  --*/

td.addcommenttitle {
	  color: #fc273c;
    font-size: 15px;
	text-align:center;
}


/*-- Блок Добавить комментарий  --*/

div.addcomment {

}

/*-- Общая таблица добавления комменатриев  --*/

table.addcomment {
	width:80%;
	margin:0 auto;
	
	font-size:11px;
	text-align:left;
	 margin-top:20px;
}


/*-- Кнопка добавить комментарий  --*/

td.addcommentbut {
	text-align:center;

}

input.addcomment  {

}






/*-- ТИП СТРАНИЦЫ ГАЛЛЕРЕЯ  --*/
/*-- Подложка под модуль галлерия  --*/

div.gallerypage {
	
}

/*-- Все остальные блоки  --*/

div.gallery {
	padding:5px;
}

div.galleryverseparator {
   width: 1px;
}

div.galleryhorseparator {
	height:1px;
   
}

/*-- Блок одной картинки  --*/

div.galleryimg {
	width:300px;
	height:200px;
    display: table-cell;
    
    vertical-align: middle;
}


/*-- Картинка --*/

img.galleryimg{
	cursor:pointer;
	cursor:hand;
	max-width:250px;
	max-height:190px;
    vertical-align: middle;
}


/*-- Позиционирование картинки --*/

div.galleryimgtable {
	display:table;
	height:200px;
	margin:0 auto;
}

div.galleryimgcell {
	
	vertical-align:middle;
}

/*-- Подпись под картинкой --*/

div.gallerytext {
     color: #fc273c;
	font-size:14px;
	text-align:center;
	padding-top:5px;
}




/*-- СТРАНИЦЫ  --*/
/*-- Блок страниц --*/

div.paging {
	display: table;
    margin: 0 auto;
	margin-top:10px;
	margin-bottom:10px;
}

div.pagingbutton {
	padding:1px;
	vertical-align:middle;
}

/*-- Блок для стрелки влево --*/

div.pagingleft {
	
}

/*-- Стрелка влево --*/

input.pagingleft{
	color: #777;
background-color: #fff;
background-image: -moz-linear-gradient(top, #fff, #f6f6f6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f6f6f6));
background-image: -webkit-linear-gradient(top, #fff, #f6f6f6);
background-image: -o-linear-gradient(top, #fff, #f6f6f6);
background-image: linear-gradient(to bottom, #fff, #f6f6f6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff6f6f6', GradientType=0);
	border: 1px solid #c4c3c3;
	border-radius:4px;
	height:28px;
	width:28px;
	color: #777;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:0; font-size:12px;
}

input.pagingleft:hover{
    background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	height:28px;
	width:28px;
	padding:0;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	font-size:12px;
}


/*-- Блок для стрелки вправо --*/

div.pagingright {
	
}

/*-- Стрелка вправо --*/

input.pagingright{
   color: #777;
background-color: #fff;
background-image: -moz-linear-gradient(top, #fff, #f6f6f6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f6f6f6));
background-image: -webkit-linear-gradient(top, #fff, #f6f6f6);
background-image: -o-linear-gradient(top, #fff, #f6f6f6);
background-image: linear-gradient(to bottom, #fff, #f6f6f6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff6f6f6', GradientType=0);
	border: 1px solid #c4c3c3;
	border-radius:4px;
	height:28px;
	width:28px;
	color: #777;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:0; font-size:12px;
}

input.pagingright:hover{
   background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	height:28px;
	width:28px;
	padding:0;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	font-size:12px;
}

/*-- Страница на которой сейчас --*/

div.pagingnow{
	 background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	height:26px;
	width:26px;
	font-size:12px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:26px;
}



/*-- Стиль для остальныч страницы --*/

div.pagingall{
   color: #777;
background-color: #fff;
background-image: -moz-linear-gradient(top, #fff, #f6f6f6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f6f6f6));
background-image: -webkit-linear-gradient(top, #fff, #f6f6f6);
background-image: -o-linear-gradient(top, #fff, #f6f6f6);
background-image: linear-gradient(to bottom, #fff, #f6f6f6);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff6f6f6', GradientType=0);
	border: 1px solid #c4c3c3;
	border-radius:4px;
	height:26px;
	width:26px;
	color: #777;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:26px;
}

div.pagingall:hover{
   background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	height:26px;
	width:26px;
	
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:26px;
}


/*-- Все остальные страницы, ссылка--*/

div.pagingall a{
	  color: #777; font-size:12px;
	text-decoration:none;
}

div.pagingall:hover a{
	color:#fff; font-size:12px;
	text-decoration:none;
}



/*-- ПЕРЕХОДЯЩАЯ ССЫЛКА (хлебные крошки) --*/
/*-- Общий блок для ссылки --*/

div.linkblock {
	margin-bottom:10px;
	 background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    
    
    
    padding:12px;
	text-align:center;
    position: relative;
    
    z-index: 100;
}

/*-- Блок для неактивной ссылки --*/

div.link {
	vertical-align:middle;
}

/*-- Неактивная ссылка --*/

div.link a {
    color: #1B1A18;
	font-size:12px;
	text-decoration:none;
}

div.link a:hover{
    color: #fc273c;
	font-size:12px;
	text-decoration:underline;
}

/*-- Активная ссылка --*/

div.linkactive {
	vertical-align:middle;
    color:#fc273c;
	font-size:12px;
	text-decoration:underline;
}

div.linkactive a{

}

div.linkicon {
    padding: 0 10px;
	color:#1B1A18;
}



/*-- СТРАНИЦА FAQ (ВОПРОС-ОТВЕТ) --*/
/*-- Общий блок для страницы  --*/

div.faqspage {
	
}

/*-- Блок одного комменатрия  --*/

div.faqpage {
	width:100%;

}

/*-- Разделительная полоса  --*/

div.faqhorseparator {
    height: 1px;
	
}

div.faqtextseparator {
    height: 1px;
	
}

/*-- Блок для ФИО и даты  --*/

div.faqinfo {
	display:table;
	width:99%;
	
	padding:5px;
}

div.faqanswerinfo {
	display:table;
	width:99%;
	
}

/*--  ФИО   --*/

div.faqname  {
	display:table-cell;
   color: #fc273c;
font-size: 12px;
}

/*-- Текст вопроса --*/

div.faqtext {
 text-align:left;
	padding:5px;
}

/*-- Залавие ОТВЕТ --*/

div.faqanswername  {
	float:left;
  color: #fc273c;
font-size: 12px;

    text-transform: uppercase;
	display:table-cell;
	padding:5px 5px 5px 30px;
}

/*-- Текст ответа  и блок для текста--*/

div.faqanswer {
	margin-left:30px;
	text-align:left;
	 background:#eee;
	border-radius:5px;
	padding:8px;
}

/*-- Дата вопроса  --*/

div.faqdate  {
	float:right;
	text-align:right;
	color:#333;
	font-size:11px;
}

/*-- Дата ответа  --*/

div.faqanswerdate  {
	float:right;
	font-size:11px;
	color:#333;
	display:table-cell;
}


/*-- Надпись Задать вопрос  --*/

td.addfaqtitle {
   color: #fc273c;
    font-size: 15px;
	text-align:center;
	
}


/*-- Блок Задать вопрос  --*/

div.addfaq {

}

/*-- Общая таблица Задать вопрос  --*/

table.addfaq {
	width:80%;
	margin:0 auto;
    color: #808080;
    font-size: 11px;
	text-align:left;
}


/*-- Кнопка Задать вопрос  --*/

td.addfaqbut {
	text-align:center;

}

input.addfaq  {

}



/*-- МОДУЛЬ ОБРАТНАЯ СВЯЗЬ  --*/
/*-- Подложка под модуль обратной связи  --*/

div.feedback {
   
}


div.feedbackin {
   
}

/*-- Заглавие  --*/

div.feedbacktitle {
      background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Блок таблицы для формы связи  --*/

div.feedbackinfo {
 
}

/*-- Таблица для формы связи  --*/

table.feedbackinfo {
	width:100%;
    text-decoration: none;
	
}

/*-- Таблица для кнопки отправить  --*/

td.backcallbutton {
	text-align:center;
}

input.backcallsend {
	
}


/*-- МОДУЛЬ ГОЛОСОВАНИЕ В КОЛОНКЕ  --*/
/*-- Заглавие комментарии  --*/


div.pollscolumntitle {
	 background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #fc273c;
    font-size: 12px;
    font-weight: bolder;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

/*-- Иконка комментраии --*/

div.pollscolumntitleicon {
	display:none;
}

/*-- Подложка под модуль голосования  --*/

div.pollscolumn {
	

}

/*-- Блок одного пункта голосования --*/

div.pollcolumn {
	margin-bottom:3px;
}

/*--  Название пункта   --*/

div.pollcolumnname {
	color:#333;
	vertical-align:middle;
}

/*--  Ссылка на название товара   --*/

div.pollcolumninfo2 {
	display:table;
	width:95%;
}

/*--  Полоса голосования   --*/

div.pollcolumnline {
	text-decoration:none;
	display:inline-block;
	 background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);

	height:13px;
}


/*--  Количество голосов   --*/

div.pollcolumnnumber {
	color:#333;

}



/*-- ВСПЛЫВАЮЩЕЕ ОКНО ЗАДАТЬ ВОПРОС --*/	
/*-- Общий блок всплывающего окна --*/

div.ordercall {
	margin:0 auto;
}

div.callmeform {
	position:fixed;
	background:#eee;
	border:2px solid #555;
	padding:10px;
	display:none;
	z-index:500;
	width:500px;
}

/*-- Внутренний блок всплывающего окна --*/

div.callmeinfo {

}

/*-- Заглавие окна ЗАДАТЬ ВОПРОС --*/

td.callmetitle {
	color: #555;
    font-size: 14px;
	font-weight:Bolder;
}

table.callme {
	color:#555;
}

td.callmebuttonposition {
	text-align:center;
}

input.callmebutton {

}






























/*-- СТИЛИ ДЛЯ ПАКЕТА КАТАЛОГА --*/


/*-- МОДУЛЬ СОРТИРОВКИ ТОВАРА --*/
/*-- Блок для сортировки --*/

div.sorting {
	margin-bottom:8px;
	padding:3px;
   border-top: 1px solid #e0e0e0;
   border-bottom: 1px solid #e0e0e0;
}

/*-- Словосочетание СОРТИРОВАТЬ ПО --*/

div.sortingtitle {
   color: #333;
	vertical-align:middle;
	padding:4px;
   
}

/*-- Блок для параметра сортировки --*/

div.sortingcell {
   vertical-align:middle;
	padding:4px;

}

/*-- Параметры сортировки --*/

span.sortby{
    color: #555;
    text-decoration: none;
	cursor:pointer;
	cursor:hand;
	font-size:12px;
}

/*-- Выбранный пункт сортировки --*/

span.sortbyact{
    color: #fc273c;
    text-decoration: none;
	cursor:pointer;
	cursor:hand;
	font-size:12px;
}


/*-- Стрелка вверх --*/

div.sortup{
    color: #fc273c;
	cursor:pointer;
	cursor:hand;
	padding-left:10px;
}


/*-- Стрелка вверх --*/

div.sortdown{
   color: #fc273c;
	cursor:pointer;
	cursor:hand;
	padding-left:10px;	
}








/*-- КАТАЛОГ НА ШАПКЕ (МЕНЮ) --*/
/*-- Подложка под каталог --*/

div.cataloghead {

}

/*-- Разделитель для каталога--*/

div.categoryseparator {
	width:1px;
	background:#666;
}

/*-- Ссылки--*/
/*-- Стиль для ссылки неактивного раздела каталога--*/

div.category a {
    color: #fff;
    text-decoration: none;
	font-size:14px;
	font-weight:bolder;
}

/*-- Стиль для ссылки неактивного раздела каталога при наведении--*/

div.category:hover a {
     color: #fff;
    text-decoration: none;
	font-size:14px;
	font-weight:bolder;
}

/*-- Стиль для ссылки активного раздела каталога --*/

div.activecategory a {
     color: #fff;
    text-decoration: none;
	font-size:14px;
	font-weight:bolder;
}


/*-- Блоки--*/
/*-- Неактивный раздел каталога --*/

div.category {
	padding:15px 25px 15px 25px;
	cursor:pointer;
	cursor:hand;
	-webkit-transition: all 0.5s ease;                  
    -moz-transition: all 0.5s ease;                 
    -o-transition: all 0.5s ease;   
    -ms-transition: all 0.5s ease;          
    transition: all 0.5s ease;
}

/*-- Неактивный раздел каталога при наведении --*/

div.category:hover {
	padding:15px 25px 15px 25px;
	cursor:pointer;
	cursor:hand;
		background-color: #ff9431;
background-image: -moz-linear-gradient(top, #f3b552, #f08522);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3b552), to(#f08522));
background-image: -webkit-linear-gradient(top, #f3b552, #f08522);
background-image: -o-linear-gradient(top, #f3b552, #f08522);
background-image: linear-gradient(to bottom, #f3b552, #f08522);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3b552', endColorstr='#f08522', GradientType=0);
	
}

/*-- Активный раздел каталога --*/

div.activecategory {
	padding:15px 25px 15px 25px;
	cursor:pointer;
	cursor:hand;
	background-color: #ff9431;
background-image: -moz-linear-gradient(top, #f3b552, #f08522);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3b552), to(#f08522));
background-image: -webkit-linear-gradient(top, #f3b552, #f08522);
background-image: -o-linear-gradient(top, #f3b552, #f08522);
background-image: linear-gradient(to bottom, #f3b552, #f08522);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3b552', endColorstr='#f08522', GradientType=0);
}



/*-- ВЫПАДАЮЩИЙ СПИСОК МЕНЮ--*/
/*-- Блок подменю разделов общий--*/

div.categorysubmenu{
	display:none;
	top:32px;
	left:-25px;
	z-index:200;
	box-shadow:0 0 2px #eee;
	border:1px solid #e8e8e8;
	background:white;
}

div.category:hover div.categorysubmenu{
	display:block;

}

div.activecategory:hover div.categorysubmenu{
	display:block;

}

/*-- Раздел подменю первый--*/

div.categorysubmenu0{
	padding:10px 20px 10px 20px;
	white-space:nowrap;
	border-bottom:1px #d3d3d3 dotted;
	min-width:200px;
}

div.categorysubmenu0:hover {
	padding:10px 20px 10px 20px;
	white-space:nowrap;
	background:#efefef;
	min-width:200px;
}

/*-- Раздел подменю второй--*/

div.categorysubmenu1{
	padding:10px 20px 10px 20px;
	white-space:nowrap;
	border-bottom:1px #d3d3d3 dotted;
	min-width:200px;
}

div.categorysubmenu1:hover{
	padding:10px 20px 10px 20px;
	white-space:nowrap;
	background:#efefef;
	min-width:200px;
	
}

/*-- Ссылка первого раздела подменю--*/


div.categorysubmenu0 a.categorylinksubmenu0{
	text-decoration:none;
	color:#777;
	font-size:12px;
}

div.categorysubmenu0:hover a.categorylinksubmenu0{
	text-decoration:none;
	color:#777;
	font-size:12px;
}

/*-- Ссылка второго раздела подменю--*/


div.categorysubmenu1 a.categorylinksubmenu1{
	text-decoration:none;
	color:#777;
	font-size:12px;
}


div.categorysubmenu1:hover a.categorylinksubmenu1{
	color:#777;
	font-size:12px;
}



/*-- Блоки для расположения иконок  --*/

div.categoryicon {
	position:absolute;
	display:none;
}

/*-- Блоки для расположения иконок активных --*/

div.categoryiconact {
	display:none;
	position:absolute;
}

/*-- Действия с иконками при наведени на блоки --*/

div.category:hover div.categoryicon {
	display:none;
	position:absolute;
}

div.category:hover div.categoryiconact {
	position:absolute;
	display:none;
}


div.activecategory div.categoryicon {
	display:none;
	position:absolute;
}

div.activecategory div.categoryiconact {
	position:absolute;
	display:none;
}




/*-- МОДУЛЬ КАТАЛОГ В КОЛОНКЕ --*/
/*-- Общий блок для модуля каталог --*/
div.orange-button{height:27px;}
div.orange-button a{
	background-color: #FF9431;
	  border-radius:5px;
	  color: #fff;
    font-size: 20px;
    margin-bottom: 3px;
    padding:8px 0px;
	display:block;
	width:100%;
	text-align:center;
    position: relative;
    z-index: 100;
	text-decoration:none;
}
div.orange-button a:hover{
	text-decoration:none;
	opacity:0.7;
}

div.catalogallblock {
    
}

/*-- Блок каталога --*/

div.catalog {
    padding: 0px;
	
}

/*-- Заголовок каталог --*/



div.catalogtitle {
      background-color: #1C8EEE;
	  border-radius:5px;
	  color: #fff;
    font-size: 20px;
    margin-bottom: 3px;
    padding:8px;
	text-align:center;
    position: relative;
    z-index: 100;
}

/*-- Иконка каталога --*/

div.catalogtitleicon {
    display:none;
}

/*-- Блок первого уровня каталога --*/
/*-- Ссылки --*/

div.category0 a {
	text-decoration:none;
	color:#1C8EEE;
	font-size: 14px;
	font-weight:bold;
	
}


div.category0:hover a {
	text-decoration:none;
	color:#FF9431;
	font-size: 14px;
	font-weight:bold;
	
}

div.category0act a {
	text-decoration:none;
	color:#FF9431;
	font-size: 14px;
	font-weight:bold;
	
}



/*-- Плашки --*/


div.category0  {
	padding:10px 5px 10px 44px;
	cursor:pointer;
	cursor:hand;
	background:url("./infolight/left-menu-cut.png") 5px center no-repeat #ECECEC;
	margin:2px auto;
	border-radius:5px;
}


div.category0:hover  {
	cursor:pointer;
	cursor:hand;
	background-image:url("./infolight/left-menu-cut-act.png");
	
}

div.category0act  {
	padding:10px 5px 10px 44px;
	cursor:pointer;
	cursor:hand;
	background:url("./infolight/left-menu-cut-act.png") 5px center no-repeat #ECECEC;
	margin:2px auto;
	border-radius:5px;
}



/*-- Блок второго уровня каталога --*/
/*-- Ссылки --*/


div.category1 a {
	text-decoration:none;
	color:#333;
	font-size: 12px;
}


div.category1:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}

div.category1act a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}



div.category1act:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}

/*-- Плашки --*/


div.category1  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
	background:url("./infolight/cat.jpg") 6px center no-repeat;
}


div.category1:hover  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}

div.category1act  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
	background:url("./infolight/cat.jpg") 6px center no-repeat;
}




/*-- Блок третьего уровня каталога --*/
/*-- Ссылки --*/


div.category2 a {
	text-decoration:none;
	color:#333;
	font-size: 12px;
}


div.category2:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}

div.category2act a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}


div.category2act:hover a {
	text-decoration:none;
	color:#fc273c;
	font-size: 12px;
}

/*-- Плашки --*/


div.category2  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}


div.category2:hover  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}

div.category2act  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px dotted #d3d3d3;
}








/*-- СТРАНИЦА категории В КАРТИНКАХ--*/
/*-- Блок для страницы категории --*/

div.categorysview {
 margin-bottom:20px;   
}

/*-- Блок для страницы категории --*/

div.categoryviewinfo {
	padding:4px;

}

/*-- Блок всех категории --*/

div.categoryview {
   text-align:center;
    
}

/*-- Разделительная полоса по вертикали --*/

div.categoryviewverseparator {
   width: 1px;
}

/*--  Разделительная полоса по горизонтале --*/

div.categoryviewhorseparator {
   height: 1px;
	
}

/*-- Блок для картинки --*/

div.categoryviewimg {
	width:250px;
	height:150px;
	margin:0 auto;
}

/*-- Картинка --*/

img.categoryviewimg {
	max-width:250px;
	max-height:150px;
	border:0;
}


/*-- Позиционирование картинки --*/

div.categoryviewimgtable {
	display:table;
	height:150px;
	margin:0 auto;
}

div.categoryviewimgcell {
	display:table-cell;
	vertical-align:middle;
}

/*-- Вывод названия категории над картинкой --*/
/*-- Блок названия категории --*/


div.topcategoryviewname {
	
	display:none;	
}


/*-- Ссылка названия категории --*/

div.topcategoryviewname a{
	
}


div.topcategoryviewname:hover a{
	
}


/*-- Вывод названия категории под картинкой --*/
/*-- Блок для названия категории --*/

div.bottomcategoryviewname {
margin:10px 0 3px 0 ;
	
	
}

/*-- Ссылка названия категории --*/

div.bottomcategoryviewname a{
text-decoration:none;
	color:#353535;
	font-size:14px;
	font-weight:bolder;
}

div.bottomcategoryviewname:hover a{
text-decoration:none;
	color: #fc273c;
	font-size:14px;
	font-weight:bolder;
}



/*-- Подкатегории второго уровня --*/
/*-- Общий блок для подкатегории --*/

div.subcategoryviewname {
	padding:3px;


}

div.subcategoryviewname:hover {
	padding:3px;
	
}


/*-- Ссылка названия подкатегории --*/

div.subcategoryviewname a{
    text-decoration:none;
	color:#353535;
	font-size:13px;
	
}


div.subcategoryviewname:hover a{
   text-decoration:none;
	color: #fc273c;
	font-size:13px;
	
}









/*-- СТРАНИЦА ТОВАРОВ ВЕРТИКАЛЬНЫЙ ВЫВОД--*/
/*-- Общий блок для страницы товаров --*/

div.verproducts{
  
}

/*-- Блок для одного товара внешний --*/

div.verproductinfo {
	 padding: 18px 0 18px 0;
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}

div.verproductinfo:hover {
	 padding: 18px 0 18px 0;
   
	box-shadow:0 0 6px silver;
}

/*-- Блок для одного товара внутренний --*/

div.verproduct {
   text-align:center;
	
	
}



/*-- Разделительная полоса по вертикали --*/

div.productsverseparator {
   width: 1px;
   
}



/*-- Блок для картинки --*/

div.verproductimg {
	width:230px;
	height:180px;

    margin: 0 auto;
    
    text-align: center;
	margin-bottom:5px;
}

/*-- Картинка --*/

img.verproductimg {
	max-width:230px;
	max-height:180px;
	border:0;
}


/*-- Позиционирование картинки --*/

div.verproductimgtable {
	display:table;
	height:180px;
	margin:0 auto;
}

div.verproductimgcell {
	display:table-cell;
	vertical-align:middle;
}

/*-- Вывод названия товара над картинкой --*/
/*-- Блок названия  товара --*/

div.vertopproductname {
	
	display:none;	
}


/*-- Ссылка названия  товара --*/

div.vertopproductname a{
    
}


div.vertopproductname:hover a{
   
}



/*-- Вывод названия  товара под картинкой --*/
/*-- Блок для названия  товара --*/

div.verbottomproductname {
	padding:8px 5px 5px 5px;
	
	text-align:left;
	
}

/*-- Ссылка названия  товара --*/

div.verbottomproductname a{
	text-decoration:none;
	color:#353535;
	font-size:14px;
	font-weight:bolder;
}

div.verbottomproductname:hover a{
 text-decoration:none;
	color: #FF9431;
	font-size:14px;
	font-weight:bolder;
}



/*-- Блок для краткого описания товара --*/

div.verproductdescription {
	display:none;
	padding:0 5px 0 5px;
}

/*-- Блок для цены товара --*/

div.verproductprice {
	text-align:left;
	padding:5px;
   font-size: 16px;
	color: #fc273c;
   font-weight:bolder;
    text-decoration: none;
	padding:0 5px 0 5px;
}

/*-- Старая цена товара --*/

div.veroldprice{
    color: #353535;
    font-size: 14px;
    text-align: left;
    text-decoration: line-through;
}

/*-- Акционная цена товара --*/

div.veractprice{
   color: #fc273c;
    font-size: 16px;
    text-decoration: none;
}







/*-- ЯРЛЫКИ ВЕРТИКАЛЬНЫЕ --*/
/*-- Иконка АКЦИИ --*/

div.veractproducticon{
	background:url("/themes/infolight/acticon.png") no-repeat center;
	width:46px;
	height:46px;
    top: -15px;	
}

/*-- Иконка ТОП --*/

div.vertopproducticon{
	background:url("/themes/infolight/topicon.png") no-repeat center;
	width:46px;
	height:46px;
    top: -15px;	
}

/*-- Иконка НОВИНКИ --*/

div.vernewproducticon{
	background:url("/themes/infolight/newicon.png") no-repeat center;
	width:46px;
	height:46px;
    top: -15px;	
}

/*-- ЯРЛЫКИ ГОРИЗОНТАЛЬНЫЕ --*/
/*-- Иконка АКЦИИ --*/

div.horactproducticon{
	background:url("/themes/infolight/acticon.png") no-repeat center;
	width:46px;
	height:46px;
    top: 1px;	
	
	z-index:200;
}

/*-- Иконка ТОП --*/

div.hortopproducticon{
	background:url("/themes/infolight/topicon.png") no-repeat center;
	width:46px;
	height:46px;
    top: 1px;	
	
	z-index:200;
}

/*-- Иконка НОВИНКИ --*/

div.hornewproducticon{
	background:url("/themes/infolight/newicon.png") no-repeat center;
	width:46px;
	height:46px;
    top: 1px;	
	
	z-index:200;
}


/*-- ЯРЛЫКИ ВНУТРИ ТОВАРА --*/
/*-- Иконка АКЦИИ --*/

div.actproducticon{
	background:url("/themes/infolight/1.png") no-repeat center;
	width:70px;
	height:92px;	
}

/*-- Иконка ТОП --*/

div.topproducticon{
	background:url("/themes/infolight/2.png") no-repeat center;
	width:72px;
	height:73px;	
}

/*-- Иконка НОВИНКИ --*/

div.newproducticon{
	background:url("/themes/infolight/3.png") no-repeat center;
	width:60px;
	height:59px;
}














/*-- Блок для кнопки КУПИТЬ в товарах --*/

div.verproductbuy{
	text-align:left;
	padding:8px 5px 0 5px;
}

/*-- Кнопка КУПИТЬ --*/

input.verproductbuybutton{
 	background: url("infolight/sale-button.png") 1px center no-repeat #ececec;
	padding:6px 10px 7px 40px;
}
input.verproductbuybutton:hover{
 	background: url("infolight/sale-button.png") left center no-repeat #FF9431;
	padding:6px 10px 7px 40px;
}












/*-- СТРАНИЦА ТОВАРОВ ГОРИЗОНТАЛЬНЫЙ  ВЫВОД--*/
/*-- Общий блок для страницы товаров --*/

div.horproducts{
  
}

/*-- Блок для одного товара внешний --*/


div.horproductinfo {
	
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
	vertical-align:top;
}

div.horproductinfo:hover {
	 
   
	box-shadow:0 0 6px silver;
}

/*--  Разделительная полоса по горизонтале --*/

div.productshorseparator {
 
    height:8px;
}

/*-- Блок для одного товара внутренний --*/

div.horproduct {
   text-align:center;
	
}

/*-- Левая колонка с фото товара --*/

div.producthorleft {
	width:180px;
   	
}

/*-- Правая колонка с описанием и ценой товара --*/

div.producthorright{
	text-align:left;
	padding-left:15px;
	padding-top:5px;
}

/*-- Блок для картинки --*/

div.horproductimg {
	width:220px;
	height:150px;
	margin:0 auto;

}

/*-- Картинка --*/

img.horproductimg {
	max-width:220px;
	max-height:150px;
	border:0;
}


/*-- Позиционирование картинки --*/

div.horproductimgtable {
	display:table;
	height:150px;
	margin:0 auto;
}

div.horproductimgcell {
	display:table-cell;
	vertical-align:middle;
}

/*-- Вывод названия товара над фото товара --*/
/*-- Блок названия  товара --*/

div.hortopproductname {
	display:none;	
}


/*-- Ссылка названия  товара --*/

div.hortopproductname a{
	
}


div.hortopproductname:hover a{

}


/*-- Вывод названия  товара справа от фото товара --*/
/*-- Блок для названия  товара --*/

div.horbottomproductname {
	padding:5px 0;
}

/*-- Ссылка названия  товара --*/

div.horbottomproductname a{
	text-decoration:none;
	color:#353535;
	font-size:14px;
	font-weight:bolder;
}

div.horbottomproductname:hover a{
	 text-decoration:none;
	color: #fc273c;
	font-size:14px;
	font-weight:bolder;
}



/*-- Блок для краткого описания товара --*/

div.horproductdescription {
	padding:3px 0;
}

/*-- Блок для цены товара --*/

div.horproductprice {
	text-align:left;
	
   font-size: 16px;
	color: #fc273c;
   font-weight:bolder;
    text-decoration: none;
	padding:5px 0;
}

/*-- Старая цена товара --*/

div.horoldprice{
	 color: #353535;
    font-size: 14px;
    text-align: left;
    text-decoration: line-through;
}

/*-- Акционная цена товара --*/

div.horactprice{
	color: #fc273c;
    font-size: 16px;
    text-decoration: none;
}


/*-- Иконка АКЦИИ --*/

div.horactproducticon{

}






/*-- СТРАНИЦА ВНУТРИ ТОВАРА  --*/
/*-- Общая подложка под страницей товара--*/

div.allproductblock{
    
}

/*-- ПРЕДЫДУЩИЙ И СЛЕДУЮЩИЙ ТОВАР--*/
/*-- Общий блок для ссылки предыдущего и следующего товара--*/

div.allnextproduct{
	margin-bottom:8px;
	padding:5px;

}

/*-- Блок для одной ссылки --*/

div.nextproduct{

}

/*-- Стиль ссылки--*/

div.nextproduct a{
    color: #333;
    text-decoration:underline;
}

div.nextproduct a:hover{
   color: #fc273c;
    text-decoration:none;	
}

/*-- НАЗВАНИЕ И АРТИКЛ--*/
/*-- Блок для названия и артикла над фото товара--*/

div.productoverblock{
	display:none;
}

/*-- Блок для названия товара--*/

div.overproductname{

}

/*-- Тег для заглавия названия товара--*/

h1.overproductname{
	padding:0;
	margin:0;
}

/*-- Блок для артикла товара--*/

div.overproductcode{
	
}

/*-- Блок левой колонки страницы товара(фото)--*/

div.productleftcolumn{
	width:300px;
}

/*-- Блок фото товара--*/

div.productbigimg{
	margin: 0 auto;
    padding: 3px;
    text-align: center;
	cursor:pointer;	
	cursor:hand;
	margin-bottom:8px;	
}

/*-- Блок фото товара--*/

img.productbigimg{
	max-width:300px;	
	max-height:300px;
}

/*-- Блок левой колонки страницы товара(фото)--*/

div.productbigimgtable{
	display:table;
	margin:0 auto;
	height:300px;	
}

/*-- Блок левой колонки страницы товара(фото)--*/

div.productbigimgcell{
	display:table-cell;
	vertical-align:middle;
}


/*-- Всплывающее окно УВЕЛИЧИНОE ФОТО ТОВАРА--*/
/*-- Общий блок--*/

div.bigproductform {
	position:fixed;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 3px solid #E5E6E6;
    border-radius: 5px;
	padding:20px;
	display:none;
	z-index:500;
}

/*-- Внутренний блок всплывающего окна --*/

div.bigproductinfo {
}

/*-- Общий блок для названия и артикла --*/

div.bigproductmainrow {

	height:46px;
}

/*-- Позиционирование общего блока  --*/

div.bigproductrow {
	padding:5px;
}

/*-- Стиль для названия  --*/

div.bigproductname {
	font-size:16px;
	color:#333;
}

/*-- Стиль для  артикла --*/






/*-- Стиль для  стрелки влево --*/

input.bigimgleftarrow {
    
}


/*-- Стиль для  стрелки вправо --*/

input.bigimgrightarrow {
   
}

/*-- Стиль для  крестика --*/

div.closebigproduct{
	position:relative;
}


/*-- МАЛЕНЬКИЕ ФОТОГРАФИИ --*/
/*-- Блок для всех мини фото --*/

div.insmproductscont{
	width:300px;
}

/*-- Расстояние между маленькими фото --*/

div.inproductssmallimgpadding{
	padding:1px;
}

/*-- Блок для одной мини фото --*/

div.inproductsmallimg{
    margin: 0 auto;
    padding:5px;
    text-align: center;
	cursor:pointer;	
	cursor:hand;
	height:88px;
}

/*-- Картинка одной мини фото --*/

img.inproductsmallimg{
	max-width:88px;	
	max-height:88px;
}

/*-- Размеры одной мини фото --*/

div.inproductsmallimgtable{
	width:88px;	
	height:88px;
	display:table;
	margin:0 auto;
}

div.inproductsmallimgcell{
	display:table-cell;
	vertical-align:middle;
}


/*-- Стрелки для прокрутки маленьких фото--*/
/*-- Влево--*/

div.inproductsmallleft{

}

input.inproductsmallleft{
  padding:3px;
  font-size:11px;
}
input.inproductsmallleft:hover{
  padding:3px;
  font-size:11px;
}


/*-- Вправо--*/

div.inproductsmallright{

}

input.inproductsmallright{
    padding:3px;
  font-size:11px;
}
input.inproductsmallright:hover{
    padding:3px;
  font-size:11px;
}


/*-- Центральная колонка (разделительная между фото и текстом)--*/

div.productcentercolumn{
	width:10px;
}

/*-- Блок парвой колонки страницы товара(описание, цена и т.д.)--*/

div.productrightcolumn{
   padding:10px;
}

/*-- Название товара вывод справа--*/

div.productname{
	
}

/*-- Статус  наличия  товара--*/

div.productstatus{
	color:#777;
	font-size:12px;
}

/*-- Название товара вывод справа--*/

h1.productname{
	font-size: 19px;
	color:#333;
	padding:3px 0 0 0;
	margin:3px 0 0 0;
}

/*-- Артикул вывод справа--*/

div.productcode{
	font-size: 13px;
	color:#333;
	padding:3px 0 6px 0 ;
}

/*-- Цена товара--*/

div.productprice{
    color: #fc273c;
    font-size:25px;	
	padding-top:6px;
}

/*-- Надпись Цена за единицу товара--*/

div.pricefor{
	color:#777;
    font-size:14px;
	padding:5px 0px;
}

/*-- Старая цена товара--*/

div.productoldprice{
    color: #333;
    text-decoration: line-through;
    font-size: 14px;	
}

/*-- Акционная цена товара--*/

div.productactprice{
    color:#fc273c;
    font-size: 25px;
	font-weight:bolder;
	text-transform:uppercase;
}

/*-- ДРУГИЕ ВАЛЮТЫ--*/
/*-- Общий блок для валют--*/

div.productvalutes{
	margin-bottom:8px;
}

/*-- Старая цена товара в другой валюте--*/

div.valuteoldprice{
    color: #C5C5C5;
    text-decoration: line-through;
    font-size: 14px;
	padding-right:8px;

}

/*-- Акционная цена товара в другой валюте--*/

div.valuteactprice{
	color:#E2534B;
    font-size: 16px;

	text-transform:uppercase;
}

/*-- Разделительная полоса для разных валют--*/

div.valuteseparator{
    color: #C5C5C5;
	padding:0 5px 0 5px;
	font-size:18px;
}



/*-- ПРОИЗВОДИТЕЛИ--*/
/*-- Общий блок для надписи производители--*/

div.productbrand{
	color:#1B1A18;
	font-size:13px;
	margin-bottom:10px;
	margin-top:10px;
}

/*-- Стиль ссылки на производителя--*/

div.productbrand a{
    color: #fc273c;
    font-size: 13px;
    text-decoration: underline;
}

div.productbrand a:hover{
    color: #fc273c;
    font-size: 13px;
    text-decoration: none;
}


/*-- Краткое описание товара--*/

div.productdescription{
	
}


/*-- Полное описание товара--*/

div.producttext{
	padding-top:10px;
}




/*-- ЗАДАТЬ ВОПРОС--*/
/*-- Блок для кнопки задать вопос--*/

div.productquest{

}

/*--  Кнопки задать вопос--*/

input.questbutton{

}

/*-- Всплывающее окно ЗАДАТЬ ВОПРОС--*/
/*-- Общий блок--*/

div.questform {
	position:fixed;
	background:#f3f3f3;
	border:3px solid #e5e6e6;
	padding:10px;
	display:none;
	z-index:500;
	width:500px;
	border-radius:5px;
}

/*-- Внутренний блок всплывающего окна --*/

div.questinfo {

}

/*-- Заглавие окна ЗАДАТЬ ВОПРОС --*/

td.questtitle {
	color: #333;
    font-size: 16px;
	font-weight:Bolder;
}

/*-- Стиль для таблицы ввода данных --*/

table.quest {
	color:#7F8C8C;
	font-size:11px;
}

/*-- Позиционирование кнопки задать вопрос  --*/

td.questbuttonposition {
	text-align:center;
}










/*-- ДОПОЛНИТЕЛЬНЫЕ ПАРАМЕТРЫ ТОВАРА--*/
/*-- Общий блок для дополнительных параметров товара--*/

div.productoptions {
	padding:3px;

	margin-bottom:5px;
}

/*-- Общий блок содержащий одну строку--*/

div.productoptioninfo {
	padding:3px;
}

/*-- Название параметра на блоке--*/

div.productoptionname {
    color: #777;
    font-size: 12px;
	padding:3px;
	width:150px;
	vertical-align:middle;
}

/*-- Выбранный параметр выпадающего списка--*/

div.productoptionselect {
    color:#333;
    font-size:12px;
	padding:5px;
	border:1px solid #999;
	background:url("/themes/infolight/arrow.png") right center no-repeat #ffffff;
	width:200px;
	z-index:200;
	cursor:pointer;
	cursor:hand;
	
}

/*-- Блок выпадающего списка параметров--*/

div.inproductoptiondropdown {
	color:#333;
    font-size:12px;
	padding:5px;
	width:200px;
	z-index:300;
	background:#ffffff;
	cursor:pointer;
	cursor:hand;
	border:1px solid #999;
}

/*-- Одна строка выпадающего списка параметров--*/

div.inproductoptionrow {
    color:#333;
    font-size:12px;
	background:#ffffff;
	border-top:1px dotted #ebebeb;
	width:200px;
	z-index:300;
	cursor:pointer;
	cursor:hand;
	margin-bottom:5px;	
 padding: 5px 0;
}

/*-- Одна строка выпадающего списка параметров--*/

div.inproductoptionrow:hover{
    color:#333;
    font-size:12px;
	background:#fff;
	border-bottom:1px dotted #ebebeb;	
	width:200px;
	z-index:300;
	cursor:pointer;
	cursor:hand;
	margin-bottom:5px;	
	 padding: 5px 0;
}








/*-- ВСЕ ПРО КУПИТЬ  --*/
/*-- Общий блок кнопки купить и количества--*/
div.productbuy {
	margin:10px 0 10px 0;
}

/*-- Блок для количества --*/
div.productbuyamount{

}

/*-- Блок для кнопки купить --*/
div.productbuybutton{

}




/*-- Блок для кнопки купить --*/
input.productbuybutton{
  background: url("infolight/sale-button.png") no-repeat scroll 1px center #ececec;
    padding: 6px 10px 7px 40px;
}


/*-- Блок для кнопки купить --*/
input.productbuybutton:hover{
  background: url("infolight/sale-button.png") no-repeat scroll 0px center #FF9431;
    padding: 6px 10px 7px 40px;
}







/*-- ВКЛАДКИ ТОВАРОВ  --*/
/*-- Общий блок для вкладок --*/
div.producttabs {
   margin-top:10px; 
   margin-bottom:10px;
    border-bottom: 3px solid #0163C3;
   position:relative;
   top:2px;
}

/*-- Блок для одной вкладки --*/
div.producttabposition {
    display:table-cell;
	vertical-align:bottom;
	padding:1px 1px 0px 1px;
}



/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.producttab {
   background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #7F8C8C;
    cursor: pointer;
    height: 20px;
    padding: 5px;
    position: relative;
    top: -2px;

}

/*-- НЕАКТИВНАЯ ВКЛАДКА ПРИ НАВЕДЕНИИ--*/
div.producttab:hover {
    background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #1c8eee, #0062c2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1c8eee), to(#0062c2));
background-image: -webkit-linear-gradient(top, #1c8eee, #0062c2);
background-image: -o-linear-gradient(top, #1c8eee, #0062c2);
background-image: linear-gradient(to bottom, #1c8eee, #0062c2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    top: -2px;	
}


/*-- АКТИВНАЯ ВКЛАДКА --*/
div.productactivetab {
   background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #1c8eee, #0062c2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1c8eee), to(#0062c2));
background-image: -webkit-linear-gradient(top, #1c8eee, #0062c2);
background-image: -o-linear-gradient(top, #1c8eee, #0062c2);
background-image: linear-gradient(to bottom, #1c8eee, #0062c2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    top: -2px;	
}


/*--  Блок для внутренней части вкладок--*/

div.producttabinfo {
	margin-top:10px;
	margin-bottom:15px;
}

/*--  ВКЛАДКА ХАРАКТЕРИСТИКИ--*/
/*--  Таблица с характеристиками--*/

table.inproductchars {
	width:100%;
}
/*--  Первая строка таблицы--*/

tr.inproductcharrow0 {

}
/*--  Вторая строка таблицы--*/

tr.inproductcharrow1 {

}
/*--  Сторлбик с названием характеристики--*/

td.inproductcharname {
    color: #333;
    font-size: 12px;
    padding: 8px;
	width:200px;
}
/*--  Столбик с параметрами характеристики--*/

td.inproductchartext {
    padding: 8px
}








/*-- МОДУЛЬ ТОП ТОВАРЫ В СЛАЙДЕРЕ  --*/
/*-- Общая подложка под всем слайдером--*/

div.productsslider {

}


/*-- Подложка под заглавие --*/

div.productsslidertitle {
    background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #1C8EEE;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

/*-- Иконка заглавия акции --*/

div.actproductsslidertitleicon {
	display:none;
}

/*-- Иконка похожие товары --*/

div.sameproductsslidertitleicon {
	display:none;
}

/*-- Иконка топ товары --*/

div.topproductsslidertitleicon {
	display:none;	
}

/*-- Иконка новинки --*/

div.newproductsslidertitleicon {
	display:none;	
}

/*-- Подложка под все товары в слайдере--*/

div.productssliderinfo {
	
}

/*-- Ширина слайдера акционных товаров--*/

div.actproductsslidercont {
	width:760px;
	margin:0 auto;
}

/*-- Ширина слайдера похожих товаров товаров--*/

div.sameproductsslidercont {
	width:760px;
	margin:0 auto;
}

/*-- Ширина слайдера топ товаров--*/


div.topproductsslidercont {
width:760px;
	margin:0 auto;
}

/*-- Ширина слайдера новых товаров--*/


div.newproductsslidercont {
	width:718px;
	margin:0 auto;
}


/*-- Подложка под одним товаром--*/


div.sliderproduct {
    
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
   margin:3px;
	text-align:center;
	max-width:182px;
	width:182px;
}

/*-- Подложка под одним товаром при наведении--*/

div.sliderproduct:hover {
box-shadow:0 0 6px silver;
margin:3px;
}

/*-- Блок под названием товара --*/

div.slidertopproductname {
	padding:3px;
	height:45px;

}

div.slidertopproductname:hover {
	padding:3px;
	height:45px;

}

/*-- Ссылка названия товара --*/

div.slidertopproductname a{
	color:#333;
	text-decoration:none;	
}

/*-- Ссылка названия товара при наведении --*/

div.slidertopproductname a:hover{
	color:#333;
	text-decoration:none;	
}

/*-- Блок для названия товара под картинкой  --*/

div.sliderbottomproductname {
	display:none;
}

/*-- Ссылка для названия товара под картинкой  --*/

div.sliderbottomproductname a{
	
}

div.sliderbottomproductname a{
	
}

/*-- Строка для цены и кнопки купить --*/

div.sliderproductbuyinfo{
	margin-bottom:1px;
}

/*-- Стиль для цены товара в слайдере --*/

div.sliderproductprice{
   color: #fc273c;
    font-size: 16px;
    text-decoration: none;
	padding:10px 0;
	height:45px;
}

/*-- Стиль для старой цены товара в слайдере --*/

div.slideroldprice{
    color: #777;
    font-size: 12px;
    text-decoration: line-through;
}

/*-- Стиль для акционной цены товара в слайдере --*/

div.slideractprice{
    color: #fc273c;
    font-size: 16px;
}

/*-- Блок для кнопки купить --*/

div.sliderproductbuy{

}

/*-- Кнопка купить --*/

input.sliderproductbuybutton{
	 	background: url("infolight/sale-button.png") 1px center no-repeat #ececec;
	padding:6px 10px 7px 40px;
}
input.sliderproductbuybutton:hover{
 	background: url("infolight/sale-button.png") left center no-repeat #FF9431;
	padding:6px 10px 7px 40px;
}	




/*-- Стрелка влево --*/

input.sliderproductsleft {
   
}


/*-- Стрелка вправо --*/

input.sliderproductsright {
    
}


/*-- Блок для картинки товаров в слайдере --*/

div.sliderproductimg {
	width:176px;
	height:130px;
	padding:3px 0 3px 0;

}

/*--Картинка товаров в слайдере --*/

img.sliderproductimg {
	max-width:176px;
	max-height:130px;
	border:0;

}

/*-- Позиционирование картинки --*/

div.sliderproductimgtable {
	display:table;
	height:130px;
	margin:0 auto;
}

div.sliderproductimgcell {
	display:table-cell;
	vertical-align:middle;
}


/*--Строка смотреть все --*/

div.sliderproductsall {
	text-align:right;
	padding-top:10px;
}

/*--Строка смотреть все --*/

input.sliderproductsall {

}






/*-- ВЫВОД АКЦИОННЫХ ТОВАРОВ В СТАНДАРТНОМ ВИДЕ  --*/
/*-- Надпись акции--*/

div.productscentertitle {
       background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #fc273c;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

/*-- Общий подложка под всеми акционными товарами--*/

div.blockproductscenter {

}

div.topproductscentertitleicon {
display:none;
}


div.newproductscentertitleicon {
display:none;
}


div.actproductscentertitleicon {
display:none;
}







/*-- ВЫВОД АКЦИОННЫХ ТОВАРОВ В КОЛОНКЕ  --*/
/*-- Общий блок для акционных товаров в колонке--*/

div.allproductscolumn {
   
}

/*-- Подложка под товары  --*/

div.productscolumn {

}

/*-- Подложка для одного товара  --*/

div.productcolumn {
   
}

/*-- Заглавие акционные товары--*/

div.productscolumntitle {
   background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #1C8EEE;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}



/*-- Иконка акционные товары --*/

div.actproductscolumntitleicon {
  display:none;
}

/*-- Иконка акционные товары --*/

div.newproductscolumntitleicon {
    display:none;
}


div.productcolumn {
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
  
	text-align:center;
	margin:3px 0;
}

div.productcolumn:hover {
box-shadow:0 0 6px silver;
margin:3px 0;
}

/*-- Подложка под картинку слева  --*/

div.productcolumnimgleft {
	text-align:center;
   padding: 3px;
margin:0 auto;

    width: 180px;
}


/*-- Картинка слева  --*/

img.productcolumnimgleft {
    border: 0 none;
    max-height: 110px;
    max-width: 170px;
}


/*-- Подложка под картинку справа  --*/

div.productcolumnimgright {
	text-align:center;
   padding: 3px;
margin:0 auto;
    width: 180px;
}


/*-- Картинка справа  --*/

img.productcolumnimgright {
    border: 0 none;
    max-height: 110px;
    max-width: 170px;
}

/*-- Вариант названия НАД КАРТИНКОЙ --*/
/*-- Блок название товара  --*/

div.productcolumntopname {
	text-align:center;
	margin-top:6px;
	margin-bottom:6px;
	padding:5px;
}

/*-- Название товара  --*/

div.productcolumntopname a {
    font-size:12px;
    color: #333;
    text-decoration: none;
}

/*-- Название товара при наведении --*/

div.productcolumntopname a:hover {
    font-size:12px;
    color: #333;
    text-decoration:underline;
}



/*-- Вариант названия ПОД КАРТИНКОЙ --*/
/*-- Блок название товара  под фото --*/

div.productcolumnbottomname {
	display:none;
}

/*-- Название товара под фото  --*/

div.productcolumnbottomname a {
	
}

/*-- Название товара под фото при наведении --*/

div.productcolumnbottomname a:hover {
	
}


/*-- Цена товара --*/

div.productcolumnprice {
    color: #fc273c;
    font-size: 16px;
    text-decoration: none;
    text-align: center;	
	height:32px;
}

/*-- Старая цена товара --*/

div.columnoldprice {
    text-align: center;
    color: #777;
    font-size: 12px;
    text-decoration: line-through;
}

/*-- Акционная цена товара --*/

div.columnactprice {
   color: #fc273c;
    font-size: 16px;
    text-decoration: none;
}

/*-- Разделительная полоса между товарами --*/

div.productcolumnseparator {

}

/*-- Блок для кнопки купить в акциях --*/

div.columnproductbuybutton{
	text-align:center;
	margin-bottom:5px;
}

/*-- Кнопка купить в акциях --*/

input.columnbuybutton{
 	background: url("infolight/sale-button.png") 1px center no-repeat #ececec;
	padding:6px 10px 7px 40px;
}
input.columnbuybutton:hover{
 	background: url("infolight/sale-button.png") left center no-repeat #FF9431;
	padding:6px 10px 7px 40px;
}	    
	
}


/*-- Блок для кнопки смотреть все в акциях --*/

div.columnproductsall{
	margin:5px;
	text-align:center;

}

/*-- Кнопка смотреть все в акциях --*/

input.columnproductsall{

}


input.columnproductsall:hover{

}









/*-- МОДУЛЬ ПРОИЗВОДИТЕЛИ В СЛАЙДЕРЕ  --*/
/*-- Общая подложка под всем слайдером--*/

div.brandsslider {

}


/*-- Подложка под заглавие --*/

div.brandsslidertitle {
     background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #fc273c;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

/*-- Иконка заглавия акции --*/

div.brandsslidertitleicon {
	display:none;
}

/*-- Подложка под все товары в слайдере--*/

div.brandssliderinfo {
   
}

div.brandsslidercont {
	width:760px;
}

/*-- Подложка под одним товаром--*/

div.sliderbrand {
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
   margin:3px;
	text-align:center;
	max-width:192px;
	width:192px;
}

div.sliderbrand:hover {
box-shadow:0 0 6px silver;
margin:3px;
}


/*-- Блок под названием товара --*/

div.slidertopbrandname {

	display:none;
}



/*-- Ссылка названия товара --*/

div.slidertopbrandname a{
	
}

/*-- Ссылка названия товара при наведении --*/

div.slidertopbrandname a:hover{
	
}

/*-- Блок для названия товара под картинкой  --*/

div.sliderbottombrandname {
	display:none;
}

/*-- Ссылка для названия товара под картинкой  --*/

div.sliderbottombrandname a{
	
}

div.sliderbottombrandname:hover a{
	
}






/*-- Стрелка влево --*/

input.sliderbrandsleft {
   
}


/*-- Стрелка вправо --*/

input.sliderbrandsright {
  
}


/*-- Блок для картинки товаров в слайдере --*/

div.sliderbrandimg {
	width:168px;
	height:125px;
	padding:3px 0 3px 0;
margin:0 auto;
}

/*--Картинка товаров в слайдере --*/

img.sliderbrandimg {
	max-width:162px;
	max-height:120px;
	border:0;

}

/*-- Позиционирование картинки --*/

div.sliderbrandimgtable {
	display:table;
	height:125px;
	margin:0 auto;
}

div.sliderbrandimgcell {
	display:table-cell;
	vertical-align:middle;
}


/*--Строка смотреть все --*/

div.sliderbrandsall {
	text-align:right;
	padding-top:10px;
}

/*--Строка смотреть все --*/

input.sliderbrandsall {

}










/*-- ВЫВОД БРЕНДОВ В КОЛОНКЕ  --*/
/*-- Общий блок для акционных товаров в колонке--*/

div.allbrandscolumn {
    
}

/*-- Подложка под бренды  --*/

div.brandscolumn {

}

/*-- Подложка для одного брендаа  --*/


div.brandcolumn {
   border:1px solid #eee;
	-webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
  padding:10px 0;
	text-align:center;
	margin:3px 0;
}

div.brandcolumn:hover {
box-shadow:0 0 6px silver;
margin:3px 0;
 padding:10px 0;
}

/*-- Заглавие бренды--*/

div.brandscolumntitle {
    background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #fc273c;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

/*-- Иконка бренды в колонке --*/

div.brandscolumntitleicon {
    display:none;
}


/*-- Подложка под картинку слева  --*/

div.brandcolumnimgleft {
	text-align:center;
   padding: 3px;
margin:0 auto;
    
    width: 180px;
}


/*-- Картинка слева  --*/

img.brandcolumnimgleft {
    border: 0 none;
    max-height: 110px;
    max-width: 170px;
}


/*-- Подложка под картинку справа  --*/

div.brandcolumnimgright {
	text-align:center;
   padding: 3px;
margin:0 auto;
    
    width: 180px;
}


/*-- Картинка справа  --*/

img.brandcolumnimgright {
    border: 0 none;
    max-height: 110px;
    max-width: 170px;
}

/*-- Вариант названия НАД КАРТИНКОЙ --*/
/*-- Блок название товара  --*/

div.brandcolumntopname {
	display:none;
}

/*-- Название товара  --*/

div.brandcolumntopname a {
  
}

/*-- Название товара при наведении --*/

div.brandcolumntopname a:hover {
   
}



/*-- Вариант названия ПОД КАРТИНКОЙ --*/
/*-- Блок название товара  под фото --*/

div.brandcolumnbottomname {
	display:none;
}

/*-- Название товара под фото  --*/

div.brandolumnbottomname a {
	
}

/*-- Название товара под фото при наведении --*/

div.brandcolumnbottomname a:hover {
	
}


/*-- Разделительная полоса между товарами --*/

div.brandcolumnseparator {
	
}

/*-- Блок для кнопки смотреть все --*/

div.columnbrandsall{
	text-align:center;
	margin-top:5px;

}












/*-- СТРАНИЦА ПРОИЗВОДИТЕЛИ В КАРТИНКАХ--*/
/*-- Блок для страницы категории --*/

div.brandsview {
   
}

/*-- Блок для страницы категории --*/

div.brandviewinfo {
	padding:4px;

}

/*-- Блок всех категории --*/

div.brandview {
   text-align:center;
	
}

/*-- Разделительная полоса по вертикали --*/

div.brandviewverseparator {
    width: 1px;
}

/*--  Разделительная полоса по горизонтале --*/

div.brandviewhorseparator {
     height: 1px;
	
}

/*-- Блок для картинки --*/

div.brandviewimg {
	width:230px;
	height:150px;
	margin:0 auto;
   
}

/*-- Картинка --*/

img.brandviewimg {
	max-width:230px;
	max-height:150px;
	border:0;
}


/*-- Позиционирование картинки --*/

div.brandviewimgtable {
	display:table;
	height:150px;
	margin:0 auto;
}

div.brandviewimgcell {
	display:table-cell;
	vertical-align:middle;
}

/*-- Вывод названия категории над картинкой --*/
/*-- Блок названия категории --*/

div.topbrandviewname {
	display:none;
}


/*-- Ссылка названия категории --*/

div.topbrandviewname a{
    
}


div.topbrandviewname:hover a{
   
}


/*-- Вывод названия категории под картинкой --*/
/*-- Блок для названия категории --*/

div.bottombrandviewname {

	display:none;	
}

/*-- Ссылка названия категории --*/

div.bottombrandviewname a{

}

div.bottombrandviewname:hover a{

}



/*-- СТРАНИЦА ОДНОГО ПРОИЗВОДИТЕЛЯ --*/
/*-- Общий блок для подкатегории --*/

div.brandname {
	padding:3px;
}


h1.brandname {
	padding:0px;
	margin:0px;
}


/*-- Ссылка названия подкатегории --*/

div.brandtext{
	text-decoration:none;
	padding:10px 0;
}









/*-- СТИЛИ МАГАЗИНА --*/

/*-- МОДУЛЬ КОРЗИНА --*/
/*-- Общая подложка под модуль корзина --*/

div.cartblock{
	border:1px solid #1C8EEE;
	padding:5px 0px 5px 5px;
	display:table;
	position:relative;	
	border-radius:0px;
	height:72px;
	float:right;
}

/*-- Заглавие модуля корзина --*/

div.carttitle{
	display:table-cell;

	color:transparent;


	position:relative;
	vertical-align:middle;
	
}

/*-- Иконка корзина --*/

div.carttitleicon{
	background:url("/themes/infolight/icon_cart.png") no-repeat;
	height:72px;
	width:94px;
	z-index:100;	
}

/*-- Блок надписи в корзине --*/

div.cartmodul{
	display:table-cell;
	cursor:pointer;
	cursor:hand;
}

/*-- Внутренний блок надписи в корзине --*/

div.cartmodulinfo{
	display:table;
	padding:5px;
}
div.cart-top{
	color:#0481E2;
	padding:2px 5px 0 5px;
	font-size:16px;
	font-weight:bold;
}

/*-- Колличество товаров в корзине --*/

div.cartmodulamount{
	color:#333;
	font-size:12px;
	white-space:nowrap;
}

/*-- Цена товаров в корзине --*/

div.cartmodulprice{
	color:#fc273c;
	font-size:12px;
	font-weight:bolder;
	white-space:nowrap;	
}

/*-- Надпись корзина пуста --*/

div.cartmodulempty{
	white-space:nowrap;
	color:#333;	
	font-size:12px;
}





/*-- СТРАНИЦА КОРЗИНЫ --*/
/*-- Общая таблица --*/

table.cartpagetable{
	width:100%;
    
}

/*-- Заглавная строка и последняя строка --*/

tr.carttitlerow{

background:#3e3e3e;
font-size:13px;
font-weight:bolder;
color:white;

}

/*-- Первая строка --*/

tr.cartrow0{
background:#efefef;
}

/*-- Вторая строка --*/

tr.cartrow1{

}

/*-- Заглавие артикул --*/

td.carttitlecode{
   
   padding:3px; 
  text-align:center;
}

/*-- Сам артикул --*/

td.cartcode{
   text-align:center;
	
	
}

/*-- Заглавия фото --*/

td.carttitleimg{
    padding:3px; 
  text-align:center;
}

/*-- Блок для картинки --*/

td.cartimg{
    padding:3px; 
  text-align:center;
}

/*-- Картинка --*/

img.cartimg{
	max-width:80px;
	max-height:80px;
}

/*-- Заглавие название товара --*/

td.carttitlename{
   padding:3px; 
  text-align:left;
}

/*-- Заглавие название дополнительных параметров --*/

td.carttitleattr{
   padding:3px; 
 text-align:left;
}

/*-- Название доп. параметров --*/

td.cartattr{
    padding:3px; 
 text-align:left;
}

/*-- Название товара --*/

td.cartname{
     padding:3px; 
 text-align:left;
}

/*-- Название товара ссылка--*/

td.cartname a{
	color: #333;
    font-weight: bolder;
    text-decoration: none;
}

/*-- Название товара --*/

td.cartname a:hover{
	color: #333;
    font-weight: bolder;
    text-decoration:underline;
}

/*-- Заглавие количества --*/

td.carttitleamount{
   padding:3px; 
  text-align:center;
}

/*-- Количество --*/

td.cartamount{
    padding:3px; 
  text-align:center;
  width:80px;
}

input.cartamount {
	padding:5px;
	text-align:right;
}

/*-- Заглваие цены --*/

td.carttitleprice{
    padding:3px; 
  text-align:right;
}

/*-- Цена товара --*/

td.cartprice{
    padding:3px; 
   text-align:right;
}

/*-- Заглавие суммы --*/

td.carttitlesumm{
    padding:3px; 
   text-align:right;
}

/*-- Сумма --*/

td.cartsumm{
    padding:3px; 
   text-align:right;
}

/*-- Заглавие для крестика --*/

td.carttitledelete{
   padding:3px; 
  text-align:center;
}

/*-- Крестик --*/

td.cartdelete{
    padding:3px; 
  text-align:center;
}

/*-- Крестик --*/

input.cartdelete{
	padding:3px;
	font-size:11px;
}



/*-- Надпись итого --*/

td.cartall{
    padding:3px; 
  text-align:right;
}

/*-- Надпись общая сумма --*/

td.cartallsumm{
    padding:3px; 
   text-align:right;
}


/*-- Надпись, когда на странице корзины нет товаров --*/

td.emptycart{
     padding:3px; 
  text-align:center;
}



/*-- ОФОРМИТЬ ЗАКАЗ --*/
/*-- Общая таблица оформления заказа --*/

table.orderdata{
	margin:0 auto;
}

/*-- Заглавие оформить заказ --*/

td.orderdatatitle{
    color: #fc273c;
    font-size: 20px;
   padding:10px;
}

/*-- Блок для кнопки --*/

td.orderdatabut{
	text-align:center;
}

/*-- Кнопка оформить заказ --*/

input.makeorderdatabut{

}



/*-- Надпись Заказ Успешно Оформлен --*/

table.paymenttitle{
	color:#fc273c;
	font-size:14px;
	
	text-align:center;
	font-weight:bold;
	margin:0 auto;
	padding:5px;
}

/*-- Надпись Вы можете оплатить через --*/

table.paymenttype{
	color:#fc273c;
	
	padding:10px;
	font-size:14px;
	text-align:center;
	margin:0 auto;
}

table.paymenttypetitle{
	color:#fc273c;
	
	padding:10px;
	font-size:14px;
	text-align:center;
	margin:0 auto;
}
/*-- Колонки для валют --*/

td.paymentslogo{
	
}


/*-- Кнопка Привата --*/

input.privat24{
	background: url('/themes/infolight/privat.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}

input.privat24:hover {
background: url('/themes/infolight/privat.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}


/*-- Кнопка webmoney --*/

input.webmoney{
background: url('/themes/infolight/webmoney.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;	
cursor:pointer;
cursor:hand;
}

input.webmoney:hover {
	background: url('/themes/infolight/webmoney.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}


/*-- Кнопка liqpay --*/

input.liqpay{
	background: url('/themes/infolight/liqpay.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}

input.liqpay:hover {
	background: url('/themes/infolight/liqpay.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;	
cursor:pointer;
cursor:hand;
}

/*-- Надпись оплата успешно прошла --*/

div.paymentlast{
	color:#fc273c;
	text-align:center;
	font-weight:bold;
	margin:0 auto;
	padding:5px;	
	cursor:pointer;
cursor:hand;
}












/*--ВСПЛЫВАЮЩЕЕ ОКНО КОРЗИНЫ--*/
/*--Общая подложка--*/

div.cartform {
	position:fixed;
	background:#fff;
	border:2px solid #555;
	padding:10px;
	display:none;
	z-index:500;
	width:800px; 
}

/*--Внутренний блок общей положки--*/

div.cartinfo {

}

/*--Фон для таблицы во всплыающем коне--*/

table.cartwindowback {
background:white;
}

/*--Блок для кнопок--*/

table.cartbuttonsback {

}

/*--Кнопка продолжить покупки--*/

input.continueshop {

}

/*--Кнопка перейти в корзину--*/

table.gotocart {

}










/*-- ВСЁ ПРО РЕГИСТРАЦИЮ --*/

/*-- МОДУЛЬ РЕГИСТРАЦИИ НА ШАПКЕ --*/
/*-- Блок вход/регистрация --*/

div.userstypehor{
	float:right;

}

/*-- Блок для первой кнопки --*/

div.userstypehorbut1{

}

/*-- Блок для второй кнопки --*/

div.userstypehorbut2{
	
padding-left:3px;
}

/*-- Кнопка вход --*/

input.enterbuthor{
color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.enterbuthor:hover{
color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка регистрация --*/

input.registrationbuthor{
	color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.registrationbuthor:hover{
color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка аккаунт --*/

input.accountbuthor{
color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.accountbuthor:hover{
color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка выйти --*/

input.exitbuthor{
	color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.exitbuthor:hover{
	color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}







/*-- МОДУЛЬ РЕГИСТРАИЦЯ В КОЛОНКЕ --*/
/*-- Блок вход/регистрация --*/

div.userstypever{
	
}

/*-- Блок для полей ввода --*/

div.userstypeverinputs{


}

/*-- Блок для первого поля ввода --*/

div.userstypeverinput1{
	margin-bottom:4px;

}

/*-- Блок для второго поля ввода --*/

div.userstypeverinput2{

	margin-bottom:4px;
}


/*-- Блок для кнопок --*/

div.userstypeverbuttons{
	margin:0 auto;
	display:table;
	width:100%;
	
}

/*-- Блок для первой кнопки --*/

div.userstypeverbut1{

}

/*-- Блок для второй кнопки --*/

div.userstypeverbut2{

}

/*-- Кнопка вход --*/

input.enterbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.enterbutver:hover{
    color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка регистрация --*/

input.registrationbutver{
	color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.registrationbutver:hover{
    color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка аккаунт --*/

input.accountbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.accountbutver:hover{
   color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

/*-- Кнопка выйти --*/

input.exitbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.exitbutver:hover{
   color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}


/*-- Блок для надписи забыли пароль --*/

div.forgetpassver{


}

/*-- Надпись забыли пароль --*/

span.forgetpassver{
	cursor:pointer;
	cursor:hand;
}

/*-- Надпись приветствия --*/

div.welcomcolumn{


}













/*-- МОДУЛЬ СТРАНИЦА РЕГИСТРАЦИИ --*/

/*-- Общая таблица регистрации --*/

table.registration {
	width:70%;
	margin:0 auto;
	
	
}


/*-- Заглавие при регистрации --*/

td.titlereg {
	color:#fc273c;
	font-size:16px;
}


/*-- Столбик для кнопки регистрации --*/

td.positionregbut {
	text-align:center;

}

/*-- Кнопка РЕГИСТАЦИЯ для страницы регистарции--*/

input.registrationbut {
	text-align:center;
}


/*-- Стиль для надписи регистрация прошла успешно --*/

td.regcomplete {
	color:#555;
	text-decoration:undeline;
}










/*-- ВСПЛЫВАЮЩЕЕ ОКНО ВХОДА --*/
/*-- Общий блок всплывающего окна --*/

div.enterform {
	position:fixed;
    background: none repeat scroll 0 0 #F3F3F3;
    border: 3px solid #E5E6E6;
    border-radius: 5px;
	padding:20px;
	display:none;
	z-index:500;
	width:400px;
}

/*-- Внутренний блок всплывающего окна --*/

div.enterinfo {

}

/*-- Заглавие окна входа --*/

td.titleenter {
	font-size: 16px;
	
}

div.titleenter {
	font-size: 12px;
	
}


/*-- Кнопки авторизации через соцсети --*/

input.authfb {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/f.png) no-repeat center;
	font-size:0;
}

input.authfb:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/f.png) no-repeat center;
	font-size:0;
}


input.authvk {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/vk.png) no-repeat center;
	font-size:0;
}

input.authvk:hover {
	padding:0;
	border:0;

	width:50px;
	height:50px;
	background:url(/themes/infolight/vk.png) no-repeat center;
	font-size:0;
}


input.authod{
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/od.png) no-repeat center;
	font-size:0;
}

input.authod:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/od.png) no-repeat center;
	font-size:0;
}

input.authgg{
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/g.png) no-repeat center;
	font-size:0;
}

input.authgg:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/infolight/g.png) no-repeat center;
	font-size:0;
}

/*-- Положение кнопки ВХОД --*/

td.enterposition {
	text-align:center;
}


/*-- Кнопка ВХОД для всплывающего окна--*/

input.enterbut {
	text-align:center;
}


/*-- Объяснение причины блокировки --*/

td.solutionfail {
	color:red;
}

/*-- Надпись забыли пароль --*/

span.forgetpass {
	cursor:pointer;
	cursor:hand;
	color:#fc273c;
}

span.forgetpass:hover {
	cursor:pointer;
	cursor:hand;
	color:#fc273c;
	text-decoration:underline;
}


/*-- Кнопка отправить --*/


input.send{
	
}









/*-- СТРАНИЦА АККАУНТА --*/
/*-- Надпись приветствия --*/
div.welcomecolumn {
    color: #333;
    font-size: 14px;
    padding: 8px;
    position: relative;
    text-align: center;
    

}

/*-- Общий блок для ифнормации на страинице акккаунта --*/
div.accountinfo {

}

/*-- Строка приветствия --*/
div.userwelcome {
    color:#333;
    font-size: 14px;
    font-weight: bolder;
    position: relative;
	padding:3px;
	
}

/*-- Строка Песональный код --*/
div.userpersonalcode {
    color: #777;
    font-size: 13px;
    position: relative;
	padding:3px;
}

/*-- Строка Скидка --*/
div.userdiscount {
    color: #fc273c;
    font-size: 12px;
    font-weight: bolder;
    position: relative;
	padding:3px;
}

/*-- Строка Пояснения скидки --*/
div.userdiscountprice {
    color:#fc273c;
    font-size: 12px;
    position: relative;
}

/*-- Бонусы --*/
div.userbonus {
    color: #fc273c;
    font-size: 12px;
    position: relative;
	padding:3px;
}

/*-- ВКЛАДКИ --*/
/*-- Общий блок для вкладок --*/

div.accounttabs {
   margin-top:10px; 
    border-bottom: 3px solid #3c3c3c;

}

/*-- Блок для одной вкладки --*/
div.accounttabinfo {
  
	
  margin-bottom:10px; 	
}

/*-- Блок для одной вкладки --*/
div.accounttabposition {
    display:table-cell;
	vertical-align:bottom;
	padding:1px 1px 0px 1px;
}



/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.accounttab  {
	 background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
    color: #7F8C8C;
    cursor: pointer;
    height: 20px;
    padding: 5px;
    position: relative;
    top: -2px;
}

/*-- НЕАКТИВНАЯ ВКЛАДКА ПРИ НАВЕДЕНИИ--*/
div.accounttab:hover {
	 background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    top: -2px;	
}


/*-- АКТИВНАЯ ВКЛАДКА --*/
div.accountactivetab {
	 background-color: #3c3c3c;
background-image: -moz-linear-gradient(top, #3c3c3c, #030303);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3c3c3c), to(#030303));
background-image: -webkit-linear-gradient(top, #3c3c3c, #030303);
background-image: -o-linear-gradient(top, #3c3c3c, #030303);
background-image: linear-gradient(to bottom, #3c3c3c, #030303);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff030303', GradientType=0);
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    top: -2px;	
}



/*-- Вкладка ПЕРСОНАЛЬНЫЕ ДАННЫЕ --*/
/*-- Общая таблица для вкладки  --*/
table.userdataaccount {
	margin:0 auto;
	width:80%;
	
    font-size: 11px;
    text-align: left;
   
}

/*-- Заглавие ПЕРСОНАЛЬНЫЕ ДАННЫЕ --*/
td.titleuserdata {
     color:#fc273c;
    font-size: 16px;
   
	text-decoration:underline;
}

/*-- Надпись поля отмеченные звёздочкой --*/
td.infouserdata {
   
    font-size: 12px;
    position: relative;
    
}


/*-- Блок для кнопки редактировать --*/
td.accounteditbut {
	text-align:center;
}

/*-- Кнопка РЕДАКТИРОВАТЬ --*/


input.editbut  {
	
}




/*-- Вкладка АКТИВНЫЕ ЗАКАЗЫ --*/
/*-- Общая таблица для вкладки  --*/
table.ordersaccount {
	margin:0 auto;
	width:80%;
	font-size: 12px;

    text-align: left;
   
}

/*-- Общая таблица для одного заказа  --*/
td.oneorderaccount {
	border:1px solid #eee;
}

/*-- Номер заказа  --*/
td.ordernumber {
    color: #333;
	font-size: 14px;

    padding: 3px;
    position: relative;
   
}

/*-- Статус заказа  --*/
td.orderinfo {
    color: #333;
    font-size: 14px;
    padding: 3px;
    position: relative;
  
}

/*-- Надпись ПОДРОБНЕЕ  --*/
span.seemoreorder {
	cursor:pointer;
	cursor:hand;
    color: #e2534b;
    padding: 3px;	
}















/*-- МОДУЛЬ ФИЛЬТРЫ --*/
/*-- Общая блок для фильтров  --*/

div.allfilterscolumn {
   
}

/*-- Блок для всех фильтров  --*/

div.filterscolumn {

}

/*-- Блок для одного фильтра --*/

div.filtercolumn {
	
}

/*-- Заглавие фильтры--*/

div.filterscolumntitle {
    background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
color: #fc273c;
font-size: 16px;
font-weight: bolder;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

/*-- Иконка фильтров --*/

div.filterscolumntitleicon {
    display:none;
}


/*-- Название одного фильтра  --*/

div.filtercolumnname {
	text-align:left;
	margin-top:6px;
	margin-bottom:6px;
	padding:5px;
}

/*-- Параметры названия  --*/

div.filterparamname {
    color: #333;
    
   vertical-align:middle;
   
}

/*-- Разделитель  --*/

div.filtercolumnseparator {
    margin-bottom: 5px;
    margin-top:5px;
}

/*-- Блок для кнопки отменить  --*/

div.filtercolumnbutton {
	text-align:center;
	margin:6px;
}

/*-- Кнопка отменить  --*/

input.filtercolumnbutton {

}









/*-- МЕГОМЕНЮ КАТАЛОГА  Вариант 3--*/
/*-- Подложка под мегаменю каталога  --*/
div.megacatalog {
	background-color: #3e3e3e;
background-image: -moz-linear-gradient(top, #3e3e3e, #010101);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3e3e3e), to(#010101));
background-image: -webkit-linear-gradient(top, #3e3e3e, #010101);
background-image: -o-linear-gradient(top, #3e3e3e, #010101);
background-image: linear-gradient(to bottom, #3e3e3e, #010101);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3e3e3e', endColorstr='#ff010101', GradientType=0);
	
	position:relative;
	cursor:pointer;
	cursor:hand;
	margin:0 auto;


}



/*-- Внутренняя общая подложка мегаменю каталога  --*/

div.megacataloginfo {
	width:1100px;
	margin:0 auto;
	display:table;
}

/*-- Внутренняя общая подложка мегаменю каталога  --*/

div.megacatalogposition {
	display:table;

	position:relative;
}

/*-- Разделитель для разделов--*/

div.megacatalogseparator {
	padding:7px 4px 7px 4px;
	background:url("/themes/infolight/separator.png") no-repeat center;
}




/*-- Плашки--*/
/*-- Неактивный раздел--*/


div.megacategory {
	padding:12px 15px 12px 15px;
	background:transparent;
	cursor:pointer;
	cursor:hand;
	text-align:center;
	-webkit-transition: all 0.5s ease;                  
    -moz-transition: all 0.5s ease;                 
    -o-transition: all 0.5s ease;   
    -ms-transition: all 0.5s ease;          
    transition: all 0.5s ease;
}

/*-- Неактивный раздел при наведении --*/

div.megacategory:hover {
	background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
	padding:12px 15px 12px 15px;
	cursor:pointer;
	cursor:hand;
	text-align:center;
	
}


/*-- Активный раздел --*/

div.activemegacategory {
	background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
	padding:12px 15px 12px 15px;
	cursor:pointer;
	cursor:hand;
	text-align:center;
}

/*-- Ссылки--*/
/*-- Стиль для ссылки неактивного раздела--*/

div.megacategory a {
font-weight: bolder;
	font-size:13px;
	color:#ffffff;
	text-decoration:none;
	text-transform:uppercase;
}

/*-- Стиль для ссылки неактивного раздела при наведении--*/

div.megacategory:hover a {
font-weight: bolder;
	font-size:13px;
	color:#333;
	text-decoration:none;
	text-transform:uppercase;	
}

/*-- Стиль для ссылки активного раздела--*/

div.activemegacategory a {
font-weight: bolder;
	font-size:13px;
	color:#333;
	text-decoration:none;
	text-transform:uppercase;	
}


/*-- Выпадающее меню мегаменю каталога  --*/
/*-- Подложка под выпадающее меню мегаменю каталога  --*/

div.megacatalogsubmenu {
	position:relative; 
	left:0px;
	top:-1px;
	z-index:200;
	
}


/*-- Внутреняя подложка под выпадающее меню мегаменю каталога  --*/


div.megacatalogsubmenuinfo {
	position:absolute; 
	display:none; 
	max-width:1070px;
	width:100%;
	z-index:200;
	background-color: #f3f3f3;
background-image: -moz-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#eaeaea));
background-image: -webkit-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: -o-linear-gradient(top, #f3f3f3, #eaeaea);
background-image: linear-gradient(to bottom, #f3f3f3, #eaeaea);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff3f3f3', endColorstr='#ffeaeaea', GradientType=0);
	box-shadow:0 0 5px silver;
	padding:7px 15px 7px 15px;
	cursor:pointer;
	cursor:hand;
	padding:15px;
	border-bottom:1px solid #333;
	border-left:1px solid #333;
	border-right:1px solid #333;
}

div.megacatalogposition {
	display:table;
	margin:0 auto;
}

/*-- Внутреняя подложка под выпадающее меню мегаменю каталога  --*/

div.megacatalogicon {
	display:table-cell; 
	vertical-align:middle;

}

/*-- Внутреняя подложка под выпадающее меню мегаменю каталога  --*/

div.megacataloglink {
	display:table-cell; 
	vertical-align:middle;
}


/*-- Блок одного пункта меню  --*/

div.megasubcategory {
	padding:2px;
}

/*-- Блок одного пункта меню  --*/

div.megasubcategoryblock {

	padding:4px;
}

/*-- Общий блок для иконки и ссылки --*/

div.megasubcategoryinfo {
	margin-bottom:5px;
}

/*-- Блок одного пункта меню, иконка --*/

div.megasubcategoryicon {
	padding:3px;
}


/*-- ПОДПИСИ  --*/
/*-- Блок одного пункта меню, блок ссылки  --*/

div.megasubcategorylink {

	
}


/*-- Ссылка  --*/

div.megasubcategorylink a {
	color:#333;
	font-size:12px;
	text-decoration:none;
	
}

/*-- Ссылка при наведении  --*/

div.megasubcategorylink a:hover {
	color:#333;
	font-size:12px;
	text-decoration:underline;
	
}

/*-- Блок одного ПОДПУНКТА меню, блок ссылки  --*/
/*-- Блок одного подпункта меню, блок ссылки  --*/

div.megasubcategorysublink {

	padding:3px;
}

div.megasubcategorysublink:hover {
	
	padding:3px;
}


/*-- Ссылка подпункта  --*/

div.megasubcategorysublink a {
	color:#999;
	font-size:11px;
	text-decoration:none;
}

/*-- Ссылка при наведении  --*/

div.megasubcategorysublink a:hover {
	color:#999;
	font-size:11px;
	text-decoration:underline;
}




.center-menu {
    background: none repeat scroll 0 0 #fff;
    border-bottom: 3px solid #1C8EEE;
    display: block;
    height: 180px;
    margin: 0 auto;
    position: relative;
    width: 1100px;
}
.center-menu .menu-ikon {
    height: 170px;
    padding-left: 5px;
    padding-top: 10px;
    width: 1095px;
}
.menu-ikon .center-cat {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #1C8EEE;
    color: #1C8EEE;
    float: left;
    height: 160px;
    margin-right: 18px;
    width: 200px;
	position:relative;
}
.menu-ikon .center-cat:hover {
    background: none repeat scroll 0 0 #fff;
    color: #FE8E01;
	box-shadow:0px 0px 5px #999;
}
.menu-ikon .center-cat .menu-c {
    background-position: center 5px;
    background-repeat: no-repeat;
    display: block;
    height: 160px;
    width: 200px;
}
.menu-ikon .center-cat a {
    color: #0481E2;
    cursor: pointer;
    display: block;
    font: bold 16px Arial,Helvetica,sans-serif;
	line-height:34px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    width: 200px;
	background:url("infolight/icon-bg.png") bottom center repeat-x;
	position:absolute;
	padding-top:126px;
	bottom:0px;
}
.menu-ikon .center-cat:hover a {
    color: #FE8E01;
	
}
.menu-ikon .center-cat .menu-c.ikon1 {
    background-image: url("infolight/icon-1.png");
}
.menu-ikon .center-cat .menu-c.ikon2 {
    background-image: url("infolight/icon-2.png");
}
.menu-ikon .center-cat .menu-c.ikon3 {
    background-image: url("infolight/icon-3.png");
}
.menu-ikon .center-cat .menu-c.ikon4 {
    background-image: url("infolight/icon-4.png");
}
.menu-ikon .center-cat .menu-c.ikon5 {
    background-image: url("infolight/icon-5.png");
}




div.bottom-logo {
	float:left;
	padding: 50px 10px 0;
}
.bottom-logo img{
	border:none;
    transition: all 0.5s ease 0s;
}
.bottom-logo a:hover {
    opacity: 0.55;
}
div.bottom-right {
    float: left;
    padding: 0px 0 5px;
    width: 100%;
	color:#fff;
	position:relative;
}
div.bottom-right a{
	color:#fff;
	transition: all 0.5s ease 0s;
}
div.bottom-right a:hover{
	color:#999;
	text-decoration:none;
	
}
div.bottom-right img {
    transition: all 0.5s ease 0s;
}
div.bottom-right img:hover {
    opacity: 0.5;
}
div.copyright {
    color: #fff;
}
div.copyright a {
    color: yellow;
}
div.copyright a:hover {
    text-decoration: underline;
}
div.tel-bottom{
	color: #fff;
    display: block;
    font-size: 17px;
    font-weight: bold;
    height: 45px;
    padding-left: 5px;
}
























