
/* cache
_____________________________________________________*/


#loading_wrapper {
	display:block;
	position:fixed;
	left: 0;
	top: 0;
	width:100%;
	height:100%;
	background-color:rgba(0, 0, 0, 0.5);
	z-index:10000;
}
#loading_wrapper > div {
	position:absolute;
	top: 50%;
	left: 50%;
	width:60px;
	height:60px;
	background:url(/cache/img/loading.gif) center center no-repeat rgba(255, 255, 255, 1);
	margin:-30px 0 0 -30px;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
#loading_wrapper > div:after {
	content:"Now Loading...";
	position:absolute;
	width:200px;
	left:50%;
	bottom:-20px;
	margin-left:-100px;
	color:#FFF;
	font-size:12px;
	font-size:1.2rem;
	text-align:center;
}
