﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{ text-decoration: underline; color: #515151; }

 a:hover{ color: #787878; text-decoration: underline; }

 .sidepanel a:link,.sidepanel a:visited{ text-decoration: none; color: #515151; }

 .sidepanel a:hover{ color: #F93D00; text-decoration: underline; }

 #container #foot a:link,#container #foot a:visited{ text-decoration: none; color: #FFFFFF; }

 #container #foot a:hover{ color: #FFFFFF; text-decoration: underline; }

 .menuA:link,.menuA:visited{ display: block; margin-top: 20px; margin-right: 3px; padding: 7px 20px 7px 20px; background: #FFFFFF; text-decoration: none; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #000000; border: none; }
  
 .menuA:hover{ text-decoration: underline; }
 
 .titleA:link,.titleA:visited{ font-size: 14px; text-decoration: none; font-weight: bold; text-align: left; color: #F93D00; }

 .titleA:hover{ color: #F93D00; text-decoration: underline; }

 .sideA:link,.sideA:visited{ padding-left: 18px; background: url(arrow.gif) 4px 4px no-repeat; height: 18px; overflow: hidden; display: block; margin-bottom: 2px; width: 130px; line-height: 140%; }

 .sideA:hover{ padding-left: 18px; overflow: hidden; }

 .CategoryA:link,.CategoryA:visited{ text-decoration: none; }

 .CategoryA:hover{ text-decoration: underline; }

 .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; }
  
 /*---超链接样式定义结束---*/
