﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{text-decoration:none;color:#0066a7;font-size:10pt;}
 a:hover{color:#0066a7;text-decoration:underline;font-size:10pt;}

 .sidepanel a:link,.sidepanel a:visited{text-decoration:none;color:#3E3E2F;}
 .sidepanel a:hover{text-decoration:none;color:#0066a7;}

 #container #foot a:link,#container #foot a:visited{text-decoration:none;color:#0066a7;}
 #container #foot a:hover{color:#0066a7;text-decoration:underline}

 .menuA:link,.menuA:visited{text-decoration: none;display: block;float:left;height:50px;text-align:center;padding:0px 4px 0px 4px;background:#99999 ; 0px 0px;text-decoration:none;color:#ffffff;line-height:50px;;width:50px; font-size: 10pt}  
 .menuA:hover{background:#ffffff  0px -28px;color:#ffffff;width:50px;line-height: 50px; background: url(menu_bg.png) repeat-x; font-size:10pt} 
 .menuB:link, .menuB:visited, .menuB:hover{text-decoration: none;display: block;background: url(menu_bg.png) repeat-x center top;float: left;text-align: center;width:50px;line-height:50px;color: #fff; font-size:10pt;}

 .titleA:link,.titleA:visited{font-size:16px;text-decoration:none;font-weight:bold;text-align:left;color:#0066a7;}
 .titleA:hover{color:#fff;background:#0066a7;}

 .sideA:link,.sideA:visited{padding-left:3px;height:20px;overflow:hidden;display:block;margin-bottom:2px;width:220px;line-height:140%;}
 .sideA:hover{padding-left:3px;overflow:hidden;text-decoration:none;color:#0066a7;}

 .CategoryA:link,.CategoryA:visited{text-decoration:none;height:20px;}
 .CategoryA:hover{text-decoration:none;height:20px;color:#0066a7;}

 .more:link,.more:visited{font-weight:bold;background:url(bullet-arrow.gif) no-repeat 0px 0px;padding-left:18px;margin:5px;text-decoration:none;}
 .more:hover{background:url(bullet-arrow.gif) no-repeat 0px -15px;}  
 /*---超链接样式定义结束---*/