
/* 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%;
}

a {
	color: white;	
}

body {
	font: 18px 'CharterOSCRegular';
	color: #fff;
	background: #000;
	height: 100%;
}
#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);
	}
}
#header {
	font-family: FFDINBold;
}
#wrapper {
	width: 100%;
}

.block{
	position: relative;
	width: 100%;
	
		h1{
			font: 72px 'CirceRegular';
			text-transform: uppercase;
		}
		h3{
			font: 18px 'CirceRegular';
			text-transform: uppercase;
			letter-spacing: 3px;
			margin-top: 10px;
		}
		.description{
			width: 500px;
			margin-top: 30px;
		}
		.credits {
			font: 13px 'CirceRegular';
			text-transform: uppercase;
			letter-spacing: 2px;
			margin-top: 10px;
		}
}


/* PHOTO-SLIDER WITH ARROWS left/right */
.psl {
	overflow: hidden;
	.next {
		background: url(../images/post-photoslider-arrow-next.png) no-repeat center center;
		float: right;
	}
	.prev {
		background: url(../images/post-photoslider-arrow-prev.png) no-repeat center center;
		float: left;
	}
	.col-arrow {
		width: 70px;
		height: 10px;
		cursor: pointer;
		margin-top: 10px;
	}
	.col-desc {
			margin-top: 10px;
			float: left;
			width: 100%;
			margin-left: 0px !important;
			text-align: center;
			
			p {
				font-family: CirceRegular !important;
				font-size: 11px !important;
				line-height: 14px !important;
				margin-left: 70px !important;
			}
		}
	.counter {
		position: absolute;
		font-family: CharterOSCRegular;
		font-size: 15px;
		width: auto !important;
	}
	.col-photo {
		width: 745px;
		float: left;
		overflow: hidden;
		
		.container {
			
			ul {
				list-style: none;
				
				li {
					float: left;
					
					p {
						display: none;	
					}
				}
			}
		}
	}
}


.audio {
	z-index: 1000;
	
	.mp3 {
		position: relative;
		margin-bottom: 3px;
		
		span {
			font-family: CirceRegular;
			font-size: 13px;
			line-height: 15px;
			letter-spacing: 1px;
		}
		.jPlayer {
			width: 20px; 
			.play-button {
				position: absolute;
				left: 180px;
				top: 20px;
				width: 20px;
				height: 20px;
				cursor: pointer;

				.ico-pause {
					width: 20px;
					height: 20px;
					background: url(../images/pause.png) no-repeat center center;
				}
				.ico-play {
					width: 20px;
					height: 20px;
					background: url(../images/play.png) no-repeat center center;
				}
			}
		}
	}
}