﻿body {
	overflow: hidden;
}
/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999; /* makes sure it stays on top */
	background: #eed688; /* Old browsers */
	background: -moz-linear-gradient(left, #eed688 0%, #fcfacd 50%, #eed688 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #eed688 0%, #fcfacd 50%, #eed688 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #eed688 0%, #fcfacd 50%, #eed688 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eed688', endColorstr='#eed688', GradientType=1 ); /* IE6-9 */
}
#status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%; /* centers the loading animation horizontally on the screen */
	top: 50%; /* centers the loading animation vertically on the screen */
	background-image: url(../images/status.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 */
}
@media (max-width: 767px) {
	body {
		overflow: auto;
	}
}