

#preloader {
	position: fixed;
	left:0;
	right:0;
	bottom:0;
	top:0;
	/*background-color:rgba(0,0,0,.2); */
	background-color:#fff;
	/*opacity:0.7;*/
	z-index:999; /* makes sure it stays on top */
}

#status {
	width:200px;
	height:200px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}



#loaderImage {
	position:absolute;
	left:45%; /* centers the loading animation horizontally one the screen */

}