body {
	overflow: hidden;
}

#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff;
	z-index:99;
}

#status {
	width:500px;
	height:24px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-12px 0 0 -250px;
	font-family:Oswald;
	font-size:24px;
	text-transform:uppercase;
	text-align:center;
	-webkit-animation-name: gradient;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	animation-name: gradient;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@-webkit-keyframes gradient {
    0%   {color: #272727;}
    50%  {color: #999999;}
    100% {color: #272727;}
}

@keyframes gradient {
    0%   {color: #272727;}
    50%  {color: #999999;}
    100% {color: #272727;}
}