@charset "utf-8";
/* CSS Document */
#loading_bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #222;
	z-index: 50000;
}
#loading {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 300px;
	height: 300px;
	z-index: 60000;
	text-align: center;
	-webkit-animation: switchtext 0.8s infinite alternate;
	-moz-animation: switchtext 0.8s infinite alternate;
	animation: switchtext 0.8s infinite alternate;
}
@-webkit-keyframes switchtext {
 from { opacity: 1.0; }
 to { opacity: 0; }
}
@-moz-keyframes switchtext {
 from { opacity: 1.0; }
 to { opacity: 0; }
}
@keyframes switchtext {
 from { opacity: 1.0; }
 to { opacity: 0; }
}

#loading img {
	margin: 0 auto;
	width: 300px;
	height: 300px;
}
