﻿@charset "utf-8";

/* Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.7);
    text-align:center;
    z-index:999999;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.7);
    text-align:center;
    z-index:999999;
}

#loadtext
{
    position:fixed;
    left:50%;
    top: 50%;
    text-align:center;
    width:400px;
    margin:-200px 0 0 -200px;
    font-size: 25px;
    font-weight: bold;
}


#status {
	width:200px;
	height:300px;
	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(../Bilder/load.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
    text-align:center;
}