﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{color:#557401;text-decoration:none;font-weight:500;}
 a:hover{
	text-decoration:none;
	color: #FF9900;
}
 
 .menuA:link,.menuA:visited{
	color:#FFFFFF;
	font-size:14px;
	font-weight:600;
	font-family: Verdana,"Times New Roman";
	text-decoration: none;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: left;
}  
 .menuA:hover{color: #CCFF00;text-decoration:none;} 
 
 .titleA:link,.titleA:visited{
	font-size:20px;
	text-align:left;
	color:#000000;
	font-weight: bold;
}
 .titleA:hover{
	color: #557401;
	text-decoration: none;
}
 .sideA:link,.sideA:visited{
	color:#557401;
	font-weight:normal;
	height:16px;
	display:block;
	padding-left:17px;
	line-height:140%;
	overflow:hidden;
	background-image: url(ul.gif);
	background-repeat: no-repeat;
	background-position: left top;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCDDBB;
	padding-top: 2px;
	padding-bottom: 2px;
}
 .sideA:hover{
	text-decoration:none;
	color: #87BA01;
}
 .CategoryA:link,.CategoryA:visited{color:#557401;font-weight:normal}
 .CategoryA:hover{
	text-decoration:none;
}
 
 .more:link,.more:visited{
	color:#557401;
	margin:5px;
	text-decoration:none;
	font-size: 11px;
	font-weight: bold;
}
 .more:hover{
	text-decoration:none;
	background-image: url(k.gif);
	background-position: left -27px;
	font-size: 11px;
	font-weight: bold;
}
 /*---超链接样式定义结束---*/