﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{text-decoration:underline;color:#000000;font-family: 微软雅黑;font-size: 12px;}
 a:hover{color:#cc0000;}
 .menuA:link,.menuA:visited{float:left;height:21px;text-align:center;padding:6px 4px 0px 4px;background:url(menu.jpg) center 0px no-repeat;text-decoration:none;color:#15669B; font-family: 微软雅黑;}  
 .menuA:hover{background:url(menu.jpg) center -27px no-repeat;color:#115380} 
 .titleA:link,.titleA:visited{text-decoration:none;font-weight:bold;text-align:left;color:#CC0000;font-size:20px; font-family:"微软雅黑"}
 .titleA:hover{color:#98CE46;text-decoration:underline;font-family: 微软雅黑;}
 .sideA:link,.sideA:visited{padding-left:20px;background:url(links_bullet.gif) 0px 1px no-repeat;height:16px;overflow:hidden;display:block;margin-bottom:2px;width:174px;line-height:140%;font-family: 微软雅黑;}
 .sideA:hover{padding-left:20px;background:url(links_bullet.gif) 0px -16px no-repeat;height:16px;overflow:hidden;font-family: 微软雅黑;}

 .CategoryA:link,.CategoryA:visited{text-decoration:none;font-family: 微软雅黑;}
 .CategoryA:hover{text-decoration:underline;font-family: 微软雅黑;}
 
 .more:link,.more:visited{font-weight:bold;background:url(links_more.gif) no-repeat 0px 0px;padding-left:16px;margin:5px;text-decoration:none;color:#78AA2D;font-family: 微软雅黑;}
 .more:hover{background:url(links_more.gif) no-repeat 0px -16px;color:#98CE46;font-family: 微软雅黑;}  
 /*---超链接样式定义结束---*/