@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:	9;
	dw-gutter-percentage:	25;
	
	靈感來自於 Ethan Marcotte 的「具回應功能的網頁設計」 
	http://www.alistapart.com/articles/responsive-web-design
	
	以及 Joni Korpi 的「黃金格線系統」
	http://goldengridsystem.com/
*/

/* 行動版面: 480px 以下。 */

#banner_layout {
	clear: both;
	width: 100%;
	text-align: center;
	display: none;
	/*background-image: url(images/top_bg.jpg);
	background-position: center top;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;*/
	/* margin-top: 50px; */
	margin-bottom:20px;
}

#banner_layout_2 {
	text-align: center;
	display: block;
	/* margin-top: 50px; */
	margin-bottom: 30px;
}



/* 表格版面: 481px 到 768px。樣式繼承自: 行動版面。 */

@media only screen and (min-width: 481px) {
#banner_layout {
	clear: both;
	width: 100%;
	text-align: center;
	display: block;
	/*background-image: url(images/top_bg.jpg);
	background-position: center top;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;*/
	/* margin-top: 50px; */
	margin-bottom:20px;
}

#banner_layout_2 {
	text-align: center;
	display: none;
	/* margin-top: 50px; */
	margin-bottom: 30px;
}


}

/* 桌面版面: 769px 到最大 1232px。樣式繼承自: 行動版面和表格版面。 */

@media only screen and (min-width: 880px) {
#banner_layout {
	clear: both;
	float: left;
	width: 100%;
	text-align: center;
	display: block;
	/*background-image: url(images/top_bg.jpg);
	background-position: center top;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;*/
	/* margin-top: 50px; */
	margin-bottom:20px;
}

#banner_layout_2 {
	text-align: center;
	display: none;
	/* margin-top: 50px; */
}


}
