﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{text-decoration:none;color: #333333;}
 a:hover{
	color:#779D03;
}
 

 .menuA:link,.menuA:visited{text-decoration:none;display:block;background:url(menuleft.gif) 3px 0px no-repeat;float:left;height:26px;text-align:center;padding:7px 7px 2px 12px;line-height:180%;color:#fff;font:12px 宋体,Arial;font-weight:;}    
 .menuA:hover{display:block;color:#333333;background:url(hoverleft.gif) 3px 0px no-repeat;} 
 .menuB:link,.menuB:visited,.menuB:hover{text-decoration:none;display:block;background:url(hoverleft.gif) 3px 0px no-repeat;float:left;height:26px;text-align:center;padding:7px 7px 2px 12px;line-height:180%;color:#333333;font:12px 宋体,Arial;font-weight:;}
 
 .titleA:link,.titleA:visited{text-decoration:none;font-weight:bold;text-align:left;color:#115690;}
 .titleA:hover{color: #84AD20;text-decoration:none;}

 .sideA:link,.sideA:visited{
	text-decoration:none;
	padding-left:15px;
	height:16px;
	overflow:hidden;
	display:block;
	width:160px;
	line-height:180%;
	border-bottom: dashed 1px #CCCCCC;
	padding-top: 3px;
	padding-bottom: 3px;
	background-image: url(mini-star.gif);
	background-repeat: no-repeat;
	background-position: 2px 6px;
}
 .sideA:hover{
	padding-left:15px;
	height:16px;
	
	background-color: #E6EDD9;
}

 .CategoryA:link,.CategoryA:visited{
	text-decoration:none;
	height:16px;
	overflow:hidden;
	margin-bottom:2px;
	width:160px;
	line-height:200%;
	margin-top: 2px;
	padding-top: 2px;
	padding-bottom: 4px;
	background-image: none;
}
 .CategoryA:hover{height:16px;overflow:hidden;}
 
 .more:link,.more:visited{
	font-weight:normal;
	padding-left:15px;
	text-decoration:none;
	font-size: 12px;
	background-image: url(more.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
 .more:hover{color:#779D03;} 