﻿@charset "utf-8";

/* Preloader */
#preloader {
	position:absolute;
	top:0;
	left:0;
	bottom: 0;
	width:100%;
	height:100%;
	background-color:rgb(0, 17, 25); /* change if the mask should have another color then white */
	opacity:0.9;
	z-index:9999; /* makes sure it stays on top */
}

#status {
    width:807px;
    height:414px;
	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('/images/status.gif'); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-207px 0 0 -403px; /* is width and height divided by two */
	display:none;
}