body{
	overflow:hidden;
}
#preloader{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff;
	/* change if the mask should have another color then white */
	z-index:99999;
	/* makes sure it stays on top */
	opacity:.96;
}
#status{

}
.loader{
	text-align:center;
	width:128px;
	height:128px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-64px 0 0 -64px;
}
.loader span{
	display:none !important;
	display:inline-block;
	vertical-align:middle;
	width:10px;
	height:10px;
	margin:50px auto;
	-webkit-border-radius:50px;
	-moz-border-radius:50px;
	border-radius:50px;
	-webkit-animation:loader 0.9s infinite alternate;
	-moz-animation:loader 0.9s infinite alternate;
	-ms-animation:loader 0.9s infinite alternate;
	-o-animation:loader 0.9s infinite alternate;
	animation:loader 0.9s infinite alternate;
}
.loader span:nth-of-type(2){
	-webkit-animation-delay:0.3s;
	-moz-animation-delay:0.3s;
	-ms-animation-delay:0.3s;
	-o-animation-delay:0.3s;
	animation-delay:0.3s;
}
.loader span:nth-of-type(3){
	-webkit-animation-delay:0.6s;
	-moz-animation-delay:0.6s;
	-ms-animation-delay:0.6s;
	-o-animation-delay:0.6s;
	animation-delay:0.6s;
}
@-webkit-keyframes loader{
0% {
    width: 10px;
    height: 10px;
    opacity: 0.9;
    -webkit-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    opacity: 0.1;
    -webkit-transform: translateY(-21px);
  }
}
@-moz-keyframes loader{
0% {
    width: 10px;
    height: 10px;
    opacity: 0.9;
    -moz-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    opacity: 0.1;
    -moz-transform: translateY(-21px);
  }
}