#loader-container {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 99999;
	background-color: black;
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
	display: none;
	overflow:hidden;
}

#loadertext {
	color:#fff;
	font-weight:300;
	font-size:15px;
	position: absolute;
	left: 0;
	right:0;
	top: 50%;
	z-index: 1;
	width: 120px;
	height: 30px;
	background:none;
	margin:77px auto 0;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 120px;
	height: 120px;
	margin: -71px 0 0 -66px;
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #3498db;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes animatebottom {
	from {
		bottom: -100px;
	opacity: 0
	}
	to {
		bottom: 0px;
	opacity: 1
	}
}

@keyframes animatebottom {
	from{
		bottom: -100px;
	opacity: 0
	}
	to{
		bottom: 0;
	opacity: 1
	}
}

#loaderOLD {

	display:inline-block;
	vertical-align:middle;
		
	/*margin-left: 45%;*/
	/*margin:0 auto !important;*/
	
	/*margin-left:45%;
	top: 35%;*/
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #3498db;
	width: 130px;
	height: 130px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
/*
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
*/