/* 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%;
}
td {
	vertical-align: top;
	
}
body {
	font: 15px/19px OctavaOSCRegular;
	color: #000;
	height: 100%;
}

.clearFix {
	clear: both;
}

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


#wrapper {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	
	.lead {
		width: 305px;
		font: 14px/14px 'NonameGroteskHanddrawnv4Rg';
		margin-left: 576px;
	}
	
	.choice {
		.man {
			width: 100px;
			float: left;
			margin: 50px 30px;
			cursor: pointer;
			position: relative;
			
			.name {
				text-align: center;
				width: 100px;
			/*	text-transform: uppercase;*/
				position: absolute;
				margin-bottom: -35px;
				bottom: 0;
				display: none;
				
				
				&.active {
					color: red;
					display: block;
					font-style: italic;
				}
			}
		}
	}
	.result {
		display: block;
		margin: 0 auto;
	}
	.button {
		width: 185px;
		height: 68px;
		margin: 0 10px;
		position: absolute;
		cursor: pointer;
	}
	.restart {
		background: url(../images/restart.jpg);
		margin-left: 380px;
	}
	.twitter {
		background: url(../images/twitter.jpg);
		margin-left: 625px;
	}
}