/* 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;
}
body {
	
}
#wrapper {
	position: relative;
	width: 1200px;
	margin: 0px auto;
	.box-sizing;
	padding: 30px 260px 0 150px;
}
.zahod {
	width: 786px;
	height: 364px;
	background: url(../images/zahod.jpg) no-repeat center center;
}

.circles {
	margin-top: 70px;
	padding-bottom: 100px;
	.button {
		display: inline-block;
		vertical-align: text-top;
		width: 220px;
		height: 290px;
		padding: 30px 20px;
		text-align: center;
		cursor: pointer;
		-webkit-transition: all 0.2s ease-out;  /* Safari 3.2+, Chrome */
		     -moz-transition: all 0.2s ease-out;  /* Firefox 4-15 */
		       -o-transition: all 0.2s ease-out;  /* Opera 10.5–12.00 */
		          transition: all 0.2s ease-out;  /* Firefox 16+, Opera 12.50+ */
		          
        .box-sizing;
		.border-radius(2px); 
		.title {
			font-family: Futura;
			font-weight: bold;
			font-size: 20px;
		}
		.desc {
			font-family: Octava;
			font-size: 18px;
		}
	}
	.button:hover {
		background: #91e3a3;
	}
	
}
.circle {
	display: inline-block;
	width: 120px;
	height: 120px;
	margin-bottom: 25px;
}
.c1{background: url(../images/1.png) no-repeat center center}
.c2{background: url(../images/2.png) no-repeat center center}
.c3{background: url(../images/3.png) no-repeat center center}
.c4{background: url(../images/4.png) no-repeat center center}
.c5{background: url(../images/5.png) no-repeat center center}
.c6{background: url(../images/6.png) no-repeat center center}
.c7{background: url(../images/7.png) no-repeat center center}
.c8{background: url(../images/8.png) no-repeat center center}
.c9{background: url(../images/9.png) no-repeat center center}
.c10{background: url(../images/10.png) no-repeat center center}
.c11{background: url(../images/11.png) no-repeat center center}
.c12{background: url(../images/12.png) no-repeat center center}

.popup {
	display: none;
	position: fixed;
	width: 940px;
	height: 90%;
	min-height: 450px;
	top: 0px;
	left: 0px;
	
	border: 1px solid #000;
	background: #fff;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
	
	.left {
		width: 400px;
		height: 100%;
		background: #91e3a3;
		.box-sizing;
		padding: 20px 30px;
		
		.author {
			
			.circle {
				display: block;
				float: left;
			}
			.title, .desc {
				margin-left: 140px;
			}
			.title {
				font-family: Futura;
				font-weight: bold;
				font-size: 20px;
				padding-top: 30px;
			}
			.desc {
				font-family: Octava;
				font-size: 18px;
			}
		}
		h3 {
			font-family: Futura;
			font-weight: bold;
			font-size: 20px;
			margin-bottom: 15px;
		}
		.song {
			clear: both;
			.text {
				overflow-y: auto;
				height: 300px;
				font-family: Futura;
				font-size: 15px;
				line-height: 21px;
				padding-right: 20px;
			}
		}
	}
	.right {
		position: absolute;
		top: 0px;
		left: 400px;
		width: 540px;
		height: 100%;
		
		.header {
			.box-sizing;
			padding: 30px 30px;
			height: 170px;
			border-bottom: 1px solid #000;
			
			.close {
				position: absolute;
				right: 15px;
				top: 15px;
				width: 143px;
				height: 30px;
				background: url(../images/close.jpg);
				cursor: pointer;
				z-index: 1;
			}
		}
		.desc {
			.box-sizing;
			padding: 30px 30px;
			
			.text {
				padding-right: 20px;
				overflow-y: auto;
				height: 300px;
				font-family: Octava;
				font-size: 16px;
				line-height: 22px;
			}
		}
	}
}

.content {
	display: none;
}

.youtube {
	position: relative;
	width: 100%;
	height: 35px;
	overflow: hidden;
	margin-top: 60px;
	
	iframe, object {
		position: absolute;
		bottom: 0px;
	}
}