@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	color: #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 23px;
}
/* ~~ 元素/標籤選取器 ~~ */
ul, ol, dl { /* 由於瀏覽器之間的差異，最佳作法是在清單中使用零寬度的欄位間隔及邊界。為了保持一致，您可以在這裡指定所要的量，或在清單包含的清單項目 (LI、DT、DD) 上指定所要的量。請記住，除非您寫入較為特定的選取器，否則在此執行的作業將重疊顯示到 .nav 清單。 */
	padding: 0;
	margin: 0;
	list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 移除上方邊界可以解決邊界可能從其包含的 Div 逸出的問題。剩餘的下方邊界可以保持 Div 不與接在後面的元素接觸。 */
	padding-right: 15px;
	padding-left: 15px; /* 將欄位間隔加入至 Div 內元素的兩側 (而不是 Div 本身)，即可不需執行任何方塊模型的計算作業。具有側邊欄位間隔的巢狀 Div 也可當做替代方法。 */
}
a img { /* 這個選取器會移除某些瀏覽器在影像由連結所圍繞時，影像周圍所顯示的預設藍色邊框 */
	border: none;
}

a:hover, a:active, a:focus { /* 這個選取器群組可以讓使用鍵盤導覽的使用者，也和使用滑鼠的使用者一樣擁有相同的滑過體驗。 */
	text-decoration: none;
}
/* ~~ 這個容器環繞著所有其他的 Div，並依百分比設定其寬度 ~~ */
.container {
	width: 960px;
。 */  background: #FFF;
	margin: 0 auto; /* 兩側的自動值與寬度結合後，版面便會置中對齊。如果將 .container 的寬度設為 100%，就不需要這麼做。 */
}
/* ~~ 頁首沒有指定的寬度，而會橫跨版面的整個寬度。頁首包含影像預留位置，必須由您自己的連結商標加以取代 ~~ */
.header {
	background-image: url(../images/head_01.jpg);
	height: 150px;
}
/* ~~ 這是版面的欄位。~~ 

1) 欄位間隔只會置於 Div 的頂端或底部。這些 Div 內的元素在兩側會有欄位間隔，可讓您不需進行「方塊模型計算」。請記住，如果對 Div 本身加入任何側邊的欄位間隔或邊框，在計算「總」寬度時，就會將這些加入您定義的寬度。您也可以選擇移除 Div 中元素的欄位間隔，然後在其中放置沒有寬度的第二個 Div，並依設計所需放置欄位間隔。

2) 尚未為這些欄位提供邊界，因為它們全都是浮動的。如果必須加入邊界，請避免將其放在浮動方向的一側 (例如將右邊界放在設定為向右浮動的 Div 上)。在許多時候，您都可以改用欄位間隔。對於必須違反此規則的 Div，您應該在 Div 的規則中加入 "display:inline" 宣告，以防止某些版本的 Internet Explorer 將邊界加倍。

3) 因為可在文件中多次使用類別 (也可對單一的元素套用多個類別)，所以已為欄位指定類別名稱，而非 ID。例如，您可在必要時將兩個側邊列 Div 堆疊起來。如有需要，也可以將這些名稱輕鬆地變更為 ID (只要您在每份文件中只使用一次)。

4) 如果想要將導覽放在右方而非左方，只要將這些欄設定為往反方向浮動 (全部往右，而非全部往左)，它們就會以相反順序呈現。您不需要在 HTML 原始碼中移動 Div。

*/
.tip {
	top:-30px;
	position: relative;
	z-index: 100;
}
.sidebar1 {
	float: left;
	width: 240px;
	padding-bottom: 10px;
}
.content {
	padding: 10px ;
	width: 700px;
	float: left;
}
/* ~~ 這個群組選取器會在 .content 區域空間中提供清單 ~~ */
.content ul, .content ol {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
/* ~~ 導覽清單樣式 (如果選擇使用 Spry 之類的預製飛出選單，則可移除) ~~ */
ul.nav {
	list-style: none; /* 這會建立連結的上方邊框，其他則都會使用下方邊框放置在 LI 上 */
	margin-bottom: 15px; /* 這會在下方的內容上建立導覽間的間距 */
}
ul.nav li {
}
ul.nav a, ul.nav a:visited { /* 將這些選取器放入群組，即可確保您的連結即使在受到點擊後仍保有按鈕外觀 */
	display: block; /* 這會為連結提供區塊屬性，使連結能填滿包含它的整個 LI，讓整個區域都能回應滑鼠點按動作。 */
	text-decoration: none;
	color: #666;
	background-image: url(../images/point.png);
	background-repeat: no-repeat;
	background-position: left;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-left: 35px;
	margin-right: 20px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* 這會同時變更滑鼠及鍵盤導覽器的背景及文字顏色 */
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #9C3;
	color: #9C0;
}
.news {
	padding-top: 80px;
	height: 187px;
	background-image: url(../images/news.jpg);
	background-repeat: no-repeat;
}
/* ~~ 頁尾 ~~ */
.footer {
	padding: 10px 0;
	position: relative;/* 這會為 IE6 提供 hasLayout 以進行適當的清除動作 */
	clear: both; /* 這個 clear 屬性可以強制 .container 辨識欄結束於何處以及包含欄的位置 */
	background-color: #b4d465;
	text-align: center;
}
/* ~~ 其他 float/clear 類別 ~~ */
.fltrt {  /* 這個類別可用來讓元素在頁面中浮動，浮動的元素必須位於頁面上相鄰的元素之前。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* 這個類別可用來讓元素在頁面左方浮動，浮動的元素必須位於頁面上相鄰的元素之前。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* 這個類別可放置在 <br /> 或空白的 Div 上，當做接在 #container 內最後一個浮動 Div 後方的最後一個元素 (如果從 #container 移除或取出 #footer) */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
h1{ font-size:15px; color:#9C0}
.pic001{
	padding:5px 15px;
	background-color: #FFF;
	margin-right: 15px;
	width: auto;
	float: left;
}
h2{
	font-size:15px;
	color:#690;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #690;
	background-image: url(../images/bg1.jpg);
	height: 30px;
	padding-top: 5px;
}
.gbg{
	margin:0;
	color:#690;
	font-size:14px;
	border-bottom:1px solid #B5B2AB;
	background-image: url(../images/bg1.jpg);
	background-repeat: repeat;
	height: 29px;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 10px;
	font-weight: bold;
}
.ogb {
	color:#b94b0e;
	font-size:12px;
}
.gary { background: #E8E8E8; color:#999;}
.red {
	color:#F00;
}



#headright{
	float: right;
	width:320px;
	font-size: 11px;
}
#headright ul{
	list-style:none;
	margin:0;
	padding:0px;
}
#headright li{
 float:left;
 width:80px;
 margin:0px;
 padding:0px;
}
#headright ul a, #headright ul a:visited {
	display: block;
	text-decoration: none;
	color: #999;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999;
	padding-left: 5px;
}
#headright ul a:hover, #headright ul a:active, #headright ul a:focus {
	color: #690;
	font-weight: bold;
}
table.Design4 {
	width:97%;
	margin-left:10px;
	margin-right:10px;
	margin-top:10px;
	border-spacing: 0px;
	border-collapse: collapse;
	float:left;
}
table.Design4 th {
	font-weight: normal;
	padding: 0.2em 0.7em;
	border-bottom: 2px solid #FFFFFF;
	background-color: #DEEDC7;
}
table.Design4 td {
	text-align:justify;
	vertical-align:top;
	text-align: left;
	border-bottom: 2px solid #FFFFFF;
	padding: 0.2em 0.8em 0.2em 0.7em;
	background-color: #F0F5E2;
}

table.Design4 thead th {
	color: #FFFFFF;
	text-align: center;
	letter-spacing:1.8;
	background-color: #70a137;
}
table.Design4 th.Corner {
    text-align: left;
	padding:0 6px;
}
.news-title ,.news-title a{
	font-size:15px;
	font-weight: bold;
	color: #70a137;
	text-decoration: none;
}
.newpic{
	border:5px solid #EEE;
	float: left;
	margin: 3px;
}
.box{
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
}


#pro2{
	width:700px;
	padding-top:20px;
}
#pro2 table{ border-top:1px solid #cccccc;
border-bottom:none;
border-left:none;
border-right:none;
font-size:100%;
width:100%;}

#pro2 td{
	border-top:none;
	border-bottom:1px solid #CCC;
	border-left:none;
	border-right:none;
	padding:8px;
	text-align: center;
}
#pro2 th{ border-top:none;
border-bottom:1px solid #CCC;
border-left:none;
border-right:none;
background-color:#f3f3f3;
font-weight: bold;
padding:8px;}

[if lte IE 7]>
<style>
.content { margin-right: -1px; } /* 這個 1 像素的負邊界可放在此版面中的任何欄上，而具有相同的修正效果。 */
ul.nav a { zoom: 1; }  /* zoom 屬性可為 IE 提供修正連結之間多餘空白時所需的 hasLayout 觸發。 */
</style>
<![endif]
