/*pc*/
.navArea{
	background-color:#45a5ff;
	/*background-color:#ff00a2;*/
	padding:0;
	text-align: center;
	margin:0 auto;
	position: relative;
	width:100%;
}
.navArea.stuck{
	position: fixed;
	left:0;	
	top:0;
	z-index: 1000;
}
.navArea .navList{
	list-style: none;
	display: inline-block;
	text-align: center;
	padding:5px 0;
}
.navArea .navList>li{
	display: inline-block;
	margin:0;
	padding:2px 0;
	position: relative;
}
.navArea .navList>li span{
	display:block;
	font:bold 24px/1.2 Arial,"微軟正黑體", "Microsoft JhengHei",sans-serif;
	color:#fff;
	padding:3px 15px 3px 10px;
	text-decoration: none;
	vertical-align: middle;	
	cursor: pointer;
}
.navArea .navList>li span a:link,
.navArea .navList>li span a:visited{
	color:#fff;
	text-decoration: none;
}
.navArea .navList>li:hover,
.navArea .navList>li.act{
	border:1px solid #f1ff0b;
}
.navArea .navList>li:hover span:before,
.navArea .navList>li.act span:before{
	content:'';
	display: inline-block;
	width:20px;
	height: 24px;
	background:url(../img/selicon.png) center center no-repeat;
	vertical-align: -3px;
}

/*mobile*/
.m-navArea{
	padding:0;
	text-align: center;
	margin:0 auto;
	position: relative;
	display:none;	
}
.mNavBox{
	position: fixed;
	z-index: 1000;
	right:0;
	top:0;
	height: 100%;
	/*background-color: #ff00a2;*/
	background-color: #45a5ff;
}
.mNavBtn{
	display: block;
	width:36px;
	height: 36px;
	position: absolute;
	z-index: 10;
	left:0;
	top:0;
	margin-left:-36px;
	cursor: pointer;
	/*background:#ff00a2 url(../img/mobileSelBg.png) center center no-repeat;*/
	background:#45a5ff url(../img/mobileSelBg.png) center center no-repeat;
	

	background-size: 90%;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.mNavBtn.opened{
	/*background:#ff00a2 url(../img/mobileSelBg1.png) center center no-repeat;*/
	background:#45a5ff url(../img/mobileSelBg1.png) center center no-repeat;
	background-size: 90%;
}

.mNavBox .navList{
	list-style: none;
	display: inline-block;
	text-align: left;
	width:100%;
	padding-top:5px;
}
.mNavBox .navList>li{
	display: block;
	margin:0;
	padding:5px 0;
	position: relative;
}

.mNavBox .navList>li span{
	display:block;
	font:bold 18px/1 Arial,"微軟正黑體", "Microsoft JhengHei",sans-serif;
	color:#fff;
	padding:3px 15px;
	text-decoration: none;
	vertical-align: middle;	
	cursor: pointer;
}
.mNavBox .navList>li span a:link,a:visited{
	color:#fff;
	text-decoration: none;
}
.mNavBox .navList>li:hover span a,
.mNavBox .navList>li.act span a{
	color:#ffcc00;
}
