body {
	margin:0;

font-family:"Century Gothic",verdana,arial;

font-size: 14px;

}
div.body1 {
padding:5px;
}
a {
text-decoration:none; color:#353535;
}

a:hover {
text-decoration:underline; color: #3f5f6e;
}

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

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

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"]{
	color: #000;
font-size:14px;
background:#71ced0;
padding:8px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input[type="button"]:hover {
	color: #fff;
font-size:14px;
background:#3f5f6e;
padding:8px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input[type="submit"]{
	color: #fff;
font-size:14px;
background:#71ced0;
padding:8px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
cursor:pointer;
cursor:hand;
}

input[type="submit"]:hover {
	color: #fff;
font-size:14px;
background:#3f5f6e;
padding:8px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
cursor:pointer;
cursor:hand;
}

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

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

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



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

input[type="text"]{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
	-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;
}
input[type="text"]:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	box-shadow:0 0 4px silver;
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
}


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

input[type="password"]{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
	-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;
}
input[type="password"]:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	box-shadow:0 0 4px silver;
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
}

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

input.fail{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
}
input.fail:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
	box-shadow:0 0 4px #ffcfcf;
}

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

textarea {
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
	-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;
}
textarea:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	box-shadow:0 0 4px silver;
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
}
/*-- СТИЛЬ ДЛЯ ТЕКСТОВОГО ПОЛЯ (при ошибке) --*/

textarea.fail{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
}
textarea.fail:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
	box-shadow:0 0 4px #ffcfcf;
}


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

select{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
	-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;
}
select:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	box-shadow:0 0 4px silver;
	outline:none;
	color:#2a2a2a;
	border: 1px solid #a3a3a3;
}
/*-- СТИЛЬ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА (при ошибке) --*/

select.fail{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
}
select.fail:focus{
	font-size:14px;
	font-family:"Century Gothic",verdana,arial;
	width:100%;
	padding:10px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff5f5;
	outline:none;
	color:#2a2a2a;
	border:1px solid #ffcfcf;
	box-shadow:0 0 4px #ffcfcf;
}


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

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

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

td.solutionfail {
	color:red;
	font-size:12px;
}

span.star {
	color:red;
}


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

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



input.addbut{
	color: #fff;
font-size:18px;
background:url('/themes/kassi/addbut.png') no-repeat #3f5f6e;
background-position:96% 50%;
padding:12px 50px 12px 12px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input.addbut:hover {
background:url('/themes/kassi/addbut.png') no-repeat #71ced0;
background-position:96% 50%;
	color: #fff;
font-size:18px;

padding:12px 50px 12px 12px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}
input.delbut{
	color: #fff;
font-size:14px;
background:#ff6d4b;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input.delbut:hover {
	color: #fff;
font-size:14px;
background:#9d290e;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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.allbloc {
	margin:0 auto;
	max-width:1100px;
	width:100%;
}

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

div.allheader {
	margin:0 auto;
	width:100%;
}


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

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

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

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


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

div.overheadleft {

	vertical-align:middle;
}

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

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



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

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


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

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


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

div.headcolumnlogo {
	width:1px;
	vertical-align:middle;
	padding:5px 40px 5px 0;
}

div.headcolumn1 {
	vertical-align:middle;
}


div.headcolumn2 {
	vertical-align:middle;
}


div.headcolumn3 {
	vertical-align:top;
	width:160px;
}


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

div.underhead {
	
	width:100%;
	margin:0 auto;
	
	padding:10px 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;
	
}

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


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

td.leftcolumn {
	width:294px;
	padding-right:15px;
}

div.leftcolumn {
	width:294px;
}


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

div.centercolumn {
	width:100%;
	
}

td.centercolumn {

}

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

div.centerinfo {
  
}

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

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

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



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

div.allfooter {

	
	margin-top:20px;
	
	
}

div.allfooterinfo {
	width:100%;
	background:#3f5f6e;
		max-width:1100px;
	display:table;
	margin:0 auto;
	padding:10px;
}

div.overfooter {
	
}

div.underfooter {
	
}

div.underfooterleft {
	
}

div.underfooterright {
	float:right;
}

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




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

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

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

div.chaptershead {
	color:white;
	margin:10px 0;
	width:100%;
	
}

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

div.chapterseparator {
	background:#71ced0;
	width:1px;
}

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

div.chapter a {
	text-decoration:none;
	color:white;
	font-size:20px;
	-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.chapter:hover a {
	text-decoration:none;
	color:#71ced0;
	font-size:20px;
}

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

div.activechapter a {
	text-decoration:none;
	color:#71ced0;
font-size:20px;
}


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

div.chapter {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
	
}

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

div.chapter:hover {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
}

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

div.activechapter {
	padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
}



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

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 {
    
}

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

div.chaptersallblock {
  border-bottom:1px solid #ececec;
  border-right:1px solid #ececec;
  border-left:1px solid #ececec;
	font-size:18px;
}

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



div.chapterstitle {
      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;
	display:none;
}

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

div.chapterstitleicon {
    display:none;
}

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

div.chapter0 a {
	text-decoration:none;
	color:#646464;
	-webkit-transition: all 0.2s  linear;               
    -moz-transition: all 0.2s linear;               
    -o-transition: all 0.2s linear; 
    -ms-transition: all 0.2s linear;        
    transition: all 0.2s linear;
}


div.chapter0:hover a {
	text-decoration:none;
	color:#fff;
	
}

div.chapter0act a {
	text-decoration:none;
	color:#fff;
	
}


div.chapter0act:hover a {
	text-decoration:none;
	color:#fff;
}

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


div.chapter0  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/menubg.jpg') no-repeat;
	background-position:100% 50%;
	border-top: 1px solid #ececec;
	-webkit-transition: all 0.4s  linear;               
    -moz-transition: all 0.4s linear;               
    -o-transition: all 0.4s linear; 
    -ms-transition: all 0.4s linear;        
    transition: all 0.4s linear;
}


div.chapter0:hover  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/menubg.jpg') no-repeat;
	background-position:0% 50%;
	border-top: 1px solid #ececec;
}

div.chapter0act  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:#71ced0;
	border-top: 1px solid #ececec;
}



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


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


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

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



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

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


div.chapter1  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}


div.chapter1:hover  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}

div.chapter1act  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}




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


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


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

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


div.chapter2act:hover a {
	text-decoration:none;
	color:#646464;
	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 {
    font-size:50px;
	font-size:30px !importand;
}

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



div.chapterviewinfo {
	 padding: 5px;
  
	-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.chapterviewinfo:hover {
	 padding: 5px;
   
	
}


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

div.chapterview {
   text-align:center;
	
}

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

div.chapterviewverseparator {
	width: 1px;
}

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

div.chapterviewhorseparator {
	height: 1px;
}

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

div.chapterviewimg {
	width:100%;
	height:200px;
	margin:0 auto;
}

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

img.chapterviewimg {
	max-width:96%;
	max-height:200px;
	border:0;
}


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

div.chapterviewimgtable {
	display:table;
	height:200px;
	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-bottom:5px;
}
div.bottomchapterviewname a{
	text-decoration:none;
	color:#353535;
	font-size:14px;
	font-weight:bolder;
}

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




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

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

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

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

div.leftunderslider {

}

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

div.rightunderslider {
	vertical-align:top;
}




/*-- Подложка под модуль слайдер --*/
div.sliderback{
	margin-bottom:15px;
}

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:5px;
	
}


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


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

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

}

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




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

input.sliderleft{
   width:53px;
   height:56px;
   border:0;
   font-size:0;
   padding:0;
   background:url('/themes/kassi/slideleft.png') no-repeat;
}
input.sliderleft:hover{
   width:53px;
   height:56px;
   border:0;
   font-size:0;
   padding:0;
   background:url('/themes/kassi/slideleft.png') no-repeat;
}



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

input.sliderright{
   	 width:53px;
   height:56px;
   border:0;
   font-size:0;
   padding:0;
   background:url('/themes/kassi/slideright.png') no-repeat;
}
input.sliderright:hover{
   	 width:53px;
   height:56px;
   border:0;
   font-size:0;
   padding:0;
   background:url('/themes/kassi/slideright.png') no-repeat;
}



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

div.sliderbottomin {
	margin:0 auto;
	position:relative;
	z-index:250;
	margin-top:339px;
	background:white;
	width:101%;
	left:-2px;
	background:url('/themes/kassi/slideback.png') no-repeat;
}

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

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

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

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

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

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

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








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

div.search {
	position:relative;
    box-sizing: border-box;
	margin-bottom:5px;
	margin-top:5px;
	border: 1px solid #a3a3a3;
	padding:5px;
	border-radius:3px;
	    display: table;
    width: 100%;
	
}

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

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

div.searchinput input {
	border:0;
	font-size:20px;
}

div.searchinput input:focus {
	border:0;
	font-size:20px;
}

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

input.search {
	width:100%;
	font-size:14px; 
	padding:7px;
	
}

input.search:focus {
	width:100%;
	font-size:14px; 
	padding:7px;
}
/*-- Блок для кнопки --*/

div.telsize table{

}

div.searchbut {
	right:5px;
	top:-32px;
	position:absolute;
}

input.searchbut {
	height:31px;
	background:url("/themes/kassi/ico_search.png")no-repeat;
	width:29px;
	border:0;
	font-size:0;
	padding:0;
}

input.searchbut:hover {
	height:31px;
	background:url("/themes/kassi/ico_search.png")no-repeat;
	width:29px;
	border:0;
	font-size:0;
	padding:0;
}




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

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

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

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

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

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

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

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

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

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 #f4f4f4;
}
/*-- Заглавие новости (статьи) --*/

div.articlescolumntitle {
	

	background-color: #71ced0;
font-size:18px;
color:white;
    
    margin-bottom: 3px;
    padding:12px;
	text-align:left;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
	
	
}

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

div.articlescolumntitleicon {
	position:absolute;
	background-image:url('/themes/kassi/ico_articles.png');
	width:31px;
	height:38px;
	left:252px;
	top:3px;
}
div.articlescolumntitleicon:hover { 
background-image:url('/themes/kassi/ico_articles.png');
	width:31px;
	height:38px;
	position:absolute;
	left:252px;
	top:3px;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;	

-webkit-transform: rotateY(360deg);
-moz-transform: rotateY(360deg);
-o-transform: rotateY(360deg);
transform: rotateY(360deg);	
}
/*-- Подложка под модуль новости  (статьи) без заглавия --*/

div.articlescolumn {
	padding:5px;
}


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

div.articlecolumnseparator {
   border-bottom: 1px solid #f4f4f4;
}


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

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:#171f22;
	
}

div.articlecolumnname a:hover {
	text-decoration:none;
	color:#171f22;
	
}

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

div.articlecolumndate {
	color:#646464;
	font-size: 14px;
	text-align:right;
	padding:5px 0;
}

div.articlecolumnseeall {
	text-align:right;
}

input.articlecolumnseeall {

}



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

div.articlespage {
   
}

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

div.articlesverseparator {
	width: 1px;
}

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

div.articleshorseparator {
	height:1px;
	background:silver;
	margin:6px 0;
}

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

div.articlepage {
	padding:5px;
}



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

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

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

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


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

div.articlepageinfo {
	display:table-cell;
	
}


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

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

div.articlepagename a:hover {
	text-decoration:none;
	color: #3f5f6e;
	font-size:14px;
	font-weight:bolder;
}
div.searchtextpage {
	margin-bottom:10px;
}

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

div.searchtextname a:hover {
	text-decoration:none;
	color: #3f5f6e;
	font-size:12px;
	font-weight:bolder;
}

div.searchtext {
	color:#949494;
	font-size:12px;
}
/*-- Краткий текст  --*/

div.articlepageshort {
	font-size:12px;
}



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

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



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

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


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

input.back{
	
}


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

div.articlename {
	
}

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

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

div.articletext {
	
}
div.articletext a{
	font-size:30px;
}
/*-- дата  --*/

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:300px;
	max-height:200px;
    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: #fff;
background-color: #3f5f6e;
	border: 1px solid #c4c3c3;
	border-radius:4px;
	
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:5px 10px; font-size:18px;
}

input.pagingleft:hover{
    background-color: #3f5f6e;
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	
	padding:10px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:5px 10px; font-size:18px;
}


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

div.pagingright {
	
}

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

input.pagingright{
   color: #fff;
background-color: #3f5f6e;
	border: 1px solid #c4c3c3;
	border-radius:4px;
	
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:5px 10px; font-size:18px;
}

input.pagingright:hover{
   background-color: #3f5f6e;
border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	
	padding:10px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	padding:5px 10px; font-size:18px;
}

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

div.pagingnow{
	 background-color: #3f5f6e;

border: 1px solid #c4c3c3;
color:#fff;
	border-radius:4px;
	
	padding:5px 10px; font-size:18px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	
}



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

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;
	padding:5px 10px; font-size:18px;
	color: #777;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	
}

div.pagingall:hover{
   background-color: #3f5f6e;
border: 1px solid #c4c3c3;
color:#777;
	border-radius:4px;
	padding:5px 10px; font-size:18px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	
}


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

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

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



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

div.linkblock {
	margin-bottom:10px;
font-size:14px;
	background-color: #71ced0;

color:white;
    
    padding:6px;
	text-align:left;
    position: relative;
    
    z-index: 100;
}

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

div.link {
	vertical-align:middle;
	padding:3px;
}

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

div.link a {
   color:white;
	font-size:14px;
	text-decoration:none;
}

div.link a:hover{
   color:white;
	font-size:14px;
	text-decoration:none;
}

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

div.linkactive {
	vertical-align:middle;
   color:white;
	
	text-decoration:none;
}

div.linkactive a{

}

div.linkicon {
    padding: 3px;
	color:white;
}



/*-- СТРАНИЦА 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 {
      
    color: #3f5f6e;
    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.delmanagerform {
	position:absolute;
	background:#fff;
	border:1px solid #71ced0;
	
	display:none;
	z-index:500;
	width:100%;
	box-shadow:0 0 13px #71ced0;
	
}


div.callmeform {
	position:absolute;
	
	
	padding:20px;
	display:none;
	z-index:500;
	width:400px;
	background:url('/themes/kassi/podform.png');
}

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

div.callmeinfo {
padding:20px;
background:#fff;
}

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

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: #3f5f6e;
    text-decoration: none;
	cursor:pointer;
	cursor:hand;
	font-size:12px;
}


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

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


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

div.sortdown{
   color:#3f5f6e;
	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: #fc273c;
background-image: -moz-linear-gradient(top, #fc273c, #9a2934);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fc273c), to(#9a2934));
background-image: -webkit-linear-gradient(top, #fc273c, #9a2934);
background-image: -o-linear-gradient(top, #fc273c, #9a2934);
background-image: linear-gradient(to bottom, #fc273c, #9a2934);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffc273c', endColorstr='#ff9a2934', GradientType=0);
	
}

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

div.activecategory {
	padding:15px 25px 15px 25px;
	cursor:pointer;
	cursor:hand;
	background-color: #fc273c;
background-image: -moz-linear-gradient(top, #fc273c, #9a2934);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fc273c), to(#9a2934));
background-image: -webkit-linear-gradient(top, #fc273c, #9a2934);
background-image: -o-linear-gradient(top, #fc273c, #9a2934);
background-image: linear-gradient(to bottom, #fc273c, #9a2934);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffc273c', endColorstr='#ff9a2934', 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.catalogallblock {
    
}

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

div.catalog {
  border-bottom:1px solid #ececec;
  border-right:1px solid #ececec;
  border-left:1px solid #ececec;
	font-size:18px;
}

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



div.catalogtitle {
      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;
	display:none;
}

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

div.catalogtitleicon {
    display:none;
}

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

div.category0 a {
	text-decoration:none;
	color:#646464;
	-webkit-transition: all 0.2s  linear;               
    -moz-transition: all 0.2s linear;               
    -o-transition: all 0.2s linear; 
    -ms-transition: all 0.2s linear;        
    transition: all 0.2s linear;
}


div.category0:hover a {
	text-decoration:none;
	color:#fff;
	
}

div.category0act a {
	text-decoration:none;
	color:#fff;
	
}


div.category0act:hover a {
	text-decoration:none;
	color:#fff;
}

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


div.category0  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/menubg.jpg') no-repeat;
	background-position:100% 50%;
	border-top: 1px solid #ececec;
	-webkit-transition: all 0.4s  linear;               
    -moz-transition: all 0.4s linear;               
    -o-transition: all 0.4s linear; 
    -ms-transition: all 0.4s linear;        
    transition: all 0.4s linear;
}


div.category0:hover  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/menubg.jpg') no-repeat;
	background-position:0% 50%;
	border-top: 1px solid #ececec;
}

div.category0act  {
	padding:10px;
	cursor:pointer;
	cursor:hand;
	background:#71ced0;
	border-top: 1px solid #ececec;
}



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


div.category1 a {
	text-decoration:none;
	color:#3f5f6e;
	font-size: 14px;
	
}


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

div.category1act a {
	text-decoration:none;
	color:#3f5f6e;
	font-weight:bolder;
	font-size: 14px;
}



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

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


div.category1  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}


div.category1:hover  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}

div.category1act  {
	padding:10px 10px 10px 30px;
	cursor:pointer;
	cursor:hand;
	background:#f1f1f1;
	border-top: 1px solid #ececec;
}




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


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


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

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


div.category2act:hover a {
	text-decoration:none;
	color:#646464;
	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:10px;   
}

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

div.categoryviewinfo {
	 padding: 5px 0 5px 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.categoryviewinfo:hover {
	 padding: 5px 0 5px 0;
   
	box-shadow:0 0 6px silver;
}

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

div.categoryview {
   text-align:center;
    
}

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

div.categoryviewverseparator {
   width: 1px;
}

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

div.categoryviewhorseparator {
   height: 10px;
	
}

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

div.categoryviewimg {
	
	margin:0 auto;
}

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

img.categoryviewimg {
	max-width:90%;
	max-height:200px;
	border:0;
}


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

div.categoryviewimgtable {
	display:table;
	height:220px;
	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:5px 0 3px 0 ;
	
	
}

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

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

div.bottomcategoryviewname:hover a{
text-decoration:none;
	color: #3f5f6e;
	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 {
	

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

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

img.verproductimg {
	max-width:90%;
	max-height:200px;
	border:0;
	-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
img.verproductimg:hover {
	max-width:90%;
	max-height:200px;
	border:0;
	
}

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

div.verproductimgtable {
	display:table;
	height:200px;
	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:5px 5px 5px 5px;
	text-align:center;
	
}

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

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

div.verbottomproductname:hover a{
 text-decoration:none;
	color: #3f5f6e;
	font-size:14px;
	
}



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

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

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

div.verproductprice {

	text-align:center;
	padding:5px;
   font-size: 14px;
	color:#ff6d4a;
   font-weight:bolder;
    text-decoration: none;
	padding:10px 5px 0 5px;
}

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

div.veroldprice{
    color: #999;
    font-size:12px;
    text-align: center;
    text-decoration: line-through;
}

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

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







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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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














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

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

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

input.verproductbuybutton{
  
}












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

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{
	
}

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

div.overproductname{

}

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

h1.overproductname{
	font-size: 20px;
	color:#3f5f6e;
	padding:3px 0 0 0;
	margin:3px 0 0 0;
}

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

div.overproductcode{
	color:#333;
	font-size:12px;
}

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

div.productleftcolumn{
	width:50%;
}

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

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

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

img.productbigimg{
	max-width:96%;	
	max-height:200px;
}

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

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

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

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


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

div.bigproductform {
	position:absolute;
    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;
	display:none;
}

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

h1.productname{
	font-size: 35px;
	color:#3f5f6e;
	padding:3px 0 0 0;
	margin:3px 0 0 0;
	display:none;
}

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

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


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

div.productprice{
    color: #ff6d4a;
    font-size:18px;	
	padding-top:6px;
	font-weight:bolder;
}

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

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

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

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

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

div.productactprice{
    color:#ff6d4a;
    font-size: 18px;
	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:absolute;
	
	
	padding:20px;
	display:none;
	z-index:500;
	width:100%;
	background:url('/themes/kassi/podform.png');
}

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

div.questinfo {
padding:20px;
background:#fff;
}

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

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

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

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

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

td.questbuttonposition {
	text-align:center;
}









/*-- СРАВНЕНИЕ--*/
/*-- Блок для кнопок--*/

div.productcompare{
	margin-top:8px;
}

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

input.gotocompare{
   
}



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

input.addtocompare{
   
}

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

div.comparerow{
margin-top:15px;
}

/*--  Надпись к сраванению добавлены--*/

div.comparetext{
	color:#333;
	font-size:14px;
}

/*--  Кнопка Перейти к сравнению (сверху)--*/

input.gotocomparebutton{

}





/*--  Кнопка ОТЛОЖИТЬ ТОВАР--*/

div.productfavor{

	margin-top:8px;

}


input.favorbutton{


}

input.favorbutton:hover{

}










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

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/shablon1/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.inproductactiontimer{
	padding:3px;

}

/*-- Надпись ДО ОКОНЧАНИЯ АКЦИИ --*/

div.actiontimertitle{
	color:#fc273c;
	font-size:12px;
	display:table-cell;
	padding-right:4px;
}

/*-- Блок для даты --*/

div.actiontimerclock{
	display:table-cell;
}

/*-- Блок для цифр --*/

div.actiontimernumber{
	border-radius:5px;
	font-size:12px;
	font-weight:bolder;
background: #eee;

	color:#fc273c;
	padding:12px 8px 12px 8px ;
	
}

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

div.actiontimerseparator{
	padding:0 3px 0 3px ;
	font-size:12px;
	font-weight:bolder;

}














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

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

}

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

}




/*-- Блок для кнопки купить --*/
input.productbuybutton{
   cursor:pointer;
	cursor:hand;
	padding:8px 15px 8px 15px;
	text-align:center;	
	font-family:verdana,arial;
	font-size: 18px;
color: #fff;
font-weight: bolder;
text-transform: uppercase;
-webkit-transition: all 0.2s  linear;               
    -moz-transition: all 0.2s linear;               
    -o-transition: all 0.2s linear; 
    -ms-transition: all 0.2s linear;        
    transition: all 0.2s linear;
border: 0;
background-color: red;


outline:none;
}


/*-- Блок для кнопки купить --*/
input.productbuybutton:hover{
   cursor:pointer;
	cursor:hand;
	padding:8px 15px 8px 15px;
	text-align:center;	
	font-family:verdana,arial;
	font-size: 18px;
color: #fff;
color: #fff;
font-weight: bolder;
text-transform: uppercase;

border: 0;
background-color: #900000;


outline:none;
}







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

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



/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.producttab {
 font-size:30px;
	 padding:20px 30px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/tabfon.jpg') no-repeat;
	background-position:50% 0%;
	border-top: 1px solid #ececec;
	-webkit-transition: all 0.2s  linear;               
    -moz-transition: all 0.2s linear;               
    -o-transition: all 0.2s linear; 
    -ms-transition: all 0.2s linear;        
    transition: all 0.2s linear;
   
   top: -2px;
   position: relative;
 color: #646464;
  
}

/*-- НЕАКТИВНАЯ ВКЛАДКА ПРИ НАВЕДЕНИИ--*/
div.producttab:hover {
  font-size:30px;
	 padding:20px 30px;
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/tabfon.jpg') no-repeat;
	background-position:50% 100%;
	border-top: 1px solid #ececec;
	
   top: -2px;
   position: relative;
   color:White;
}


/*-- АКТИВНАЯ ВКЛАДКА --*/
div.productactivetab {
  
	cursor:pointer;
	cursor:hand;
	background:url('/themes/kassi/tabfon.jpg') no-repeat;
	background-position:50% 100%;
	border-top: 1px solid #ececec;
	 font-size:30px;
	 padding:20px 30px;
   top: -2px;
   position: relative;
    color:White;
}


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

div.producttabinfo {
	margin-top:10px;

}

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

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

tr.inproductcharrow0 {

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

tr.inproductcharrow1 {

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

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

td.inproductchartext {
    padding: 8px
}








/*-- СТРАНИЦА СРАВНЕНИЯ ТОВАРОВ  --*/
/*-- Кнопка СКРЫТЬ ОДИНАКОВЫЕ ТОВАРЫ--*/

input.compareset1 {
	
}


/*-- КНОПКА ПОКАЗАТЬ ВСЕ ТОВАРЫ--*/

input.compareset2 {
	
}

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

td.comparename {
	
}

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

td.comparename a {
    color: #333;
    font-weight: bolder;
    text-decoration: none;
	
}

td.comparename a:hover {
    color: #333;
    font-weight: bolder;
    text-decoration:underline;
	
}

/*-- Строка кода товара товара--*/

td.comparecode {

}

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

td.compareimg {
   cursor: pointer;
    margin: 0 auto 8px;
    padding: 3px;
    text-align: left;
	height:150px;	
}

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

img.compareimg {
	max-width:150px;
	max-height:150px;
}

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

td.compareprice {
    color: #fc273c;
	font-weight:bolder;
	font-size:14px;
}

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

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

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

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

/*-- Первая строка таблицы характеристик--*/

tr.comparecharrow0 {

}

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

tr.comparecharrow1 {
background:#f5fbfd;
}

/*-- Название характеристик--*/

td.comparecharname {
	color:#333;
	font-size:12px;
	padding:4px;
	font-weight:bolder;
}

/*-- Характеристики--*/

td.comparechartext {
	
	padding:4px;
}

















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

div.productsslider {

}


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

div.productsslidertitle {
   background-color: #71ced0;
font-size: 18px;
color: white;
text-indent: 50px;
margin-bottom: 3px;
padding: 12px;
text-align: left;
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:700px;
	margin:0 auto;
}

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


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

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


div.newproductsslidercont {
	width:760px;
	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:226px;
	width:226px;
}

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

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

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

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

}

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

}

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

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{
	
}



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

input.sliderproductsleft {
   
}


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

input.sliderproductsright {
    
}


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

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

}

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

img.sliderproductimg {
	max-width:210px;
	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: #71ced0;
font-size:18px;
color:white;
    text-indent:50px;
    margin-bottom: 3px;
    padding:12px;
	text-align:left;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
	
	
}

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

div.topproductscentertitleicon {
	position:absolute;
	background-image:url('/themes/kassi/ico_top.png');
	width:32px;
	height:32px;
	left:10px;
	top:6px;
}
div.topproductscentertitleicon:hover { 
background-image:url('/themes/kassi/ico_top.png');
	width:32px;
	height:32px;
	position:absolute;
	left:10px;
	top:6px;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;	

-webkit-transform: rotateY(360deg);
-moz-transform: rotateY(360deg);
-o-transform: rotateY(360deg);
transform: rotateY(360deg);	
}


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

div.blockproductscenter {

}



div.newproductscentertitleicon {
display:none;
}


div.actproductscentertitleicon {
display:none;
}







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

div.allproductscolumn {
   
}

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

div.productscolumn {

}

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

div.productcolumn {
   
}

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

	background-color: #71ced0;
font-size:18px;
color:white;
    
    margin-bottom: 3px;
    padding:12px;
	text-align:left;
    position: relative;
    text-transform: uppercase;
    z-index: 100;
	
	
}

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

div.topproductscolumntitleicon {
	position:absolute;
	background-image:url('/themes/kassi/ico_articles.png');
	width:31px;
	height:38px;
	left:252px;
	top:3px;
}
div.topproductscolumntitleicon:hover { 
background-image:url('/themes/kassi/ico_articles.png');
	width:31px;
	height:38px;
	position:absolute;
	left:252px;
	top:3px;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;	

-webkit-transform: rotateY(360deg);
-moz-transform: rotateY(360deg);
-o-transform: rotateY(360deg);
transform: rotateY(360deg);	
}




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

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{
    
	
}


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

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{
	
	padding:5px;
	display:table;
	position:relative;	
	border-radius:5px;
	height:30px;
	float:right;
	margin-bottom:5px;
}

/*-- Заглавие модуля корзина --*/

div.carttitle{
	display:table-cell;

	color:transparent;


	position:relative;
	vertical-align:middle;
	
}

/*-- Иконка корзина --*/

div.carttitleicon{
	background:url("/themes/shablon1/icon_cart.png") no-repeat;
	height:29px;
	width:35px;
	position:absolute;
	left:0px;
	top:-6px;
	z-index:100;	
}

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

div.cartmodul{
	display:table-cell;
	cursor:pointer;
	cursor:hand;
}

/*-- Внутренний блок надписи в корзине --*/

div.cartmodulinfo{
	display:table;
	padding:5px;
}

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

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:#3f5f6e;

font-weight:bolder;
color:white;

}

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

tr.cartrow0{
background:#fbfbfb;
}

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

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;
  width:80px;
}

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

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;
}
input.cartamount:focus {
	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 6px;
	font-size:11px;
}

input.cartdelete:hover{
	padding:3px 6px;
	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: #ff6d4a;
    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/shablon1/privat.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}

input.privat24:hover {
background: url('/themes/shablon1/privat.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}


/*-- Кнопка webmoney --*/

input.webmoney{
background: url('/themes/shablon1/webmoney.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;	
cursor:pointer;
cursor:hand;
}

input.webmoney:hover {
	background: url('/themes/shablon1/webmoney.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}


/*-- Кнопка liqpay --*/

input.liqpay{
	background: url('/themes/shablon1/liqpay.jpg');
border:0;
width:100px;
height:30px;
padding:0;
font-size:0;
cursor:pointer;
cursor:hand;
}

input.liqpay:hover {
	background: url('/themes/shablon1/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:absolute;
	
	
	padding:20px;
	display:none;
	z-index:500;
	width:800px;
	background:url('/themes/kassi/podform.png');
}

/*--Внутренний блок общей положки--*/

div.cartinfo {
padding:20px;
background:#fff;
}

/*--Фон для таблицы во всплыающем коне--*/

table.cartwindowback {
background:white;
}

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

table.cartbuttonsback {

}

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

input.continueshop {

}

/*--Кнопка перейти в корзину--*/

table.gotocart {

}










/*-- ВСЁ ПРО РЕГИСТРАЦИЮ --*/

/*-- МОДУЛЬ РЕГИСТРАЦИИ НА ШАПКЕ --*/
/*-- Блок вход/регистрация --*/

div.userstypehor{
	
float:right;
}

/*-- Блок для первой кнопки --*/

div.userstypehorbut1{

}

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

div.userstypehorbut2{
	
}

/*-- Кнопка вход --*/

input.enterbuthor{
color: #fff;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#3f5f6e;
}

input.enterbuthor:hover{
color: #000;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#71ced0;
}

/*-- Кнопка регистрация --*/

input.registrationbuthor{
color: #000;

background:#71ced0;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;


}

input.registrationbuthor:hover{
color: #fff;

background:#3f5f6e;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;

}

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

input.accountbuthor{
color: #fff;


border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#3f5f6e;
}

input.accountbuthor:hover{
color: #000;


border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#71ced0;
}

/*-- Кнопка выйти --*/

input.exitbuthor{
color: #fff;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#3f5f6e;
}

input.exitbuthor:hover{
color: #000;

border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
background:#71ced0;
}







/*-- МОДУЛЬ РЕГИСТРАИЦЯ В КОЛОНКЕ --*/
/*-- Блок вход/регистрация --*/

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:absolute;
	
	padding:20px;
	display:none;
	z-index:500;
	width:400px;
	background:url('/themes/kassi/podform.png');
	
}

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

div.enterinfo {
padding:20px;
background:#fff;
}

/*-- Заглавие окна входа --*/

td.titleenter {
	font-size: 16px;
	
}

div.titleenter {
	font-size: 12px;
	
}


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

input.authfb {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/f.png) no-repeat center;
	font-size:0;
}

input.authfb:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/f.png) no-repeat center;
	font-size:0;
}


input.authvk {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/vk.png) no-repeat center;
	font-size:0;
}

input.authvk:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/vk.png) no-repeat center;
	font-size:0;
}


input.authod{
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/od.png) no-repeat center;
	font-size:0;
}

input.authod:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/od.png) no-repeat center;
	font-size:0;
}

input.authgg{
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/g.png) no-repeat center;
	font-size:0;
}

input.authgg:hover {
	padding:0;
	border:0;
	width:50px;
	height:50px;
	background:url(/themes/shablon1/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;
    
    padding: 8px;
    position: relative;
    text-align: center;
    

}

/*-- Общий блок для ифнормации на страинице акккаунта --*/
div.accountinfo {

}

/*-- Строка приветствия --*/
div.userwelcome {
    color:#333;
    
    font-weight: bolder;
    position: relative;
	padding:3px;
	
}

/*-- Строка Песональный код --*/
div.userpersonalcode {
    color: #777;
    
    position: relative;
	padding:3px;
}

/*-- Строка Скидка --*/
div.userdiscount {
    color: #fc273c;
   
    font-weight: bolder;
    position: relative;
	padding:3px;
}

/*-- Строка Пояснения скидки --*/
div.userdiscountprice {
    color:#fc273c;
   
    position: relative;
}

/*-- Бонусы --*/
div.userbonus {
    color: #fc273c;
   
    position: relative;
	padding:3px;
}

/*-- ВКЛАДКИ --*/
/*-- Общий блок для вкладок --*/

div.accounttabs {
   margin-top:10px; 
  
}

/*-- Блок для одной вкладки --*/
div.accounttabinfo {
  
	
  margin-bottom:10px; 	
}

/*-- Блок для одной вкладки --*/
div.accounttabposition {
    
	vertical-align:bottom;
	
}










/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.accounttab {
padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
  text-decoration:none;
	color:white;
	font-size:20px;
	-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.accounttab:hover {
 padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
	text-decoration:none;
	color:#71ced0;
	font-size:20px;
}


/*-- АКТИВНАЯ ВКЛАДКА --*/
div.accountactivetab {
   padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background-color: #3f5f6e;
	text-decoration:none;
	color:#71ced0;
	font-size:20px;
}


div.accounttabyel {
 padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background:#EFDA70;
	text-decoration:none;
	color:#3f5f6e;
	font-size:20px;

  
}

div.accounttabred {
padding:5px 15px;
	cursor:pointer;
	cursor:hand;
	vertical-align:middle;
	margin:5px 0;
	background:#F98A8A;
	text-decoration:none;
	color:#71ced0;
	font-size:20px;

}

/*-- Вкладка ПЕРСОНАЛЬНЫЕ ДАННЫЕ --*/
/*-- Общая таблица для вкладки  --*/
table.userdataaccount {
	margin:0 auto;
	width:100%;
	
    
    text-align: left;
   
}

/*-- Заглавие ПЕРСОНАЛЬНЫЕ ДАННЫЕ --*/
td.titleuserdata {
     color:#3f5f6e;
   
   
	text-decoration:underline;
}

/*-- Надпись поля отмеченные звёздочкой --*/
td.infouserdata {
   
   
    position: relative;
    
}


/*-- Блок для кнопки редактировать --*/
td.accounteditbut {
	text-align:center;
}

/*-- Кнопка РЕДАКТИРОВАТЬ --*/


input.editbut  {
	
}




/*-- Вкладка АКТИВНЫЕ ЗАКАЗЫ --*/
/*-- Общая таблица для вкладки  --*/
table.ordersaccount {
margin-top:20px;
	margin:0 auto;
	width:100%;
	font-size: 12px;

    text-align: left;
   
}

/*-- Общая таблица для одного заказа  --*/
td.oneorderaccount {
	border:1px solid #eee;
	font-size:35px;
}

/*-- Номер заказа  --*/
td.ordernumber {
    color: #333;


    padding: 3px;
    position: relative;
   
}

/*-- Статус заказа  --*/
td.orderinfo {
    color: #333;
   
    padding: 3px;
    position: relative;
  
}

/*-- Надпись ПОДРОБНЕЕ  --*/
span.seemoreorder {
	cursor:pointer;
	cursor:hand;
    color: #e2534b;
    padding: 3px;	
}















/*-- МОДУЛЬ ФИЛЬТРЫ --*/
/*-- Общая блок для фильтров  --*/

div.allfilterscolumn {
   
}

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

div.filterscolumn {

}

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

div.filtercolumn {
	
}

/*-- Заглавие фильтры--*/

div.filterscolumntitle {
   background-color: #71ced0;
font-size: 18px;
color: white;
margin-bottom: 3px;
padding: 12px;
text-align: left;
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/demo1/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;
}












tr.tablezag {
background:#f6f6f6;
font-size:12px;
color:#3f606e
}




input.redmore {
	color: #fff;
font-size:14px;
background-color:red;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input.redmore:hover {
	color: #fff;
font-size:14px;
background-color: #900000;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}




input.yellowmore {
	color: #fff;
font-size:14px;
background-color:#d7ef11;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}

input.yellowmore:hover {
	color: #fff;
font-size:14px;
background-color: #e7f479;
padding:10px;
border:0;
font-family:"Century Gothic",verdana,arial;
text-transform:uppercase;
outline:none;
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;
}






tr.redmore {
	
background-color:#f9c7ce;
color:black;
outline:none;
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;
}

tr.redmore:hover {
	
background-color: #f9c7ce;
color:black;
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;
}

tr.whitemore {
	
background-color:white;

}
tr.yellowmore {
	
background-color:#f7ffb3;

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;
}

tr.yellowmore:hover {
	
background-color: #f7ffb3;

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.fadewindow {
	position:absolute;
	

	
	display:none;
	z-index:500;
	width:100%;
	background:url('/themes/kassi/podform.png');
}

div.font34 {
font-size:34px !important;
font-family:verdana;

}

