/*-----------超鏈接樣式---------------
 說明: 偽類:link :visited :hover分別代表超鏈接的通常、被訪問後、和鼠標接觸鏈接是的樣式
 a標籤代表通用超鏈接樣式
.menuA代表Blog導航條菜單的樣式
.titleA代表日誌標題的樣式
.sideA代表側欄的超鏈接樣式
.CategoryA代表樹形分類的鏈接樣式
.more代表更多鏈接的樣式
------------------------------------*/
a:link,a:visited{
 text-decoration: none;
 color: #4E6517;
 font-size: 12px;
}
a:hover{
 color: #4E6517;
 text-decoration: none
}
.sidepanel a:link, .sidepanel a:visited{
 text-decoration: none;
}
.sidepanel a:hover{
 text-decoration: none
}
#container #foot a:link, #container #foot a:visited{
 text-decoration:none;
 font-size: 12px;
}
#container #foot a:hover{
 text-decoration: none;
}
.menuA:link, .menuA:visited{
 float: left;
 height: 20px;
 text-align: center;
 text-decoration: none;
 font-weight: bold;
 text-transform: capitalize;
 padding-top: 10px;
 color: #D3E5AB;
 padding-right: 10px;
 padding-left: 10px;
}
.menuA:hover{
 text-decoration: none;
 color: #FFFFFF;
 background-color: #3B4B1E;
} 
.titleA:link, .titleA:visited{
 font-size: 12px;
 text-decoration: none;
 font-weight: bold;
 text-align: left;
 color: #4E6517;
}
.titleA:hover{
 color: #6F8F21;
 text-decoration: none;
}
.sideA:link, .sideA:visited{
 height: 18px;
 overflow: hidden;
 display: block;
 line-height: 140%;
 padding-left: 18px;
 background-image: url(link.gif);
 background-repeat: no-repeat;
 background-position: 4px 4px;
 border-bottom-width: 1px;
 border-bottom-color: #DFE6CE;
 border-bottom-style: dashed;
 padding-top: 2px;
}
.sideA:hover{
 overflow: hidden;
 padding-left: 18px;
 background-color: #DEE6CC;
 border-bottom-width: 1px;
 border-bottom-style: dashed;
 border-bottom-color: #DFE6CE;
 padding-top: 2px;
}
.CategoryA:link,.CategoryA:visited{
 text-decoration: none;
}
.CategoryA:hover{
 text-decoration: underline;
}
.more:link, .more:visited{
 font-weight: bold;
 margin: 5px;
 text-decoration: none;
}
.more:hover{

}
 /*---超鏈接樣式定義結束---*/
 