/*-------------General Style---------------------------------------*/
html{
	position: relative;
	width: auto;
	height: 100%;
}
body{
	-webkit-text-size-adjust: 100%!important;
	font-size: 1em;
	font-family: -apple-system, "Helvetica Neue", Helvetica, sans-serif, "Heiti SC";
	color:#000;
  background-color: #FFF;
	margin: 0 auto;
	padding: 0;
}
a{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-tap-highlight-color:transparent;
	text-decoration:none;
	color:inherit;
}
/*-------------Index Style---------------------------------------*/
.main{
	width: 100%;
	height: 100%;
	text-align: center;
	/* Center text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#centerLogo{
	position: absolute;
	left:50%;
	-webkit-transform: translate(-50%, 0);
			-ms-transform: translate(-50%, 0);
					transform: translate(-50%, 0);
}
#logoSet{
	width:38.2vw;
	max-width: 300px;
	max-height: 300px;
}
