/*---- 主選單 ----*/
#MAIN_NAV {
	background-color: white;
	overflow:none;  /*如果將auto改成none，就不會出現右邊的捲動軸*/
	height: 50px;  /*加入這一行就可以控制選單的高度*/
	width: 760px;
	text-align: center; /*讓選單的文字置中*/
	word-spacing:20px;  /*讓選單文字之間的距離變大*/

}
/*---- 主選單的文字當滑鼠移上去會改變字體及底色，Lo 起頭----*/
#MAIN_NAV a:hover {
	background-color: #CFC;
	color: #FF0000;
}
/*---- 主選單的文字當滑鼠移上去會改變字體及底色，Lo 結尾----*/

/*---- 主選單的文字當滑鼠，當按下去之後要去除虛線，Lo 起頭----*/

#MAIN_NAV a {
 outline: none; /* for Firefox */
 hlbr:expression(this.onFocus=this.blur()); /* for IE */
}
/*---- 主選單的文字當滑鼠，當按下去之後要去除虛線，Lo 結尾----*/


#word_around_pic {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

#first_letter {
	font-size:24px;		/* 字體放大到24pt */
	float:left;		/* 文繞圖-置左 */
	background-color:red;	/* 背景塗黑 */
	color:white;		/* 字的顏色為白色 */
	padding:10px;		/* 邊緣與文字間距1pt，避免字太貼近邊緣 */
	margin-right:3px;	/* 與右邊物件間距3pt，避免旁邊的字貼在 */
}

#table_middle {                     /* LO： 表格置中的ID */
	font-size: 22px;
	vertical-align: middle;
	text-align: center;
}

.img_middle{                        /* LO： 表格置中後，儲存格裡的圖片也要置中的CLASS */
    vertical-align:middle;
	text-align: center;
}

.title_word{                        /* LO： 表格上標題字的置中，CLASS  */
	font-size: 22px;
	text-align: center;
}

.transparent {                                 /*這個是設透明度的標籤*/
    filter:alpha(opacity=50);           /*ie8 ok*/
    opacity:0.5;                                /*firefox ok*/
}

.green {                                                  /*這個是設綠色背景的標籤*/
    background-color:#090;                  /*這個是設區塊的背景色為綠色*/
}




body{
	margin: 0px 30px 0px 30px; /*分別為上、右、下、左的邊界距離*/
/*	text-align: center;   */
	background-image: url(images/chu_button1.png);           /*背景圖的路徑*/
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;   /*此處為背景圖是否隱藏的語法處*/
	font-family: Comic Sans MS,arial,helvetica,sans-serif;
	color: #000000;
	line-height: 150%;
/*	text-align: center;   */
	text-justify: inter-ideograph;
}

/* --- 文繞圖start -------------- */
div.image-left {
float: left;
margin: 0 8px 8px 0;
}
 
div.image-left img {
border: 1px solid #ccc;
padding: 4px;
}
 
div.image-left p {
color: #666;
font-family: 'Lucida Grande', Lucida Sans Unicode;
font-size: 9px ;
margin: 3px 0 0;
text-align: center;  /*屬性：letf  center   right  justify  */
}
