body {
	margin:0;
	font-family:Arial, sans-serif;
	font-size: 14px;
	color: #444;
	background: #fff;
}


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

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

div.relative{
	position:relative;
}

div.absolute{
	position:absolute;
}

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

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

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

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

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

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

table.allwidth {
	width:100%;
}


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

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

a {
	color:#555;
	text-decoration:none;
}
a:hover {
	color:#555;
	text-decoration:underline;
}

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

input[type="button"]{
	cursor:pointer;
	cursor:hand;
	text-align:center;	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #fff;
	font-weight: bolder;
	text-transform: uppercase;
	padding: 5px 14px;
	border:0;
	background: #FF3227;
	outline:none;
	-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 {
	cursor:pointer;
	cursor:hand;
	text-align:center;	
	 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bolder;
	text-transform: uppercase;
	padding: 5px 14px;
	border:0;
	background: #383838;
	color: #fff;
	outline:none;
}



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

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

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



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

input[type="text"]{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color: #82938b;
	border: 1px solid #ccc;
	-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{
	box-shadow: 0 3px 4px #bcbcbc inset;
}


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

input[type="password"]{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color: #82938b;
	border: 1px solid #ccc;
	-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{
	box-shadow:0 0 3px silver;
}
/*-- СТИЛЬ ДЛЯ ПОЛЯ ВВОДА (при ошибке) --*/

input.fail{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#ffdcdc;
	outline:none;
	color:#000;
	border:1px solid #ffa2a2;
}

input.fail:focus{
	box-shadow:0 0 3px #ff5656;
}
/*-- СТИЛЬ ДЛЯ ТЕКСТОВОГО БЛОКА --*/

textarea {
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color: #82938b;
	border: 1px solid #ccc;
	-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{
	box-shadow:0 0 3px silver;
}
/*-- СТИЛЬ ДЛЯ ТЕКСТОВОГО ПОЛЯ (при ошибке) --*/

textarea.fail{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#ffdcdc;
	outline:none;
	color:#000;
	border:1px solid #ffa2a2;
}

textarea.fail:focus{
	box-shadow:0 0 3px #ff5656;
}
/*-- СТИЛЬ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА --*/

select{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#fff;
	outline:none;
	color: #82938b;
	border: 1px solid #ccc;
	-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{
	box-shadow:0 0 3px silver;
}
/*-- СТИЛЬ ДЛЯ ВЫПАДАЮЩЕГО СПИСКА (при ошибке) --*/

select.fail{
	font-size:12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width:100%;
	padding:5px;
	box-sizing:border-box;	
	-moz-box-sizing:border-box;
	background:#ffdcdc;
	outline:none;
	color:#000;
	border:1px solid #ffa2a2;
}

select.fail:focus{
	box-shadow:0 0 3px #ff5656;
}
/*-- СТИЛЬ НАДПИСИ ПРИ ОШИБКЕ --*/

div.textfail{
	font-size:11px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin:3px 0;
	color:#000;
	padding:5px;
	border:1px solid #ffa2a2;
	background:#ffe8e8;
	border-radius:5px;
}

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

td.solutionfail {
	color:red;
}

span.star {
	color:red;
}


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

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





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


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

div.allbloc {
	margin:0 auto;
	background:rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(102, 102, 102, 0.65) 0%, rgba(102, 102, 102, 0) 400px) repeat scroll 0 0;
}

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

div.allheader {
	margin:0 auto;
}


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

div.overhead {
	position:relative;
	z-index:150;
	background:#ECECEC;
	border-bottom:1px solid #9F9D9D;
}

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

div.overheadinfo {
	max-width:550px;
	width:100%;
	display:table;
	margin:0 auto;
    padding:2px 20px 2px 500px;
}


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

div.overheadleft {
	vertical-align:middle;
}

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

div.overheadright {
	vertical-align:middle;
}



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

div.head {
	position:relative;
	z-index:100;	
	background: url(./lancer/head-bg.png) top center repeat-x #fff;
	border-bottom:1px solid #9F9D9D;
}


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

div.headinfo {
	max-width:1140px;
	width:100%;
	display:table;
	margin:0 auto;
    padding:5px 0 10px;
}


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

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

div.headcolumn1 {
	vertical-align:middle;
}


div.headcolumn2 {
	vertical-align:middle;
	width:28%;
}
div.headcolumn2row1 div.bot-grafik{
	color:#000;
}

div.headcolumn3 {
	vertical-align:middle;
	width:23%;
	padding-right:30px;
}

div.headcolumn2row1 {
}

div.headcolumn3row1 {
	text-align:center;
}

div.head-karta{
	background:url(./lancer/head-karta.png) left center no-repeat;
	padding-left:45px;
	font-size:17px;
	padding-top:8px;
	padding-bottom:8px;
}
div.head-karta a{
	color:#000;
	padding:0 5px;
}
div.head-karta span{
	padding-left:25px;
}

div.head-logo{
	background:url(./lancer/logo.png) center left no-repeat;
	width:370px;
	height:105px;
	margin-left:20px;
	transition:all 0.5s ease 0s;
}
div.head-logo:hover{
	opacity:0.55;
}

div.head-logo a{
	display:block;
	font-size:22px;
	line-height:26px;
	text-align:center;
	color:#000;
	font-weight:bold;
	padding:13px 0px 13px 85px;
	transition:all 0.5s ease 0s;
}
div.head-logo a:hover{
	text-decoration:none;
	}
div.head-tel{
	font-size:27px;
	font-weight:bold;
	background:url(./lancer/head-tel.png) left center no-repeat;
	padding-left:50px;
	padding-top:10px;
	padding-bottom:10px;
}
/*--Стиль для нижнего блока шапки--*/

div.underhead {
	max-width:1140px;
	width:100%;
	margin:0 auto;
	background:#FF3227;
}


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

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:1140px;
	width:100%;
	margin:0 auto;
}

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


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

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

div.leftcolumn {
	width:240px;
}


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

div.centercolumn {
	width:100%;
}

td.centercolumn {

}

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

div.centerinfo {
  
}

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

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

td.rightcolumn {
	padding-left:5px;
	width:250px;
}



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

div.allfooter {
	width:100%;
	background:url(./lancer/footer-bg.jpg) repeat;
	
	
}

div.allfooterinfo {
	width:100%;
	max-width:1120px;
	display:table;
	margin:0 auto;
	padding:30px 10px 10px;
}


div.allfooterinfo div.head-logo a{
	
	color:#D1D1D1;
}
div.allfooterinfo table tr td a img{
	border-radius:5px;
	border:1px solid #FF3227;
	transition: all 0.5s ease 0s;
}
div.allfooterinfo table tr td a img:hover{
	opacity:0.65;
}

div.bot-adress{
	font-size:20px;
	color:#D1D1D1;
	padding-top:16px;
	padding-bottom:8px;
	padding-left:60px;
	background:url(./lancer/bot-adress.png) top left no-repeat;
}

div.bot-tel {
    background: url("./lancer/head-tel.png") no-repeat 5px center;
    font-size: 27px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 55px;
    padding-top: 10px;
	color:#D1D1D1;
	margin:5px 0;
}

div.bot-email {
    background: url("./lancer/bot-email.png") no-repeat 1px center;
    font-size: 18px;
    padding-bottom: 10px;
    padding-left: 55px;
    padding-top: 10px;
	color:#D1D1D1;
	margin:10px 0 0px;
}

div.bot-grafik {
    background: url("./lancer/bot-grafik.png") no-repeat left center;
    font-size: 18px;
    padding-bottom: 5px;
    padding-left: 55px;
    padding-top: 5px;
	color:#D1D1D1;
	margin:5px 0;
}


div.overfooter {
	
}

div.underfooter {
	
}

div.underfooterleft {
	
}

div.underfooterright {
	float:right;
}

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




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

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

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

div.chaptershead {

}

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

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

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

div.chapter a {
	text-decoration:none;
	color: #fff;
	font-size:20px;
	font-weight:bold;
}

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

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

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

div.activechapter a {
	text-decoration:none;
	color: #fff;
	font-size:20px;
	font-weight:bold;
}


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

div.chapter {
	padding:25px 25px 15px;
	cursor:pointer;
	cursor:hand;
	transition: all 0.5s ease 0s;
}

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

div.chapter:hover {
	cursor:pointer;
	cursor:hand;
	background:#383838;
}

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

div.activechapter {
	padding:25px 25px 15px;
	cursor:pointer;
	cursor:hand;	
	background:#383838;
}



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

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

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

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

div.chapterstitle {
    display:none;
}

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

div.chapterstitleicon {
   display:none;
}

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

div.chapter0 a {
	text-decoration:none;
	color: #000;
    -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;
    font-size:20px;
}


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

div.chapter0act a {
	text-decoration:none;
	color: #fff;
    font-size:20px;
}


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


div.chapter0  {
	padding:7px 20px;
	cursor:pointer;
	cursor:hand;
    -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;
	border:1px solid #898989;
	border-radius:15px;
	margin:5px 0px;
	box-shadow:0px 3px 4px #bcbcbc inset;
}


div.chapter0:hover  {
	cursor:pointer;
	cursor:hand;
	background: #FF3227;
	box-shadow:none;
}

div.chapter0act  {
	padding:7px 20px;
	cursor:pointer;
	cursor:hand;
	background: #FF3227;
	border:1px solid #898989;
	border-radius:15px;
	margin:5px 0px;
}


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


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


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

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

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


div.chapter1  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	-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.chapter1:hover  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	background: #383838;
}

div.chapter1act  {
	padding:10px 10px 10px 20px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	background: #383838;
}




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


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


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

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

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


div.chapter2  {
	padding:10px 10px 10px 40px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	-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.chapter2:hover  {
	padding:10px 10px 10px 40px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	background: #383838;
}

div.chapter2act  {
	padding:10px 10px 10px 40px;
	cursor:pointer;
	cursor:hand;
	border-bottom: 1px solid #fff;
	background: #383838;
}








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

div.chaptersview {
    
}

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

div.chapterviewinfo {
	

}

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

div.chapterview {
   text-align:center;
	
}

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

div.chapterviewverseparator {
	width: 1px;
}

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

div.chapterviewhorseparator {
	height: 1px;
}

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

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

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

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


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

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

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

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

div.topchapterviewname {
	display:none;
}


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

div.topchapterviewname a{
	
}


div.topchapterviewname:hover a{
	
}


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

div.bottomchapterviewname {
	padding:3px;
}

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

div.bottomchapterviewname a{
	text-decoration:none;
	color: #7d8087;
}

div.bottomchapterviewname:hover a{
	text-decoration:none;
	color: #000;
}





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

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

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

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

div.leftunderslider {

}

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

div.rightunderslider {
	vertical-align:top;
}


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

div.slider{
	margin:5px 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%;
}


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


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

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

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

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

input.sliderleft{
   padding:3px 6px;
}
input.sliderleft:hover{
   padding:3px 6px;
}
/*-- Стрелка вправо --*/

input.sliderright{
   	padding:3px 6px;
}
input.sliderright:hover{
   	padding:3px 6px;
}

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

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

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

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

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

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

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

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

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








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

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

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

div.searchinput {
	width:100%;
}

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

input.search {
	width:100%;
 	border: 1px solid #898989;
    border-radius: 15px;
    box-shadow: 0 3px 4px #bcbcbc inset;
	color:#000;
	padding:7px 5px 7px 15px;
}

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

div.searchbut {
	padding:0 10px 0 10px;
}

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







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


div.articlescentertitle {
    color: #353537;
	font-weight: bolder;
	font-size:25px;
	margin:8px 0 ;
	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;
}

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

div.articleimgcell {
	display: table-cell;
	height: 200px;
	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: #FF3227;
	font-size:14px;
}

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

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

div.articlecentershort {
	
}


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

div.articlecenterseeall {
	text-align:right;
}

input.articlecenterseeall {

}



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

div.articlecolumnallblock {

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

div.articlescolumntitle {
	color: #353537;
	font-weight: bolder;
	font-size: 25px;
	margin-bottom: 3px;
	padding: 8px;
	text-align: center;
	position: relative;
	text-transform: uppercase;
	z-index: 100;
}

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

div.articlescolumntitleicon {
	
	
}

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

div.articlescolumn {
	
}


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

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


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

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: #000;
	font-size: 14px;
}

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

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

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

div.articlecolumnseeall {
	text-align:right;
}

input.articlecolumnseeall {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    box-shadow: none;
    color: #f00;
    font-weight: normal;
    padding: 2px;
    text-shadow: none;
    text-transform: none;
	margin:0 10px 0 5px;
	border-bottom:1px dotted #f00;
}
input.articlecolumnseeall:hover{
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border-bottom:1px dotted #fff;
    box-shadow: none;
    color: #000;
    font-weight: normal;
    padding: 2px;
    text-shadow: none;
    text-transform: none;
	margin:0 10px 0 5px;
}


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

div.articlespage {
   
}

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

div.articlesverseparator {
	width: 1px;
}

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

div.articleshorseparator {
	height:1px;
}

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

div.articlepage {
	padding:5px;
}



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

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

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

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


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

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


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

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

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

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

div.articlepageshort {
	
}



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

div.articlepagedate {
	color:silver;
	padding-top:10px;
	font-size:11px;
}



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

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


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

input.back{
	
}


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

div.articlename {
	
}

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

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

div.articletext {
	
}

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

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





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


div.commentscolumntitle {
   color: #353537;
	font-weight: bolder;
	font-size: 25px;
	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 solid #f2f2f2;
	padding:5px 0;
}

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

div.commentcolumn {

}


/*--  ФИО   --*/

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

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

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

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

div.commentcolumntext {
  
	
}

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

div.commentcolumnitem a{
	color: #FF3227;
	text-decoration:none;
}

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

div.commentcolumnitem a:hover{
	color: #FF3227;
	text-decoration:none;
}

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

div.commentscolumnseeall {
	text-align:right;
}

input.commentscolumnseeall {

}



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


div.commentscentertitle {
   color: #353537;
	font-weight: bolder;
	font-size: 25px;
	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: #FF3227;
}

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

div.commentcenterdate  {
	padding-right:6px;
	text-align:right;
	color: silver;
}

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

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: #FF3227;
	font-size: 12px;
}

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

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

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

div.commenttext {
	text-align:left;
	
}

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

td.addcommenttitle {
	    color: #FF3227;
    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: #FF3227;
	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{
	
}


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

div.pagingright {
	
}

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

input.pagingright{
   
}


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

div.pagingnow{
	 background: #FF3227;
	color:#fff;
	height:23px;
	width:26px;
	font-size:12px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:23px;
	border: 1px solid #FF3227;
}



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

div.pagingall{
	color: #383838;
	border: 1px solid #383838;
	height:23px;
	width:26px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:23px;
	-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.pagingall:hover{
  background: #FF3227;
  border: 1px solid #FF3227;
	color:#fff;
	height:23px;
	width:26px;
	text-align:center;	
	cursor:pointer;
	cursor:hand;
	margin:2px;
	line-height:23px;
}


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

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

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



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

div.linkblock {
	margin-bottom:10px;
     padding:12px;
	text-align:center;
    position: relative;
     z-index: 100;
}

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

div.link {
	vertical-align:middle;
}

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

div.link a {
    color: #111;
	font-size:14px;
	text-decoration:none;
	-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.link a:hover{
    color:#FF3227;
	font-size:14px;
	text-decoration:none;
}

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

div.linkactive {
	vertical-align:middle;
	font-size:14px;
	text-decoration:underline;
}

div.linkactive a{

}

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



/*-- СТРАНИЦА 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:#FF3227;
font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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


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

td.addfaqtitle {
   color: #FF3227;
    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: #353537;
font-weight: bolder;
font-size: 18px;
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 {
	color: #353537;
font-weight: bolder;
font-size: 18px;
margin-bottom: 3px;
padding: 8px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;
}

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

div.pollscolumntitleicon {
	display:none;
}

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

div.pollscolumn {
	

}

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

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

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

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

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

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

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

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

	height:13px;
}


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

div.pollcolumnnumber {
	color:#333;

}



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

div.ordercall {
	margin:0 auto;
}

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

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

div.callmeinfo {

}

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

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

table.callme {
	color:#555;
}

td.callmebuttonposition {
	text-align:center;
}

input.callmebutton {

}






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


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

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

div.answerinfo {

}

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

td.answertitle {
	color: #555;
    font-size: 14px;
	text-align:center;
}

table.answer {
	color:#555;
}




















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

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

div.userstypehor{
	float:right;

}

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

div.userstypehorbut1{

}

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

div.userstypehorbut2{
	
padding-left:5px;
}

/*-- Кнопка вход --*/
input.enterbuthor{
color: #7d8087;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.enterbuthor:hover{
color: #000;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.registrationbuthor{
color: #7d8087;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.registrationbuthor:hover{
color: #000;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.accountbuthor{
color: #7d8087;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.accountbuthor:hover{
color: #000;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.exitbuthor{
color: #7d8087;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.exitbuthor:hover{
color: #000;
background:transparent;
padding:0;
border:0;
text-transform:none;
}







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

div.userstypever{
	
}

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

div.userstypeverinputs{


}

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

div.userstypeverinput1{
	margin-bottom:4px;

}

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

div.userstypeverinput2{

	margin-bottom:4px;
}


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

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

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

div.userstypeverbut1{

}

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

div.userstypeverbut2{

}

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

input.enterbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.enterbutver:hover{
    color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.registrationbutver{
	color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.registrationbutver:hover{
    color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.accountbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.accountbutver:hover{
   color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

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

input.exitbutver{
   color: #333;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}

input.exitbutver:hover{
   color: #fc273c;
font-size:12px;
background:transparent;
padding:0;
border:0;
text-transform:none;
}


/*-- Блок для надписи забыли пароль --*/

div.forgetpassver{


}

/*-- Надпись забыли пароль --*/

span.forgetpassver{
	cursor:pointer;
	cursor:hand;
}

/*-- Надпись приветствия --*/

div.welcomcolumn{


}













/*-- МОДУЛЬ СТРАНИЦА РЕГИСТРАЦИИ --*/

/*-- Общая таблица регистрации --*/

table.registration {
	width:70%;
	margin:0 auto;
	
	
}


/*-- Заглавие при регистрации --*/

td.titlereg {
	color:#fc273c;
	font-size:16px;
}


/*-- Столбик для кнопки регистрации --*/

td.positionregbut {
	text-align:center;

}

/*-- Кнопка РЕГИСТАЦИЯ для страницы регистарции--*/

input.registrationbut {
	text-align:center;
}


/*-- Стиль для надписи регистрация прошла успешно --*/

td.regcomplete {
	color:#555;
	text-decoration:undeline;
}










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

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

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

div.enterinfo {

}

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

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

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


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

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

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


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

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


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

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

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

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

/*-- Положение кнопки ВХОД --*/

td.enterposition {
	text-align:center;
}


/*-- Кнопка ВХОД для всплывающего окна--*/

input.enterbut {
	text-align:center;
}


/*-- Объяснение причины блокировки --*/

td.solutionfail {
	color:red;
}

/*-- Надпись забыли пароль --*/

span.forgetpass {
	cursor:pointer;
	cursor:hand;
	color:#fc273c;
}

span.forgetpass:hover {
	cursor:pointer;
	cursor:hand;
	color:#fc273c;
	text-decoration:underline;
}


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


input.send{
	
}









/*-- СТРАНИЦА АККАУНТА --*/
/*-- Надпись приветствия --*/
div.welcomecolumn {
    color: #333;
    font-size: 14px;
    padding: 8px;
    position: relative;
    text-align: center;
    

}

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

}

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

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



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

div.accounttabs {
   margin-top:10px; 
   margin-bottom:10px;
    border-bottom: 1px solid #7d8087;
   position:relative;
   top:2px;
}

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

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



/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.accounttab  {
	 background-color: #7d8087;
    color: #FFFFFF;
    cursor: pointer;
    height: 20px;
    padding: 5px;
    position: relative;
    
-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.accounttab:hover {
	  background-color: #FF3227;

    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
}


/*-- АКТИВНАЯ ВКЛАДКА --*/
div.accountactivetab {
	  background-color: #FF3227;

    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
}



/*-- Вкладка ПЕРСОНАЛЬНЫЕ ДАННЫЕ --*/

/*-- Общая таблица для вкладки  --*/
table.userdataaccount {
	margin:0 auto;
	width:80%;
	
    font-size: 11px;
    text-align: left;
   
}

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

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


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

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


input.editbut  {
	
}







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

div.galleryslider {

}


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

div.galleryslidertitle {
color: #353537;
font-weight: bolder;
font-size: 25px;
margin: 20px 0 10px 0;
padding: 0px;
text-align: center;
position: relative;
text-transform: uppercase;
z-index: 100;



}


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

div.galleryslidertitleicon {
}

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

div.gallerysliderinfo {

}


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


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


div.galleryslidercont {
	width:600px;

}


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


div.slidergallery {

   border:1px solid #878786;
	-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:10px;
	text-align:center;
	max-width:320px;
	width:320px;
}

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

div.slidergallery:hover {
box-shadow:0 0 6px silver;
margin:10px;
   border:1px solid #878786;
}

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

div.slidertopgalleryname {

}


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

div.slidertopgalleryname a{
	
	display:none;
}

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

div.slidertopgalleryname a:hover{

    color: #000;
    text-decoration: none;
}

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

div.sliderbottomgalleryname {
padding:3px ;
text-align:center;
height:45px;

position:absolute;
z-index:200;
top:184px;
width:314px;
left:11px;
}

div.sliderbottomgalleryname div.cellrelative {
vertical-align:middle;
height:45px;

}

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

div.sliderbottomgalleryname a{
    color: #fff;
    text-decoration: none;	
	font-size:16px;
}

div.sliderbottomgalleryname a{
	    color: #fff;
    text-decoration: none;
	font-size:16px;
}


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

input.slidergalleryleft {
     
}

input.slidergalleryleft:hover {
   
}


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

input.slidergalleryright {
    
}


input.slidergalleryright:hover {

}


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

div.slidergalleryimg {
	width:320px;
	height:224px;
	padding:0;
	overflow:hidden;

}

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

img.slidergalleryimg {
	max-width:400px;
	max-height:300px;
	border:0;
				-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;

}

img.slidergalleryimg:hover {
	max-width:400px;
	max-height:300px;
	border:0;

   -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -o-transform:scale(1.2);
    -ms-transform:scale(1.2);
    transform:scale(1.2);
 
}

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

div.slidergalleryimgtable {
	display:table;
	height:224px;
	margin:0 auto;
}

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


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

div.slidergalleryall {
	text-align:right;
	padding-top:10px;
	margin-bottom:20px;
}

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

input.slidergalleryall {
background: url("/themes/lancer/see_all.png") no-repeat right;
font-size: 14px;
color: #878786;
padding: 6px 45px;
text-transform:none;
border:0;
}



input.slidergalleryall:hover {
background: url("/themes/lancer/see_all_hover.png") no-repeat right;
font-size: 14px;
color: #878786;
padding: 6px 50px;
text-transform:none;
border:0;
}




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



/*-- НЕАКТИВНАЯ ВКЛАДКА --*/
div.notetab {
   background-color: #7d8087;
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    
-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; display:inline-block;
}
div.notetab a {
color:white;
text-decoration:none;
}
/*-- НЕАКТИВНАЯ ВКЛАДКА ПРИ НАВЕДЕНИИ--*/
div.notetab:hover {
   background-color: #FF3227;
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
    display:inline-block;
}

/*-- АКТИВНАЯ ВКЛАДКА --*/
div.notetabact {
   background-color: #FF3227;
 
    color: #FFFFFF;
    cursor: pointer;
    height: 30px;
    padding: 5px;
    position: relative;
	display:inline-block;
    
}
div.notetabact a {
color:white;text-decoration:none;
}






td a img{
	transition:all 0.5s ease 0s;
}
td a img:hover{
	opacity:0.65;
}


/* Оформление таблиц Прайсов*/

table.htable{
	 border-top:1px solid #9F9D9D;
	border-right:1px solid #9F9D9D;
	text-align: center;
	border-bottom:none;
	border-left:none;
	font-size: 10pt;
}

table.htable th{
	background-color: #eee;
    margin: 0;
    padding: 10px;
    text-align: center;
	font-size: 10pt;
}
table.htable  tr td:first-child{
	padding:0px 5px;
}
table.htable tr:nth-child(1) th:nth-child(2){
	width:220px;
}
table.htable  tr td:nth-child(2){
	padding-left:10px;
	text-align:left;
	font-size:10pt;
}
table.htable tbody tr {
   border:none;
}
table.htable tbody td {
    padding:5px 5px 5px 5px; 
	border-bottom:1px solid #9F9D9D;
	border-left:1px solid #9F9D9D;
	border-top:none;
	border-right:none;
}
table.htable tr:nth-child(2n){
	background:rgba(211,53,50,0.1);
}

table.htable tr:hover{
	background:#eee;
}

table.htable tr th{
	padding:5px 0px;
	text-align:center;
	border-bottom:1px solid #9F9D9D;
	border-left:1px solid #9F9D9D;
	border-top:none;
	border-right:none;
}





/*Иллюстрированное меню*/

.center-menu {
    display: block;
    height: 135px;
    margin: 5px auto;
    position: relative;
    width: 1080px;
}
.center-menu .menu-ikon {
    height: 135px;
 
}
.menu-ikon .center-cat {
    background: #383838;
    color: #fff;
    float: left;
    height: 135px;
    margin-right: 15px;
    width: 140px;
	position:relative;
}
.menu-ikon .center-cat:hover {
    background: #FF3227;
    color: #fff;
	box-shadow:0px 0px 5px #999;
}
.menu-ikon .center-cat .menu-c {
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    height: 75px;
    width: 140px;
}
.menu-ikon .center-cat a {
    color: #fff;
    cursor: pointer;
    display: block;
    font: bold 15px Arial,Helvetica,sans-serif;
    height: 60px;
	padding-top:75px;
    text-align: center;
    text-decoration: none;
    width: 140px;
	position:absolute;
	bottom:0px;
}
.menu-ikon .center-cat:hover a {
    color: #fff;
	
}
.menu-ikon .center-cat .menu-c.ikon1 {
    background-image: url("lancer/icon-1.png");
}
.menu-ikon .center-cat .menu-c.ikon2 {
    background-image: url("lancer/icon-2.png");
}
.menu-ikon .center-cat .menu-c.ikon3 {
    background-image: url("lancer/icon-3.png");
}
.menu-ikon .center-cat .menu-c.ikon4 {
    background-image: url("lancer/icon-4.png");
}
.menu-ikon .center-cat .menu-c.ikon5 {
    background-image: url("lancer/icon-5.png");
}
.menu-ikon .center-cat .menu-c.ikon6 {
    background-image: url("lancer/icon-6.png");
}
.menu-ikon .center-cat .menu-c.ikon7 {
    background-image: url("lancer/icon-7.png");
}


.boxShadow2 {
  width: 80%;
  max-width: 550px;
  margin: 10px auto;
  padding: 1em;
  box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   23px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;
}

/*-- Изображение увеличивается --*/

.transition-scale {
  position: static;
  z-index: 2;
  color: #FFF;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  max-width: 500px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s linear;
}
.transition-scale:hover {
  -webkit-transform: scale(2);
  transform: scale(1.5);
}

/*-- Изображения подпрыгивает --*/

.transition-translate {
  position: relative;
  top: 0;
  z-index: 2;
  color: #FFF;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  max-width: 500px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s linear;
}
.transition-translate:hover {
  top: 2px;
}

