/* =============================== 根元素 =============================== */
*{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a{
	outline: none; /* for Firefox */
 	hlbr:expression(this.onFocus=this.blur()); /* for IE */
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
img{
	border: none;
}
html{
	padding: 0;
	margin: 0;
}
body{
	font-size: 1em;
	padding: 0;
	margin: 0;
	font-family: "微軟正黑體", "Microsoft JhengHei","Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;/*修正 safari 在fixed下文字的異常外觀*/
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
.clear{
	clear: both;
}

li{
	list-style-type: none;
}
input[type="button"]{
	border-radius: 2px;
	padding: 4px 10px;
	background-color: #ffffff;
	font-size: 0.9em;
	border: 1px solid #929292;
	cursor: pointer;
	color: #787878;
}

input[type="submit"]{
	border-radius: 2px;
	padding: 4px 10px;
	color: #ffffff;
	background-color: #06b5f7;
	font-size: 0.9em;
	border: 1px solid #929292;
	cursor: pointer;
}


input[type="button"]:focus,input[type="submit"]:focus{
	outline: none;
}
input[type="button"]:active,input[type="submit"]:active{
	opacity: 0.5;
}
input[type="button"]:hover,input[type="submit"]:hover{
	color: white;
	background-color: #002fa7;
}
input[type="text"],input[type="password"],textarea{
	border-radius: 4px;
	padding: 4px;
	font-size: 0.9em;
	border: 1px solid #929292;
	color: #787878;
}
input[type="text"]:focus,input[type="password"]:focus,textarea:focus{
	outline: none;
}


/*頁面*/
.page_Index{
	background-color: #eaeaea;
}

/*預載*/
#first_Load{
	display: none;
}
#first_Load img{
	display: none;
}



