@charset "utf-8";
body {
	font: 100% 細明體, 新細明體;
	color: #FFF;
	background: #000;
	margin: 0; /* 比較好的做法是將 Body 元素的邊界與欄位間隔調整為零，以處理不同的瀏覽器預設值 */
	padding: 0;
	text-align: center; /* 這樣會讓容器在 IE 5* 瀏覽器內置中對齊。然後，文字會在 #container 選取器中設定為靠左對齊預設值 */
}

#header {
	height: 40px;
	font-size: 36px;
}

#footer {
	height: 15px;
	font-size: 12px;
	text-align: right;
}

#container {
	position:absolute;
	width: 780px;  /* 使用比完整 800px 少 20px 的寬度會允許使用瀏覽器邊框並且避免水平捲軸出現 */
	height: 300px;
	margin: 0 auto; /* 自動邊界 (搭配寬度) 會讓頁面置中對齊 */
	border: 1px solid #000000;
	text-align: left; /* 這樣做會覆寫 Body 元素上的 text-align: center。 */
	top: 50%;
	left: 50%;
	margin: -200px 0 0 -390px;/* 邊界減去一半的寬高 */
}

.frame{
	margin-top: 10px;
	margin-bottom: 55px;
	height: 200px;
	overflow: auto;
}

a {
	color: #FFF;
	text-decoration: none;;
}

a:visted {
	color: #FFF;
	text-decoration: none;;
}

a:active {
	color: #FFF;
	text-decoration: none;;
}

#container #tabs ul li a:hover {
	color: #000;
	background:#FC9;
	text-decoration: none;
}

#container #tabs ul li a {
	color: #FFF;
	text-decoration: underline;
}

#container #tabs ul li a:visited {
	color: #FFF;
	text-dectoration: underline;
}

#container #tabs ul li a:active {
	color: #FFF;
	text-dectoration: underline;
}

#container #tabs ul li a:hover {
	color: #000;
	background:#FC9;
	text-decoration: none;
}

#footer a {
	color: #FFF;
	text-decoration: underline;
}

#footer a:visited {
	color: #FFF;
	text-dectoration: underline;
}

#footer a:active {
	color: #FFF;
	text-dectoration: underline;
}

#footer a:hover {
	color: #000;
	background:#FC9;
	text-decoration: none;
}
