@charset "utf-8";
/* 簡單流變媒體
   注意: 流變媒體要求您必須移除 HTML 中媒體的高度和寬度屬性
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 不支援最大寬度，因此寬度預設為 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 流變格線屬性
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	靈感來自於 Ethan Marcotte 的「具回應功能的網頁設計」 
	http://www.alistapart.com/articles/responsive-web-design
	
	以及 Joni Korpi 的「黃金格線系統」
	http://goldengridsystem.com/
*/

/* 行動版面: 480px 以下。 */

#nav2 { display:none}
#nav2s {
	clear: both;
	float: left;
	margin-top:10px;
	margin-left: 0;
	width: 100%;
	display: block;
}
#nav2s ul{
	list-style:none;
}
#nav2s li a{
	display:block;
	width:100%;
	height:30px;
	line-height:30px;
	margin-bottom:3px;
	float:left;
	font-family:微軟正黑體;
	text-align:center;
	font-size:16px;
	color:#000000;
	text-decoration:none;
	background-image:url(../images/nav2_bg.jpg);
	/*border-radius: 0px 0px 0px 0px;*/
	border-radius: 10px;
	-webkit-transition:all 0.18s ease-in;
    -moz-transition:all 0.18s ease-in;
    -ms-transition:all 0.18s ease-in;
    -o-transition:all 0.18s ease-in;
	   transition:all 0.18s ease-in;
}
#nav2s li a:hover{
	color:#ffffff;
	background-image:url(../images/nav2_bg_v.jpg);
}
#nav2s li a:active{
	color:#ffffff;
	background-image:url(../images/nav2_bg_v.jpg);
}


.nav2s_drop {
	clear: both;
	font-family:"微軟正黑體";
	width:96%;
	line-height: 25px;
	background-color: #ffffff;
	border-radius: 0px 0px 10px 10px;
	font-size:16px;
	margin-top:0px;
	margin-left:0px;
	margin:0 auto;
}
.nav2s_drop a {
	border-bottom: 1px solid #eeeeee;
	width:96%;
	display: block;
	padding: 5px 8px;
	text-decoration: none;
	color: #333333;
	text-align:center;
	-webkit-transition:all 0.3s ease-in;
    -moz-transition:all 0.3s ease-in;
    -ms-transition:all 0.3s ease-in;
    -o-transition:all 0.3s ease-in;
	   transition:all 0.3s ease-in;
}
.nav2s_drop a:hover { /*THEME CHANGE HERE*/
	background-color: #f2f2f2;
	color:#000000;
}




/* 表格版面: 481px 到 768px。樣式繼承自: 行動版面。 */

@media only screen and (min-width: 481px) {
#nav2 {
	clear: both;
	float: left;
	margin-top:10px;
	margin-left: 0;
	width: 100%;
	height:46px;
	display: block;
	/*background-image:url(../images/nav2_bg.jpg);
	border-radius:10px;*/
	background:#ffffff;
	background-image: linear-gradient(bottom, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
	background-image: -o-linear-gradient(bottom, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
	background-image: -webkit-gradient(	linear,	left bottom,	left top,	color-stop(0, rgb(240,240,240)),	color-stop(1, rgb(255,255,255)));
}
#nav2 ul{
	list-style:none;
}
#nav2 li a{
	display:block;
	width:115px;
	line-height:42px;
	float:left;
	font-family:微軟正黑體;
	text-align:center;
	font-size:16px;
	color:#000000;
	text-decoration:none;
	margin-top:-12px;
	background:none;
	padding-left:5px;
	padding-right:5px;
}
#nav2 li a{
	border-radius: 10px 10px 0px 0px;
}
#nav2 li a:hover{
	background-image:url(../images/nav2_bg_v.jpg);
	height:45px;
}



#nav2s { display:none}
}

/* 桌面版面: 769px 到最大 1232px。樣式繼承自: 行動版面和表格版面。 */

@media only screen and (min-width: 769px) {
#nav2 {
	clear: none;
	float: left;
	margin-left: 1.6949%;
	width: 74.5762%;
	display: block;
}



#nav2s { display:none}
}


