@-ms-viewport { width:device-width; }

@media only screen and (min-device-width: 800px) {
	html {
		overflow: hidden;
	}
}

/* css3 - animation */
@-webkit-keyframes anim {
    from { -webkit-transform: rotateZ(0deg); }
    50% { -webkit-transform: rotateZ(180deg); }
    to { -webkit-transform: rotateZ(360deg); }
}
@-moz-keyframes anim {
    from { -moz-transform: rotateZ(0deg); }
    50% { -moz-transform: rotateZ(180deg); }
    to { -moz-transform: rotateZ(360deg); }
}
@-ms-keyframes anim {
    from { -ms-transform: rotateZ(0deg); }
    50% { -ms-transform: rotateZ(180deg); }
    to { -ms-transform: rotateZ(360deg); }
}
@-o-keyframes anim {
    from { -o-transform: rotateZ(0deg); }
    50% { -o-transform: rotateZ(180deg); }
    to { -o-transform: rotateZ(360deg); }
}
@keyframes anim {
    from { transform: rotateZ(0deg); }
    50% { transform: rotateZ(180deg); }
    to { transform: rotateZ(360deg); }
}

html {
	height: 100%;
}

body {
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	background-color: #000000;
}

#launch {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	/*background: url('skin/yfskin_launch_bg.png') no-repeat center center;*/
	background: #C8C9C9 no-repeat center center;
	background-size: 100% 100%;
}

#launch .launch-header {
	position: relative;
	top: 20%;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}

#launch .launch-logo {
	background: url('skin/yfskin_launch_logo.png') no-repeat center center;
	width: 200px;
	height: 200px;
	background-size: 100% 100%;
}

#launch .launch-loading {
	position: absolute;
	top: 0;
	background: url('skin/yfskin_launch_loading.png') no-repeat center center;
	width: 200px;
	height: 200px;
	background-size: 100% 100%;
	-webkit-animation: anim 2s linear infinite;
	-moz-animation: anim 2s linear infinite;
	-ms-animation: anim 2s linear infinite;
	-o-animation: anim 2s linear infinite;
	animation: anim 2s linear infinite;
}
/*
#launch .launch-footer {
	position: absolute;
	bottom: 10%;
	width: 100%;
	height: 46px;
}

#launch .launch-footer .launch-text {
	width: 200px;
	height: 46px;
	margin: 0 auto;
	background: url('skin/yfskin_launch_text.png') no-repeat center center;
	background-size: 100% 100%;
}*/