
#News-List-Board{ /* 最外層的框 */
	margin-bottom: 20px; 	
}
#News-List-Board table { 
	width: 100%;
	border-collapse:collapse;
}
#News-List-Board table td {
	padding: 3px;
}

/* ----------------------------------- 新聞標題 -------------------------------------*/

#NL-header table { /* 標題 */
	-moz-border-radius-topleft: 5px;
    -moz-border-radius-topright:5px;
    -webkit-border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}
#NL-header table {
	background-color: #d35c5c;
}
#NL-header table td { 
	color: #FFF;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	border: none;
	font-weight: bold;
}

/* ----------------------------------- 新聞內容 -------------------------------------*/

#NL-content table { /* 各新聞列表 */
	border-width: 0px 1px 2px 1px;
	border-style: solid;
	border-color: #d35c5c;
}
#NL-content table tr:nth-child(2n) {
   background-color:#fff5f5;
}
#NL-content table td {
	color: #333;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-size: 12px;
	border: 1px dotted #ebadad;
}
#NL-content table .LC-title{
	text-align: left;
}

.TB-number, .LC-number {
	width:10%;
	}
.TB-title, .LC-title {
	width:60%;
	}
.TB-date, .LC-date {
	width:20%;
	}
.TB-writer, .LC-writer {
	display:none;
	}
.TB-ratio, .LC-ratio {
	width:10%;
	}
.TB-remark, .LC-remark {
	display:none;
	}
	
/* ----------------------------------- 頁數 -------------------------------------*/

#NL-footer { /* 頁數最外框 */
	height: 50px;
	border: none;
	padding-top: 6px;
}

#pager ul.pages {
	display:block;
	border:none;
	text-transform:uppercase;
	font-size:11px;
	text-align: center;
	padding: 10px 0 0 0;
}

#pager ul.pages li { /* 頁數列表 */
	list-style: none;
	border: 1px solid #d35c5c;
	text-decoration: none;
	margin: 0 5px 0 0;
	padding: 3px 5px;
	display: inline;
	line-height: 30px; /* ie7 必要 */
	cursor: pointer;
}

#pager ul.pages li:hover { /* 觸碰時 */
   border:1px solid #d35c5c;
   color:#fff;
   background-color:#d35c5c;
}

#pager ul.pages a:hover { /* 觸碰時 */
   color:#fff;
}

#pager ul.pages li.pgEmpty { /* 沒有作用的頁數 */
	border:1px solid #ebadad;
	color:#ebadad;
	cursor: default;
}
#pager ul.pages li.pgEmpty:hover {
	border:1px solid #ebadad;
	color:#ebadad;
	cursor: default;
    background-color:#fff;	
}

#pager ul.pages li.pgCurrent { /* 作用中的頁數 */
   border:1px solid #d35c5c;
   color:#fff;
   font-weight:700;
   background-color:#d35c5c;
}
