@charset "UTF-8";

#WindowLoad {
	position:fixed;
	top:0px;
	left:0px;
	z-index:1000;
	filter:alpha(opacity=65);
	-moz-opacity:65;
	opacity:0.65;
	background:#c8c8c8;
	height:100%;
	width:100%;
}

.load {
	position: relative;
	margin: 50px auto;
	width: 100px;
	height: 80px;

}

.gear {
	position: absolute;
	z-index: -10;
	width: 40px;
	height: 40px;
	animation: spin 5s infinite;
}

.two {
	left: 40px;
	width: 80px;
	height: 80px;
	animation: spin-reverse 5s infinite;
}

.three {
	top: 45px;
	left: -10px;
	width: 60px;
	height: 60px;
}

@keyframes spin {
	50% {
	transform: rotate(360deg);
	}
}

@keyframes spin-reverse {
	50% {
	transform: rotate(-360deg);
	}
}

.lil-circle {
	position: absolute;
	border-radius: 50%;
	box-shadow: inset 0 0 10px 2px	rgb(155, 225, 251), 0 0 50px white;
	width: 100px;
	height: 100px;
	opacity: .65;
}

.blur-circle {
	position: absolute;
	top: -19px;
	left: -19px;
}

.text {
	color: lightgray;
	text-align: center;
}
