.main {
	overflow: hidden;
}

.main2 {
	z-index: 9999;
	opacity: 0;
	-webkit-animation-name: mainfadein;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
	-webkit-animation-fill-mode: forwards;
	
}

@-webkit-keyframes mainfadein {
	from {
		opacity: 0;
	}
	99.9%,to {
		opacity: 1;
	}
}

.overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
}

.splash {
	transform-origin: center center;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	/*background-image: url(Splash/splash.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;*/
	
	-webkit-animation-name: splash-zoom;
	-webkit-animation-duration: 30s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 1s;
}

@-webkit-keyframes splash-zoom {
	from {
		transform: scale(1,1);
	}
	99.9%,to {
		transform: scale(1.1,1.1);
	}
}

#start {
	margin-top: 15px;
	font-family: Verdana;
	font-weight: bold;
	font-size: 10px;
	color: #DEDEDE;
	
}

.start-flash {
	/*width: 200px;*/
	height: 24px;
	padding: 8px 0;
	color: rgba(255,255,255,0.7);
	
	line-height: 18px;
	text-align: center;
	/*position: absolute;*/
	top: 7px;
	right: 6px;
	-webkit-border-radius: 3px;
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.6), rgba(0,0,0,0));
	-webkit-animation-name: start-flash;
	-webkit-animation-duration: 1.1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes start-flash {
	from {
		opacity:1;
	}
	99.9%,to {
		opacity:0.2;
	}
}

.logo {
	display: block;
	/*position: relative;*/
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	width: 50%;
	transform-origin: center center;
	z-index:1;
	
}

.logotext {
	/*position: relative;*/
	margin-top: 10px;
	text-align: center;
	font-family: Verdana;
	font-weight: bold;
	font-size: 10px;
	color: #DEDEDE;
	z-index:1;
	
}



.mascot3 {
	position: absolute;
	top: 10%;
	left: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(0.7) translate(0px,0);

	
	-webkit-animation-name: mascot3;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot3 {
	from {
		transform: scale(0.7) translate(-150px,0);
	}
	99.9%,to {
		transform: scale(0.7) translate(0px,0);
	}
}

.mascot4 {
	position: absolute;
	top: 35%;
	left: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(0.7) translate(-25px,0);

	
	-webkit-animation-name: mascot4;
	-webkit-animation-duration: 0.7s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot4 {
	from {
		transform: scale(0.7) translate(-150px,0);
	}
	99.9%,to {
		transform: scale(0.7) translate(-25px,0);
	}
}

.mascot5 {
	position: absolute;
	top: 60%;
	left: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(0.7) translate(20px,0);

	
	-webkit-animation-name: mascot5;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot5 {
	from {
		transform: scale(0.7) translate(-160px,0);
	}
	99.9%,to {
		transform: scale(0.7) translate(20px,0);
	}
}

.mascot6 {
	position: absolute;
	top: 10%;
	right: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(-0.7,0.7) translate(0,0);

	
	-webkit-animation-name: mascot6;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot6 {
	from {
		transform: scale(-0.7,0.7) translate(-250px,0);
	}
	99.9%,to {
		transform: scale(-0.7,0.7) translate(0,0);
	}
}

.mascot7 {
	position: absolute;
	top: 35%;
	right: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(-0.7,0.7) translate(15px,0);

	
	-webkit-animation-name: mascot7;
	-webkit-animation-duration: 0.7s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot7 {
	from {
		transform: scale(-0.7,0.7) translate(-250px,0);
	}
	99.9%,to {
		transform: scale(-0.7,0.7) translate(15px,0);
	}
}

.mascot8 {
	position: absolute;
	top: 60%;
	right: 0;
	margin-top: -20px;
	transform-origin: center center;
	transform: scale(-0.7,0.7) translate(20px,0);

	
	-webkit-animation-name: mascot8;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: 1;
	
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 0s;
}

@-webkit-keyframes mascot8 {
	from {
		transform: scale(-0.7,0.7) translate(-250px,0);
	}
	99.9%,to {
		transform: scale(-0.7,0.7) translate(20px,0);
	}
}


.titlemenubtn {
	/*position: relative;*/
	list-style: none;
	margin-top: -70px;
	z-index: 101;
}

.titlemenutext {
	/*position: relative;*/
	text-align: center;
	font-family: Verdana;
	font-size: 8px;
	color: #DEDEDE;
	
}

.titlemenu {
	/*position: relative;*/
	background: rgba(0,0,0,0.9);
	margin-left: auto;
	margin-right: auto;
	width: 250px;
	height: 50px;
	margin-top: -250px;
	border: rgba(255,255,255,0.1) solid 2px;
	-webkit-box-sizing: border-box;
	-webkit-box-shadow: 0 0 2px #000000;
	z-index: 102;
	
}

.titlemenu li {
	margin: 0 14px;
	width: 218px;
	height: 25px;
	display: -webkit-box;
	-webkit-box-sizing: border-box;
	border-top: #252525 solid 1px;
	border-bottom: #1d1d1d solid 1px;
	text-align: center;
	font-family: Verdana;
	font-size: 10px;
	color: #DEDEDE;
	line-height: 20px;
}

.titlemenu li:nth-of-type(1) { border-top: none; }
.titlemenu li:nth-last-of-type(1) { border-bottom: none; }

.titlemenu a {
	text-decoration: none;
	text-align: center;
	font-family: Verdana;
	font-size: 10px;
	color: #DEDEDE;
	line-height: 20px;
}

.accountbindtext {
	margin-top: 40px;
	overflow: hidden;
	position: absolute;
	background-image:url(Game_Images/bg_black.png);
	background-repeat: repeat-y;
	text-align: left;
	font-family: Verdana;
	font-size: 10px;
	color: #DEDEDE;
	line-height: 20px;
	width: 100%;
	
}

.accountbindtext p {
	margin-left: 25px;
	margin-right: 25px;
}

.button {
	background-color: #FFD700;
	padding: 10px 24px;
	vertical-align: baseline;
	font-family: Verdana;
	font-size: 100%;
	font-weight: bold;
	border-radius: 6px;
	border: 2px solid #DAA520;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	width: 125px;

}

.button:active {
	background-color: #DAA520;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	transform: translateY(3px);

}

.button2 {
	background-color: #A7451C;
	padding: 10px 24px;
	vertical-align: baseline;
	font-family: Verdana;
	font-size: 100%;
	font-weight: bold;
	border-radius: 6px;
	border: 2px solid #963215;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	width: 125px;

}

.button2:active {
	background-color: #963215;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	transform: translateY(3px);

}

#holder {
	text-align: center;
	margin-left: 0;
	margin-right: 0;

}

#mascot {
	position: relative;

}

#welcome {
	margin-top: 150px;


}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#pwelcome {
	margin-top: 100px;
	
	
}



















