﻿html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html {
	box-sizing:border-box;
}

*,:before,:after {
	box-sizing:inherit;
}

body {
	line-height:1;
}

ol,ul {
	list-style:none;
}

blockquote,q {
	quotes:none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content:'';
	content:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

sup {
	font-size:.6em;
	position:relative;
	top:-.5em;
	vertical-align:baseline;
}

sub {
	font-size:.6em;
	bottom:-.5em;
	position:relative;
	vertical-align:baseline;
}

strong {
	font-weight:700;
}

em {
	font-style:italic;
}

@-webkit-keyframes wave {
	0% {
		-webkit-transform:scale(0.6);
		opacity:1;
	}
	
	10% {
		-webkit-transform:scale(1.2);
		opacity:.4;
	}
	
	12% {
		-webkit-transform:scale(1.19);
		opacity:.3;
	}
	
	20% {
		-webkit-transform:scale(1.5);
		opacity:0;
	}
	
	100% {
		-webkit-transform:scale(0.6);
		opacity:0;
	}
}

@-moz-keyframes wave {
	0% {
		-moz-transform:scale(0.6);
		opacity:1;
	}
	
	10% {
		-moz-transform:scale(1.2);
		opacity:.4;
	}
	
	12% {
		-moz-transform:scale(1.19);
		opacity:.3;
	}
	
	20% {
		-moz-transform:scale(1.5);
		opacity:0;
	}
	
	100% {
		-moz-transform:scale(0.6);
		opacity:0;
	}
}

@-ms-keyframes wave {
	0% {
		-ms-transform:scale(0.6);
		opacity:1;
	}
	
	10% {
		-ms-transform:scale(1.2);
		opacity:.4;
	}
	
	12% {
		-ms-transform:scale(1.19);
		opacity:.3;
	}
	
	20% {
		-ms-transform:scale(1.5);
		opacity:0;
	}
	
	100% {
		-ms-transform:scale(0.6);
		opacity:0;
	}
}

@-o-keyframes wave {
	0% {
		-o-transform:scale(0.6);
		opacity:1;
	}
	
	10% {
		-o-transform:scale(1.2);
		opacity:.4;
	}
	
	12% {
		-o-transform:scale(1.19);
		opacity:.3;
	}
	
	20% {
		-o-transform:scale(1.5);
		opacity:0;
	}
	
	100% {
		-o-transform:scale(0.6);
		opacity:0;
	}
}

@keyframes wave {
	0% {
		transform:scale(0.6);
		opacity:1;
	}
	
	10% {
		transform:scale(1.2);
		opacity:.4;
	}
	
	12% {
		transform:scale(1.19);
		opacity:.3;
	}
	
	20% {
		transform:scale(1.5);
		opacity:0;
	}
	
	100% {
		transform:scale(0.6);
		opacity:0;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform:scale(1);
	}
	
	90% {
		-webkit-transform:scale(1.1);
	}
	
	100% {
		-webkit-transform:scale(1);
	}
}

@-moz-keyframes pulse {
	0% {
		-moz-transform:scale(1);
	}
	
	90% {
		-moz-transform:scale(1.1);
	}
	
	100% {
		-moz-transform:scale(1);
	}
}

@-ms-keyframes pulse {
	0% {
		-ms-transform:scale(1);
	}
	
	90% {
		-ms-transform:scale(1.1);
	}
	
	100% {
		-ms-transform:scale(1);
	}
}

@-o-keyframes pulse {
	0% {
		-o-transform:scale(1);
	}
	
	90% {
		-o-transform:scale(1.1);
	}
	
	100% {
		-o-transform:scale(1);
	}
}

@keyframes pulse {
	0% {
		transform:scale(1);
	}
	
	90% {
		transform:scale(1.1);
	}
	
	100% {
		transform:scale(1);
	}
}

@-webkit-keyframes progress {
	0% {
		width:0;
	}
	
	50% {
		width:25%;
	}
	
	90% {
		width:75%;
	}
	
	100% {
		width:100%;
	}
}

@-moz-keyframes progress {
	0% {
		width:0;
	}
	
	50% {
		width:25%;
	}
	
	90% {
		width:75%;
	}
	
	100% {
		width:100%;
	}
}

@-ms-keyframes progress {
	0% {
		width:0;
	}
	
	50% {
		width:25%;
	}
	
	90% {
		width:75%;
	}
	
	100% {
		width:100%;
	}
}

@-o-keyframes progress {
	0% {
		width:0;
	}
	
	50% {
		width:25%;
	}
	
	90% {
		width:75%;
	}
	
	100% {
		width:100%;
	}
}

@keyframes progress {
	0% {
		width:0;
	}
	
	50% {
		width:25%;
	}
	
	90% {
		width:75%;
	}
	
	100% {
		width:100%;
	}
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform:rotateY(0);
	}
	
	50% {
		-webkit-transform:rotateY(180deg);
	}
	
	100% {
		-webkit-transform:rotateY(360deg);
	}
}

@-moz-keyframes rotate {
	0% {
		-moz-transform:rotateY(0);
	}
	
	50% {
		-moz-transform:rotateY(180deg);
	}
	
	100% {
		-moz-transform:rotateY(360deg);
	}
}

@-ms-keyframes rotate {
	0% {
		-ms-transform:rotateY(0);
	}
	
	50% {
		-ms-transform:rotateY(180deg);
	}
	
	100% {
		-ms-transform:rotateY(360deg);
	}
}

@-o-keyframes rotate {
	0% {
		-o-transform:rotateY(0);
	}
	
	50% {
		-o-transform:rotateY(180deg);
	}
	
	100% {
		-o-transform:rotateY(360deg);
	}
}

@keyframes rotate {
	0% {
		transform:rotateY(0);
	}
	
	50% {
		transform:rotateY(180deg);
	}
	
	100% {
		transform:rotateY(360deg);
	}
}

@-webkit-keyframes slideshow_rotate_clockwise {
	0% {
		-webkit-transform:rotate(0) skew(1deg);
	}
	
	100% {
		-webkit-transform:rotate(360deg) skew(1deg);
	}
}

@-moz-keyframes slideshow_rotate_clockwise {
	0% {
		-moz-transform:rotate(0) skew(1deg);
	}
	
	100% {
		-moz-transform:rotate(360deg) skew(1deg);
	}
}

@-ms-keyframes slideshow_rotate_clockwise {
	0% {
		-ms-transform:rotate(0) skew(1deg);
	}
	
	100% {
		-ms-transform:rotate(360deg) skew(1deg);
	}
}

@-o-keyframes slideshow_rotate_clockwise {
	0% {
		-o-transform:rotate(0) skew(1deg);
	}
	
	100% {
		-o-transform:rotate(360deg) skew(1deg);
	}
}

@keyframes slideshow_rotate_clockwise {
	0% {
		transform:rotate(0) skew(1deg);
	}
	
	100% {
		transform:rotate(360deg) skew(1deg);
	}
}

@-webkit-keyframes slideshow_rotate_unclockwise {
	0% {
		-webkit-transform:rotate(0) skew(-1deg);
	}
	
	100% {
		-webkit-transform:rotate(-360deg) skew(-1deg);
	}
}

@-moz-keyframes slideshow_rotate_unclockwise {
	0% {
		-moz-transform:rotate(0) skew(-1deg);
	}
	
	100% {
		-moz-transform:rotate(-360deg) skew(-1deg);
	}
}

@-ms-keyframes slideshow_rotate_unclockwise {
	0% {
		-ms-transform:rotate(0) skew(-1deg);
	}
	
	100% {
		-ms-transform:rotate(-360deg) skew(-1deg);
	}
}

@-o-keyframes slideshow_rotate_unclockwise {
	0% {
		-o-transform:rotate(0) skew(-1deg);
	}
	
	100% {
		-o-transform:rotate(-360deg) skew(-1deg);
	}
}

@keyframes slideshow_rotate_unclockwise {
	0% {
		transform:rotate(0) skew(-1deg);
	}
	
	100% {
		transform:rotate(-360deg) skew(-1deg);
	}
}

@-webkit-keyframes hide {
	0% {
		opacity:1;
	}
	
	50% {
		visibility:visible;
	}
	
	100% {
		opacity:0;
		visibility:hidden;
	}
}

@-moz-keyframes hide {
	0% {
		opacity:1;
	}
	
	50% {
		visibility:visible;
	}
	
	100% {
		opacity:0;
		visibility:hidden;
	}
}

@-ms-keyframes hide {
	0% {
		opacity:1;
	}
	
	50% {
		visibility:visible;
	}
	
	100% {
		opacity:0;
		visibility:hidden;
	}
}

@-o-keyframes hide {
	0% {
		opacity:1;
	}
	
	50% {
		visibility:visible;
	}
	
	100% {
		opacity:0;
		visibility:hidden;
	}
}

@keyframes hide {
	0% {
		opacity:1;
	}
	
	50% {
		visibility:visible;
	}
	
	100% {
		opacity:0;
		visibility:hidden;
	}
}

@-webkit-keyframes kenburns_stop {
	100% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
}

@-moz-keyframes kenburns_stop {
	100% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_stop {
	100% {
		-ms-transform:scale(1) translate(0px,0px);
	}
}

@-o-keyframes kenburns_stop {
	100% {
		-o-transform:scale(1) translate(0px,0px);
	}
}

@keyframes kenburns_stop {
	100% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_1 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(190px,-120px);
	}
}

@-moz-keyframes kenburns_1 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_1 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(190px,-120px);
	}
}

@-o-keyframes kenburns_1 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(190px,-120px);
	}
}

@keyframes kenburns_1 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_2 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.3) translate(190px,-120px);
	}
}

@-moz-keyframes kenburns_2 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.3) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_2 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-o-keyframes kenburns_2 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(-190px,-120px);
	}
}

@keyframes kenburns_2 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_3 {
	0% {
		-webkit-transform:scale(1.2) translate(30px,10px);
	}
	
	100% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
}

@-moz-keyframes kenburns_3 {
	0% {
		-moz-transform:scale(1.1) translate(30px,10px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_3 {
	0% {
		-ms-transform:scale(1.1) translate(30px,10px);
	}
	
	100% {
		-ms-transform:scale(1) translate(0px,0px);
	}
}

@-o-keyframes kenburns_3 {
	0% {
		-o-transform:scale(1.1) translate(30px,10px);
	}
	
	100% {
		-o-transform:scale(1) translate(0px,0px);
	}
}

@keyframes kenburns_3 {
	0% {
		transform:scale(1.1) translate(30px,10px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_4 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(190px,-120px);
	}
}

@-moz-keyframes kenburns_4 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(190px,-120px) rotate(0.01deg) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_4 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(190px,-120px);
	}
}

@-o-keyframes kenburns_4 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(190px,-120px);
	}
}

@keyframes kenburns_4 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_5 {
	0% {
		-webkit-transform:scale(1.1) translate(20px,-5px);
	}
	
	100% {
		-webkit-transform:scale(1) translate(-10px,5px);
	}
}

@-moz-keyframes kenburns_5 {
	0% {
		-moz-transform:scale(1.1) translate(20px,-5px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1) translate(-10px,5px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_5 {
	0% {
		-ms-transform:scale(1.1) translate(20px,-5px);
	}
	
	100% {
		-ms-transform:scale(1) translate(-10px,5px);
	}
}

@-o-keyframes kenburns_5 {
	0% {
		-o-transform:scale(1.1) translate(20px,-5px);
	}
	
	100% {
		-o-transform:scale(1) translate(-10px,5px);
	}
}

@keyframes kenburns_5 {
	0% {
		transform:scale(1.1) translate(20px,-5px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1) translate(-10px,5px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_6 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-moz-keyframes kenburns_6 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_6 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-o-keyframes kenburns_6 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(-190px,-120px);
	}
}

@keyframes kenburns_6 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_7 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-moz-keyframes kenburns_7 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_7 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-o-keyframes kenburns_7 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(-190px,-120px);
	}
}

@keyframes kenburns_7 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_8 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-moz-keyframes kenburns_8 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_8 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-o-keyframes kenburns_8 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(-190px,-120px);
	}
}

@keyframes kenburns_8 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-webkit-keyframes kenburns_9 {
	0% {
		-webkit-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-webkit-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-moz-keyframes kenburns_9 {
	0% {
		-moz-transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		-moz-transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

@-ms-keyframes kenburns_9 {
	0% {
		-ms-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-ms-transform:scale(1.4) translate(-190px,-120px);
	}
}

@-o-keyframes kenburns_9 {
	0% {
		-o-transform:scale(1) translate(0px,0px);
	}
	
	100% {
		-o-transform:scale(1.4) translate(-190px,-120px);
	}
}

@keyframes kenburns_9 {
	0% {
		transform:scale(1) translate(0px,0px) rotate(0.01deg);
	}
	
	100% {
		transform:scale(1.4) translate(-190px,-120px) rotate(0.01deg);
	}
}

html {
	color:#01171F;
	font-family:"Open Sans",sans-serif;
	font-size:10pt;
}

h1,h2,h3,h4,h5,h6 {
	line-height:1.4;
}

h1,h2,div.h {
	color:#01171F;
	font-family:"PT Sans",sans-serif;
	font-size:2.1rem;
	font-weight:700;
	line-height:1.4;
	margin:0 0 20px;
	position:relative;
	text-align:left;
	text-transform:uppercase;
}

h3,div.h3 {
	color:#1a1a1a;
	font-family:"PT Sans",sans-serif;
	font-size:1.8rem;
	font-weight:700;
	margin:0 0 20px;
}

h4 {
	font-size:1.7rem;
	margin:0 0 20px;
}

h5 {
	font-size:1.5rem;
	margin:0 0 20px;
}

h6 {
	font-size:1.4rem;
	margin:0 0 20px;
}

p {
	font-size:1.1rem;
	font-weight:400;
	line-height:1.4;
	margin:0 0 18px;
}

a {
	color:#2497C9;
	cursor:pointer;
	font-size:inherit;
	text-decoration:underline;
	-moz-transition:background-color .4s ease,border-color .4s ease,color .4s ease;
	-o-transition:background-color .4s ease,border-color .4s ease,color .4s ease;
	-webkit-transition:background-color .4s ease,border-color .4s ease,color .4s ease;
	transition:background-color .4s ease,border-color .4s ease,color .4s ease;
}

a:hover {
	color:#1a1a1a;
	text-decoration:underline;
}

a.area,p>a {
	border-bottom:1px solid #2497C9;
	text-decoration:none;
}

a.white,p.white>a {
	border-bottom-color:#fff;
	color:#fff;
}

a.area:hover,p>a:hover {
	border-bottom-color:transparent;
	text-decoration:none;
}

p.history {
	font-style:italic;
	line-height:1.5;
	vertical-align:top;
}

p.history>span:nth-of-type(1) {
	background-color:#2497C9;
	color:#fff;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:.9rem;
	font-style:normal;
	font-weight:700;
	margin-right:20px;
	padding:4px 7px;
}

a[data-hint] {
	position:relative;
}

a[data-hint]:before {
	background-color:#01171F;
	border-radius:2px;
	color:#fff;
	content:attr(data-hint);
	font-family:"PT Sans",sans-serif;
	font-size:.7rem;
	opacity:0;
	left:calc(100% - 5px);
	padding:6px 10px;
	position:absolute;
	text-transform:uppercase;
	top:calc(-100% - 5px);
	-moz-transform:translateY(-8px);
	-ms-transform:translateY(-8px);
	-webkit-transform:translateY(-8px);
	transform:translateY(-8px);
	-moz-transition:opacity .2s ease,-moz-transform .2s ease;
	-o-transition:opacity .2s ease,-o-transform .2s ease;
	-webkit-transition:opacity .2s ease,-webkit-transform .2s ease;
	transition:opacity .2s ease,transform .2s ease;
	white-space:nowrap;
	visibility:hidden;
	z-index:-1;
}

a[data-hint]:after {
	display:none;
	background-color:#01171F;
	content:'';
	height:6px;
	left:0;
	opacity:0;
	position:absolute;
	top:-8px;
	-moz-transform:rotate(45deg) translateY(-8px);
	-ms-transform:rotate(45deg) translateY(-8px);
	-webkit-transform:rotate(45deg) translateY(-8px);
	transform:rotate(45deg) translateY(-8px);
	-moz-transition:opacity .2s ease,-moz-transform .2s ease;
	-o-transition:opacity .2s ease,-o-transform .2s ease;
	-webkit-transition:opacity .2s ease,-webkit-transform .2s ease;
	transition:opacity .2s ease,transform .2s ease;
	width:6px;
	visibility:hidden;
	z-index:-2;
}

a[data-hint]:hover:before,a[data-hint]:hover:after {
	opacity:1;
	visibility:visible;
}

a[data-hint]:hover:before {
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

a[data-hint]:hover:after {
	-moz-transform:rotate(45deg) translateY(0);
	-ms-transform:rotate(45deg) translateY(0);
	-webkit-transform:rotate(45deg) translateY(0);
	transform:rotate(45deg) translateY(0);
}

ul {
	margin:0 0 35px;
}

li {
	font-size:1.1rem;
	font-style:italic;
	line-height:1.4;
	list-style:none;
	margin:0 0 20px;
	padding:4px 0 4px 30px;
	position:relative;
}

li:before {
	background-color:#13579b;
	-webkit-border-radius:3px;
	border-radius:3px;
	content:'';
	height:6px;
	left:4px;
	position:absolute;
	top:11px;
	width:6px;
}

li:nth-last-of-type(1) {
	margin-bottom:0;
}

li a {
	font-style:italic;
}

ul.wysiwyg {
	margin:0 0 30px;
}

ul.wysiwyg li {
	color:#01171F;
	font-size:1.2rem;
	font-style:italic;
	line-height:1.4;
	list-style:none;
	margin:0 0 20px;
	padding:0 0 0 25px;
	position:relative;
}

ul.wysiwyg li:before,ul.wysiwyg li:after {
	content:'';
	position:absolute;
}

ul.wysiwyg li:before {
	background-color:#2497C9;
	border-radius:5px;
	height:10px;
	left:0;
	top:6px;
	width:10px;
	z-index:1;
}

ul.wysiwyg li:after {
	background-color:#fff;
	border-radius:3px;
	height:6px;
	left:2px;
	top:8px;
	width:6px;
	z-index:1;
}

ul.wysiwyg li:nth-last-of-type(1) {
	margin-bottom:0;
}

ul.wysiwyg li a {
	font-style:italic;
}

h1 a,h2 a,h3 a,div.h a,div.h3 a,h1 span,h2 span,h3 span,div.h span,div.h3 span {
	font-family:inherit;
	font-size:inherit;
	font-style:inherit;
	font-weight:inherit;
}

h1 a,h2 a,h3 a,div.h a,div.h3 a {
	border-bottom:1px solid transparent;
	color:inherit;
	text-decoration:none;
}

h1 a,h2 a,div.h a,h1 span,h2 span,div.h span {
	color:#01171F;
	position:relative;
}

h1 a:hover,h2 a:hover,div.h a:hover {
	border-bottom-color:#2497C9;
	color:#1C4E7F;
}

h3 a:hover,div.h3 a:hover {
	border-bottom-color:#2497C9;
	color:#1C4E7F;
}

h1 a:before,h2 a:before,div.h a:before,h1 span:before,h2 span:before,div.h span:before {
	display:none;
	background-color:#01171F;
	border-radius:3px;
	content:'';
	height:calc(100% + 28px);
	left:-30px;
	position:absolute;
	top:-14px;
	-moz-transform:skewX(-14deg);
	-ms-transform:skewX(-14deg);
	-webkit-transform:skewX(-14deg);
	transform:skewX(-14deg);
	width:calc(100% + 60px);
	z-index:-1;
}

p.bigest,p.smallest {
	font-style:italic;
	font-weight:300;
}

p.big,p.small {
	color:#01171F;
	font-weight:700;
}

p.bigest {
	font-size:1.5rem;
	line-height:1.5;
}

p.big {
	font-size:1.2rem;
	line-height:1.3;
}

p.small {
	font-size:.9rem;
	line-height:1.3;
}

p.smallest {
	font-size:.7rem;
	line-height:1.2;
}

ul.big li {
	font-size:1.3rem;
}

ul.white li:before {
	background-color:#fff;
}

.white,.white * {
	color:#fff;
}

.white:hover,.white:hover * {
	color:#fff;
}

.ui-autocomplete {
	border:1px solid #2497C9!important;
	background:none!important;
	background-color:#fff!important;
	border-radius:4px;
	max-height:250px;
	overflow-y:auto;
	overflow-x:hidden;
	padding:0!important;
}

.ui-autocomplete .ui-menu-item {
	background-image:none;
	background:#fff;
	*zoom:1;
	filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#FFFFFFFF',endColorstr='#FFF1F1F1');
	background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjFmMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
	background-size:100%;
	background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#fff),color-stop(100%,#f1f1f1));
	background-image:-moz-linear-gradient(top,#fff,#f1f1f1);
	background-image:-webkit-linear-gradient(top,#fff,#f1f1f1);
	background-image:linear-gradient(to "top",#fff,#f1f1f1);
	color:#6a6a6a;
	font-size:.9rem;
	font-style:normal;
	margin-top:3px;
	padding:12px 16px!important;
	-moz-transition:background-color .4s ease,color .4s ease;
	-o-transition:background-color .4s ease,color .4s ease;
	-webkit-transition:background-color .4s ease,color .4s ease;
	transition:background-color .4s ease,color .4s ease;
}

.ui-autocomplete .ui-menu-item:before {
	display:none;
}

.ui-autocomplete .ui-menu-item.ui-state-focus {
	background:none;
	background-color:#1C4E7F;
	border:none;
	color:#fff;
	cursor:pointer;
}

.h4 {
	font-size:1.4rem;
	font-weight:700;
	margin-bottom:25px;
}

.ya-share2 li {
	padding:0;
}

.ya-share2 li:before,.ya-share2 li:after {
	display:none;
}

.page {
	margin:0 auto;
	min-height:750px;
	min-width:1000px;
	max-width:1920px;
	overflow:hidden;
	position:relative;
}

.page:before,.page:after {
	content:'';
	height:100%;
	top:0;
	position:absolute;
	width:2px;
}

.page:before {
	background-color:#e9e9e9;
	left:50%;
	margin-left:-961px;
}

.page:after {
	background-color:#e9e9e9;
	margin-right:-961px;
	right:50%;
}

.region,.block {
	clear:both;
	position:relative;
	width:100%;
	z-index:1;
}

.region>.wrapper,.block>.wrapper {
	margin:0 auto;
	max-width:100%;
	text-align:left;
	width:1000px;
}

.region-fixed {
	z-index:7;
}

.region-header {
	z-index:6;
}

.region-menu {
	z-index:5;
}

.region-slideshow {
	z-index:2;
}

.region-back {
	z-index:1;
}

.region-title {
	z-index:4;
}

.region-crumb {
	z-index:3;
}

.region-viewer {
	z-index:8;
}

.region-basket-fixed {
	z-index:7;
}

.background {
	position:relative;
}

.parallax.active {
	left:0;
	position:fixed;
}

.columns {
	font-size:0;
	line-height:0;
	letter-spacing:-1px;
}

.columns>.column,.columns>.row {
	font-size:1rem;
	line-height:1;
	letter-spacing:normal;
	position:relative;
	vertical-align:top;
}

.columns>.row {
	display:block;
	width:100%;
}

.columns>.column {
	display:inline-block;
	width:auto;
}

.columns>.column-20 {
	width:16%;
}

.columns>.column-20:nth-of-type(5n+2) {
	margin:0 0 0 5%;
}

.columns>.column-20:nth-of-type(5n+3) {
	margin:0 5%;
}

.columns>.column-20:nth-of-type(5n+4) {
	margin:0 5% 0 0;
}

.columns>.column-25 {
	width:22%;
}

.columns>.column-25:nth-of-type(4n+2) {
	margin:0 2% 0 4%;
}

.columns>.column-25:nth-of-type(4n+3) {
	margin:0 4% 0 2%;
}

.columns>.column-33 {
	width:30%;
}

.columns>.column-33:nth-of-type(3n+2) {
	margin:0 5%;
}

.columns>.column-50 {
	width:46%;
}

.columns>.column-50:nth-of-type(2n) {
	margin:0 0 0 3%;
}

.columns>.column-50:nth-of-type(2n+1) {
	margin:0 4% 0 0;
}

.region-system-error {
	margin:15px 0;
}

.region-system-error .block {
	background-color:#fff;
	border:1px dashed #ba0000;
	padding:1px;
}

.region-system-error .wrapper {
	background-color:#ba0000;
	color:#fff;
	font-size:1.1rem;
	margin:0;
	padding:18px 25px;
	width:100%;
}

.region-system-attention {
	margin:15px 0;
}

.region-system-attention .block {
	background-color:#fff;
	border:1px dashed #FCBF56;
	padding:1px;
}

.region-system-attention .wrapper {
	background-color:#FCBF56;
	color:#fff;
	font-size:1.1rem;
	margin:0;
	padding:18px 25px;
	width:100%;
}

.icon {
	background-position:center center;
	background-repeat:no-repeat;
	background-size:100% auto;
	font-size:0;
	line-height:0;
	position:absolute;
	transition:opacity .4s ease;
}

.icon.rotate-90,.icon.rotate-90 {
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}

.icon.rotate-180,.icon.rotate-180 {
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
}

.icon.rotate-270,.icon.rotate-270 {
	-moz-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	-webkit-transform:rotate(270deg);
	transform:rotate(270deg);
}

.icon-arrow-lite-black {
	background-image:url(../images/icon-arrow-lite-black.png);
	height:62px;
	width:34px;
}

.icon-arrow-lite-white {
	background-image:url(../images/icon-arrow-lite-white.png);
	height:62px;
	width:34px;
}

.icon-basket-grey {
	background-image:url(../images/icon-basket-grey.png);
	height:30px;
	width:36px;
}

.icon-basket-white {
	background-image:url(../images/icon-basket-white.png);
	height:11px;
	width:12px;
}

.icon-basket-1-black {
	background-image:url(../images/icon-basket-1-black.png);
	height:15px;
	width:16px;
}

.icon-basket-1-white {
	background-image:url(../images/icon-basket-1-white.png);
	height:15px;
	width:16px;
}

.icon-call-blue {
	background-image:url(../images/icon-call-blue.png);
	height:17px;
	width:14px;
}

.icon-check-blue {
	background-image:url(../images/icon-check-blue.png);
	height:10px;
	width:12px;
}

.icon-delivery-blue {
	background-image:url(../images/icon-delivery-blue.png);
	height:12px;
	width:15px;
}

.icon-delivery-1-blue {
	background-image:url(../images/icon-delivery-1-blue.png);
	height:13px;
	width:20px;
}

.icon-delivery-2-blue {
	background-image:url(../images/icon-delivery-2-blue.png);
	height:15px;
	width:13px;
}

.icon-hits {
	background-image:url(../images/icon-hits.png);
	height:60px;
	width:60px;
}

.icon-document-black {
	background-image:url(../images/icon-document-black.png);
	height:11px;
	width:9px;
}

.icon-document-white {
	background-image:url(../images/icon-document-white.png);
	height:11px;
	width:9px;
}

.icon-novelty {
	background-image:url(../images/icon-novelty.png);
	height:60px;
	width:60px;
}

.icon-mail-black {
	background-image:url(../images/icon-mail-black.png);
	height:12px;
	width:15px;
}

.icon-mail-white {
	background-image:url(../images/icon-mail-white.png);
	height:12px;
	width:16px;
}

.icon-mail-yellow {
	background-image:url(../images/icon-mail-yellow.png);
	height:12px;
	width:15px;
}

.icon-map-big {
	background-image:url(../images/icon-map-big.png);
	height:80px;
	width:60px;
}

.icon-map-black {
	background-image:url(../images/icon-map-black.png);
	height:17px;
	width:13px;
}

.icon-map-white {
	background-image:url(../images/icon-map-white.png);
	height:17px;
	width:13px;
}

.icon-map-yellow {
	background-image:url(../images/icon-map-yellow.png);
	height:17px;
	width:13px;
}

.icon-novelty {
	background-image:url(../images/icon-novelty.png);
	height:31px;
	width:34px;
}

.icon-option-black {
	background-image:url(../images/icon-option-black.png);
	height:11px;
	width:13px;
}

.icon-option-white {
	background-image:url(../images/icon-option-white.png);
	height:11px;
	width:13px;
}

.icon-option-yellow {
	background-image:url(../images/icon-option-yellow.png);
	height:11px;
	width:12px;
}

.icon-phone-black {
	background-image:url(../images/icon-phone-black.png);
	height:18px;
	width:14px;
}

.icon-phone-blue {
	background-image:url(../images/icon-phone-blue.png);
	height:18px;
	width:13px;
}

.icon-phone-white {
	background-image:url(../images/icon-phone-white.png);
	height:18px;
	width:14px;
}

.icon-responce-black {
	background-image:url(../images/icon-responce-black.png);
	height:11px;
	width:13px;
}

.icon-responce-white {
	background-image:url(../images/icon-responce-white.png);
	height:11px;
	width:13px;
}

.icon-search-gray {
	background-image:url(../images/icon-search-gray.png);
	height:16px;
	width:15px;
}

.icon-search-white {
	background-image:url(../images/icon-search-white.png);
	height:15px;
	width:14px;
}

.icon-service-black {
	background-image:url(../images/icon-service-black.png);
	height:11px;
	width:11px;
}

.icon-service-white {
	background-image:url(../images/icon-service-white.png);
	height:11px;
	width:11px;
}

.icon-sorted-1 {
	background-image:url(../images/icon-sorted-1.png);
	height:10px;
	width:12px;
}

.icon-sorted-2 {
	background-image:url(../images/icon-sorted-2.png);
	height:10px;
	width:12px;
}

.icon-star-active {
	background-image:url(../images/icon-star-active.png);
	height:15px;
	width:15px;
}

.icon-star {
	background-image:url(../images/icon-star.png);
	height:15px;
	width:15px;
}

.icon-sale {
	background-image:url(../images/icon-sale.png);
	height:60px;
	width:60px;
}

.icon-stock-green {
	background-image:url(../images/icon-stock-green.png);
	height:17px;
	width:17px;
}

.icon-time-black {
	background-image:url(../images/icon-time-black.png);
	height:13px;
	width:13px;
}

.icon-time-white {
	background-image:url(../images/icon-time-white.png);
	height:14px;
	width:14px;
}

.icon-top-white {
	background-image:url(../images/icon-top-white.png);
	height:23px;
	width:20px;
}

.icon-warranty-blue {
	background-image:url(../images/icon-warranty-blue.png);
	height:17px;
	width:13px;
}

.buttons>.button {
	color:#fff;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	font-weight:700;
	line-height:1;
	margin:0;
	padding:12px 19px 10px;
	position:relative;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	white-space:nowrap;
	z-index:1;
}

.buttons>.button:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	left:0;
	position:absolute;
	top:0;
	-moz-transition:background-color .4s ease;
	-o-transition:background-color .4s ease;
	-webkit-transition:background-color .4s ease;
	transition:background-color .4s ease;
	width:100%;
	z-index:-1;
}

.buttons>.button:hover {
	color:#fff;
	text-decoration:none;
}

.buttons>.button:hover:before {
	background-color:#3A99D8;
}

.buttons>.button-yellow {
	color:#1a1a1a;
}

.buttons>.button-yellow:before {
	background-color:#F99D4A;
}

.buttons>.button-blue:before {
	background-color:#3A99D8;
}

.buttons>.button-dark:before {
	background-color:#01171F;
}

.buttons>.button-dark:hover {
	color:#fff;
	text-decoration:none;
}

.buttons>.button-dark:hover:before {
	background-color:#3A99D8;
}

.buttons>.button-black:before {
	background-color:#1a1a1a;
}

.buttons>.button-black:hover {
	color:#fff;
	text-decoration:none;
}

.buttons>.button-black:hover:before {
	background-color:#3A99D8;
}

.date {
	margin:0 0 22px;
	position:block;
}

.date>span {
	background:#1C4E7F;
	color:#fff;
	display:inline-block;
	font-family:"PT Sans",sans-serif;
	font-size:.9rem;
	font-weight:300;
	line-height:1;
	padding:6px 8px;
}

.link {
	color:#01171F;
	font-size:1.2rem;
	line-height:1.6;
	margin:10px 0 0;
}

.link>a {
	border-bottom:1px solid #2497C9;
	color:inherit;
	font-size:inherit;
	line-height:inherit;
	text-decoration:none;
}

.link>a.no-link {
	border-bottom-color:transparent;
	color:#01171F;
	cursor:default;
}

.link>a:hover {
	border-bottom-color:transparent;
	color:#2497C9;
}

.lite,.lite p {
	color:#6a6a6a;
	cursor:default;
	font-size:1rem;
	font-style:italic;
	line-height:1.4;
	margin:15px 0 0;
	-moz-transition:all .4s ease;
	-o-transition:all .4s ease;
	-webkit-transition:all .4s ease;
	transition:all .4s ease;
}

.label {
	font-size:.9rem;
	font-weight:400;
	display:inline-block;
	line-height:.9rem;
	margin:5px 15px 0 0;
	text-transform:uppercase;
}

.value {
	font-size:1.4rem;
	font-weight:700;
	display:inline-block;
	line-height:1.4;
}

.image {
	line-height:0;
	position:relative;
}

.image a {
	display:block;
	width:100%;
	height:100%;
}

.image img {
	width:100%;
}

.image img.border {
	border:10px solid #fff;
}

.image.no-photo {
	background-position:center top;
	background-image:url(../images/nophoto.jpg);
	background-size:auto 100%;
}

.image-shadow {
	line-height:0;
	position:relative;
}

.image-shadow:before {
	background:url(../images/shadow.png) center top no-repeat;
	background-size:100% 100%;
	content:'';
	height:10px;
	left:0;
	position:absolute;
	bottom:-12px;
	width:100%;
}

.image-shadow img {
	width:100%;
}

.count {
	display:inline-block;
	vertical-align:top;
}

.count input {
	font-size:11px;
	color:#6a6a6a;
	margin:0;
	outline:none;
	padding:5px 9px;
	width:60px;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
	border:1px solid #ccc;
	background:#e5e5e5;
	background:-moz-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#e5e5e5),color-stop(40%,#f9f9f9),color-stop(100%,#f9f9f9));
	background:-webkit-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-o-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-ms-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:linear-gradient(to bottom,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5',endColorstr='#f9f9f9',GradientType=0);
}

.count input:focus {
	color:#1a1a1a;
	border-color:#999;
}

.total .label {
	display:inline-block;
	font-size:1.4rem;
	font-weight:300;
	margin:0 50px 0 0;
}

.total .text {
	display:inline-block;
	font-size:1.4rem;
	font-weight:300;
	margin:0 25px 0 0;
}

.total .count {
	line-height:1;
}

.total .count span {
	font-size:1.4rem;
	font-weight:400;
	display:inline-block;
	margin:0 5px 0 0;
}

.total .count span:after {
	display:inline-block;
	font-size:1.2rem;
	font-weight:300;
	content:'шт.';
	margin:0 50px 0 5px;
	text-transform:none;
}

.total .price span {
	color:#1a1a1a;
	font-size:1.4rem;
	font-weight:700;
	display:inline-block;
	margin:0 5px 0 0;
}

.total .price span:after {
	display:inline-block;
	font-size:1.2rem;
	font-weight:300;
	content:'руб.';
	margin:0 0 0 5px;
	text-transform:none;
	display:none;
}

.favourite {
	margin:16px 0 15px;
	text-align:right;
}

.favourite>a {
	border-bottom:1px dashed #FDC04B;
	color:#FDC04B;
	font-size:.8rem;
	font-style:italic;
	position:relative;
	text-decoration:none;
}

.favourite>a:hover {
	border-bottom-color:transparent;
	color:#1a1a1a;
}

.favourite>a:before {
	background:url(../images/icon-favourite.png) no-repeat;
	background-size:100% auto;
	content:'';
	height:10px;
	left:-18px;
	position:absolute;
	top:2px;
	width:10px;
}

.favourite>.social {
	display:inline-block;
	margin:-3px 0 0 30px;
	vertical-align:top;
}

.fields {
	margin:0;
}

.fields>.field {
	margin-bottom:40px;
	position:relative;
}

.fields .label {
	font-size:.9rem;
	color:#202020;
	text-transform:uppercase;
	text-align:left;
	height:25px;
	margin:0;
	padding:0 0 9px;
	position:relative;
	vertical-align:top;
}

.fields .label .important {
	color:#F93822;
	font-size:1.2rem;
	display:inline-block;
	padding:0 9px;
}

.fields .label .hint {
	display:inline-block;
	text-align:left;
	font-size:.9rem;
	color:#999;
	padding:0 5px;
}

.fields .input {
	position:relative;
}

.fields .input:before {
	content:'';
	height:100%;
	border:1px solid #ccc;
	background:#e5e5e5;
	background:-moz-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#e5e5e5),color-stop(40%,#f9f9f9),color-stop(100%,#f9f9f9));
	background:-webkit-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-o-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-ms-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:linear-gradient(to bottom,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5',endColorstr='#f9f9f9',GradientType=0);
	position:absolute;
	left:0;
	top:0;
	width:100%;
	z-index:-1;
}

.fields input {
	background:transparent;
	border:1px solid #a6a6a6;
	color:#333;
	font-size:.9rem;
	margin:0;
	outline:none;
	padding:7px 11px;
	width:100%;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

.fields input[name^='date'] {
	cursor:pointer;
}

.fields input[name^='date']+span {
	background:url(../images/icon-calendar.png) center center no-repeat;
	background-size:100% 100%;
	height:14px;
	right:8px;
	position:absolute;
	opacity:.7;
	top:8px;
	width:14px;
}

.fields input:focus {
	color:#1a1a1a;
	border-color:#999;
}

.fields input._error {
	border-color:#F9265B;
}

.fields select {
	padding:6px 9px 7px;
	color:#333;
	font-size:11px;
	outline:none;
	width:100%;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
	border:1px solid #ccc;
	background:#e5e5e5;
	background:-moz-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#e5e5e5),color-stop(40%,#f9f9f9),color-stop(100%,#f9f9f9));
	background:-webkit-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-o-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-ms-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:linear-gradient(to bottom,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5',endColorstr='#f9f9f9',GradientType=0);
}

.fields select:focus {
	color:#1a1a1a;
	border-color:#999;
}

.fields textarea {
	padding:8px 9px 9px;
	margin:0;
	color:#333;
	font-size:11px;
	outline:none;
	resize:none;
	width:100%;
	height:80px;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
	border:1px solid #ccc;
	background:#e5e5e5;
	background:-moz-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#e5e5e5),color-stop(40%,#f9f9f9),color-stop(100%,#f9f9f9));
	background:-webkit-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-o-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:-ms-linear-gradient(top,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	background:linear-gradient(to bottom,#e5e5e5 0%,#f9f9f9 40%,#f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5',endColorstr='#f9f9f9',GradientType=0);
}

.fields textarea:focus {
	color:#1a1a1a;
	border-color:#999;
}

.fields ._error,.fields .error {
	border-color:#EF3340;
}

.fields .field-captcha input {
	width:110px;
}

.fields .image {
	display:inline-block;
	width:100px;
	height:30px;
	position:absolute;
	right:-90px;
	top:0;
}

.fields .important-text {
	color:#b2b2b2;
	font-size:1rem;
	margin:0;
	line-height:1;
	text-align:right;
	padding:32px 0 0;
}

.fields .important-text span {
	color:#F93822;
	font-size:1.2rem;
	display:inline-block;
	padding:0 4px;
}

.fields .column-margin {
	margin-left:40px;
}

.fields .column-1 {
	width:330px;
}

.fields .column-2 {
	width:145px;
}

.fields .column-3 {
	width:515px;
}

.fields .column-4 {
	width:700px;
}

.fields .button {
	text-align:right;
}

.filter {
	margin:20px 0 30px;
}

.filter .blocks {
	padding:25px 20px 5px;
	border:1px solid #ccc;
	z-index:20;
	position:relative;
	background:#eee;
}

.filter .block {
	margin:0 10px 20px;
	position:relative;
}

.filter .block .label {
	cursor:pointer;
	margin:0;
}

.filter .block .dropping {
	margin:0;
	position:absolute;
	visibility:hidden;
	opacity:0;
	min-width:100px;
	max-width:250px;
	width:auto;
	padding-top:15px;
	left:0;
	top:12px;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

.filter .block:hover .dropping {
	padding:10px 0 0;
	visibility:visible;
	opacity:1;
}

.filter .block .dropping a {
	font-size:.9rem;
	color:#fff;
	display:block;
	line-height:1;
	padding:10px 17px 9px 15px;
	position:relative;
	text-decoration:none;
	background-color:#202020;
	white-space:nowrap;
	z-index:1;
}

.filter .block .dropping a:hover {
	background-color:#1a1a1a;
	color:#fff;
	z-index:2;
}

.filter .block .dropping a.ready:after {
	position:absolute;
	opacity:0;
	display:inline-block;
	width:12px;
	height:12px;
	background-color:transparent;
	background-image:url(../images/close-white.png);
	background-position:left top;
	background-repeat:no-repeat;
	background-size:100% 100%;
	border-color:transparent;
	border-radius:0 0 0 3px;
	border-style:solid;
	border-width:2px 2px 3px 3px;
	top:0;
	right:0;
	content:'';
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

.filter .block .dropping a.ready:hover:after {
	background-color:#000;
	border-color:#000;
	opacity:1;
}

.filter .list {
	margin:30px -10px 0;
	position:relative;
	z-index:10;
}

.filter .list a {
	display:inline-block;
	padding:9px 16px 10px 11px;
	color:#fff;
	position:relative;
	text-decoration:none;
	margin:0 10px 15px;
	background:#7d7e7d;
	*zoom:1;
	filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#FF7D7E7D',endColorstr='#FF0E0E0E');
	background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdkN2U3ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBlMGUwZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
	background-size:100%;
	background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#7d7e7d),color-stop(100%,#0e0e0e));
	background-image:-moz-linear-gradient(top,#7d7e7d,#0e0e0e);
	background-image:-webkit-linear-gradient(top,#7d7e7d,#0e0e0e);
	background-image:linear-gradient(to "top",#7d7e7d,#0e0e0e);
}

.filter .list a:after {
	position:absolute;
	display:inline-block;
	width:12px;
	height:12px;
	background-color:transparent;
	background-image:url(../images/close-white.png);
	background-position:left top;
	background-repeat:no-repeat;
	background-size:100% 100%;
	border-color:transparent;
	border-radius:0 0 0 3px;
	border-style:solid;
	border-width:2px 2px 3px 3px;
	top:0;
	right:0;
	content:'';
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

.filter .list a:hover:after {
	background-color:#000;
	border-color:#000;
}

.area-header>.wrapper {
	margin-top:20px;
	position:relative;
	width:1000px;
}

.area-header .logo {
	color:#01171F;
	z-index:1;
}

.area-header .logo>a {
	color:inherit;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:3.7rem;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
}

.area-header .slogo {
	color:#1a1a1a;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	font-weight:700;
	margin-top:5px;
	text-transform:uppercase;
	text-align:center;
}

.area-header .social {
	margin-top:15px;
	text-align:center;
}

.area-header .adress {
	margin-bottom:18px;
	margin-top:18px;
}

.area-header .adress .item {
	color:#01171F;
	display:block;
	font-size:1rem;
	font-style:italic;
	padding-left:28px;
	position:relative;
}

.area-header .adress .icon {
	left:1px;
	top:0;
}

.area-header .adress .hint {
	color:#a6a6a6;
	display:block;
	margin-top:4px;
}

.area-header .mail {
	margin-bottom:23px;
}

.area-header .mail .item {
	padding-left:28px;
	position:relative;
}

.area-header .mail a {
	border-bottom:1px dashed #2EC4B6;
	color:#01171F;
	font-size:1rem;
	font-style:italic;
	text-decoration:none;
}

.area-header .mail a:hover {
	border-bottom-color:transparent;
}

.area-header .mail .icon {
	left:0;
	top:4px;
}

.area-header .time .item {
	font-size:1rem;
	font-style:italic;
	padding-left:28px;
	position:relative;
}

.area-header .time .icon {
	left:2px;
	top:3px;
}

.area-header .time strong {
	color:#1C4E7F;
	font-style:normal;
	font-weight:700;
	padding-right:15px;
}

.area-header .phone {
	margin-bottom:21px;
	margin-top:13px;
}

.area-header .phone .item {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.5rem;
	padding-left:20px;
	position:relative;
}

.area-header .phone .icon {
	left:0;
	top:3px;
}

.area-header .phone strong {
	color:#1C4E7F;
	font-style:normal;
	font-weight:700;
}

.area-header .phone:nth-last-of-type(1) {
	margin-bottom:0;
}

.area-header .call {
	margin-top:20px;
}

.area-header .call .item {
	padding-left:28px;
	position:relative;
}

.area-header .call a {
	border-bottom:1px dashed #2EC4B6;
	color:#01171F;
	font-size:1rem;
	font-style:italic;
	text-decoration:none;
}

.area-header .call a:hover {
	border-bottom-color:transparent;
}

.area-header .call .icon {
	left:0;
	top:0;
}

.area-header .info {
	margin-top:79px;
	text-align:center;
}

.area-header .info .item {
	margin-left:18px;
	padding-left:22px;
	position:relative;
}

.area-header .info .item:nth-of-type(1) {
	margin-left:0;
}

.area-header .info a {
	border-bottom:1px dashed #2EC4B6;
	color:#01171F;
	font-size:1rem;
	font-style:italic;
	text-decoration:none;
}

.area-header .info a:hover {
	border-bottom-color:transparent;
}

.area-header .info .icon {
	left:0;
	top:4px;
}

.area-footer {
	margin:0 auto;
	padding:50px 20px;
	position:relative;
	text-align:left;
	width:980px;
}

.area-footer:before {
	background:#333;
	background:-moz-linear-gradient(top,#333 0%,#1a1a1a 80px,#1a1a1a 100%);
	background:-webkit-linear-gradient(top,#333 0%,#1a1a1a 80px,#1a1a1a 100%);
	background:linear-gradient(to bottom,#333 0%,#1a1a1a 80px,#1a1a1a 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333',endColorstr='#1a1a1a',GradientType=0);
	content:'';
	height:100%;
	left:50%;
	margin-left:-960px;
	position:absolute;
	top:0;
	width:1920px;
}

.area-footer,.area-footer p,.area-footer a,.area-footer span {
	color:#fff;
}

.area-footer p {
	font-size:.9rem;
}

.area-footer .column-1 {
	width:350px;
}

.area-footer .column-2 {
	width:270px;
}

.area-footer .column-3 {
	width:320px;
}

.area-footer .logo {
	display:inline-block;
	font-family:'PT Sans Narrow',sans-serif;
	font-size:2rem;
	font-weight:700;
	margin-bottom:20px;
	text-decoration:none;
}

.area-footer .developer {
	margin:25px 0 30px;
	text-align:left;
}

.area-footer .developer a {
	border-bottom:1px solid #cecece;
	font-size:.9rem;
	font-weight:300;
	text-decoration:none;
	text-transform:uppercase;
}

.area-footer .developer a:hover {
	border-bottom-color:transparent;
}

.area-footer .link {
	margin:0 0 15px;
}

.area-footer .link a {
	border-bottom:1px solid transparent;
	font-family:'PT Sans Narrow',sans-serif;
	font-size:1.4rem;
	font-weight:700;
	margin:0 0 15px;
	line-height:1;
	text-decoration:none;
	text-transform:uppercase;
}

.area-footer .link a:hover {
	border-bottom-color:#fff;
	color:#fff;
}

.area-footer .phone {
	font-size:1.4rem;
	font-style:normal;
	font-weight:300;
	margin:15px 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-footer .phone:nth-of-type(1) {
	margin-top:0;
}

.area-footer .phone .icon {
	height:17px;
	left:-24px;
	top:3px;
	width:12px;
}

.area-footer .phone span {
	display:inline-block;
	font-size:1.6rem;
	font-weight:700;
	margin:0 5px;
}

.area-footer .adress {
	font-size:1rem;
	font-weight:300;
	margin:25px 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-footer .adress .icon {
	height:18px;
	left:-24px;
	top:-2px;
	width:10px;
}

.area-footer .adress .hint {
	color:#ececec;
	display:block;
	font-size:.9rem;
	font-style:italic;
	margin-top:5px;
	text-shadow:none;
}

.area-footer .mail {
	margin:20px 0 0 25px;
	position:relative;
}

.area-footer .mail .icon {
	height:12px;
	left:-25px;
	top:0;
	width:12px;
}

.area-footer .mail a {
	border-bottom:1px solid #fff;
	font-size:1rem;
	font-style:italic;
	font-weight:300;
	text-decoration:none;
	text-shadow:1px 1px 0 #000;
}

.area-footer .mail a:hover {
	border-bottom-color:transparent;
}

.area-footer .time {
	font-size:1rem;
	font-weight:300;
	margin:25px 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-footer .time .icon {
	height:12px;
	left:-25px;
	top:0;
	width:12px;
}

.area-advantages>.wrapper {
	height:250px;
	position:relative;
	width:1000px;
}

.area-advantages>.wrapper:before,.area-advantages>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.area-advantages>.wrapper:before {
	background-color:#fff;
	height:100%;
	top:0;
	z-index:-2;
}

.area-advantages>.wrapper:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:-10px;
	height:10px;
	z-index:-1;
}

.area-advantages .item {
	height:250px;
	position:relative;
	text-align:center;
	width:250px;
}

.area-advantages .item .image {
	height:100px;
	left:50%;
	margin-left:-50px;
	position:absolute;
	text-align:center;
	top:40px;
	vertical-align:middle;
	width:100px;
}

.area-advantages .item .image img {
	height:auto;
	max-height:100px;
	max-width:100px;
	width:auto;
}

.area-advantages .item .count {
	color:#01171F;
	font-family:"PT Sans",sans-serif;
	font-size:4.5rem;
	font-weight:700;
	opacity:0;
	position:absolute;
	left:0;
	top:70px;
	width:100%;
}

.area-advantages .item .text {
	color:#01171F;
	font-size:1.5rem;
	font-style:italic;
	font-weight:300;
	left:0;
	line-height:1.2;
	opacity:0;
	position:absolute;
	top:160px;
	-moz-transition:opacity .6s ease,-moz-transform .6s ease;
	-o-transition:opacity .6s ease,-o-transform .6s ease;
	-webkit-transition:opacity .6s ease,-webkit-transform .6s ease;
	transition:opacity .6s ease,transform .6s ease;
	width:100%;
}

.area-advantages .item .text {
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
}

.area-advantages .item.show .text {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.area-special {
	position:relative;
	z-index:2;
}

.area-special>.wrapper {
	position:relative;
	width:1000px;
}

.area-special>.wrapper:before,.area-special>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.area-special>.wrapper:before {
	height:100%;
	top:0;
	z-index:-2;
}

.area-special .item {
	text-align:center;
	width:200px;
}

.area-special .image {
	height:100px;
	margin:0 auto;
	width:100px;
}

.area-special .title {
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.4rem;
	font-weight:700;
	line-height:1.4;
	margin-top:20px;
	text-transform:uppercase;
}

.area-white>.wrapper {
	padding:50px 0;
	position:relative;
	width:1000px;
}

.area-white>.wrapper:before,.area-white>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.area-white>.wrapper:before {
	background-color:#fff;
	height:100%;
	top:0;
	z-index:-2;
}

.area-white>.wrapper:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:0;
	height:60px;
	opacity:.15;
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
	z-index:-1;
}

.area-white-lite>.wrapper {
	margin-bottom:45px;
	padding:40px 45px 45px;
	position:relative;
	width:100%;
}

.area-white-lite>.wrapper:before,.area-white-lite>.wrapper:after {
	content:'';
	left:0;
	position:absolute;
	width:100%;
}

.area-white-lite>.wrapper:before {
	background:#fff;
	background:-moz-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:-webkit-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:linear-gradient(to bottom,#fff 0%,#fff 65%,#f6f6f6 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f6f6f6',GradientType=0);
	border-radius:10px;
	height:100%;
	top:0;
	z-index:-1;
}

.area-white-lite>.wrapper:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:-11px;
	height:10px;
	opacity:.6;
	z-index:-1;
}

.area-white-skew>.wrapper {
	padding:35px 0 25px;
	position:relative;
	width:1000px;
}

.area-white-skew>.wrapper:before {
	background-color:#fff;
	border:1px solid #a6a6a6;
	border-radius:15px;
	content:'';
	height:100%;
	left:50%;
	margin-left:-650px;
	position:absolute;
	top:0;
	-moz-transform:skew(-12deg);
	-ms-transform:skew(-12deg);
	-webkit-transform:skew(-12deg);
	transform:skew(-12deg);
	width:1300px;
	z-index:-1;
}

.area-white-skew-lite>.wrapper {
	padding:30px 0 15px;
	position:relative;
	width:1000px;
}

.area-white-skew-lite>.wrapper:before {
	background-color:#fff;
	border:1px solid #a6a6a6;
	border-radius:15px;
	content:'';
	height:100%;
	left:50%;
	margin-left:-590px;
	position:absolute;
	top:0;
	-moz-transform:skew(-12deg);
	-ms-transform:skew(-12deg);
	-webkit-transform:skew(-12deg);
	transform:skew(-12deg);
	width:1180px;
	z-index:-1;
}

.area-tariffs>.wrapper {
	position:relative;
	width:1000px;
}

.area-tariffs .item {
	margin:90px 0 50px 50px;
	padding:120px 25px 35px;
	position:relative;
	width:300px;
}

.area-tariffs .item:before,.area-tariffs .item:after {
	content:'';
	left:0;
	position:absolute;
	width:100%;
	z-index:-1;
}

.area-tariffs .item:before {
	background:#09294e;
	background:-moz-linear-gradient(top,#09294e 0%,#15529d 100%);
	background:-webkit-linear-gradient(top,#09294e 0%,#15529d 100%);
	background:linear-gradient(to bottom,#09294e 0%,#15529d 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#09294e',endColorstr='#15529d',GradientType=0);
	height:100%;
	top:0;
}

.area-tariffs .item:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:-11px;
	height:10px;
	opacity:.6;
}

.area-tariffs .item:nth-of-type(3n-2) {
	margin-left:0;
}

.area-tariffs .item:nth-of-type(3n-2):before {
	opacity:.6;
}

.area-tariffs .item:nth-of-type(3n-1):before {
	opacity:.8;
}

.area-tariffs .item .image {
	height:180px;
	left:50%;
	margin-left:-90px;
	position:absolute;
	top:-90px;
	width:180px;
}

.area-tariffs .item .title {
	color:#fff;
	font-size:1.6rem;
	font-weight:700;
	margin-bottom:25px;
	text-transform:uppercase;
	text-align:center;
}

.area-tariffs .item .text {
	color:#fff;
	font-size:1rem;
	font-style:italic;
	line-height:1.3;
	margin:20px 0 0;
	padding:0 0 0 18px;
	position:relative;
}

.area-tariffs .item .text:before {
	background-color:#fff;
	border-radius:3px;
	content:'';
	height:6px;
	left:0;
	position:absolute;
	top:4px;
	width:6px;
}

.area-tariffs .item .buttons {
	margin-top:30px;
	text-align:center;
}

.area-tariffs .item .buttons .button:before {
	background-color:#01171F;
}

.area-tariffs .item .buttons .button:hover {
	color:#01171F;
}

.area-tariffs .item .buttons .button:hover:before {
	background-color:#fff;
}

.area-price>.wrapper {
	position:relative;
	width:100%;
}

.area-price .head,.area-price .item {
	display:flex;
}

.area-price .head {
	background-color:#2497C9;
	padding:21px 0;
}

.area-price .item {
	background-color:#fff;
	padding:17px 0;
}

.area-price .item:nth-of-type(2n) {
	background-color:#3A99D8;
}

.area-price .head>div,.area-price .item>div {
	align-self:center;
	text-align:center;
	width:180px;
}

.area-price .head>div {
	color:#fff;
	font-size:1.2rem;
	font-weight:700;
	padding:0 15px;
	text-transform:uppercase;
}

.area-price .item>div {
	font-size:1.1rem;
	font-style:italic;
	font-weight:700;
	line-height:1.4;
	padding:0 15px;
}

.area-price .head>div:nth-of-type(1),.area-price .item>div:nth-of-type(1) {
	flex-grow:2;
	padding-left:30px;
	text-align:left;
	width:auto;
}

.area-price .item>div:nth-of-type(1) {
	font-size:1rem;
	font-weight:400;
}

.area-price .item>div .currency {
	font-size:1rem;
	font-weight:400;
	margin-left:8px;
}

.area-features .item {
	font-size:0;
	line-height:0;
	letter-spacing:0;
}

.area-features .item:nth-of-type(2n) {
	background-color:#D4E6F1;
}

.area-features .item span {
	display:inline-block;
	font-size:1rem;
	font-weight:400;
	line-height:1.3;
	margin:0;
	padding:10px;
	text-transform:none;
	vertical-align:top;
}

.area-features .item .label,.area-features .item span:nth-of-type(1) {
	color:#6a6a6a;
	font-family:'PT Sans Narrow';
	font-size:.9rem;
	letter-spacing:.5px;
	margin-top:2px;
	text-align:right;
	text-transform:uppercase;
	width:120px;
}

.area-features .item .value,.area-features .item span:nth-of-type(2) {
	color:#000;
	text-align:left;
	width:230px;
}

.area-through-element .item {
	color:#01171F;
	font-size:1rem;
	font-style:italic;
	margin-top:22px;
	padding-left:35px;
	position:relative;
}

.area-through-element .item:nth-of-type(1) {
	margin-top:0;
}

.area-through-element .item .icon {
	left:0;
	top:0;
}

.area-through-element .item.stock .icon {
	top:-1px;
}

.area-through-element .ya-share2 {
	margin-top:20px;
}

.area-call {
	position:relative;
}

.area-call>.wrapper {
	background-color:#1897CC;
	margin:0 auto;
	padding:30px 0 40px;
	text-align:center;
	width:1000px;
}

.area-call .text {
	font-size:1.8rem;
	font-weight:300;
	line-height:1.4;
}

.area-call .button {
	background:#19599A;
	color:#fff;
	font-size:1rem;
	font-weight:400;
	padding-left:45px;
	text-shadow:none;
	text-transform:uppercase;
}

.area-call .button:hover {
	background-color:#1a1a1a;
	color:#fff;
}

.area-call .button .icon {
	background-image:url(../images/icon-phone-white.png);
	height:17px;
	left:22px;
	top:9px;
	width:8px;
}

.area-contacts {
	position:relative;
	font-size:0;
}

.area-contacts>.wrapper {
	margin:0 auto;
	width:100%;
}

.area-contacts .item {
	color:#1a1a1a;
	font-size:1.1rem;
	line-height:1.5;
	margin-top:30px;
}

.area-contacts .item:nth-of-type(1) {
	margin-top:0;
}

.area-contacts .item-adress {
	color:#333;
	font-size:1.1rem;
	font-style:italic;
	padding:0 0 0 25px;
	position:relative;
}

.area-contacts .item-adress:before {
	background:url(../images/icon-map-black.png) no-repeat;
	background-size:100% auto;
	content:'';
	height:15px;
	left:0;
	position:absolute;
	top:6px;
	width:10px;
}

.area-contacts .item-mail {
	padding:0 0 0 25px;
	position:relative;
}

.area-contacts .item-mail:before {
	background:url(../images/icon-mail-black.png) no-repeat;
	background-size:100% auto;
	content:'';
	height:12px;
	left:0;
	position:absolute;
	top:7px;
	width:12px;
}

.area-contacts .item-mail a {
	border-bottom:1px dashed #11579B;
	color:#11579B;
	font-size:1.1rem;
	font-style:italic;
	text-decoration:none;
}

.area-contacts .item-mail a:hover {
	border-bottom-color:transparent;
}

.area-contacts .item-mail span {
	color:#008001;
}

.area-contacts .item-phone {
	font-size:1.4rem;
	font-style:normal;
	padding:0 0 0 25px;
	position:relative;
}

.area-contacts .item-phone:before {
	background:url(../images/icon-phone-black.png) no-repeat;
	background-size:100% auto;
	content:'';
	height:17px;
	left:0;
	position:absolute;
	top:7px;
	width:12px;
}

.area-contacts .item-phone span {
	display:inline-block;
	font-size:1.6rem;
	font-weight:700;
	margin:0 5px;
}

.area-contacts .item-time {
	color:#333;
	font-size:1.1rem;
	padding:0 0 0 25px;
	position:relative;
}

.area-contacts .item-time:before {
	background:url(../images/icon-time-black.png) no-repeat;
	background-size:100% auto;
	content:'';
	height:12px;
	left:0;
	position:absolute;
	top:6px;
	width:12px;
}

.area-map {
	position:absolute;
	margin:0 auto;
	position:relative;
	z-index:10;
}

.area-map>.wrapper {
	background:#184d81;
	background:-moz-linear-gradient(top,#184d81 0%,#1897cc 100%);
	background:-webkit-linear-gradient(top,#184d81 0%,#1897cc 100%);
	background:linear-gradient(to bottom,#184d81 0%,#1897cc 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#184d81',endColorstr='#1897cc',GradientType=0);
	box-shadow:14px 10px 24px 0 rgba(0,0,0,0.25);
	left:0;
	margin:0;
	padding:30px 30px 35px;
	position:absolute;
	top:0;
	width:370px;
}

.area-map .phone {
	color:#fff;
	font-size:1.4rem;
	font-style:normal;
	font-weight:300;
	margin:0 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-map .phone .icon {
	height:15px;
	left:-23px;
	top:5px;
	width:7px;
}

.area-map .phone span {
	display:inline-block;
	font-size:1.6rem;
	font-weight:700;
	margin:0 5px;
}

.area-map .adress {
	color:#fff;
	font-size:1rem;
	font-weight:300;
	margin:25px 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-map .adress .icon {
	height:18px;
	left:-24px;
	top:-2px;
	width:10px;
}

.area-map .adress .hint {
	color:#ececec;
	display:block;
	font-size:.9rem;
	font-style:italic;
	margin-top:5px;
	text-shadow:none;
}

.area-map .mail {
	margin:20px 0 0 25px;
	position:relative;
}

.area-map .mail .icon {
	height:12px;
	left:-25px;
	top:0;
	width:12px;
}

.area-map .mail a {
	border-bottom:1px solid #fff;
	color:#fff;
	font-size:1rem;
	font-style:italic;
	font-weight:300;
	text-decoration:none;
	text-shadow:1px 1px 0 #000;
}

.area-map .mail a:hover {
	border-bottom-color:transparent;
}

.area-map .time {
	color:#fff;
	font-size:1rem;
	font-weight:300;
	margin:25px 0 0 25px;
	position:relative;
	text-shadow:1px 1px 0 #000;
}

.area-map .time .icon {
	height:12px;
	left:-25px;
	top:0;
	width:12px;
}

.area-map .button {
	background-color:#fff;
	color:#fff;
}

.area-map .button:hover {
	background-color:#3498DB;
	color:#fff;
}

.area-map .button .icon {
	height:20px;
	left:10px;
	top:10px;
	width:19px;
}

.block-ajax {
	display:none;
}

.block-articles {
	margin-top:50px;
}

.block-articles>.wrapper {
	position:relative;
}

.block-articles .title {
	margin-bottom:40px;
}

.block-articles .title a,.block-articles .title span {
	color:#1a1a1a;
	font-size:2.1rem;
	font-weight:700;
	text-transform:uppercase;
}

.block-articles .title a {
	border-bottom:1px solid transparent;
	text-decoration:none;
}

.block-articles .title a:hover {
	border-bottom-color:#ccc;
}

.block-articles .item {
	margin-bottom:50px;
}

.block-basket-fixed {
	background-color:rgba(0,0,0,0.8);
	bottom:0;
	height:60px;
	left:0;
	position:fixed;
	text-align:left;
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
	-moz-transition:-moz-transform .4s ease;
	-o-transition:-o-transform .4s ease;
	-webkit-transition:-webkit-transform .4s ease;
	transition:transform .4s ease;
	width:100%;
	z-index:200;
}

.block-basket-fixed.show {
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
}

.block-basket-fixed>.wrapper {
	margin:0 auto;
	text-align:right;
	width:1000px;
}

.block-basket-fixed .count,.block-basket-fixed .price,.block-basket-fixed .buttons {
	display:inline-block;
	vertical-align:top;
}

.block-basket-fixed .count,.block-basket-fixed .price {
	line-height:1;
	margin:20px 30px 0 0;
}

.block-basket-fixed .count span,.block-basket-fixed .price span {
	color:#fff;
	display:inline-block;
	vertical-align:top;
}

.block-basket-fixed .count .label,.block-basket-fixed .price .label {
	font-size:.9rem;
	font-weight:400;
	line-height:1;
	margin:9px 10px 0 0;
	text-transform:uppercase;
}

.block-basket-fixed .count .value,.block-basket-fixed .price .value {
	font-size:1.4rem;
	font-weight:700;
	display:inline-block;
	line-height:1.4;
}

.block-basket-fixed .price .label:after {
	display:none;
}

.block-basket-fixed .price .value:after {
	color:#fff;
}

.block-basket-fixed .buttons {
	margin:15px 0 0;
}

.block-basket-order {
	margin-bottom:50px;
	margin-top:50px;
}

.block-basket-order .item {
	margin:0 0 40px;
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
}

.block-basket-order .item.remove {
	opacity:0;
	height:0;
	margin:0;
}

.block-basket-order .item .link {
	font-size:1.2rem;
	margin:5px 25px 0 0;
	line-height:1.3;
	width:400px;
}

.block-basket-order .item .price {
	margin:5px 25px 0 0;
	width:120px;
}

.block-basket-order .item .price span {
	color:#1a1a1a;
	display:inline-block;
	font-size:1.1rem;
	font-weight:300;
	line-height:1;
	margin:0 10px 0 0;
	vertical-align:top;
}

.block-basket-order .item .price span:after {
	color:#1a1a1a;
	content:'р';
	font-size:1rem;
	font-weight:300;
	margin:0 0 0 7px;
	text-transform:uppercase;
	top:1px;
	display:none;
}

.block-basket-order .item .count {
	margin:0 25px 0 0;
	text-align:center;
	width:110px;
}

.block-basket-order .item .count span {
	display:inline-block;
	margin:0 0 0 15px;
}

.block-basket-order .item .total {
	margin:5px 25px 0 0;
	width:140px;
	text-align:right;
}

.block-basket-order .item .total span {
	color:#1a1a1a;
	display:inline-block;
	font-size:1.1rem;
	font-weight:700;
	line-height:1;
	margin:0 10px 0 0;
	vertical-align:top;
}

.block-basket-order .item total span:after {
	color:#1a1a1a;
	content:'р';
	font-size:1rem;
	font-weight:400;
	margin:0 0 0 7px;
	text-transform:uppercase;
	top:1px;
	display:none;
}

.block-basket-order .item .remove {
	margin-top:4px;
	text-align:right;
	width:70px;
}

.block-basket-order .item .remove a {
	background-color:#EA212D;
	color:#fff;
	font-size:.8rem;
	font-weight:300;
	padding:8px 13px;
	text-decoration:none;
	text-transform:uppercase;
}

.block-basket-order .item .remove a:hover {
	background-color:#1a1a1a;
}

.block-basket-order .buttons {
	margin-top:30px;
}

.block-basket-order .buttons a {
	color:#fff;
}

@-webkit-keyframes widgetPulse {
	50% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity:1;
	}
	
	100% {
		-webkit-transform:scale(2,2);
		transform:scale(2,2);
		opacity:0;
	}
}

@keyframes widgetPulse {
	50% {
		-webkit-transform:scale(1,1);
		transform:scale(1,1);
		opacity:1;
	}
	
	100% {
		-webkit-transform:scale(2,2);
		transform:scale(2,2);
		opacity:0;
	}
}

.block-buttons {
	bottom:60px;
	left:0;
	position:fixed;
	text-align:right;
	width:100%;
	z-index:200;
}

.block-buttons>.wrapper {
	margin:0;
	text-align:right;
	min-width:1000px;
	width:100%;
}

.block-buttons .item {
	display:block;
	position:absolute;
	right:30px;
	height:40px;
	width:40px;
}

.block-buttons .item a {
	background:#3A99D8;
	box-sizing:border-box;
	border-radius:100%;
	cursor:pointer;
	display:block;
	height:100%;
	left:50%;
	margin:-20px 0 0 -20px;
	position:absolute;
	top:50%;
	width:100%;
}

.block-buttons .item a:before,.block-buttons .item a:after {
	content:'';
}

.block-buttons .item a:before {
	-webkit-animation:widgetPulse infinite 1.5s;
	animation:widgetPulse infinite 1.5s;
	border:1px solid #3A99D8;
	border-radius:50%;
	bottom:0;
	left:0;
	position:absolute;
	right:0;
	top:0;
	z-index:1;
}

.block-buttons .item a:after {
	background:#3A99D8;
	border-radius:calc(100% + 8px);
	-webkit-height:calc(100% + 8px);
	height:calc(100% + 8px);
	left:-4px;
	opacity:.2;
	position:absolute;
	top:-4px;
	-webkit-width:calc(100% + 8px);
	width:calc(100% + 8px);
	z-index:2;
}

.block-buttons .item.button-scroll {
	bottom:170px;
}

.block-buttons .item.button-scroll {
	-moz-transform:scale(0);
	-ms-transform:scale(0);
	-webkit-transform:scale(0);
	transform:scale(0);
	-moz-transition:-moz-transform .4s ease;
	-o-transition:-o-transform .4s ease;
	-webkit-transition:-webkit-transform .4s ease;
	transition:transform .4s ease;
}

.block-buttons .item.button-scroll.show {
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-webkit-transform:scale(1);
	transform:scale(1);
}

.block-buttons .item.button-scroll .icon {
	height:20px;
	left:12px;
	top:9px;
	width:16px;
}

.block-buttons .item.button-scroll a:before {
	display:none;
}

.block-buttons .item.button-message {
	bottom:100px;
}

.block-buttons .item.button-message .icon {
	left:12px;
	top:13px;
}

.block-buttons .item.button-message a:before {
	animation-delay:2s;
}

.block-buttons .item.button-call {
	bottom:30px;
}

.block-buttons .item.button-call a:before {
	animation-delay:1s;
}

.block-buttons .item.button-call .icon {
	left:13px;
	top:11px;
}

.block-catalog {
	margin:30px 0 0;
}

.block-catalog-filter {
	margin:0;
}

.block-catalog-menu {
	margin-top:30px;
}

.block-catalog>.wrapper {
	max-width:100%;
	position:relative;
	z-index:1;
}

.block-catalog-filter>.wrapper,.block-catalog-menu>.wrapper {
	max-width:100%;
}

.block-catalog>.wrapper>.title {
	margin-bottom:30px;
	text-align:left;
}

.block-catalog>.wrapper>.title a,.block-catalog>.wrapper>.title span {
	color:#1a1a1a;
	font-family:"PT Sans",sans-serif;
	font-size:2.1rem;
	font-weight:700;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
}

.block-catalog>.wrapper>.title a {
	border-bottom:1px solid #2497C9;
	color:#2497C9;
}

.block-catalog>.wrapper>.title a:hover {
	border-bottom-color:transparent;
}

.block-catalog-menu>.wrapper>.title {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.3rem;
	font-weight:700;
	margin:30px 0 20px;
	text-align:left;
	text-transform:uppercase;
}

.block-catalog-menu>.wrapper>.title a,.block-catalog-menu>.wrapper>.title span {
	background-color:#1C4E7F;
	display:block;
	color:#fff;
	font-size:1.3rem;
	padding:15px 25px 12px;
}

.block-catalog .error {
	background-color:#fff;
	border:1px solid #2497C9;
	margin:20px 0 0;
	padding:10px 20px;
}

.block-catalog .sections {
	position:relative;
	text-align:center;
}

.block-catalog .sections .item {
	margin:0 0 32px 40px;
	position:relative;
	width:220px;
	z-index:1;
}

.block-catalog .sections .item:nth-of-type(3n-2) {
	margin-left:0;
}

.block-catalog .sections .item .image,.block-catalog .sections .item .link,.block-catalog .sections .item .lite {
	display:block;
}

.block-catalog .sections .image {
	background-color:#fff;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	height:220px;
	position:relative;
	width:220px;
}

.block-catalog .sections .image.no-photo {
	background-image:url(../images/nophoto.jpg);
}

.block-catalog .sections .image:before {
	background:url(../images/shadow.png) center top no-repeat;
	background-size:100% 100%;
	bottom:-11px;
	content:'';
	height:10px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-catalog .sections .item .image>a {
	height:100%;
	overflow:hidden;
	position:relative;
	width:100%;
	z-index:1;
}

.block-catalog .sections .item .image>a:before,.block-catalog .sections .item .image>a:after {
	left:0;
	position:absolute;
	width:100%;
}

.block-catalog .sections .item .image>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	opacity:0;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:2;
}

.block-catalog .sections .item .image>a:after {
	color:#fff;
	content:'Подробнее';
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.6rem;
	font-weight:700;
	height:16px;
	line-height:1;
	margin-top:-8px;
	opacity:0;
	text-align:center;
	top:50%;
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
	-moz-transition:opacity .4s ease,-moz-transform .4s ease;
	-o-transition:opacity .4s ease,-o-transform .4s ease;
	-webkit-transition:opacity .4s ease,-webkit-transform .4s ease;
	transition:opacity .4s ease,transform .4s ease;
	text-transform:uppercase;
	z-index:3;
}

.block-catalog .sections .item .image>a img {
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-webkit-transform:scale(1);
	transform:scale(1);
	-moz-transition:-moz-transform .2s ease;
	-o-transition:-o-transform .2s ease;
	-webkit-transition:-webkit-transform .2s ease;
	transition:transform .2s ease;
}

.block-catalog .sections .item .image>a:hover:before {
	opacity:.5;
}

.block-catalog .sections .item .image>a:hover:after {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.block-catalog .sections .item .image>a:hover img {
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
}

.block-catalog .sections .link {
	line-height:1;
	margin:25px 0 0;
	position:relative;
	text-align:left;
	z-index:1;
}

.block-catalog .sections .link a {
	border-bottom:1px solid #2497C9;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.3rem;
	font-weight:700;
	line-height:1.3;
	text-decoration:none;
	text-transform:uppercase;
	vertical-align:middle;
}

.block-catalog .sections .link a:hover {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-catalog .sections .lite {
	color:#01171F;
	font-weight:1.1rem;
	font-style:italic;
	line-height:1.4;
	margin:18px 0 0;
	opacity:.5;
	-moz-transition:opacity .2s ease;
	-o-transition:opacity .2s ease;
	-webkit-transition:opacity .2s ease;
	transition:opacity .2s ease;
}

.block-catalog .sections .item:hover .lite {
	opacity:1;
}

.block-catalog .sections .item>.childs {
	position:relative;
	margin-bottom:0;
	margin-top:15px;
	z-index:1;
}

.block-catalog .sections .item>.childs .item {
	margin:10px 0 0;
	padding-left:20px;
	text-align:left;
}

.block-catalog .sections .item>.childs .item:nth-of-type(1) {
	margin-top:0;
}

.block-catalog .sections .item>.childs .item:before {
	background-color:#2497C9;
	border-radius:3px;
	content:'';
	height:6px;
	left:0;
	position:absolute;
	top:6.5px;
	width:6px;
}

.block-catalog .sections .item>.childs a {
	border-bottom:1px solid transparent;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.4;
	position:relative;
	text-decoration:none;
}

.block-catalog .sections .item>.childs a:hover {
	border-bottom-color:#2497C9;
}

.block-catalog .sections .item>.childs .active a {
	border-bottom-color:#2497C9;
}

.block-catalog .elements {
	margin:0;
	position:relative;
}

.block-catalog .elements>.item {
	border:1px solid #ECECEC;
	box-shadow:0 0 0 0 rgba(0,0,0,0.2);
	padding:23px 22px 0;
	position:relative;
	-webkit-transition:box-shadow .2s ease;
	-moz-transition:box-shadow .2s ease;
	-ms-transition:box-shadow .2s ease;
	-o-transition:box-shadow .2s ease;
	transition:box-shadow .2s ease;
	width:246px;
	z-index:1;
}

.block-catalog .elements>.item:before,.block-catalog .elements>.item:after {
	content:'';
	left:0;
	position:absolute;
	width:100%;
}

.block-catalog .elements>.item:before {
	background-color:#fff;
	height:100%;
	top:0;
	z-index:-2;
}

.block-catalog .elements>.item:after {
	background:#fff;
	background:-moz-linear-gradient(top,#fff 0%,#f2f2f2 100%);
	background:-webkit-linear-gradient(top,#fff 0%,#f2f2f2 100%);
	background:linear-gradient(to bottom,#fff 0%,#f2f2f2 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f2f2f2',GradientType=0);
	bottom:0;
	height:130px;
	z-index:-1;
}

.block-catalog .elements>.item:nth-of-type(3n-2) {
	margin-left:0;
}

.block-catalog .elements>.item>span {
	display:block;
}

.block-catalog .elements .item .icons {
	font-size:0;
	right:10px;
	position:absolute;
	top:10px;
	white-space:nowrap;
	z-index:2;
}

.block-catalog .elements .item .icons>span {
	display:inline-block;
	height:30px;
	margin-left:0;
	position:relative;
	width:30px;
}

.block-catalog .elements .item .icons>span .icon {
	height:100%;
	width:100%;
}

.block-catalog .elements .item .image {
	position:relative;
	-webkit-transition:-webkit-transform .4s ease;
	-moz-transition:-moz-transform .4s ease;
	-ms-transition:-ms-transform .4s ease;
	-o-transition:-o-transform .4s ease;
	transition:transform .4s ease;
	height: 202px;
	width:202px;
}

.block-catalog .elements .item .image a {
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	display: flex;
	align-items: center;
	justify-content: center;
	
	height:100%;
	position:relative;
	width:100%;
}

.block-catalog .elements .item .image a:before,.block-catalog .elements .item .image a:after {
	content:'';
	left:0;
	opacity:0;
	position:absolute;
	-webkit-transition:opacity .4s ease;
	-moz-transition:opacity .4s ease;
	-ms-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
}

.block-catalog .elements .item .image a:before {
	background-color:#fff;
	height:100%;
	z-index:1;
}

.block-catalog .elements .item .image a:after {
	color:#000;
	content:'Подробнее';
	font-family:'PT Sans',sans-serif;
	font-size:1.2rem;
	font-weight:700;
	margin-top:-10px;
	top:50%;
	text-align:center;
	text-transform:uppercase;
	z-index:2;
}

.block-catalog .elements .item .image a:hover:before {
	opacity:.7;
}

.block-catalog .elements .item .image a:hover:after {
	opacity:1;
}
.block-catalog .elements .item .image img {
	max-height: 100%;
	max-width: 100%;
}
.block-catalog .elements .item .image .icon {
	bottom:20px;
	opacity:0;
	-webkit-transition:opacity .4s ease;
	-moz-transition:opacity .4s ease;
	-ms-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	transition:opacity .4s ease;
	right:20px;
}

.block-catalog .elements .item .image:hover .icon {
	opacity:1;
}

.block-catalog .elements .item .title {
	height:43px;
	margin-top:20px;
	padding:0 5px;
	overflow:hidden;
	white-space:normal;
}

.block-catalog .elements .item .title>.wrapper {
	display:block;
	font-size:0;
	height:45px;
	overflow:hidden;
	text-align:center;
}

.block-catalog .elements .item .title>.wrapper:before {
	content:'';
	display:inline-block;
	height:100%;
	vertical-align:middle;
}

.block-catalog .elements .item .title>.wrapper span {
	color:inherit;
	display:inline-block;
	font-size:inherit;
	font-weight:inherit;
	line-height:inherit;
	text-transform:inherit;
	vertical-align:middle;
}

.block-catalog .elements .item .title a {
	border-bottom:1px dashed #2497C9;
	color:#01171F;
	font-family:'PT Sans',sans-serif;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.4;
	margin-bottom:3px;
	text-decoration:none;
	vertical-align:middle;
	width:100%;
}

.block-catalog .elements .item .title a:hover {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-catalog .elements .item .manufacturer {
	line-height:1.4;
	margin-top:14px;
}

.block-catalog .elements .item .manufacturer span {
	color:#6A6A6A;
	display:inline-block;
	font-size:1rem;
	margin-right:10px;
	text-transform:uppercase;
}

.block-catalog .elements .item .manufacturer a {
	border-bottom:1px solid #9a9a9a;
	color:#1A1A1A;
	font-size:1.2rem;
	font-weight:700;
	text-decoration:none;
}

.block-catalog .elements .item .manufacturer a:hover {
	border-bottom-color:transparent;
	color:#FC0D1B;
}

.block-catalog .elements .item .price-button {
	margin-bottom:15px;
	margin-top:15px;
	position:relative;
}

.block-catalog .elements .item .price {
	margin:18px 0 0;
	position:relative;
	text-align:left;
	white-space:nowrap;
	z-index:1;
}

.block-catalog .elements .item .price span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .elements .item .price .value {
	color:#2497C9;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.6rem;
	font-weight:700;
	line-height:1;
	position:relative;
}

.block-catalog .elements .item .price .currency {
	color:#6a6a6a;
	font-size:1.3rem;
	font-weight:400;
	font-family:"PT Sans",sans-serif;
	margin:3px 0 0 5px;
}

.block-catalog .elements .item .price .prefix {
	color:#6a6a6a;
	font-size:1.3rem;
	font-weight:400;
}

.block-catalog .elements .item .price .empty {
	color:#3a3a3a;
	font-size:1.1rem;
	font-weight:300;
	margin-top:7px;
	margin-bottom:2px;
	text-transform:uppercase;
}

.block-catalog .elements .item .price .discount {
	color:#cfcfcf;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	font-weight:700;
	margin:0;
	position:absolute;
	text-align:left;
	top:-14px;
}

.block-catalog .elements .item .price .discount span {
	display:inline-block;
	margin:0 auto;
	padding:0 5px;
	position:relative;
}

.block-catalog .elements .item .price .discount span:before {
	background-color:#F9265B;
	content:'';
	height:1px;
	left:0;
	margin-top:-1px;
	position:absolute;
	top:50%;
	width:100%;
}

.block-catalog .elements .item .responce {
	display:none;
	font-size:0;
	margin-top:15px;
}

.block-catalog .elements .item .responce span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .elements .item .responce .star {
	height:15px;
	margin-left:4px;
	margin-top:1px;
	position:relative;
	width:15px;
}

.block-catalog .elements .item .responce .star .icon {
	height:100%;
	width:100%;
}

.block-catalog .elements .item .responce .value {
	color:#1a1a1a;
	font-size:1rem;
	font-weight:400;
	margin-left:10px;
}

.block-catalog .elements .item .basket {
	bottom:0;
	position:absolute;
	right:0;
	text-align:center;
	z-index:2;
}

.block-catalog .elements .item .basket a {
	background-color:#1C4E7F;
	color:#fff;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:.9rem;
	font-weight:700;
	line-height:1;
	padding:6px 10px 5px 28px;
	position:relative;
	text-decoration:none;
	-moz-transition:background-color .2s ease,color .2s ease,opacity .2s ease;
	-o-transition:background-color .2s ease,color .2s ease,opacity .2s ease;
	-webkit-transition:background-color .2s ease,color .2s ease,opacity .2s ease;
	transition:background-color .2s ease,color .2s ease,opacity .2s ease;
	text-transform:uppercase;
	vertical-align:top;
}

.block-catalog .elements .item .basket a:hover {
	background-color:#2497C9;
}

.block-catalog .elements .item .basket a.ready {
	color:#6a6a6a;
	cursor:default;
	opacity:.3;
}

.block-catalog .elements .item .basket .icon {
	left:7px;
	top:6px;
}

.block-catalog .elements .item .features {
	margin:15px -22px 0;
}

.block-catalog .elements .item .features .item .label,.block-catalog .elements .item .features .item span:nth-of-type(1) {
	white-space:normal;
	width:100px;
}

.block-catalog .elements .item .features .item .value,.block-catalog .elements .item .features .item span:nth-of-type(2) {
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	white-space:normal;
	width:144px;
}

.block-catalog .elements-lite {
	margin:0;
	position:relative;
}

.block-catalog .elements-lite .item {
	margin-left:0!important;
	margin-right:10px!important;
}

.block-catalog .element .column-1 {
	width:340px;
}

.block-catalog .element .column-2 {
	margin:0 0 0 30px;
	width:370px;
}

.block-catalog .element .features .responce {
	font-size:0;
	margin-top:22px;
}

.block-catalog .element .features .responce span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .element .features .responce .star {
	height:15px;
	margin-left:4px;
	margin-top:1px;
	position:relative;
	width:15px;
}

.block-catalog .element .features .responce .star:nth-of-type(1) {
	margin-left:0;
}

.block-catalog .element .features .responce .star .icon {
	height:100%;
	left:0;
	top:0;
	width:100%;
}

.block-catalog .element .features .responce .value {
	color:#01171F;
	font-size:1rem;
	font-weight:400;
	margin-left:15px;
}

.block-catalog .element .features .responce .value a {
	border-bottom:1px dashed #3A99D8;
	color:inherit;
	font-size:inherit;
	text-decoration:none;
}

.block-catalog .element .column.through {
	width:245px;
}

.block-catalog .element .image {
	width:100%;
}

.block-catalog .element .title a {
	font-size:1rem;
}

.block-catalog .element .image:before {
	display:none;
	background-size:100% 100%;
	bottom:-12px;
	content:'';
	height:10px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-catalog .element .social {
	margin-top:30px;
	text-align:right;
}

.block-catalog .element .order {
	background:#184d81;
	background:-moz-linear-gradient(top,#184d81 0%,#1897cc 100%);
	background:-webkit-linear-gradient(top,#184d81 0%,#1897cc 100%);
	background:linear-gradient(to bottom,#184d81 0%,#1897cc 100%);
	margin-top:30px;
	padding:25px 30px 30px;
	text-align:right;
	vertical-align:top;
}

.block-catalog .element .price {
	display:block;
	margin:0 50px 0 0;
	position:relative;
	text-align:right;
	white-space:nowrap;
	vertical-align:top;
	z-index:1;
}

.block-catalog .element .price span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .element .price .value {
	color:#fff;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:2.5rem;
	font-weight:700;
	line-height:1;
	position:relative;
}

.block-catalog .element .price .currency {
	color:#fff;
	font-family:"PT Sans",sans-serif;
	font-size:1.5rem;
	font-weight:400;
	right:-48px;
	position:absolute;
	top:10px;
	text-transform:uppercase;
}

.block-catalog .element .price .prefix {
	color:#fff;
	font-size:1.5rem;
	font-weight:400;
	left:-54px;
	position:absolute;
	top:10px;
	text-transform:uppercase;
}

.block-catalog .element .price .empty {
	color:#3a3a3a;
	font-size:1.8rem;
	font-weight:300;
	margin-top:7px;
	text-transform:uppercase;
}

.block-catalog .element .price .discount {
	color:#fff;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:400;
	margin:0 15px 0 0;
	position:absolute;
	right:calc(100% + 60px);
	text-align:left;
	top:13px;
}

.block-catalog .element .price .discount span {
	display:inline-block;
	margin:0 auto;
	padding:0 5px;
	position:relative;
}

.block-catalog .element .price .discount span:before {
	background-color:#F9265B;
	content:'';
	height:1px;
	left:0;
	margin-top:-1px;
	position:absolute;
	top:50%;
	width:100%;
}

.block-catalog .element .buttons {
	display:block;
	margin-top:25px;
}

.block-catalog .element .basket {
	font-size:1.1rem;
	padding-left:42px;
	z-index:2;
}

.block-catalog .element .basket.ready {
	cursor:default;
	opacity:.4;
}

.block-catalog .element .basket .icon {
	left:14px;
	top:10px;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
}

.block-catalog .element .basket .icon:nth-of-type(2) {
	opacity:0;
}

.block-catalog .element .basket:hover:before {
	background-color:#1C4E7F;
}

.block-catalog .element .basket:hover .icon:nth-of-type(1) {
	opacity:0;
}

.block-catalog .element .basket:hover .icon:nth-of-type(2) {
	opacity:1;
}

.block-catalog .element .click {
	font-size:1.1rem;
	margin:0 0 0 10px;
}

.block-catalog .menu {
	width:100%;
}

.block-catalog .menu>.item {
	margin-top:15px;
	padding:0 0 0 25px;
	position:relative;
}

.block-catalog .menu>.item>a {
	border-bottom:1px solid #2497C9;
	color:#1a1a1a;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	line-height:1.4;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
	z-index:1;
}

.block-catalog .menu>.item>a .icon {
	left:-20px;
	height:8px;
	opacity:.5;
	top:4px;
	-moz-transition:left .4s ease,opacity .4s ease;
	-o-transition:left .4s ease,opacity .4s ease;
	-webkit-transition:left .4s ease,opacity .4s ease;
	transition:left .4s ease,opacity .4s ease;
	width:5px;
}

.block-catalog .menu>.item>a:hover {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-catalog .menu>.item>a:hover .icon {
	opacity:1;
	left:-15px;
}

.block-catalog .menu>.item.active>a {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-catalog .menu>.item.active>a .icon {
	opacity:1;
	left:-15px;
}

.block-catalog .menu .item>.childs {
	position:relative;
	margin-bottom:25px;
	margin-top:15px;
	z-index:1;
}

.block-catalog .menu .item>.childs .item {
	margin-top:10px;
}

.block-catalog .menu .item>.childs .item:nth-of-type(1) {
	margin-top:0;
}

.block-catalog .menu .item>.childs a {
	border-bottom:1px solid transparent;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.4;
	position:relative;
	text-decoration:none;
}

.block-catalog .menu .item>.childs a:hover {
	border-bottom-color:#2497C9;
}

.block-catalog .menu .item>.childs .active a {
	border-bottom-color:#2497C9;
}

.block-catalog .menu>.item.hits:before,.block-catalog .menu>.item.novelty:before,.block-catalog .menu>.item.sale:before {
	content:'';
	background-size:100% 100%;
	height:18px;
	left:0;
	position:absolute;
	top:1px;
	width:18px;
}

.block-catalog .menu>.item.hits:before {
	background-image:url(../images/icon-hits.png);
}

.block-catalog .menu>.item.novelty:before {
	background-image:url(../images/icon-novelty.png);
}

.block-catalog .menu>.item.sale:before {
	background-image:url(../images/icon-sale.png);
}

.block-catalog .menu>.item.hits a,.block-catalog .menu>.item.novelty a,.block-catalog .menu>.item.sale a {
	font-weight:700;
}

.block-catalog .menu>.item.hits .icon,.block-catalog .menu>.item.novelty .icon,.block-catalog .menu>.item.sale .icon {
	display:none;
}

.block-catalog .according .menu {
	padding-top:0;
	margin-top:-20px;
}

.block-catalog .according .view {
	margin-top:10px;
	text-align:right;
}

.block-catalog .according .view a {
	display:flex;
	align-items:center;
	text-decoration:none;
}

.block-catalog .according .view span:nth-of-type(1) {
	flex-grow:2;
	margin-top:2px;
}

.block-catalog .according .view span:nth-of-type(2) {
	border-bottom:1px dashed transparent;
	color:#1C4E7F;
	font-size:1rem;
	font-style:italic;
	margin-left:15px;
	-moz-transition:border-bottom .4s ease,color .4s ease;
	-o-transition:border-bottom .4s ease,color .4s ease;
	-webkit-transition:border-bottom .4s ease,color .4s ease;
	transition:border-bottom .4s ease,color .4s ease;
}

.block-catalog .according .view a:hover span:nth-of-type(2) {
	border-bottom:1px dashed #2497C9;
	color:#01171F;
}

.block-catalog .according .list {
	height:auto;
	max-height:0;
	opacity:0;
	overflow:hidden;
	-moz-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease .4s;
	-o-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease .4s;
	-webkit-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease;
	-webkit-transition-delay:0s,0s,.4s;
	transition:opacity .4s ease,max-height .4s ease,visibility 0 ease .4s;
	visibility:hidden;
}

.block-catalog .according .list.show {
	opacity:1;
	max-height:1000px;
	-moz-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease 0;
	-o-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease 0;
	-webkit-transition:opacity .4s ease,max-height .4s ease,visibility 0 ease;
	-webkit-transition-delay:0s,0s,0s;
	transition:opacity .4s ease,max-height .4s ease,visibility 0 ease 0;
	visibility:visible;
}

.block-catalog .filters {
	background-color:#fff;
	border:1px solid #cfcfcf;
	padding:20px;
	box-shadow:8px 8px 14px rgba(0,0,0,0.1);
	margin-top:30px;
}

.block-catalog .filters .subs {
	margin-bottom:20px;
}

.block-catalog .filters .sub {
	margin:0 -20px;
	padding:10px 20px;
	position:relative;
	z-index:1;
}

.block-catalog .filters .sub a {
	border-bottom:1px solid #2497C9;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	line-height:1.3;
	text-decoration:none;
	-moz-transition:border-color .4s ease;
	-o-transition:border-color .4s ease;
	-webkit-transition:border-color .4s ease;
	transition:border-color .4s ease;
}

.block-catalog .filters .sub a:before {
	background-color:#a6a6a6;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
	z-index:-1;
}

.block-catalog .filters .sub a:hover {
	border-bottom-color:transparent;
}

.block-catalog .filters .sub a:hover:before {
	opacity:.1;
}

.block-catalog .filters .sub a.active {
	border-bottom-color:transparent;
	color:#fff;
}

.block-catalog .filters .sub a.active:before {
	background-color:#2497C9;
	opacity:1;
}

.block-catalog .filters .subs2 {
	margin-bottom:20px;
}

.block-catalog .filters .sub2 {
	padding:10px 0 0 15px;
	position:relative;
	z-index:1;
}

.block-catalog .filters .sub2 a {
	border-bottom:1px solid #2497C9;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	line-height:1.3;
	position:relative;
	text-decoration:none;
	-moz-transition:border-color .4s ease;
	-o-transition:border-color .4s ease;
	-webkit-transition:border-color .4s ease;
	transition:border-color .4s ease;
}

.block-catalog .filters .sub2 a:before {
	background-color:#1a1a1a;
	border-radius:3px;
	content:'';
	height:6px;
	left:-15px;
	opacity:.5;
	position:absolute;
	top:5px;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:6px;
	z-index:-1;
}

.block-catalog .filters .sub2 a:hover {
	border-bottom-color:transparent;
}

.block-catalog .filters .sub2 a:hover:before {
	opacity:1;
}

.block-catalog .filters .sub2 a.active {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-catalog .filters .sub2 a.active:before {
	opacity:1;
}

.block-catalog .filters .item {
	margin:0 0 10px;
}

.block-catalog .filters .title {
	margin-bottom:11px;
}

.block-catalog .filters .title,.block-catalog .filters .title>span {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	font-weight:700;
	text-transform:uppercase;
}

.block-catalog .filters .title>span {
	cursor:pointer;
	display:block;
	position:relative;
}

.block-catalog .filters .title .icon {
	height:12px;
	right:0;
	top:2px;
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
	-moz-transition:-moz-transform .4s ease;
	-o-transition:-o-transform .4s ease;
	-webkit-transition:-webkit-transform .4s ease;
	transition:transform .4s ease;
	width:5px;
}

.block-catalog .filters .item.show .title .icon {
	-moz-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	-webkit-transform:rotate(270deg);
	transform:rotate(270deg);
}

.block-catalog .filters .title .prefix {
	display:inline-block;
	font-size:1.1rem;
	font-weight:400;
}

.block-catalog .filters .fields {
	height:auto;
	margin:0 0 10px;
	max-height:0;
	overflow:hidden;
	-moz-transition:max-height .4s linear,margin .4s ease;
	-o-transition:max-height .4s linear,margin .4s ease;
	-webkit-transition:max-height .4s linear,margin .4s ease;
	transition:max-height .4s linear,margin .4s ease;
	white-space:normal;
}

.block-catalog .filters .item.show .fields {
	height:auto;
	margin:0 0 30px;
	max-height:10000px;
}

.block-catalog .filters .field {
	margin:10px 0 0;
	position:relative;
	white-space:nowrap;
	vertical-align:top;
	z-index:1;
}

.block-catalog .filters .field-checkbox .input {
	display:inline-block;
}

.block-catalog .filters .field-checkbox .input:before {
	display:none;
}

.block-catalog .filters .field-checkbox .input input[type="checkbox"] {
	cursor:pointer;
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:2;
}

.block-catalog .filters .field-checkbox .input>span {
	color:#01171F;
	display:inline-block;
	font-family:"PT Sans",sans-serif;
	font-size:1rem;
	line-height:1.3;
	padding-left:21px;
	padding-top:1px;
	position:relative;
	transition:color .4s ease;
	vertical-align:top;
	white-space:normal;
	z-index:1;
}

.block-catalog .filters .field-checkbox .input>span:before {
	border:1px solid #2497C9;
	border-radius:2px;
	content:'';
	height:11px;
	left:0;
	position:absolute;
	top:3px;
	-moz-transition:background-color .4s ease,border-color .4s ease;
	-o-transition:background-color .4s ease,border-color .4s ease;
	-webkit-transition:background-color .4s ease,border-color .4s ease;
	transition:background-color .4s ease,border-color .4s ease;
	width:11px;
	z-index:1;
}

.block-catalog .filters .field-checkbox .input>span .icon {
	left:1px;
	opacity:0;
	-moz-transition:opacity .2s ease;
	-o-transition:opacity .2s ease;
	-webkit-transition:opacity .2s ease;
	transition:opacity .2s ease;
	top:2px;
	z-index:2;
}

.block-catalog .filters .field-checkbox .input>span em {
	color:#a6a6a6;
	font-family:"PT Sans Narrow",sans-serif;
	font-style:normal;
	padding-left:7px;
}

.block-catalog .filters .field-checkbox .input input[type="checkbox"]:hover+span:before {
	border-color:#01171F;
}

.block-catalog .filters .field-checkbox .input input[type="checkbox"]:checked+span:before {
	border-color:#2EC4B6;
}

.block-catalog .filters .field-checkbox .input input[type="checkbox"]:checked+span .icon {
	opacity:1;
}

.block-catalog .filters .field-checkbox .dropping {
	display:block;
	margin-left:21px;
	max-height:0;
	overflow:hidden;
	-moz-transition:max-height .4s ease;
	-o-transition:max-height .4s ease;
	-webkit-transition:max-height .4s ease;
	transition:max-height .4s ease;
}

.block-catalog .filters .field-checkbox .dropping .field {
	margin-top:10px;
}

.block-catalog .filters .field-checkbox .dropping.show {
	max-height:5000px;
}

.block-catalog .filters .field-input {
	font-size:0;
	white-space:nowrap;
}

.block-catalog .filters .field-input>span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .filters .field-input .value {
	color:#6a6a6a;
	font-size:.9rem;
	font-style:italic;
	font-weight:400;
	margin:4px 10px 0 14px;
}

.block-catalog .filters .field-input .value:nth-of-type(1) {
	margin-left:0;
}

.block-catalog .filters .field-input .input {
	position:relative;
}

.block-catalog .filters .field-input .input:before {
	content:'';
	height:100%;
	left:-1px;
	position:absolute;
	top:-1px;
	width:100%;
}

.block-catalog .filters .field-input .input input {
	height:24px;
	font-size:1rem;
	font-family:"PT Sans Narrow",sans-serif;
	padding:0 9px;
	width:62px;
}

.block-catalog .filters .buttons {
	margin-top:20px;
	text-align:center;
}

.block-catalog .filters .buttons .button[id="filters_apply"] {
	display:none;
}

.block-catalog .filters .buttons .button[id="filters_reset"]:before {
	background-color:#2497C9;
}

.block-catalog .filters .buttons .button[id="filters_reset"]:before:hover {
	background-color:#01171F;
}

.block-catalog .pages {
	margin-top:50px;
	text-align:center;
}

.block-catalog .pager {
	margin-top:30px;
}

.block-catalog .pager a {
	display:inline-block;
	font-family:'PT Sans',sans-serif;
	font-size:1rem;
	margin:0 5px;
	position:relative;
	text-decoration:none;
	vertical-align:top;
}

.block-catalog .pager .previous,.block-catalog .pager .next {
	background-color:#fff;
	border:1px solid #6a6a6a;
	border-radius:10px;
	cursor:default;
	height:20px;
	opacity:.4;
	-moz-transition:border-color .4s ease;
	-o-transition:border-color .4s ease;
	-webkit-transition:border-color .4s ease;
	transition:border-color .4s ease;
	width:20px;
}

.block-catalog .pager .previous.show,.block-catalog .pager .next.show {
	cursor:pointer;
	opacity:1;
}

.block-catalog .pager .previous.show:hover,.block-catalog .pager .next.show:hover {
	border-color:#2497C9;
}

.block-catalog .pager .previous:before,.block-catalog .pager .next:before {
	background-position:center center;
	background-repeat:no-repeat;
	background-size:auto 7px;
	content:'';
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:1;
}

.block-catalog .pager .previous {
	margin-right:15px;
}

.block-catalog .pager .previous:before {
	background-image:url(../images/icon-arrow-lite-black.png);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
}

.block-catalog .pager .next {
	margin-left:15px;
}

.block-catalog .pager .next:before {
	background-image:url(../images/icon-arrow-lite-black.png);
}

.block-catalog .pager .page-link {
	color:#6a6a6a;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	height:20px;
	padding-top:5px;
	text-align:center;
	width:20px;
}

.block-catalog .pager .page-link:hover {
	color:#2EC4B6;
	opacity:1;
}

.block-catalog .pager .page-link.active {
	color:#2497C9;
	font-weight:700;
}

.block-catalog .pager .page-link.active:before {
	border-color:#2497C9;
	opacity:1;
}

.block-catalog .pager span {
	display:inline-block;
	margin:7px 5px 0;
	vertical-align:top;
}

.block-catalog .pager span:before {
	color:#9a9a9a;
	content:'...';
	display:block;
	font-size:1.1rem;
}

.block-catalog .control {
	margin:-12px 0 0;
}

.block-catalog .control .column {
	width:50%;
}

.block-catalog .control .limit {
	text-align:right;
}

.block-catalog .control span {
	font-family:"PT Sans",sans-serif;
}

.block-catalog .control a {
	border-bottom:1px solid transparent;
	color:#6a6a6a;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	margin-left:20px;
	text-decoration:none;
	text-transform:uppercase;
}

.block-catalog .control a:nth-of-type(1) {
	margin-left:10px;
}

.block-catalog .control a:hover {
	border-bottom-color:transparent;
	color:#1C4E7F;
}

.block-catalog .control a.active {
	border-bottom-color:transparent;
	color:#2497C9;
	padding-left:18px;
	position:relative;
}

.block-catalog .control a.active:before {
	background-size:100% 100%;
	content:'';
	height:8px;
	left:0;
	position:absolute;
	top:3px;
	width:10px;
}

.block-catalog .control a[data-control-method="ASC"]:before {
	background-image:url(../images/icon-sorted-2.png);
}

.block-catalog .control a[data-control-method="DESC"]:before {
	background-image:url(../images/icon-sorted-1.png);
}

.block-catalog .control a:nth-of-type(1),.block-catalog .control .limit a {
	padding-left:0;
}

.block-catalog .control a:nth-of-type(1):before,.block-catalog .control a:nth-of-type(1):after,.block-catalog .control .limit a:before,.block-catalog .control .limit a:after {
	display:none;
}

.block-catalog .slider {
	position:relative;
}

.block-catalog .overflow {
	position:relative;
	overflow:hidden;
	white-space:nowrap;
}

.block-catalog .switch {
	margin-top:40px;
}

.block-catalog .switch .nav {
	margin-bottom:25px;
}

.block-catalog .switch .nav a {
	background-color:#fff;
	border:1px solid #cfcfcf;
	color:#01171F;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	font-weight:700;
	margin-left:20px;
	padding:11px 20px 11px 38px;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
	-moz-transition:background-color .4s ease,color .4s ease;
	-o-transition:background-color .4s ease,color .4s ease;
	-webkit-transition:background-color .4s ease,color .4s ease;
	transition:background-color .4s ease,color .4s ease;
	z-index:1;
}

.block-catalog .switch .nav a:nth-of-type(1) {
	margin-left:0;
}

.block-catalog .switch .nav a:hover {
	background-color:#2497C9;
	color:#fff;
}

.block-catalog .switch .nav a.active {
	background-color:#3A99D8;
	border-color:#3A99D8;
	color:#fff;
}

.block-catalog .switch .nav .icon {
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
}

.block-catalog .switch .nav a:nth-of-type(1) .icon {
	left:14px;
	top:11px;
}

.block-catalog .switch .nav a:nth-of-type(2) .icon {
	left:14px;
	top:11px;
}

.block-catalog .switch .nav .icon:nth-of-type(2),.block-catalog .switch .nav .active .icon:nth-of-type(1) {
	opacity:0;
}

.block-catalog .switch .nav .icon:nth-of-type(1),.block-catalog .switch .nav .active .icon:nth-of-type(2) {
	opacity:1;
}

.block-catalog .switch .nav a:hover .icon:nth-of-type(1) {
	opacity:0;
}

.block-catalog .switch .nav a:hover .icon:nth-of-type(2) {
	opacity:1;
}

.block-catalog .switch .items {
	height:auto;
	overflow:hidden;
	padding:40px 45px 45px;
	position:relative;
	-moz-transition:height .4s ease;
	-o-transition:height .4s ease;
	-webkit-transition:height .4s ease;
	transition:height .4s ease;
	width:100%;
}

.block-catalog .switch .items:before,.block-catalog .switch .items:after {
	content:'';
	left:0;
	position:absolute;
	width:100%;
}

.block-catalog .switch .items:before {
	background:#fff;
	background:-moz-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:-webkit-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:linear-gradient(to bottom,#fff 0%,#fff 65%,#f6f6f6 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f6f6f6',GradientType=0);
	border:1px solid #cfcfcf;
	height:100%;
	top:0;
	z-index:-1;
}

.block-catalog .switch .items:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:-11px;
	height:10px;
	opacity:.6;
	z-index:-1;
}

.block-catalog .switch .items>.item {
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	visibility:hidden;
	z-index:1;
}

.block-catalog .switch .items>.item.active {
	opacity:1;
	position:relative;
	visibility:visible;
	z-index:2;
}

.block-catalog .switch .item-responce .responce {
	margin-bottom:25px;
}

.block-catalog .switch .item-responce .title {
	font-size:1.4rem;
	font-family:"PT Sans",sans-serif;
	font-weight:700;
	margin-bottom:15px;
	padding-left:110px;
	position:relative;
}

.block-catalog .switch .item-responce .score {
	position:absolute;
	left:0;
	top:0;
}

.block-catalog .switch .item-responce .score span {
	display:inline-block;
	vertical-align:top;
}

.block-catalog .switch .item-responce .score .star {
	height:15px;
	margin-left:4px;
	margin-top:1px;
	position:relative;
	width:15px;
}

.block-catalog .switch .item-responce .score .star .icon {
	height:100%;
	width:100%;
}

.block-catalog .switch .item-responce .text {
	font-size:1.2rem;
	line-height:1.4;
	font-style:italic;
	font-weight:300;
}

.block-catalog .switch .item-responce form {
	margin-bottom:30px;
}

.block-catalog .switch .item-responce form .h {
	color:#1a1a1a;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.6rem;
	font-weight:700;
	margin:0 0 35px;
}

.block-catalog .switch .item-responce form .column-1 {
	width:240px;
}

.block-catalog .switch .item-responce form .column-2 {
	width:140px;
}

.block-catalog .switch .item-responce form .column-3 {
	width:100%;
}

.block-catalog .switch .item-responce form .column-4 {
	width:140px;
}

.block-catalog .switch .item-responce form .column-5 {
	margin-left:120px;
	width:550px;
}

.block-catalog .switch .item-responce form .column-6 {
	width:130px;
}

.block-catalog .switch .item-responce form select {
	height:31px;
}

.block-catalog .switch .item-responce .important-text {
	padding-top:8px;
}

.block-catalog .switch .item-responce .buttons {
	margin-top:0;
}

.block-catalog .switch .item-responce .field-score .input {
	font-size:0;
	letter-spacing:0;
	margin-top:2px;
}

.block-catalog .switch .item-responce .field-score .input:before {
	display:none;
}

.block-catalog .switch .item-responce .field-score .input span {
	background:url(../images/score.png) left top no-repeat;
	background-size:24px 66px;
	cursor:pointer;
	display:inline-block;
	height:22px;
	position:relative;
	vertical-align:top;
	width:29px;
}

.block-catalog .switch .item-responce .field-score .input span:nth-last-of-type(1) {
	width:24px;
}

.block-catalog .switch .item-responce .field-score .input span:before,.block-catalog .switch .item-responce .field-score .input span:after {
	background:url(../images/score.png) left top no-repeat;
	background-size:24px 66px;
	content:'';
	height:22px;
	left:0;
	position:absolute;
	opacity:0;
	top:0;
	-webkit-transition:opacity 200ms linear;
	-moz-transition:opacity 200ms linear;
	-ms-transition:opacity 200ms linear;
	-o-transition:opacity 200ms linear;
	transition:opacity 200ms linear;
	width:24px;
}

.block-catalog .switch .item-responce .field-score .input span:before {
	background-position:0 -22px;
	z-index:2;
}

.block-catalog .switch .item-responce .field-score .input:hover span:before {
	opacity:.8!important;
}

.block-catalog .switch .item-responce .field-score .input span:hover ~ span:before {
	opacity:0!important;
}

.block-catalog .switch .item-responce .field-score .input span:after {
	background-position:0 -44px;
	z-index:1;
}

.block-catalog .switch .item-responce .field-score .input ._error ~ span:after {
	opacity:1;
}

.block-catalog .switch .item-responce .field-score .input:hover span:after {
	opacity:0;
}

.block-catalog .switch .item-responce .field-score input[value="1"] ~ span:nth-of-type(1):before,.block-catalog .switch .item-responce .field-score input[value="2"] ~ span:nth-of-type(1):before,.block-catalog .switch .item-responce .field-score input[value="2"] ~ span:nth-of-type(2):before,.block-catalog .switch .item-responce .field-score input[value="3"] ~ span:nth-of-type(1):before,.block-catalog .switch .item-responce .field-score input[value="3"] ~ span:nth-of-type(2):before,.block-catalog .switch .item-responce .field-score input[value="3"] ~ span:nth-of-type(3):before,.block-catalog .switch .item-responce .field-score input[value="4"] ~ span:nth-of-type(1):before,.block-catalog .switch .item-responce .field-score input[value="4"] ~ span:nth-of-type(2):before,.block-catalog .switch .item-responce .field-score input[value="4"] ~ span:nth-of-type(3):before,.block-catalog .switch .item-responce .field-score input[value="4"] ~ span:nth-of-type(4):before,.block-catalog .switch .item-responce .field-score input[value="5"] ~ span:nth-of-type(1):before,.block-catalog .switch .item-responce .field-score input[value="5"] ~ span:nth-of-type(2):before,.block-catalog .switch .item-responce .field-score input[value="5"] ~ span:nth-of-type(3):before,.block-catalog .switch .item-responce .field-score input[value="5"] ~ span:nth-of-type(4):before,.block-catalog .switch .item-responce .field-score input[value="5"] ~ span:nth-of-type(5):before {
	opacity:1;
}

.block-catalog .showmore {
	display:none;
}

.region-manufacturers-elements .block-catalog .sections,.region-manufacturers-catalog .block-catalog .sections {
	margin-top:30px;
	padding:20px 0 30px;
	position:relative;
}

.region-manufacturers-elements .block-catalog .sections:before,.region-manufacturers-elements .block-catalog .sections:after,.region-manufacturers-catalog .block-catalog .sections:before,.region-manufacturers-catalog .block-catalog .sections:after {
	content:'';
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
}

.region-manufacturers-elements .block-catalog .sections:before,.region-manufacturers-catalog .block-catalog .sections:before {
	background-color:#1897CC;
	z-index:-2;
}

.region-manufacturers-elements .block-catalog .sections:after,.region-manufacturers-catalog .block-catalog .sections:after {
	background:radial-gradient(ellipse farthest-corner at center top,#0b2c4d 0%,rgba(11,44,77,0) 100%);
	z-index:-1;
}

.region-manufacturers-elements .block-catalog .sections .title,.region-manufacturers-catalog .block-catalog .sections .title {
	color:#fff;
	font-family:'PT Sans Narrow',sans-serif;
	font-size:1.8rem;
	font-weight:700;
	text-transform:uppercase;
	text-align:center;
}

.region-manufacturers-elements .block-catalog .sections .title a,.region-manufacturers-catalog .block-catalog .sections .title a {
	border-bottom:1px solid transparent;
	color:inherit;
	font-family:inherit;
	font-size:inherit;
	text-decoration:none;
}

.region-manufacturers-elements .block-catalog .sections .title a:hover,.region-manufacturers-catalog .block-catalog .sections .title a:hover {
	border-bottom-color:#fff;
}

.region-manufacturers-elements .block-catalog .sections .subsections,.region-manufacturers-catalog .block-catalog .sections .subsections {
	font-size:0;
	margin:20px -5px -15px;
	text-align:center;
}

.region-manufacturers-elements .block-catalog .sections .subsections .subsection,.region-manufacturers-catalog .block-catalog .sections .subsections .subsection {
	border-bottom:1px solid transparent;
	color:#fff;
	display:inline-block;
	font-family:'PT Sans',sans-serif;
	font-size:.9rem;
	font-weight:700;
	margin:0 15px 15px;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
	vertical-align:top;
}

.region-manufacturers-elements .block-catalog .sections .subsections .subsection:hover,.region-manufacturers-catalog .block-catalog .sections .subsections .subsection:hover {
	border-bottom-color:#fff;
}

.block-certificate {
	margin-top:50px;
	margin-bottom:-40px;
}

.block-certificate>.wrapper {
	text-align:center;
	z-index:2;
}

.block-certificate .elements .item {
	margin:0 0 50px 40px;
	position:relative;
	text-align:left;
	width:220px;
	z-index:1;
}

.block-certificate .elements .item:nth-of-type(4n-3) {
	margin-left:0;
}

.block-certificate .elements .item>span {
	display:block;
}

.block-certificate .elements .item .image {
	border-bottom:none;
	height:auto;
	left:0;
	position:relative;
	top:0;
	width:220px;
	z-index:1;
}

.block-certificate .elements .item .image:before {
	background:url(../images/shadow-top-lite.png) center top no-repeat;
	background-size:100% 100%;
	bottom:-9px;
	content:'';
	height:8px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-certificate .elements .item .image>a {
	position:relative;
	width:100%;
	z-index:1;
}

.block-clients {
	margin-top:50px;
	margin-bottom:-40px;
}

.block-clients>.wrapper {
	text-align:center;
	z-index:2;
}

.block-clients .elements .item {
	margin:0 0 80px;
	position:relative;
	text-align:left;
	width:200px;
	z-index:1;
}

.page-index .block-clients .elements .item {
	margin:0 0 45px;
}

.block-clients .elements .item:nth-of-type(4n-3) {
	margin-left:0;
}

.block-clients .elements .item>span {
	display:block;
}

.block-clients .elements .item .image {
	border-bottom:none;
	height:120px;
	left:0;
	margin:0 auto;
	position:relative;
	top:0;
	width:120px;
	vertical-align:middle;
	z-index:1;
}

.block-content-1 {
	margin-top:30px;
}

.block-content-1>.wrapper {
	max-width:100%;
	position:relative;
}

.block-content-2 {
	margin-top:30px;
}

.block-content-3 {
	margin-top:30px;
}

.block-content-4 {
	margin-top:30px;
}

.block-content-5 {
	margin-top:30px;
}

.block-content-through {
	margin-top:30px;
}

.block-crumb {
	margin:0 0 30px;
}

.block-crumb>.wrapper {
	padding:1px 20px 0;
	position:relative;
	text-align:left;
}

.block-crumb>.wrapper:before,.block-crumb>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.block-crumb>.wrapper:before {
	height:100%;
	top:0;
	z-index:-2;
}

.block-crumb>.wrapper:after {
	display:none;
	background-image:url(../images/shadow.png);
	background-size:100% 100%;
	bottom:-11px;
	height:10px;
	opacity:.6;
	z-index:-1;
}

.block-crumb a {
	border-bottom:1px dashed #2497C9;
	color:#2497C9;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	margin-right:26px;
	margin-top:15px;
	position:relative;
	text-decoration:none;
}

.block-crumb a:hover {
	border-bottom-color:transparent;
	color:#6a6a6a;
}

.block-crumb a:after {
	content:'/';
	color:#cfcfcf;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:.8rem;
	height:8px;
	opacity:.5;
	position:absolute;
	right:-16px;
	top:1px;
	width:4px;
}

.block-crumb span {
	color:#cfcfcf;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1rem;
	margin-right:0;
	margin-top:15px;
	position:relative;
	text-decoration:none;
}

.region-title+.region-crumb .block-crumb {
	margin:10px 0 0;
}

.region-title+.region-crumb .block-crumb>.wrapper {
	background-color:transparent;
	padding:0;
}

.region-title+.region-crumb .block-crumb a {
	border-bottom:1px dashed #2EC4B6;
	color:#a6a6a6;
}

.region-title+.region-crumb .block-crumb a:hover {
	color:#01171F;
}

.region-title+.region-crumb .block-crumb a:after {
	color:#a6a6a6;
}

.region-title+.region-crumb .block-crumb a:nth-last-of-type(1) {
	color:#6a6a6a;
}

.block-files {
	margin:50px 0 0;
}

.block-files>.wrapper {
	position:relative;
}

.block-files .file {
	margin:0 0 30px;
	padding:0 0 0 40px;
	position:relative;
}

.block-files .file:nth-last-of-type(1) {
	margin-bottom:0;
}

.block-files .file a {
	border-bottom:1px solid #8AB3D2;
	color:#0D66A8;
	cursor:pointer;
	font-size:1.2rem;
	text-decoration:none;
}

.block-files .file a:hover {
	border-bottom-color:transparent;
	color:#1a1a1a;
}

.block-files .file a:before {
	background:url(../images/filetype.png) 0 0 no-repeat;
	background-size:100% auto;
	content:'';
	height:26px;
	left:0;
	position:absolute;
	top:-5px;
	width:26px;
}

.block-files .file a[href$=".pdf"]:before {
	background-position:0 -104px;
}

.block-files .file a[href$=".doc"]:before,.block-files .file a[href$=".docx"]:before {
	background-position:0 -26px;
}

.block-files .file a[href$=".jpg"]:before,.block-files .file a[href$=".png"]:before,.block-files .file a[href$=".gif"]:before {
	background-position:0 -52px;
}

.block-files .file a[href$=".rar"]:before {
	background-position:0 -156px;
}

.block-files .file a[href$=".xls"]:before,.block-files .file a[href$=".xlsx"]:before {
	background-position:0 -182px;
}

.block-files .file a[href$=".zip"]:before,.block-files .file a[href$=".7z"]:before {
	background-position:0 -208px;
}

.block-files .file span {
	color:#939393;
	font-size:1rem;
	margin:0 0 0 15px;
	white-space:nowrap;
}

.block-fixed {
	position:fixed;
	-moz-transform:translate(0,-50px);
	-ms-transform:translate(0,-50px);
	-webkit-transform:translate(0,-50px);
	transform:translate(0,-50px);
	-moz-transition:-moz-transform .4s ease;
	-o-transition:-o-transform .4s ease;
	-webkit-transition:-webkit-transform .4s ease;
	transition:transform .4s ease;
}

.block-fixed.show {
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
}

.block-fixed>.wrapper {
	height:50px;
	padding-left:225px;
	position:relative;
	text-align:left;
	white-space:nowrap;
	z-index:1;
}

.block-fixed>.wrapper:before,.block-fixed>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.block-fixed>.wrapper:before {
	background:#1C4E7F;
	background:-moz-linear-gradient(top,#2497C9 0%,#1C4E7F 70%,#0B2D4E 100%);
	background:-webkit-linear-gradient(top,#2497C9 0%,#1C4E7F 70%,#0B2D4E 100%);
	background:linear-gradient(to bottom,#2497c9 0%,#1c4e7f 70%,#0b2d4e 100%);
	height:100%;
	opacity:1;
	top:0;
	z-index:-2;
}

.block-fixed>.wrapper:after {
	background-image:url(../images/shadow.png);
	background-size:100% 100%;
	bottom:-10px;
	height:10px;
	opacity:.7;
	z-index:-1;
}

.block-fixed .item {
	height:100%;
	position:relative;
	z-index:1;
}

.block-fixed .item:last-child {
	border-right:none;
	margin-right:0;
}

.block-fixed .item:first-child {
	margin-left:0;
}

.block-fixed .item:first-child:before {
	display:none;
}

.block-fixed .item>a {
	color:#fff;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	height:100%;
	line-height:1;
	padding:18px 25px 0;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
	z-index:1;
}

.block-fixed .item>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
}

.block-fixed .item>a:before {
	z-index:-1;
}

.block-fixed .item:nth-of-type(1)>a:before {
	border-radius:4px 0 0 4px;
}

.block-fixed .item:hover>a,.block-fixed .item>a:hover {
	color:#fff;
}

.block-fixed .item:hover>a:before,.block-fixed .item>a:hover:before {
	opacity:1;
}

.block-fixed .item.active>a {
	color:#fff;
}

.block-fixed .item.active>a:before {
	background-color:#0B2D4E;
	opacity:1;
}

.block-fixed .dropping {
	left:0;
	min-width:200px;
	opacity:0;
	padding:12px 0 0;
	position:absolute;
	top:100%;
	-moz-transform:translate(0,20px);
	-ms-transform:translate(0,20px);
	-webkit-transform:translate(0,20px);
	transform:translate(0,20px);
	-moz-transition:opacity .3s ease,-moz-transform .2s ease,visibility .2s ease;
	-o-transition:opacity .3s ease,-o-transform .2s ease,visibility .2s ease;
	-webkit-transition:opacity .3s ease,-webkit-transform .2s ease,visibility .2s ease;
	transition:opacity .3s ease,transform .2s ease,visibility .2s ease;
	visibility:hidden;
	white-space:normal;
	width:auto;
	z-index:25;
}

.block-fixed .dropping .dropping {
	left:100%;
	padding:0 0 0 10px;
	top:0;
}

.block-fixed>.wrapper>.item:hover>.dropping,.block-fixed .dropping .item:hover>.dropping {
	opacity:1;
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
	visibility:visible;
}

.block-fixed .dropping .item:hover>.dropping {
	-moz-transform:translate(0,-10px);
	-ms-transform:translate(0,-10px);
	-webkit-transform:translate(0,-10px);
	transform:translate(0,-10px);
}

.block-fixed .dropping>.wrapper {
	background-color:#01171F;
	font-size:0;
	line-height:0;
	padding:10px 0 15px;
}

.block-fixed .dropping .item {
	margin:0;
	position:relative;
}

.block-fixed .dropping a {
	background:none;
	color:#fff!important;
	display:block;
	font-size:1.1rem;
	font-weight:400;
	height:auto;
	line-height:1;
	max-width:350px;
	overflow:hidden;
	padding:10px 25px;
	text-align:left;
	text-overflow:ellipsis;
	text-decoration:none;
	text-shadow:none;
	-moz-transition:background-color .4s ease;
	-o-transition:background-color .4s ease;
	-webkit-transition:background-color .4s ease;
	transition:background-color .4s ease;
	white-space:nowrap;
}

.block-fixed .dropping .item:hover>a {
	background-color:#1C4E7F;
}

.block-fixed .dropping .item:hover>a:before,.block-fixed .dropping .item:hover>a:after {
	display:none;
}

.block-fixed .search {
	display:none;
	height:30px;
	margin-left:25px;
	margin-top:35px;
	position:relative;
	width:30px;
	z-index:2;
}

.block-fixed .search span {
	background-color:#fff;
	border:2px solid #FDC04B;
	border-left:transparent;
	height:100%;
	right:0;
	position:absolute;
	top:0;
	-moz-transition:width .4s ease;
	-o-transition:width .4s ease;
	-webkit-transition:width .4s ease;
	transition:width .4s ease;
	width:30px;
}

.block-fixed .search span.show {
	width:630px;
}

.block-fixed .search span:before {
	background-color:#fff;
	border:2px solid #FDC04B;
	border-right:transparent;
	content:'';
	left:-5px;
	height:calc(100% + 4px);
	position:absolute;
	top:-2px;
	-moz-transform:skewX(-14deg);
	-ms-transform:skewX(-14deg);
	-webkit-transform:skewX(-14deg);
	transform:skewX(-14deg);
	width:10px;
	z-index:-1;
}

.block-fixed .search input {
	background-color:transparent;
	border:none;
	cursor:pointer;
	height:100%;
	outline:none;
	padding:0 30px 0 20px;
	position:relative;
	width:100%;
	z-index:2;
}

.block-fixed .search input:focus {
	cursor:text;
}

.block-fixed .search input::-webkit-input-placeholder,.block-fixed .search input::-moz-placeholder,.block-fixed .search input:-moz-placeholder,.block-fixed .search input:-ms-input-placeholder {
	color:transparent;
	-moz-transition:color .4s ease .4s;
	-o-transition:color .4s ease .4s;
	-webkit-transition:color .4s ease;
	-webkit-transition-delay:.4s;
	transition:color .4s ease .4s;
}

.block-fixed .search input:focus::-webkit-input-placeholder,.block-fixed .search input:focus::-moz-placeholder,.block-fixed .search input:focus:-moz-placeholder,.block-fixed .search input:focus:-ms-input-placeholder {
	color:#333;
}

.block-fixed .search .icon {
	height:16px;
	margin-top:-8px;
	right:7px;
	top:50%;
	width:16px;
	z-index:1;
}

.block-fixed>.button-catalog {
	display:inline-block;
	margin-top:12px;
	padding-left:33px;
	position:relative;
	text-align:left;
	width:250px;
	vertical-align:top;
}

.block-fixed>.button-catalog a {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.7rem;
	font-weight:700;
	text-shadow:-1px -1px 0 #fff;
	text-decoration:none;
	text-transform:uppercase;
}

.block-fixed>.button-catalog .icon {
	left:0;
	top:3px;
}

.block-header>.wrapper {
	margin-top:0;
	position:relative;
}

.block-header .basket {
	position:absolute;
	left:770px;
	top:-10px;
}

.block-header .basket .item {
	display:block;
	padding:15px 20px 15px 85px;
	position:relative;
}

.block-header .basket .item:before {
	background-color:#fff;
	border:1px solid #a6a6a6;
	border-radius:10px;
	box-shadow:4px 4px 7px rgba(0,0,0,0.1);
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
	z-index:-1;
}

.block-header .basket .item:hover:before {
	opacity:1;
}

.block-header .basket .item>a {
	height:100%;
	left:0;
	margin:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:2;
}

.block-header .basket .title,.block-header .basket .text {
	display:block;
}

.block-header .basket .title {
	color:#2497C9;
	font-family:"PT Sans",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	margin-bottom:5px;
	text-transform:uppercase;
}

.block-header .basket .text {
	color:#01171F;
	font-size:.9rem;
	font-style:italic;
	margin-bottom:-10px;
}

.block-header .basket .text.hide {
	display:none;
}

.block-header .basket .count {
	font-family:"PT Sans Narrow",sans-serif;
}

.block-header .basket .count .value {
	color:#01171F;
	font-size:1.3rem;
}

.block-header .basket .count .label {
	color:#6a6a6a;
	font-size:.9rem;
	margin:0 0 0 4px;
}

.block-header .basket .price {
	font-family:"PT Sans Narrow",sans-serif;
	margin-left:16px;
}

.block-header .basket .price .value {
	color:#2497C9;
	font-size:1.3rem;
}

.block-header .basket .price .label {
	color:#6a6a6a;
	font-size:.9rem;
	margin:0 0 0 4px;
}

.block-header .basket .icon {
	left:27px;
	top:19px;
}

.block-info-sections {
	margin-bottom:-50px;
	margin-top:50px;
}

.block-info-sections>.wrapper {
	text-align:center;
	z-index:2;
}

.block-info-sections .item {
	background-color:#CF1323;
	-webkit-box-shadow:18px 18px 10px 0 rgba(0,0,0,0.1);
	box-shadow:18px 18px 10px 0 rgba(0,0,0,0.1);
	margin:0 0 50px;
	position:relative;
	text-align:left;
	-webkit-transition:-webkit-box-shadow .4s ease,-webkit-transform .4s ease,background-color .4s ease;
	-moz-transition:box-shadow .4s ease,-moz-transform .4s ease,background-color .4s ease;
	-ms-transition:box-shadow .4s ease,-ms-transform .4s ease,background-color .4s ease;
	-o-transition:box-shadow .4s ease,-o-transform .4s ease,background-color .4s ease;
	transition:box-shadow .4s ease,transform .4s ease,background-color .4s ease;
	width:280px;
	z-index:1;
}

.block-info-sections .item:nth-of-type(3n+2) {
	margin-left:70px;
	margin-right:70px;
}

.block-info-sections .item:nth-last-of-type(1) {
	margin-right:0;
}

.block-info-sections .item:hover {
	background-color:#1a1a1a;
	-webkit-box-shadow:18px 18px 10px 0 transparent;
	box-shadow:18px 18px 10px 0 transparent;
	-webkit-transform:scale(1.05) translate(0,-2%);
	-moz-transform:scale(1.05) rotate(0.01deg) translate(0,-2%);
	-ms-transform:scale(1.05) translate(0,-2%);
	-o-transform:scale(1.05) translate(0,-2%);
	transform:scale(1.05) rotate(0.01deg) translate(0,-2%);
}

.block-info-sections .item a {
	border-bottom:none;
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
	z-index:3;
}

.block-info-sections .item .link {
	color:#fff;
	font-size:1.5rem;
	font-weight:700;
	line-height:1.2;
	margin:0;
	padding:30px 20px;
	position:relative;
	text-align:center;
	text-transform:uppercase;
	vertical-align:middle;
	width:280px;
	z-index:2;
}

.block-info {
	margin-top:50px;
}

.block-info>.wrapper {
	position:relative;
}

.block-info .title a {
	border-bottom:1px solid transparent;
	color:#1a1a1a;
	font-size:2.1rem;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
}

.block-info .title a:hover {
	border-bottom-color:#ccc;
}

.block-info .item {
	margin-bottom:50px;
}

.block-info .item a {
	border-bottom:1px solid #8AB3D2;
	color:#0D66A8;
	text-decoration:none;
}

.block-info .item a:hover {
	border-bottom-color:transparent;
	color:#1a1a1a;
}

.block-manufacturers {
	margin:50px 0 0;
}

.block-manufacturers>.wrapper {
	position:relative;
	width:100%;
	z-index:1;
}

.block-manufacturers>.wrapper>.title {
	margin-bottom:35px;
	text-align:left;
}

.block-manufacturers>.wrapper>.title,.block-manufacturers>.wrapper>.title a {
	color:#01171F;
	display:inline-block;
	font-family:"PT Sans",sans-serif;
	font-size:2.1rem;
	font-weight:700;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
}

.block-manufacturers-front .overflow {
	position:relative;
}

.block-manufacturers .sections .item {
	height:70px;
	margin:0 0 25px 25px;
	width:128px;
}

.block-manufacturers-front .sections .item {
	margin-bottom:0;
}

.block-manufacturers .sections .item:nth-of-type(5n-4) {
	margin-left:0;
}

.block-manufacturers .sections .item .image {
	background:#fff;
	background:-moz-linear-gradient(top,#fff 0%,#f2f2f2 100%);
	background:-webkit-linear-gradient(top,#fff 0%,#f2f2f2 100%);
	background:linear-gradient(to bottom,#fff 0%,#f2f2f2 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f2f2f2',GradientType=0);
	display:block;
	height:100%;
	position:relative;
	text-align:center;
	width:100%;
}

.block-manufacturers .sections .item .image a {
	align-items:center;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	display:flex;
	font-size:1.2rem;
	height:100%;
	position:relative;
	text-align:center;
	text-decoration:none;
	width:100%;
}

.block-manufacturers .sections .item .image a span {
	align-items:center;
	width:100%;
}

.block-manufacturers .elements .item {
	margin:0 24px 24px 0;
	text-align:center;
	vertical-align:middle;
	white-space:nowrap;
}

.block-manufacturers .elements .item a {
	align-items:center;
	border-bottom:none;
	display:flex;
	height:100%;
	text-align:center;
	text-decoration:none;
	width:100%;
}

.block-manufacturers .elements .item span {
	border-bottom:1px solid #2497C9;
	display:block;
	color:#01171F;
	font-family:"PT Sans",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	-moz-transition:border-color .4s ease,color .4s ease;
	-o-transition:border-color .4s ease,color .4s ease;
	-webkit-transition:border-color .4s ease,color .4s ease;
	transition:border-color .4s ease,color .4s ease;
	width:100%;
}

.block-manufacturers .elements .item a:hover span,.block-manufacturers .elements .item a.active span {
	border-bottom-color:transparent;
	color:#2497C9;
}

.block-map {
	margin-bottom:0;
	margin-top:30px;
}

.block-map>.wrapper {
	height:540px;
	position:relative;
}

.block-map #map-container {
	font-size:0;
	height:540px;
	position:absolute;
	left:50%;
	margin-left:-960px;
	width:1920px;
	z-index:1;
}

.block-map #map-container:before,.block-map #map-container:after {
	content:'';
	height:40px;
	left:0;
	position:absolute;
	top:0;
	width:100%;
}

.block-map #map-container:before {
	background:-moz-linear-gradient(top,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,0.05) 60%,transparent 100%);
	background:-webkit-linear-gradient(top,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,0.05) 60%,transparent 100%);
	background:linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.2) 20%,rgba(0,0,0,0.05) 60%,rgba(0,0,0,0) 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d000000',endColorstr='#00000000',GradientType=0);
	z-index:2;
}

.block-map #map-container:after {
	background:url(../images/shadow.png) center top no-repeat;
	background-size:100% 100%;
	opacity:.5;
	z-index:3;
}

.block-map .area-map {
	left:0;
	position:absolute;
	top:130px;
	z-index:3;
}

.block-menu {
	font-style:0;
	min-width:1000px;
	text-align:center;
	vertical-align:top;
}

.block-menu>.wrapper {
	display:inline-block;
	height:50px;
	margin:30px 0 0;
	position:relative;
	text-align:left;
	white-space:nowrap;
	vertical-align:top;
	z-index:1;
}

.block-menu>.wrapper:before,.block-menu>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.block-menu>.wrapper:before {
	background:#1C4E7F;
	background:-moz-linear-gradient(top,#2497C9 0%,#1C4E7F 70%,#0B2D4E 100%);
	background:-webkit-linear-gradient(top,#2497C9 0%,#1C4E7F 70%,#0B2D4E 100%);
	background:linear-gradient(to bottom,#2497c9 0%,#1c4e7f 70%,#0b2d4e 100%);
	height:100%;
	opacity:1;
	top:0;
	z-index:-2;
}

.block-menu>.wrapper:after {
	background-image:url(../images/shadow.png);
	background-size:100% 100%;
	bottom:-10px;
	height:10px;
	opacity:.7;
	z-index:-1;
}

.block-menu .item {
	height:100%;
	position:relative;
	z-index:1;
}

.block-menu .item:last-child {
	border-right:none;
	margin-right:0;
}

.block-menu .item:first-child {
	margin-left:0;
}

.block-menu .item:first-child:before {
	display:none;
}

.block-menu .item>a {
	color:#fff;
	display:inline-block;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	height:100%;
	line-height:1;
	padding:18px 25px 0;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
	z-index:1;
}

.block-menu .item>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
}

.block-menu .item>a:before {
	z-index:-1;
}

.block-menu .item:nth-of-type(1)>a:before {
	border-radius:4px 0 0 4px;
}

.block-menu .item:hover>a,.block-menu .item>a:hover {
	color:#fff;
}

.block-menu .item:hover>a:before,.block-menu .item>a:hover:before {
	opacity:1;
}

.block-menu .item.active>a {
	color:#fff;
}

.block-menu .item.active>a:before {
	background-color:#0B2D4E;
	opacity:1;
}

.block-menu .dropping {
	left:0;
	min-width:200px;
	opacity:0;
	padding:12px 0 0;
	position:absolute;
	top:100%;
	-moz-transform:translate(0,20px);
	-ms-transform:translate(0,20px);
	-webkit-transform:translate(0,20px);
	transform:translate(0,20px);
	-moz-transition:opacity .3s ease,-moz-transform .2s ease,visibility .2s ease;
	-o-transition:opacity .3s ease,-o-transform .2s ease,visibility .2s ease;
	-webkit-transition:opacity .3s ease,-webkit-transform .2s ease,visibility .2s ease;
	transition:opacity .3s ease,transform .2s ease,visibility .2s ease;
	visibility:hidden;
	white-space:normal;
	width:auto;
	z-index:25;
}

.block-menu .dropping .dropping {
	left:100%;
	padding:0 0 0 10px;
	top:0;
}

.block-menu>.wrapper>.item:hover>.dropping,.block-menu .dropping .item:hover>.dropping {
	opacity:1;
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	transform:translate(0,0);
	visibility:visible;
}

.block-menu .dropping .item:hover>.dropping {
	-moz-transform:translate(0,-10px);
	-ms-transform:translate(0,-10px);
	-webkit-transform:translate(0,-10px);
	transform:translate(0,-10px);
}

.block-menu .dropping>.wrapper {
	background-color:#01171F;
	font-size:0;
	line-height:0;
	padding:10px 0 15px;
}

.block-menu .dropping .item {
	margin:0;
	position:relative;
}

.block-menu .dropping a {
	background:none;
	color:#fff!important;
	display:block;
	font-size:1.1rem;
	font-weight:400;
	height:auto;
	line-height:1;
	max-width:350px;
	overflow:hidden;
	padding:10px 25px;
	text-align:left;
	text-overflow:ellipsis;
	text-decoration:none;
	text-shadow:none;
	-moz-transition:background-color .4s ease;
	-o-transition:background-color .4s ease;
	-webkit-transition:background-color .4s ease;
	transition:background-color .4s ease;
	white-space:nowrap;
}

.block-menu .dropping .item:hover>a {
	background-color:#1C4E7F;
}

.block-menu .dropping .item:hover>a:before,.block-menu .dropping .item:hover>a:after {
	display:none;
}

.block-menu .search {
	display:none;
	height:30px;
	margin-left:25px;
	margin-top:35px;
	position:relative;
	width:30px;
	z-index:2;
}

.block-menu .search span {
	background-color:#fff;
	border:2px solid #FDC04B;
	border-left:transparent;
	height:100%;
	right:0;
	position:absolute;
	top:0;
	-moz-transition:width .4s ease;
	-o-transition:width .4s ease;
	-webkit-transition:width .4s ease;
	transition:width .4s ease;
	width:30px;
}

.block-menu .search span.show {
	width:630px;
}

.block-menu .search span:before {
	background-color:#fff;
	border:2px solid #FDC04B;
	border-right:transparent;
	content:'';
	left:-5px;
	height:calc(100% + 4px);
	position:absolute;
	top:-2px;
	-moz-transform:skewX(-14deg);
	-ms-transform:skewX(-14deg);
	-webkit-transform:skewX(-14deg);
	transform:skewX(-14deg);
	width:10px;
	z-index:-1;
}

.block-menu .search input {
	background-color:transparent;
	border:none;
	cursor:pointer;
	height:100%;
	outline:none;
	padding:0 30px 0 20px;
	position:relative;
	width:100%;
	z-index:2;
}

.block-menu .search input:focus {
	cursor:text;
}

.block-menu .search input::-webkit-input-placeholder,.block-menu .search input::-moz-placeholder,.block-menu .search input:-moz-placeholder,.block-menu .search input:-ms-input-placeholder {
	color:transparent;
	-moz-transition:color .4s ease .4s;
	-o-transition:color .4s ease .4s;
	-webkit-transition:color .4s ease;
	-webkit-transition-delay:.4s;
	transition:color .4s ease .4s;
}

.block-menu .search input:focus::-webkit-input-placeholder,.block-menu .search input:focus::-moz-placeholder,.block-menu .search input:focus:-moz-placeholder,.block-menu .search input:focus:-ms-input-placeholder {
	color:#333;
}

.block-menu .search .icon {
	height:16px;
	margin-top:-8px;
	right:7px;
	top:50%;
	width:16px;
	z-index:1;
}

.block-menu>.button-catalog {
	display:inline-block;
	margin-top:12px;
	padding-left:33px;
	position:relative;
	text-align:left;
	width:250px;
	vertical-align:top;
}

.block-menu>.button-catalog a {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.7rem;
	font-weight:700;
	text-shadow:-1px -1px 0 #fff;
	text-decoration:none;
	text-transform:uppercase;
}

.block-menu>.button-catalog .icon {
	left:0;
	top:3px;
}

.block-news {
	margin-top:50px;
}

.block-news>.wrapper {
	position:relative;
}

.block-news .item {
	margin-bottom:50px;
}

.block-photos-lite>.wrapper {
	line-height:0;
	font-size:0;
	letter-spacing:-1px;
	padding:0;
	text-align:left;
	width:100%;
}

.block-photos-lite a {
	display:inline-block;
	position:relative;
	vertical-align:top;
}

.block-photos-lite a:before {
	background:url(../images/zoom.png) center center no-repeat;
	background-color:#fff;
	background-size:50% 50%;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-webkit-transition:opacity 400ms ease;
	-moz-transition:opacity 400ms ease;
	-ms-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
	width:100%;
}

.block-photos-lite a:hover:before {
	opacity:.5;
}

.block-photos-lite a {
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	height:72px;
	margin:10px 0 0 10px;
	width:72px;
}

.block-photos-lite a:nth-of-type(5n-4) {
	margin-left:0;
}

.block-photos-lite .big a {
	background-size:cover;
	height:auto;
	margin:0;
	width:100%;
}

.block-photos-lite a img {
	height:100%;
	width:100%;
}

.block-photos {
	margin-top:50px;
	margin-bottom:-20px;
	position:relative;
}

.block-photos>.wrapper {
	font-size:0;
	text-align:left;
	z-index:2;
}

.block-photos a {
	display:inline-block;
	line-height:0;
	margin:0 0 30px 30px;
	position:relative;
	vertical-align:bottom;
	width:176px;
}

.block-photos a:nth-of-type(5n-4) {
	margin-left:0;
}

.block-photos a img {
	width:100%;
}

.block-photos a:before {
	background:url(../images/zoom.png) center center no-repeat;
	background-color:rgba(255,255,255,0.7);
	background-size:contain;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-webkit-transition:opacity 400ms ease;
	-moz-transition:opacity 400ms ease;
	-ms-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
	width:100%;
}

.block-photos a:after {
	background:url(../images/shadow.png) center top no-repeat;
	background-size:100% 100%;
	bottom:-9px;
	content:'';
	height:8px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-photos a:hover:before {
	opacity:.5;
}

.block-portfolio {
	margin-top:50px;
}

.block-portfolio>.wrapper {
	z-index:2;
}

.block-portfolio-more>.wrapper {
	padding-top:45px;
}

.block-portfolio-more>.wrapper:before,.block-portfolio-more>.wrapper:after {
	content:'';
	left:50%;
	margin-left:-960px;
	position:absolute;
	width:1920px;
}

.block-portfolio-more>.wrapper:before {
	background-color:#fff;
	height:100%;
	top:0;
	z-index:-2;
}

.block-portfolio-more>.wrapper:after {
	background:url(../images/shadow.png) no-repeat;
	background-size:100% 100%;
	bottom:0;
	height:60px;
	opacity:.15;
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	transform:rotate(180deg);
	z-index:-1;
}

.block-portfolio .elements {
	margin-bottom:-50px;
	text-align:left;
}

.block-portfolio .elements .item {
	margin:0 0 50px 40px;
	position:relative;
	text-align:left;
	width:220px;
	z-index:1;
}

.block-portfolio .elements .item:nth-of-type(4n-3) {
	margin-left:0;
}

.block-portfolio .elements .item>span {
	display:block;
}

.block-portfolio .elements .item .image {
	border-bottom:none;
	height:120px;
	left:0;
	position:relative;
	top:0;
	width:220px;
	z-index:1;
}

.block-portfolio .elements .item .image:before {
	background:url(../images/shadow.png) center top no-repeat;
	background-size:100% 100%;
	bottom:-9px;
	content:'';
	height:8px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-portfolio .elements .item .image>a {
	height:100%;
	overflow:hidden;
	position:relative;
	width:100%;
	z-index:1;
}

.block-portfolio .elements .item .image>a:before,.block-portfolio .elements .item .image>a:after {
	left:0;
	position:absolute;
	width:100%;
}

.block-portfolio .elements .item .image>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	opacity:0;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:2;
}

.block-portfolio .elements .item .image>a:after {
	color:#fff;
	content:'Подробнее';
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.4rem;
	font-weight:700;
	height:14px;
	line-height:1;
	margin-top:-7px;
	opacity:0;
	text-align:center;
	top:50%;
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
	-moz-transition:opacity .4s ease,-moz-transform .4s ease;
	-o-transition:opacity .4s ease,-o-transform .4s ease;
	-webkit-transition:opacity .4s ease,-webkit-transform .4s ease;
	transition:opacity .4s ease,transform .4s ease;
	text-transform:uppercase;
	z-index:3;
}

.block-portfolio .elements .item .image>a img {
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-webkit-transform:scale(1);
	transform:scale(1);
	-moz-transition:-moz-transform .2s ease;
	-o-transition:-o-transform .2s ease;
	-webkit-transition:-webkit-transform .2s ease;
	transition:transform .2s ease;
}

.block-portfolio .elements .item .image>a:hover:before {
	opacity:.5;
}

.block-portfolio .elements .item .image>a:hover:after {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.block-portfolio .elements .item .image>a:hover img {
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	-webkit-transform:scale(1.2);
	transform:scale(1.2);
}

.block-portfolio .elements .item .link {
	line-height:1;
	margin:20px 0 0;
	position:relative;
	text-align:left;
	z-index:1;
}

.block-portfolio .elements .item .link a {
	border-bottom:1px solid transparent;
	color:#2497C9;
	font-family:"PT Sans",sans-serif;
	font-size:1.2rem;
	font-weight:700;
	line-height:1.3;
	text-decoration:none;
	vertical-align:middle;
}

.block-portfolio .elements .item .link a:hover {
	border-bottom-color:#2497C9;
	color:#1C4E7F;
}

.block-portfolio .elements .item .lite {
	color:#01171F;
	font-weight:1.1rem;
	font-style:italic;
	line-height:1.4;
	margin:15px 0 0;
	opacity:.5;
	overflow:hidden;
	-moz-transition:opacity .2s ease;
	-o-transition:opacity .2s ease;
	-webkit-transition:opacity .2s ease;
	transition:opacity .2s ease;
}

.block-portfolio .elements .item:hover .lite {
	opacity:1;
}

.block-portfolio .element>.photos {
	margin-right:50px;
	width:400px;
}

.block-portfolio .element>.features {
	width:550px;
}

.block-responce {
	margin-top:50px;
	margin-bottom:-50px;
}

.block-responce>.wrapper {
	text-align:center;
	z-index:2;
}

.page-index .block-responce {
	margin-bottom:0;
}

.page-index .block-responce>.wrapper {
	padding:45px 0 60px;
	position:relative;
}

.page-index .block-responce>.wrapper:before {
	background:url(../images/background-responce.jpg) center top;
	background-attachment:fixed;
	background-size:cover;
	content:'';
	height:100%;
	left:50%;
	margin-left:-960px;
	position:absolute;
	top:0;
	width:1920px;
}

.page-index .block-responce>.wrapper:after {
	background:url(../images/shadow.png) center top;
	background-size:100% 100%;
	bottom:-11px;
	content:'';
	height:10px;
	left:50%;
	margin-left:-960px;
	opacity:.7;
	position:absolute;
	width:1920px;
}

.block-responce .elements .item {
	background:#fff;
	background:-moz-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:-webkit-linear-gradient(top,#fff 0%,#fff 65%,#f6f6f6 100%);
	background:linear-gradient(to bottom,#fff 0%,#fff 65%,#f6f6f6 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f6f6f6',GradientType=0);
	margin:0 0 50px;
	padding:30px 35px 35px;
	position:relative;
	text-align:left;
	width:100%;
	z-index:1;
}

.page-index .block-responce .elements .item {
	margin:0 0 0 50px;
	width:300px;
}

.page-index .block-responce .elements .item:nth-of-type(1) {
	margin-left:0;
}

.block-responce .elements .item:before {
	background:url(../images/shadow-top-lite.png) center top no-repeat;
	background-size:100% 100%;
	bottom:-9px;
	content:'';
	height:8px;
	left:0;
	opacity:.8;
	position:absolute;
	width:100%;
}

.block-responce .elements .item>span {
	display:block;
}

.block-responce .elements .item .link {
	color:#01171F;
	font-weight:700;
	line-height:1;
	margin:0 0 25px;
	position:relative;
	text-align:left;
	white-space:nowrap;
	z-index:1;
}

.block-responce .elements .item .lite {
	color:#01171F;
	font-weight:1.1rem;
	font-style:normal;
	line-height:1.4;
	margin:0;
}

.block-scroll {
	position:fixed;
	height:0;
	left:0;
	top:75px;
	width:100%;
	z-index:90;
}

.block-scroll>.wrapper {
	height:0;
	margin:0 auto;
	min-width:1160px;
	position:relative;
}

.block-scroll a {
	background:url(../images/arrow-top-white.png) no-repeat #FD9091;
	background-position:center 19px;
	background-size:30px auto;
	border-radius:30px;
	cursor:pointer;
	font-size:0;
	height:60px;
	opacity:0;
	position:absolute;
	right:0;
	text-decoration:none;
	top:0;
	-moz-transform:translate(0,-150px);
	-ms-transform:translate(0,-150px);
	-webkit-transform:translate(0,-150px);
	-o-transform:translate(0,-150px);
	transform:translate(0,-150px);
	-webkit-transition:background-color .4s ease,opacity .4s ease,transform .4s ease;
	-moz-transition:background-color .4s ease,opacity .4s ease,transform .4s ease;
	-ms-transition:background-color .4s ease,opacity .4s ease,transform .4s ease;
	-o-transition:background-color .4s ease,opacity .4s ease,transform .4s ease;
	transition:background-color .4s ease,opacity .4s ease,transform .4s ease;
	width:60px;
	z-index:10;
}

.block-scroll.show a {
	opacity:1;
	-moz-transform:translate(0,0);
	-ms-transform:translate(0,0);
	-webkit-transform:translate(0,0);
	-o-transform:translate(0,0);
	transform:translate(0,0);
}

.block-scroll a:hover {
	background-color:#BE3A31;
	color:#fff;
}

.block-scroll a:before,.block-scroll a:after {
	display:none;
	border-radius:30px;
	content:'';
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%;
}

.block-scroll a:before {
	background-color:#FD9091;
	z-index:-2;
}

.block-scroll a:after {
	background-color:#BE3A31;
	opacity:0;
	-webkit-transition:opacity .4s ease;
	-moz-transition:opacity .4s ease;
	-ms-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:-1;
}

.block-scroll a:hover:after {
	opacity:1;
}

#scroll_top {
	position:fixed;
	display:inline-block;
	width:100%;
	height:0;
	min-width:1100px;
	left:0;
	bottom:0;
	margin:0 auto;
	z-index:90;
}

#scroll_top a {
	position:absolute;
	width:35px;
	height:20px;
	background:url(../images/scroll.png) center center no-repeat;
	background-size:100% 100%;
	display:inline-block;
	cursor:pointer;
	bottom:15px;
	right:15px;
	z-index:10;
	-webkit-border-radius:3px;
	border-radius:3px;
	opacity:.4;
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
}

#scroll_top a:hover {
	opacity:1;
}

.block-search {
	margin-top:30px;
	position:relative;
}

.block-search input,.block-search select {
	background:#f6f6f6;
	background:-moz-linear-gradient(top,#f6f6f6 0%,#fff 50%,#fff 100%);
	background:-webkit-linear-gradient(top,#f6f6f6 0%,#fff 50%,#fff 100%);
	background:linear-gradient(to bottom,#f6f6f6 0%,#fff 50%,#fff 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6',endColorstr='#ffffff',GradientType=0);
	border:1px solid #CCC;
	color:#595959;
	font-size:1rem;
	font-style:italic;
	outline:none;
	padding:9px 14px;
	-webkit-transition:border-color .4s ease;
	-moz-transition:border-color .4s ease;
	-ms-transition:border-color .4s ease;
	-o-transition:border-color .4s ease;
	transition:border-color .4s ease;
	width:100%;
}

.block-search input:focus,.block-search select:focus {
	border:1px solid #6A6A6A;
}

.block-search .button {
	padding-left:48px;
}

.block-search .button .icon {
	left:18px;
	top:14px;
}

.block-sections {
	margin-top:30px;
}

.block-sections .item {
	margin:20px 20px 0 0;
}

.block-sections .item .link {
	color:#fff;
	font-size:1.1rem;
	font-weight:700;
	margin:0;
}

.block-sections .item .link a {
	background-color:#346A9A;
	border-bottom-color:transparent;
	display:inline-block;
	padding:10px 14px;
}

.block-sections .item .link a:hover {
	background-color:#1a1a1a;
	color:#fff;
}

.block-service {
	margin-top:50px;
}

.block-service>.wrapper {
	text-align:center;
	z-index:2;
}

.block-service .sections {
	margin-bottom:-50px;
}

.block-service .sections .item {
	margin-bottom:50px;
	padding:0 10px;
	position:relative;
	text-align:center;
	width:200px;
	z-index:1;
}

.block-service .sections .item>span {
	display:block;
}

.block-service .sections .item .image {
	background-color:#F99D4A;
	border:4px solid #F99D4A;
	border-radius:50px;
	box-shadow:12px 12px 21px rgba(0,0,0,0.2);
	height:100px;
	margin:0 auto;
	overflow:hidden;
	width:100px;
	z-index:1;
}

.block-service .sections .item .image>a {
	height:100%;
	overflow:hidden;
	position:relative;
	width:100%;
	z-index:1;
}

.block-service .sections .item .image>a:before,.block-service .sections .item .image>a:after {
	left:0;
	position:absolute;
	width:100%;
}

.block-service .sections .item .image>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	opacity:0;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:2;
}

.block-service .sections .item .image>a:after {
	color:#fff;
	content:'Подробнее';
	font-family:"PT Sans Narrow",sans-serif;
	font-size:.9rem;
	font-weight:700;
	height:18px;
	line-height:1;
	margin-top:-6px;
	opacity:0;
	text-align:center;
	top:50%;
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
	-moz-transition:opacity .4s ease,-moz-transform .4s ease;
	-o-transition:opacity .4s ease,-o-transform .4s ease;
	-webkit-transition:opacity .4s ease,-webkit-transform .4s ease;
	transition:opacity .4s ease,transform .4s ease;
	text-transform:uppercase;
	z-index:3;
}

.block-service .sections .item .image>a img {
	height:100%;
	width:100%;
}

.block-service .sections .item .image>a:hover:before {
	opacity:.5;
}

.block-service .sections .item .image>a:hover:after {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.block-service .sections .link {
	line-height:1;
	margin:25px 0 0;
	position:relative;
	text-align:center;
	z-index:1;
}

.block-service .sections .link a {
	border-bottom:1px solid #F9265B;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	line-height:1.3;
	text-decoration:none;
	text-transform:uppercase;
	vertical-align:middle;
}

.block-service .sections .link a:hover {
	border-bottom-color:transparent;
	color:#F9265B;
}

.block-service .elements .item {
	margin-bottom:50px;
	position:relative;
	text-align:left;
	z-index:1;
}

.block-service .elements .item>span {
	display:block;
}

.block-service .elements .item .lite {
	margin-top:20px;
}

.block-services {
	margin-top:50px;
}

.block-services>.wrapper {
	text-align:center;
	z-index:2;
}

.block-services .sections {
	margin-bottom:-50px;
}

.block-services .sections .item {
	margin-bottom:50px;
	padding:0 10px;
	position:relative;
	text-align:center;
	width:200px;
	z-index:1;
}

.block-services .sections .item>span {
	display:block;
}

.block-services .sections .item .image {
	background-color:#F99D4A;
	border:4px solid #F99D4A;
	border-radius:50px;
	box-shadow:12px 12px 21px rgba(0,0,0,0.2);
	height:100px;
	margin:0 auto;
	overflow:hidden;
	width:100px;
	z-index:1;
}

.block-services .sections .item .image>a {
	height:100%;
	overflow:hidden;
	position:relative;
	width:100%;
	z-index:1;
}

.block-services .sections .item .image>a:before,.block-services .sections .item .image>a:after {
	left:0;
	position:absolute;
	width:100%;
}

.block-services .sections .item .image>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	opacity:0;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:2;
}

.block-services .sections .item .image>a:after {
	color:#fff;
	content:'Подробнее';
	font-family:"PT Sans Narrow",sans-serif;
	font-size:.9rem;
	font-weight:700;
	height:18px;
	line-height:1;
	margin-top:-6px;
	opacity:0;
	text-align:center;
	top:50%;
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
	-moz-transition:opacity .4s ease,-moz-transform .4s ease;
	-o-transition:opacity .4s ease,-o-transform .4s ease;
	-webkit-transition:opacity .4s ease,-webkit-transform .4s ease;
	transition:opacity .4s ease,transform .4s ease;
	text-transform:uppercase;
	z-index:3;
}

.block-services .sections .item .image>a img {
	height:100%;
	width:100%;
}

.block-services .sections .item .image>a:hover:before {
	opacity:.5;
}

.block-services .sections .item .image>a:hover:after {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.block-services .sections .link {
	line-height:1;
	margin:25px 0 0;
	position:relative;
	text-align:center;
	z-index:1;
}

.block-services .sections .link a {
	border-bottom:1px solid #F9265B;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.1rem;
	font-weight:700;
	line-height:1.3;
	text-decoration:none;
	text-transform:uppercase;
	vertical-align:middle;
}

.block-services .sections .link a:hover {
	border-bottom-color:transparent;
	color:#F9265B;
}

.block-slideshow {
	margin:30px auto 0;
	position:relative;
	text-align:left;
}

.block-slideshow>.wrapper {
	height:500px;
	margin:0 auto;
	position:relative;
	width:740px;
	z-index:1;
}

.block-slideshow .overflow {
	height:100%;
	left:50%;
	margin:0 0 0 -370px;
	position:relative;
	width:740px;
	z-index:1;
}

.block-slideshow .item {
	font-size:0;
	height:100%;
	left:0;
	opacity:0;
	overflow:hidden;
	position:absolute;
	top:0;
	-moz-transition:opacity .9s linear .9s,visibility .9s linear;
	-o-transition:opacity .9s linear .9s,visibility .9s linear;
	-webkit-transition:opacity .9s linear,visibility .9s linear;
	-webkit-transition-delay:.9s,0s;
	transition:opacity .9s linear .9s,visibility .9s linear;
	visibility:hidden;
	width:100%;
	z-index:1;
}

.block-slideshow .item.hide {
	opacity:0;
	visibility:visible;
	-moz-transition:opacity .9s linear,visibility linear;
	-o-transition:opacity .9s linear,visibility linear;
	-webkit-transition:opacity .9s linear,visibility linear;
	transition:opacity .9s linear,visibility linear;
	z-index:2;
}

.block-slideshow .item.active {
	opacity:1;
	visibility:visible;
	-moz-transition:opacity .9s linear,visibility linear;
	-o-transition:opacity .9s linear,visibility linear;
	-webkit-transition:opacity .9s linear,visibility linear;
	transition:opacity .9s linear,visibility linear;
	z-index:3;
}

.block-slideshow .item .image,.block-slideshow .item .title,.block-slideshow .item .lite,.block-slideshow .item .link {
	position:absolute;
}

.block-slideshow .item .image {
	height:100%;
	left:0;
	perspective:1000px;
	top:0;
	width:100%;
	z-index:1;
}

.block-slideshow .item .image img {
	height:100%;
	width:100%;
}

.block-slideshow .item .title,.block-slideshow .item .lite,.block-slideshow .item .link {
	left:50%;
	margin-left:-450px;
	text-align:left;
	width:900px;
	z-index:2;
}

.block-slideshow .item .title,.block-slideshow .item .lite {
	display:none;
}

.block-slideshow .item .title {
	color:#fff;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:3rem;
	font-weight:700;
	line-height:1;
	overflow:hidden;
	text-shadow:2px 3px 0 #01171F;
	text-transform:uppercase;
	top:370px;
	white-space:nowrap;
}

.block-slideshow .item .lite {
	color:#fff;
	font-size:1.5rem;
	max-height:174px;
	line-height:1.5;
	margin-top:0;
	text-shadow:1px 1px 0 #1a1a1a;
	top:480px;
}

.block-slideshow .item .lite:before {
	background-color:#1C4E7F;
	content:'';
	height:calc(100% + 70px);
	left:-40px;
	opacity:.85;
	position:absolute;
	top:-30px;
	width:calc(100% + 80px);
	z-index:-1;
}

.block-slideshow .item .link {
	display:none;
	top:710px;
}

.block-slideshow .item .link>a {
	border-bottom:none;
	font-size:1.3rem;
	padding:18px 30px;
}

.block-slideshow .item .image img {
	-webkit-animation:kenburns_stop 60s infinite linear;
	-moz-animation:kenburns_stop 60s infinite linear;
	-ms-animation:kenburns_stop 60s infinite linear;
	-o-animation:kenburns_stop 60s infinite linear;
	animation:kenburns_stop 60s infinite linear;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	-webkit-animation-fill-mode:backwards!important;
	-moz-animation-fill-mode:backwards!important;
	-ms-animation-fill-mode:backwards!important;
	-o-animation-fill-mode:backwards!important;
	animation-fill-mode:backwards!important;
	height:auto;
	width:100%;
	z-index:1;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n) .image>img {
	-webkit-animation:kenburns_1 60s infinite linear;
	-moz-animation:kenburns_1 60s infinite linear;
	-ms-animation:kenburns_1 60s infinite linear;
	-o-animation:kenburns_1 60s infinite linear;
	animation:kenburns_1 60s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+1) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+1) .image>img {
	-webkit-animation:kenburns_2 60s infinite linear;
	-moz-animation:kenburns_2 60s infinite linear;
	-ms-animation:kenburns_2 60s infinite linear;
	-o-animation:kenburns_2 60s infinite linear;
	animation:kenburns_2 60s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+2) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+2) .image>img {
	-webkit-animation:kenburns_3 10s infinite linear;
	-moz-animation:kenburns_3 10s infinite linear;
	-ms-animation:kenburns_3 10s infinite linear;
	-o-animation:kenburns_3 10s infinite linear;
	animation:kenburns_3 10s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+3) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+3) .image>img {
	-webkit-animation:kenburns_4 60s infinite linear;
	-moz-animation:kenburns_4 60s infinite linear;
	-ms-animation:kenburns_4 60s infinite linear;
	-o-animation:kenburns_4 60s infinite linear;
	animation:kenburns_4 60s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+4) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+4) .image>img {
	-webkit-animation:kenburns_5 10s infinite linear;
	-moz-animation:kenburns_5 10s infinite linear;
	-ms-animation:kenburns_5 10s infinite linear;
	-o-animation:kenburns_5 10s infinite linear;
	animation:kenburns_5 10s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+5) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+5) .image>img {
	-webkit-animation:kenburns_6 60s infinite linear;
	-moz-animation:kenburns_6 60s infinite linear;
	-ms-animation:kenburns_6 60s infinite linear;
	-o-animation:kenburns_6 60s infinite linear;
	animation:kenburns_6 60s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+6) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+6) .image>img {
	-webkit-animation:kenburns_7 60s infinite linear;
	-moz-animation:kenburns_7 60s infinite linear;
	-ms-animation:kenburns_7 60s infinite linear;
	-o-animation:kenburns_7 60s infinite linear;
	animation:kenburns_7 60s infinite linear;
}

.block-slideshow .overflow>.item.active:nth-of-type(9n+7) .image>img,.block-slideshow .overflow>.item.hide:nth-of-type(9n+7) .image>img {
	-webkit-animation:kenburns_8 60s infinite linear;
	-moz-animation:kenburns_8 60s infinite linear;
	-ms-animation:kenburns_8 60s infinite linear;
	-o-animation:kenburns_8 60s infinite linear;
	animation:kenburns_8 60s infinite linear;
}

.block-slideshow .overflow>.item.hide:nth-of-type(9n+8) .image>img,.block-slideshow .overflow>.item.active:nth-of-type(9n+8) .image>img {
	-webkit-animation:kenburns_9 60s infinite linear;
	-moz-animation:kenburns_9 60s infinite linear;
	-ms-animation:kenburns_9 60s infinite linear;
	-o-animation:kenburns_9 60s infinite linear;
	animation:kenburns_9 60s infinite linear;
}

.block-slideshow .item .content {
	height:100%;
	left:50%;
	margin-left:-500px;
	width:1000px;
}

.block-slideshow .arrow {
	height:50px;
	margin-top:-25px;
	opacity:1;
	position:absolute;
	top:250px;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:50px;
	z-index:2;
}

.block-slideshow .arrow:before {
	background-color:#1C4E7F;
	border-radius:50%;
	content:'';
	height:100%;
	left:0;
	opacity:1;
	position:absolute;
	-moz-transition:background-color .4s ease;
	-o-transition:background-color .4s ease;
	-webkit-transition:background-color .4s ease;
	transition:background-color .4s ease;
	top:0;
	width:100%;
	z-index:-1;
}

.block-slideshow .arrow .icon {
	height:16px;
	left:50%;
	margin-top:-9px;
	top:50%;
	width:8px;
}

.block-slideshow .arrow .icon:nth-of-type(1) {
	opacity:0;
}

.block-slideshow .arrow .icon:nth-of-type(2) {
	opacity:1;
}

.block-slideshow .arrow:hover {
	opacity:1;
}

.block-slideshow .arrow:hover:before {
	background-color:#3A99D8;
}

.block-slideshow .arrow.previous {
	left:50%;
	margin-left:-340px;
}

.block-slideshow .arrow.previous .icon {
	margin-left:-5px;
}

.block-slideshow .arrow.next {
	right:50%;
	margin-right:-340px;
}

.block-slideshow .arrow.next .icon {
	margin-left:-2px;
}

.block-slideshow .circles {
	display:none;
	bottom:10px;
	display:inline-block;
	margin:0 auto;
	position:relative;
	text-align:center;
	top:-150px;
	z-index:2;
}

.block-slideshow .circles a {
	background-position:center center;
	background-size:auto 100%;
	-webkit-border-radius:50px;
	border-radius:50px;
	display:inline-block;
	height:100px;
	margin:0 20px;
	opacity:1;
	position:relative;
	-moz-transition:-moz-transform .2s linear;
	-o-transition:-o-transform .2s linear;
	-webkit-transition:-webkit-transform .2s linear;
	transition:transform .2s linear;
	width:100px;
}

.block-slideshow .circles a:before {
	border:6px solid rgba(255,255,255,0.5);
	-webkit-border-radius:50px;
	border-radius:50px;
	content:'';
	opacity:.5;
	height:100%;
	left:0;
	position:absolute;
	top:0;
	-moz-transition:opacity .2s linear,border-color .2s linear;
	-o-transition:opacity .2s linear,border-color .2s linear;
	-webkit-transition:opacity .2s linear,border-color .2s linear;
	transition:opacity .2s linear,border-color .2s linear;
	width:100%;
}

.block-slideshow .circles a:before {
	z-index:1;
}

.block-slideshow .circles a:hover:before {
	opacity:1;
}

.block-slideshow .circles a.active:before {
	border-color:rgba(255,255,255,0.7);
}

.block-social {
	margin-bottom:50px;
	margin-top:50px;
}

.block-social>.wrapper {
	text-align:left;
}

.block-stock {
	margin-top:50px;
}

.block-stock>.wrapper {
	text-align:center;
	z-index:2;
}

.block-stock>.wrapper>.title {
	margin-bottom:50px;
	text-align:center;
}

.block-stock>.wrapper>.title a {
	color:#fff;
	display:inline-block;
	font-family:"PT Sans",sans-serif;
	font-size:2.4rem;
	font-weight:700;
	padding:19px 30px;
	position:relative;
	text-decoration:none;
	text-transform:uppercase;
}

.block-stock>.wrapper>.title a:before {
	background-color:#01171F;
	border-radius:10px;
	content:'';
	height:100%;
	left:0;
	position:absolute;
	top:0;
	-moz-transform:skew(-12deg);
	-ms-transform:skew(-12deg);
	-webkit-transform:skew(-12deg);
	transform:skew(-12deg);
	-moz-transition:background-color .4s ease;
	-o-transition:background-color .4s ease;
	-webkit-transition:background-color .4s ease;
	transition:background-color .4s ease;
	width:100%;
	z-index:-1;
}

.block-stock>.wrapper>.title a:hover:before {
	background-color:#01171F;
}

.block-stock .elements {
	margin-bottom:-50px;
}

.block-stock .elements .item {
	margin-bottom:50px;
	margin-left:50px;
	padding:0 10px;
	position:relative;
	text-align:center;
	width:300px;
	z-index:1;
}

.block-stock .elements .item:nth-of-type(3n-2) {
	margin-left:0;
}

.block-stock .elements .item>span {
	display:block;
}

.block-stock .elements .item .image {
	background-color:#F99D4A;
	border:2px solid #fff;
	border-radius:10px;
	box-shadow:12px 12px 21px rgba(0,0,0,0.2);
	height:225px;
	overflow:hidden;
	-moz-transform:skew(-12deg);
	-ms-transform:skew(-12deg);
	-webkit-transform:skew(-12deg);
	transform:skew(-12deg);
	width:300px;
	z-index:1;
}

.block-stock .elements .item .image>a {
	height:100%;
	position:relative;
	-moz-transform:scale(1.15) skew(12deg);
	-ms-transform:scale(1.15) skew(12deg);
	-webkit-transform:scale(1.15) skew(12deg);
	transform:scale(1.15) skew(12deg);
	width:100%;
	z-index:1;
}

.block-stock .elements .item .image>a:before,.block-stock .elements .item .image>a:after {
	left:0;
	position:absolute;
	width:100%;
}

.block-stock .elements .item .image>a:before {
	background-color:#1C4E7F;
	content:'';
	height:100%;
	opacity:0;
	top:0;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	z-index:2;
}

.block-stock .elements .item .image>a:after {
	color:#fff;
	content:'Подробнее';
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.4rem;
	font-weight:700;
	height:18px;
	line-height:1;
	margin-top:-9px;
	opacity:0;
	text-align:center;
	top:50%;
	-moz-transform:translateY(15px);
	-ms-transform:translateY(15px);
	-webkit-transform:translateY(15px);
	transform:translateY(15px);
	-moz-transition:opacity .4s ease,-moz-transform .4s ease;
	-o-transition:opacity .4s ease,-o-transform .4s ease;
	-webkit-transition:opacity .4s ease,-webkit-transform .4s ease;
	transition:opacity .4s ease,transform .4s ease;
	text-transform:uppercase;
	z-index:3;
}

.block-stock .elements .item .image>a img {
	height:100%;
	width:100%;
}

.block-stock .elements .item .image>a:hover:before {
	opacity:.5;
}

.block-stock .elements .item .image>a:hover:after {
	opacity:1;
	-moz-transform:translateY(0);
	-ms-transform:translateY(0);
	-webkit-transform:translateY(0);
	transform:translateY(0);
}

.block-stock .elements .link {
	line-height:1;
	margin:30px 0 0;
	position:relative;
	text-align:center;
	z-index:1;
}

.block-stock .elements .link a {
	border-bottom:1px solid #F9265B;
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	font-size:1.2rem;
	font-weight:700;
	line-height:1.4;
	text-decoration:none;
	text-transform:uppercase;
	vertical-align:middle;
}

.block-stock .elements .link a:hover {
	border-bottom-color:transparent;
	color:#F9265B;
}

.block-stock .elements .lite {
	margin:20px 0 0;
	line-height:1.3;
}

.block-title {
	margin-top:34px;
}

.block-title>.wrapper {
	position:relative;
	text-align:left;
}

.block-title>.wrapper:before {
	display:none;
	background-color:#fff;
	content:'';
	height:100%;
	left:50%;
	margin-left:-960px;
	position:absolute;
	top:0;
	width:1920px;
	z-index:-1;
}

.block-title h1,.block-title h2 {
	color:#01171F;
	font-family:"PT Sans Narrow",sans-serif;
	line-height:1.2;
	margin-bottom:0;
	overflow:hidden;
}

.block-title h1:before,.block-title h2:before {
	content:'';
	display:inline-block;
	height:100%;
	vertical-align:middle;
}

.block-title h1 span,.block-title h2 span {
	color:inherit;
	display:inline-block;
	font-size:inherit;
	font-weight:inherit;
	line-height:inherit;
	text-transform:inherit;
	vertical-align:middle;
}

.block-title h1 span:before,.block-title h1 span:after,.block-title h2 span:before,.block-title h2 span:after {
	display:none;
}

.block-title .control {
	display:none;
	position:absolute;
	right:10px;
	top:45px;
}

.block-title .control .item {
	margin-left:6px;
	position:relative;
}

.block-title .control .item>a {
	display:inline-block;
	height:36px;
	margin:0;
	width:48px;
	z-index:1;
}

.block-title .control .item>a:before {
	background-color:#fff;
	border-radius:2px;
	content:'';
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	-moz-transform:skewX(-14deg);
	-ms-transform:skewX(-14deg);
	-webkit-transform:skewX(-14deg);
	transform:skewX(-14deg);
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	width:100%;
}

.block-title .control .item:hover>a:before {
	opacity:1;
}

.block-title .control .item>a .icon {
	left:50%;
	margin-top:-7.5px;
	top:50%;
}

.block-title .control .item>.favourite .icon {
	height:15px;
	margin-left:-8px;
	width:16px;
}

.block-title .control .item>.print .icon {
	height:15px;
	margin-left:-8px;
	width:16px;
}

.block-title .control .item>.share .icon {
	height:15px;
	margin-left:-7.5px;
	width:15px;
}

.block-title .control .item>.dropping {
	opacity:0;
	padding:25px 20px 10px;
	position:absolute;
	right:0;
	top:35px;
	-moz-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-webkit-transition:opacity .4s ease;
	transition:opacity .4s ease;
	visibility:hidden;
	white-space:nowrap;
	z-index:2;
}

.block-title .control .item>.dropping:before {
	background-color:#FDC04B;
	bottom:0;
	border-radius:2px;
	content:'';
	height:calc(100% - 15px);
	left:0;
	position:absolute;
	-moz-transform:skewX(-14deg);
	-ms-transform:skewX(-14deg);
	-webkit-transform:skewX(-14deg);
	transform:skewX(-14deg);
	width:100%;
}

.block-title .control .item:hover>.dropping {
	opacity:1;
	visibility:visible;
}

.block-viewer {
	text-align:center;
	z-index:900;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	visibility:hidden;
	overflow:hidden;
}

.block-viewer>.wrapper {
	text-align:center;
}

.block-viewer .overlay {
	width:100%;
	height:100%;
	display:inline-block;
	background:url(../images/viewer-loading.gif) center center no-repeat rgba(26,26,26,0.85);
	position:fixed;
	z-index:10;
	top:0;
	left:0;
	opacity:0;
	cursor:default;
}

.block-viewer .overlay .gradient {
	visibility:hidden;
}

.block-viewer .overlay .control {
	position:relative;
	width:100%;
	height:100%;
	display:inline-block;
}

.block-viewer .overlay .control a {
	display:inline-block;
	position:relative;
}

.block-viewer .overlay .control a span {
	position:absolute;
	width:40px;
	height:40px;
	top:30px;
	z-index:20;
	opacity:.2;
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
}

.block-viewer .overlay .control a div {
	width:100%;
	height:100%;
	z-index:10;
	opacity:0;
}

.block-viewer .overlay .control a:hover span {
	opacity:1;
}

.block-viewer .overlay .control .close {
	width:100%;
	height:45%;
}

.block-viewer .overlay .control .close span {
	background:url(../images/close.png) center center;
	background-size:100% 100%;
	right:30px;
}

.block-viewer .overlay .control .next,.block-viewer .overlay .control .previous {
	width:50%;
	height:55%;
}

.block-viewer .overlay .control .next span {
	background-position:left 0;
	right:30px;
}

.block-viewer .overlay .control .previous span {
	background-position:left -31px;
	left:30px;
}

.block-viewer .overlay .control .alone {
	width:100%;
	height:100%;
}

.block-viewer .return {
	position:relative;
	max-width:800px;
	width:800px;
	display:inline-block;
	top:0;
	left:0;
	text-align:left;
	opacity:0;
	z-index:20;
	margin:10px auto;
	background:#fff;
	vertical-align:top;
	min-height:100px;
	padding:30px 50px 50px;
}

.block-viewer .return .title {
	margin:0;
	padding:0;
}

.block-viewer .return .title h1 {
	color:#1a1a1a;
	margin-bottom:35px;
	padding:0;
	text-align:left;
}

.block-viewer .return .title h1:before,.block-viewer .return .title h1:after {
	display:none;
}

.block-viewer .return .control {
	position:absolute;
	z-index:30;
	top:18px;
	right:18px;
	text-align:right;
	white-space:nowrap;
}

.block-viewer .return .control a {
	display:inline-block;
	position:relative;
	margin-left:15px;
	line-height:0;
}

.block-viewer .return .control a span {
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	line-height:0;
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
}

.block-viewer .return .control a .state {
	z-index:10;
	opacity:.5;
}

.block-viewer .return .control a .hover {
	display:none;
}

.block-viewer .return .control a:hover .state {
	opacity:1;
}

.block-viewer .return .control .close {
	width:16px;
	height:16px;
	position:relative;
}

.block-viewer .return .control .button.close {
	height:auto;
}

.block-viewer .return .control .close span {
	background:url(../images/close.png) left top no-repeat;
	background-size:100% 100%;
}

.block-viewer .return .buttons a,.block-viewer .return .buttons.control a {
	color:#fff;
	line-height:1;
	width:auto;
}

.block-viewer .return ._ERROR {
	padding:130px 150px;
	background:url(../images/viewer-error.png) center 60px no-repeat;
}