@charset "utf-8";
.thrColAbsHdr #mainContent {
	width: 400px;
	margin-top: 0px;
	margin-right: 150px;
	margin-bottom: 0px;
	margin-left: 180px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
body  {
	margin: 0; /* 比較好的做法是將 Body 元素的邊界與欄位間隔調整為零，以處理不同的瀏覽器預設值 */
	padding: 0;
	text-align: center; /* 這樣會讓容器在 IE 5* 瀏覽器內置中對齊。然後，文字會在 #container 選取器中設定為靠左對齊預設值 */
	color: #000000;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
}
.thrColAbsHdr #container {
	position: relative;  /* 使用比完整 800px 少 20px 的寬度會允許使用瀏覽器邊框並且避免水平捲軸出現 */
	background: #FFFFFF;
	margin: 0 auto; /* 自動邊界 (搭配寬度) 會讓頁面置中對齊 */
	border: 1px solid #000000;
	text-align: left; /* 這樣做會覆寫 Body 元素上的 text-align: center。 */
	width: 80%;
} 

/* 含有標題和頁尾之絕對定位邊列的提示：
1. 您必須指定絕對定位 (AP) 元素的頂端和側邊值 (右邊或左邊)。(因此，如果沒有指定頂端值，AP 元素將會按照頁面的來源順序，直接從最後一個項目之後開始。這表示，如果邊列是文件來源順序中 #container 的第一個元素，即使沒有指定頂端值，它們也會顯示在 #container 的頂端。不過，如果它們的來源順序之後由於任何原因而移動，就需要具有頂端值，才能顯示在所需的位置。
2. 絕對定位 (AP) 元素會從文件的流向中移出。這表示，佔據頁面上的適當空間後，周圍的元素不知道它們的存在而且無法進行處理。因此，只有當您確定中間的 #mainContent Div 一定會包含大部分內容時，才應該將 AP Div 當做側邊欄使用。如果任一個邊列即將包含更多內容，該邊列就會超過父 Div 的底部 (在此情況下，頁尾也一樣)，而且邊列似乎不會包含在其中。
3. 如果符合上述需求，絕對定位邊列就可以讓您輕鬆地控制文件的來源順序。
4. 如果來源順序已變更，頂端值就應該要等於標題的高度，因為這樣會讓欄的外觀符合標題。
*/
.thrColAbsHdr #header {
	height: 150px;
	padding: 0 10px 0 20px;  /* 這個欄位間隔符合下面顯示的 Div 中，元素的靠左對齊。如果在 #header 中使用影像而非文字，您可能會想要移除欄位間隔。 */
	background-color: #DDDDDD;
	background-image: url(images/top.jpg);
	background-repeat: no-repeat;
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* 將 #header Div 中最後一個元素的邊界調整為零可避免邊界收合 (Div 之間出現的空間，無法解釋)。如果 Div 的周圍具有邊框，這就不是必要動作，因為該項設定也會避免邊界收合 */
	padding: 10px 0; /* 使用欄位間隔而非邊界便可讓元素遠離 Div 的邊緣 */
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 310px;
	width: 160px; /* 背景顏色將會針對欄的內容長度而顯示，但僅止於此 */
	padding: 5px 10px 15px 15px;
	height: 300px;
	background-repeat: no-repeat;
	left: 1px;
	border: 3px dashed #cccfff;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 306px;
	right: 3px;
	width: 160px;
	height: 300px;
	background-repeat: no-repeat;
	background-color: #FFF;
	text-decoration: none;
	border: 3px dashed #cccfff;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.thrColAbsHdr #sidebar3 {
	position: absolute;
	top: 717px;
	right: 13px;
	width: 200;
	height: 300;
	background-repeat: no-repeat;
	background-color: #FFF;
	text-decoration: none;
	border: 3px dashed #cccfff;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.thrColAbsHdr #mainContent1 {
	width: 800px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 1px;
	padding-bottom: 0px;
	padding-left: 1px;
	font-family: "華康中特圓體(P)", "華康中黑體(P)", "華康中圓體(P)";
	font-size: 16px;
	color: #FFF;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-style: dashed;
	border-right-style: none;
	border-bottom-style: dashed;
	border-left-style: none;
	border-top-color: #C60;
	border-right-color: #C60;
	border-bottom-color: #C60;
	border-left-color: #C60;
}
.thrColAbsHdr #footer {
	padding: 0px 10px 0 225px;
	background-color: #FFC;
	background-image: url(images/down.jpg);
	height: 120px;
	background-repeat: no-repeat;
} 
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}



.thrColAbsHdr #footer p {
	margin: 0; /* 將頁尾中第一個元素的邊界調整為零可避免邊界收合的可能性 (Div 之間出現的空間) */
	padding: 10px 0; /* 這個元素的欄位間隔將會建立空間，就如同邊界一樣，但是沒有邊界收合的問題 */
	font-family: "Times New Roman", Times, serif;
}
.thrColAbsHdr #footer table {
	font-size: 12px;
	width: 425px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 115px;
	font-family: "Times New Roman", Times, serif;
}
   
.fltrt { /* 這個類別可用來讓頁面右邊的元素浮動。浮動元素必須位於頁面上必須相鄰的元素前面。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* 這個類別可用來讓頁面左邊的元素浮動 */
	float: left;
	margin-right: 8px;
}
.banner {
	background-image: url(images/banner.png);
	height: 27px;
}
.TN {
	font-family: "Times New Roman", Times, serif;
	text-align: left;
	width: 780px;
}
.thrColAbsHdr #fb {
	float: left;
	clear: none;
	position: absolute;
	top: 700px;
	left: 18px;
	z-index: 1;
}
.thrColAbsHdr #fb1 {
	float: right;
	clear: right;
	position: absolute;
	top: 650px;
	left: 500px;
	z-index: 1;
}
.thrColAbsHdr #publicDM {
	float: left;
	clear: none;
	position: absolute;
	top: 42px;
	left: 773px;
	z-index: 1;
	overflow: visible;
	height: 140px;
	width: 245px;
	border: thin dashed #0FF;
}
.thrColAbsHdr #pics {
	text-decoration: none;
	width: 350px;
	height: 225px;
	text-align: center;
	top: 726px;
}
