/*-----------超鏈接樣式---------------
 說明: 偽類:link :visited :hover分別代表超鏈接的通常、被訪問後、和鼠標接觸鏈接是的樣式
 a標籤代表通用超鏈接樣式
 .menuA代表Blog導航條菜單的樣式
 .titleA代表日誌標題的樣式
 .sideA代表側欄的超鏈接樣式
 .CategoryA代表樹形分類的鏈接樣式
 .more代表更多鏈接的樣式
------------------------------------*/
a, a:visited {
	color: #BE0C0C;
	text-decoration: none;
}

	
a:hover {
	text-decoration: underline;
}

 .menuA:link,.menuA:visited{
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0px 0px 0px 0px;
	text-decoration: none;
	padding: 8px;*padding: 8px; !important;*padding: 10px 8px 6px 8px; 
}

  
 .menuA:hover{
	background: #BE0C0C;
	color: #FFFFFF;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 8px;*padding: 8px; !important;*padding: 10px 8px 6px 8px; 
	text-decoration: none;
}

 
 #container #foot a:link,#container #foot a:visited{
	color: #BE0C0C;
	text-decoration: none;
}

 #container #foot a:hover{
	text-decoration: underline;
}

 .titleA:link,.titleA:visited{
	color: #BE0C0C;
	text-decoration: none;
}

 .titleA:hover{
	color: #BE0C0C;
	text-decoration: none;
}

 .sidepanel a:link,.sidepanel a:visited{
	color: #333333;
	text-decoration: none;
}

 .sidepanel a:hover{
	background: #EAEAEA;
	color: #BE0C0C;
	text-decoration: none;
}

 .sideA:link,.sideA:visited{
	width: 100%;
	display: block;
	color: #333333;
	text-decoration: none;
	padding: 3px 0px 3px 0px;
	border-bottom: 1px dotted #C0C0C0;
	word-break: keep-all; /* 不換行 */
	white-space: nowrap; /* 不換行 */
	overflow: hidden; /* 內容超出寬度時隱藏超出部分的內容 */
	text-overflow: ellipsis; /* 當對象內文本溢出時顯示省略標記(...) ；需與overflow:hidden;一起使用。*/
}

 .sideA:hover{
	background: #EAEAEA;
	color: #BE0C0C;
	text-decoration: none;
}

 .more:link,.more:visited{
	font-weight: bold;
	text-decoration: none;
}

 .more:hover{
	text-decoration: underline;
}

  
 /*---超鏈接樣式定義結束---*/
 #Side_Category img{
	display: none;
}

 /*---超鏈接樣式定義結束---*/