﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{text-decoration:none;color:#F06203;}
 a:hover{color:#AF3E00;}

.menuA:link,.menuA:visited{
	float:left;
	height:25px;
	text-align:center;
	padding:6px 7px 0px 7px;
	background:url(menu.jpg) center 0px no-repeat;
	text-decoration:none;
	color:#BB4B00;
	font-size: 14px;
	font-style: normal;
	font-weight: bolder;
	font-family: "微软雅黑";
	}  
 .menuA:hover{
	background:url(menu.jpg) center -27px no-repeat;
	color:#C34E00;
	font-size: 16px;
	font-style: normal;
	padding:6px 7px 0px 7px;
	font-weight: bolder;
	font-family: "微软雅黑";
	} 

 .titleA:link,.titleA:visited{text-decoration:none;font-weight:bold;text-align:left;color:#78AA2D;font-size:19px}
 .titleA:hover{color:#98CE46;text-decoration:underline;}



 .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%}
 .sideA:hover{padding-left:20px;background:url(links_bullet.gif) 0px -16px no-repeat;height:16px;overflow:hidden}

 .CategoryA:link,.CategoryA:visited{text-decoration:none;}
 .CategoryA:hover{text-decoration:underline;}
 
 .more:link,.more:visited{font-weight:bold;background:url(links_more.gif) no-repeat 0px 0px;padding-left:18px;margin:5px;text-decoration:none;color:#78AA2D;}
 .more:hover{background:url(links_more.gif) no-repeat 0px -19px;color:#98CE46;}  
 /*---超链接样式定义结束---*/