/* LESS VARIABLES */
.border-radius (@radius: 5px) {
	border-radius: @radius;
  	-webkit-border-radius: @radius;
  	-moz-border-radius: @radius;
}
.box-sizing (@type: border-box) {
	-webkit-box-sizing: @type;
	-moz-box-sizing:    @type;
	box-sizing:         @type;
}

#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 100000;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
	
	.spinner {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -25px 0 0 -25px;
		width: 50px;
		height: 50px;
		background: rgba(0,0,0, 0.9) url(../images/loading.gif) no-repeat center center;
		.border-radius(40px);
	}
}
/* ############## */
* {
	margin: 0;
	padding: 0;
}
html {
}
a {
	color: inherit;
}
body {

}
#wrapper {
	width: 100%;
	margin: 0 auto;
	min-width: 1000px;
	.zahod {
		z-index: 20;
		cursor: pointer;
		width: 100%;
		text-align: center;
		padding-top: 100px;
		background: rgba(255, 255, 255, .75);
	}
	
	.button {
		position: absolute;
		width: 327px;
		height: 57px;
		background: url(../images/button_a.png) no-repeat right bottom;
		z-index: 100;
		cursor: pointer;
		left: 50%;
		top: 3%;
		margin-left: -163px;
		
		&.active {
			background: url(../images/button_b.png) no-repeat right bottom;
		}
	}
}

#full-width-slider {
	width: 100%;
}

.rsGCaption {
	position: absolute;
	top: 3%;
	left: 200px;
	width: 60px;
	font: 20px/20px Nonamegrotesk;
	border: 3px solid #000;
	padding: 3px 0;
	background-color: #fff;
}

.rsArrow {
	top: 45%;
	position: absolute;
}

.rsArrowLeft {
	left: 50px;
	width: 49px!important;
	height: 67px!important;
	background: url(../images/prev.png);
	&:hover {
		background: url(../images/prev_active.png);
	}
}
.rsArrowRight {
	right: 50px!important;
	width: 49px!important;
	height: 67px!important;
	background: url(../images/next.png);
	&:hover {
		background: url(../images/next_active.png);
	}
}

.rsArrowDisabled {
	opacity: 0.1;
}