/* 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;
}
/* ############## */
* {
	margin: 0;
	padding: 0;
}


html {
	height: 100%;
}
body {
	font-family: 'Arial';
	font-size: 16px;
	line-height: 30px;
	color: #000;
	height: 100%;
	overflow-y: hidden;
	background-color: #ebe8ef;
}

#wrapper {
	float: left;
	width: 12000px;
	height: 100%;
}

.block {
	float: left;
	min-height: 700px;
	position: relative;
		.cover{
			height: 100%;
			z-index: -2;
			display: block;
			float: left;
		}
		
		p,h1 {
			position: absolute;
		}
		
		h1 {
			font: 75px/170px 'Times New Roman';
		}
}

.credits {
	font: 17px/21px 'CirceRegular';
	
	span {
		font-family: 'NewStandardCRegular';
	}
}

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

#same {
	position: absolute;
	left: 98%;

	a {
		display: block;
		text-decoration: none;
		color: #000;
	}
	a:hover {
		color: #09f;
	}
	.item {
		width: 200px;
		margin-bottom: 30px;
		.photo {
			width: 200px;
			height: 150px;
		}
		.photo:hover {
			background: url(../images/hover.gif) !important;
		}
		p {
			width: 200px;
			font-family: CirceRegular;
			font-size: 13px;
			text-align: center;
			
		}
	}
}