/* preloader */


#preloader {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: black;
	z-index: 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
}

.spinner {
	height: 20px;
	width: 20px;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	top: 50%;
	margin-top: -20px;
	-webkit-animation: rotation .7s infinite linear;
	border-left: 2px solid rgba(255,255,255,.15);
	border-right: 2px solid rgba(255,255,255,.15);
	border-bottom: 2px solid rgba(255,255,255,.15);
	border-top: 2px solid rgba(255,255,255,1);
	border-radius: 100%;
}

@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
