
/* 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: CharterOSCRegular;
	background: #fff;
	font-size: 15px;
	line-height: 21px;
	height: 100%;
}
#header {
	font-family: FFDINBold;
}
#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 {
	float: left;
	width: 14000px;
	height: 100%;
	margin: 0 auto;
	padding-top: 35px;
	.box-sizing;
}
h1 {
	font-family: LineaturaLight;
	font-size: 70px;
	line-height: 76px;
	font-weight: normal;
}
.likes {
	position: absolute;
	bottom: 150px;
	left:300px;
}
a {
	color: #000;
}
.block {
	float: left;
	height: 100%;
	width: auto;
	.box-sizing;
	padding-top: 0;
	padding-bottom: 30px;
}
.h100 {
	height: 100%;
	width: auto;
}
.h50 {
	position: relative;
	top: 50%;
}
.pd50 {
	height: 100%;
	padding: 50px;
	.box-sizing;
}
.ajpg {
	position: relative;
	overflow: hidden;
	height: 100%;
	z-index: 5;
	img {
		height: 100%;
	}
	.still {
		position: relative;
		z-index: 1;
		height: 100%;
	}
	.ani {
		position: absolute;
		top: 0px;
		left: 0px;
		height: 100%;
		img {
			display: block;
			float: left;
			height: 100%;
		}
	}
}
