@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* 比較好的做法是將 Body 元素的邊界與欄位間隔調整為零，以處理不同的瀏覽器預設值 */
	padding: 0;
	text-align: left; /* 這樣會讓容器在 IE 5* 瀏覽器內置中對齊。然後，文字會在 #container 選取器中設定為靠左對齊預設值 */
	font-size: 82%;
	color: #000000;
	background-color: #FFFFFF;
	background-image: url(../images/bg.gif);
	background-repeat: repeat-y;
	background-position: 0px 0px;
}

a {
	color: #00F;
}

.twoColHybLt #container {
	width: 972px; /* 自動邊界 (搭配寬度) 會讓頁面置中對齊 */
	text-align: left;
	margin-left: 28px;
} 

.twoColHybLt #innerContainer {
	width: 868px;
	position:absolute;
	top: 90px;
	height: 100%;
}

.twoColHybLt #Head {
	background: #FF6600;
	width: 868px;
	height: 60px;
	left: 0px;
	top: 0px;
	font-family: Arial, Helvetica, sans-serif;
/*	font-size: 82%;*/
	font-weight: bold;
}


/* sidebar1 的提示：
1. 因為我們是以相對單位進行工作，所以最好不要在邊列上使用欄位間隔。它將會新增至整體寬度，而讓符合標準的瀏覽器建立不明的實際寬度。 
2. 由於 em 單位會用於邊列值，所以請注意其寬度將會隨著不同的預設文字大小而變更。
3. 您可以根據在 ".twoColHybLt #sidebar1 p" 規則中看見的方式，將左和右邊界放置於 Div 內部的元素上，藉以建立 Div 側邊與內部元素之間的空間。
*/
.twoColHybLt #sidebar1 {
    margin: 20px 0 0 0;
	width: 150px;
/*	width: 12em; /* 背景顏色將會針對欄的內容長度而顯示，但僅止於此 */
}

.twoColHybLt #sidebar1 #verticalMenu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 82%;
	line-height: 11px;
	color: #333333;
	padding: 36px 0 2em;
	width: 206px;
}

.twoColHybLt #sidebar1 #verticalMenu ol {
	border-left: 5px solid #ADADAD;
	list-style-image: none;
	list-style-position: inside;
	list-style-type: none;
	margin: 0 0 0 10px;
	padding: 0px;
}

.twoColHybLt #sidebar1 #verticalMenu ol.first {
	width: 192px;
}

.twoColHybLt #sidebar1 #verticalMenu ol li.currentOpen {
	padding: 0px;
	margin: 0 0 0 0;
	background-image: url(/html/images/sub-current.gif);
	background-repeat: no-repeat;
	background-position: 3px 10px;
}

.twoColHybLt #sidebar1 #verticalMenu ol li.currentItem {
	padding: 0px;
	margin: 0 0 0 0;
	background-image: url(/html/images/sub.gif);
	background-repeat: no-repeat;
	background-position: 3px 10px;
}

.twoColHybLt #sidebar1 #verticalMenu ol li a {
	text-decoration:none;
	margin:0 0 0 1.2em;
	padding: 0.5em 0 0.6em 0;
	display: block;
	border-bottom: 1px solid #CCCCCC;
	color:#666;
}

.twoColHybLt #sidebar1 #verticalMenu ol li a.needLogin {
	text-decoration:none;
	margin:0 0 0 1.2em;
	padding: 0.5em 0 0.6em 0;
	display: block;
	border-bottom: 1px solid #CCCCCC;
	color:#00F;
}

.twoColHybLt #sidebar1 #verticalMenu ol li a:hover {
	color: #FF6600;
	/*	background-color: #CCCCCC; 滑鼠hover時背景色 */
	text-decoration: none;
}

.twoColHybLt #sidebar1 #verticalMenu ol ol {
    border-left: 5px solid #CCCCCC;
	margin-left: 3px;
}

.twoColHybLt #sidebar1 h3, .twoColHybLt #sidebar1 p {
	margin-left: 0px; /* 您應該針對將要放置於側邊欄的每個元素，指定左和右邊界 */
	margin-right: 0px;
}

/* mainContent 的提示：
1. mainContent 和 sidebar1 之間的空間是以 mainContent Div 的左邊界建立的。不論 sidebar1 Div 包含多少內容，欄空間將維持不變。當 #sidebar1 的內容結束時，如果您想讓 #mainContent Div 的文字填滿 #sidebar1 的空間，就可以移除這個左邊界。
2. 請注意，如果寬度超過它所能包含之內容的元素放置於 mainContent Div 內部，可能就會導致浮動遺失 (遺失邊列下面的非浮動 mainContent 區域)。如果使用混合版面 (含有 em 架構邊列的百分比架構整體寬度)，可能無法計算確切的可用寬度。如果使用者的文字大小大於平均，您就會有較寬的邊列 Div，因此 mainContent Div 中的空邊比較少。您應該注意這項限制，尤其是客戶端正在使用 Contribute 新增內容時。
3. 在下列 Internet Explorer 條件註解中，縮放屬性是用來提供 mainContent "hasLayout"。這樣做可協助避免許多 IE 特有錯誤。
*/
.twoColHybLt #mainContent {
	float: right;
	width: 610px;
	margin-top: 20px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
} 

/* 可重複使用的雜項類別 */
.fltrt { /* 這個類別可用來讓頁面右邊的元素浮動。浮動元素必須位於頁面上必須相鄰的元素前面。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* 這個類別可用來讓頁面左邊的元素浮動 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* 這個類別應該放置於 Div 或 Break 元素上，而且應該是完整包含浮動的容器關閉前的最後一個元素 */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.twoColHybLt #Footer {
	height: 60px;
}

.twoColHybLt .rightBackgroundColor {
	color: #FF6600;
}

.twoColHybLt #container #logo {
    position: absolute;
    float: left;
	width: 432px;
	height: 60px;
	background: #FFFFFF;
}

.twoColHybLt #container #logo a {
	background: transparent url(../images/logo.gif) no-repeat scroll 0 0;
	width: 310px;
	height: 60px;
	display: block;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

.twoColHybLt #container #search {
	float: right;
	color: #FFFFFF;
	width: 436px;
	height: 60px;
	background: #FF6600;
	position:relative;
}

.twoColHybLt #container #search input {
	font-size: 90%;
}

.twoColHybLt #container #search a {
	text-decoration: none;
	font-family: "新細明體";
	color: #FFFFFF;
}

.twoColHybLt #container #search a:hover {
	text-decoration: none;
	color:#FFFFFF;
}

.twoColHybLt #container #searchContent {
	top: 25%;
	position:absolute;
	right: 0px;
}

.twoColHybLt #searchButton,.twoColHybLt #searchButton:hover {
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	background-color: transparent;
	margin: 0px;
	padding: 0 0.2em 0.3em 0.2em;
	font-size: 82%;
}

  /* 導覽列 */
.twoColHybLt #nav {
	position: relative;
	top: 4px;
	left: 0px;
	width: 868px;
	height: 30px;
}

.twoColHybLt #navMenu {
	width: 868px;
	margin: 0px;
	position: relative;
	padding-top: 0px;
}

.twoColHybLt #navMenu ul {
    list-style: none;
	margin: 0px;
	padding: 0px;
}

.twoColHybLt #navMenu li {
	float: left;
	border-left-width: 1px;
	border-left-style: solid;
	/*	border-left-color: #FFFFFF;*/
	margin: 0px;
	border-left-color: #FFFFFF;
}

.twoColHybLt #navMenu ul li a {
	background-color: #333333;
	color: #CCCCCC;
	display: block;
	font-size: 11px;
	font-weight: bold;
	line-height: 15pt;
	width: 155px;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 15px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 1px;
	text-decoration: none;
}

.twoColHybLt #navMenu ul li a.alumni {
	background-color: #FFFFFF;
	color: #000000;
}


.twoColHybLt #navMenu ul li a.english {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

.twoColHybLt #navMenu ul li a:hover {
	background-color: #282629;
	color: #FFFFFF;
	text-decoration: none;
}

.twoColHybLt #navMenu ul li a.alumni:hover {
	background-color: #FFFFFF;
	color: #000000;
	text-decoration: none;
}

.twoColHybLt #footMenu {
    margin-top: 20px;
}

.twoColHybLt #footMenu ul {
    list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.twoColHybLt #footMenu li {
    display: inline;
}

.twoColHybLt #footMenu li a {
	float: left;
	display: block;
	text-decoration: none;
	padding: 0 0.6em;
	height: 17px;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	background-color: transparent;
	background-image: url(../images/img02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 82%;
	font-weight: bold;
}

.twoColHybLt #footMenu li.first a {
	background-image: none;
}

.twoColHybLt #footMenu li a:hover {
	text-decoration: none;
	color: #FF6600;
}

.twoColHybLt #mainContent .news #title {
	font-size: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #BD4F2E;
}

.twoColHybLt #mainContent .news #news_date {
	font-size: 0.8em;
	color: #999999;
}
.twoColHybLt #container #innerContainer #mainContent .events #eventStory #news_date {
	font-size: 0.8em;
	color: #999;
}


.twoColHybLt #mainContent .news #story {
	font-size: 16px;
	color: #5D413A;
}

.twoColHybLt #mainContent .events {
    font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
	color: #333333;
	position: relative;
}

.twoColHybLt #mainContent .events h3 {
    font-size: 1.7em;
}

.twoColHybLt #mainContent .events p#story {
    line-height: 1.5em;
	margin-bottom: 1em;
	text-align: justify;
}
.twoColHybLt #container #innerContainer #mainContent .formLableText {
	font-family: "新細明體";
	font-size: 16px;
	font-weight: bold;
	color: #0000FF;
}
.boxed {
    margin: 0px;
	padding: 0px;
}
.boxed .title {
	padding: 10px 15px;
	margin: 0px;
	background: #3B3B3B;
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
}
.boxed .boxed_content input {
    margin-bottom: 5px;
}

.wide_list {
margin-top:8px;
vertical-align:middle;
margin: 0px;
padding: 0px;
width:225px;
}

.selectbox_arr {
    border:medium none;
    margin:0;
    padding:0;
    vertical-align:middle;
	text-align: left;
}

input {
font-family:inherit;
font-size:inherit;
font-weight:inherit;
}#Greeting {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-align: right;
}

.page_subject {
	font-size:240%;
	font-weight:normal;
	line-height:1.2;
	padding:0 0 0.45em;
}
.front_tr_odd {
	background-color: #E5E5E5;
}
.front_tr_even {
	background-color: #FFF;
}
.front_tablelist_head {
	color: #F60;
}
