﻿@charset "utf-8";

/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0; /* change if the mask should have another color then white */
	z-index: 10001; /* makes sure it stays on top */
	background-color: #FFFFFF;
	background-repeat: repeat;
}

#status {
	width: 117px;
	height: 90px;
	position: absolute;
	left: 50%; /* centers the loading animation horizontally one the screen */
	top: 50%; /* centers the loading animation vertically one the screen */
	background-image: url(../image/loader.gif); /* path to your loading animation */
	background-repeat: no-repeat;
	background-position: center center; /* is width and height divided by two */
	margin-top: -100px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -60px;
	
}
