.box-sizing (@type: border-box) {
	-webkit-box-sizing: @type;
	-moz-box-sizing:    @type;
	box-sizing:         @type;
}

* {
	margin: 0;
	padding: 0;
}
html {

}

body {
	font-family: 'Futura';
	color: #fff;
	background: #000;
	height: 100%;
}
html {
	height: 100%;
}

#wrapper {

}

p {
	font-family: Octava;
	font-size: 15px;
	line-height: 1.5;
}
a {
	color: inherit;
}
.banner {
	position: fixed;
	right: 30px;
	top: 60px;
}

.screen {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	overflow: hidden;
	
	.next {
		position: fixed;
		background: url(../images/arrow_right.png) no-repeat center center;
		width: 80px;
		height: 80px;
		top: 50%;
		margin-top: -40px;
		right: 0.5%;
		cursor: pointer;
		z-index: 2;
	}
	.prev {
		position: fixed;
		background: url(../images/arrow_left.png) no-repeat center center;
		width: 80px;
		height: 80px;
		top: 50%;
		margin-top: -40px;
		left: 0.5%;
		cursor: pointer;
		z-index: 2;
	}
	.menu  {
		position: fixed;
		width: 100%;
		left: 0px;
		bottom: 0px;
		text-align: center;
		z-index: 3;
		color: #fff;
		background: rgba(0,0,0,0.15);
		padding-bottom: 2px;
		
		.item, .sep {
			display: inline-block;
			font-family: Futura;
			font-size: 12px;
			text-transform: uppercase;
		}
		.item {
			cursor: pointer;
		}
		.item.active, .item.active:hover {
			color: #f1b00d;
			cursor: default;
		}
		.item:hover {
			color: #f1ddaa;
		}
	}
}

.slide {
	display: none;
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 1;
	
	.item {
		position: absolute;
		width: 100%;
		height: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		top: 0px;
		left: 0px;
		z-index: 2;
	}
}

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: url('../images/336.gif') no-repeat center center;
}

@media screen and (min-width:1400px) {
	/*.slider {
		width: 950px !important;
		margin-left: 220px !important;
	}
	.control {
		left: 1200px !important;
	}*/
}

