/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{
	background:url('../img/bg.jpg');
}

body{
	font:14px/1.3 'Segoe UI',Arial, sans-serif;
	background-color:transparent;
}

a, a:visited {
	outline:none;
	color:#1c4f64;
}

a:hover{
	text-decoration:none;
}

section, footer, header{
	display: block;
}

#main{
	text-align: left;
	width: 990px;
border:0px solid #135079;
float:left;
}

#credit{
	text-align:center;
	font-size:12px;
	color:#777;
}

/*----------------------------
	Albums
-----------------------------*/


.album{
	width:150px;
	height:150px;
	margin: 15px 5px;
	position:relative;
	
	display:inline-block;

	
}

.album:before{
	content: '';
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	z-index:1000;
	position: absolute;
	
}

.album img{
	top:0;
	left:0;
	opacity:0;
	width:150px;
height:150px;
	position:absolute;
}

.album img:first-child{
	opacity:1;
}

.album img,
.album:before{
	border-radius: 10px;
}

.album .preloader{
	display:none;
}

.album.loading .preloader{
	content:'';
	position:absolute;
	width:18px;
	height:18px;
	background:url('../img/preloader.png') center center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin:auto;
	display:block;

	/* Configure a keyframe animation for Firefox */
	-moz-animation: rotate 1s linear infinite;
	
	/* Configure it for Chrome and Safari */
	-webkit-animation: rotate 1s linear infinite;
}


/* Webkit keyframe animation */
@-webkit-keyframes rotate{
	0%{		-webkit-transform:rotate(0deg);}
	100%{	-webkit-transform:rotate(360deg);}
}

/* Firefox Keyframe Animation */
@-moz-keyframes rotate{
	0%{		-moz-transform:rotate(0deg);}
	100%{	-moz-transform:rotate(360deg);}
}


/*----------------------------
	The Footer
-----------------------------*/


footer{
	background-color: #111111;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
	height: 45px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

footer h2{
	color: #EEEEEE;
	font-size: 14px;
	font-weight: normal;
	left: 50%;
	margin-left: -400px;
	padding: 13px 0 0;
	position: absolute;
	width: 540px;
	line-height: 1.4;
	margin-top: 0;
}

footer h2 i{
	font-style:normal;
	color:#888;
}

footer a.tzine,a.tzine:visited{
	color: #999999;
	font-size: 12px;
	left: 50%;
	margin: 16px 0 0 110px;
	position: absolute;
	text-decoration: none;
	top: 0;
}

footer a i{
	color:#ccc;
	font-style: normal;
}

footer a i b{
	color:#c92020;
	font-weight: normal;
}
