/*-----------超鏈接樣式---------------
 說明: 偽類:link :visited :hover分別代表超連結的通常、被訪問後、和滑鼠接觸連結是的樣式
 a標籤代表通用超連結樣式
 .menuA代表Blog導航條選單的樣式
 .titleA代表日誌標題的樣式
 .sideA代表側欄的超連結樣式
 .CategoryA代表樹形分類的連結樣式
 .more代表更多連結的樣式
------------------------------------*/
 a:link,a:visited{text-decoration:underline;color:#666;}
 a:hover{color:#000;text-decoration:underline;}
 .sidepanel a:link,.sidepanel a:visited{text-decoration:none;color:#666;}
 .sidepanel a:hover{color:#000;;text-decoration:none;}
 #container #foot a:link,#container #foot a:visited{text-decoration:none;color:#fff;}
 #container #foot a:hover{color:#fff;text-decoration:none}

 .menuA:link,.menuA:visited{
	font-size: 12px;
	padding: 1px 5px;
	color: #666;
	text-decoration: none;
	BORDER-LEFT: #D1D1D1 1px solid;
}  
 .menuA:hover{
	color: Black;
	text-decoration: none; 
	background: #eeeeee;
} 
 .titleA:link,.titleA:visited{
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	color: Black;
}
 .titleA:hover{
	color: #666;
	text-decoration: none;
	padding-left: 6px;
	padding-top: 0px;
}

 .sideA:link,.sideA:visited{
	text-decoration: none;
	padding: 2px 0px 2px 15px;
	height: 16px;
	overflow: hidden;
	display: block;
	background: url(img/arrow2.gif) 2px 2px no-repeat;
	BORDER-BOTTOM: #EEEEEE 1px solid;
}
 .sideA:hover{
	text-decoration: none;
	padding-left: 15px;
	background: no-repeat 2px -13px;
	height: 16px;
	overflow: hidden;
	background: url(img/arrow.gif) no-repeat 2px -13px;
}
 .CategoryA:link,.CategoryA:visited{text-decoration:none;}
 .CategoryA:hover{text-decoration:underline;}
 .more:link,.more:visited{font-weight:bold;background:url(img/bullet-arrow.gif) no-repeat 0px 0px;padding-left:18px;margin:5px;text-decoration:none;}
 .more:hover{background:url(img/bullet-arrow.gif) no-repeat 0px -15px;}  
 /*---超連結樣式定義結束---*/
