﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{
	text-decoration:none;
	color:#4F7500;
	font-family: Tahoma, Arial, "新宋体";
}
 a:hover{
	text-decoration: underline;
	color: #395500;
	background-color: #EFF9D0;
}
 .menuA:link,.menuA:visited{
	float:left;
	height:29px;
	text-align:center;
	text-decoration:none;
	color:#645A44;
	line-height:210%;
	background: url('menu_bg.gif');
	border-left: 1px solid white;
	border-right: 1px solid #DAD6CB;
	background-repeat: repeat-x;
	background-position: 0px 0px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}  
 .menuA:hover{
	color:#395500;
	background: #F4FADF url('menu_hover.png') top left repeat-x;
	background-repeat: repeat-x;
	background-position: 0px 0px;
	text-decoration: none;
} 
 .titleA:link,.titleA:visited{
	text-decoration:none;
	font-weight:bold;
	font-family:verdana, "宋体";
	text-align:left;
	color:#669900;
	font-size: 16px;
}
 .titleA:hover{
	color:#8ACC00;
	text-decoration:none;
	background-image: url(bg.gif);
}

 .sideA:link,.sideA:visited{
	text-decoration:none;
	height:22px;
	overflow:hidden;
	display:block;
	width:100%;
	line-height: 180%;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	padding-top: 4px;
}
 .sideA:hover{
	text-decoration:underline;
	overflow:hidden;
	background-color: #EFF9D0;
}
 .CategoryA:link,.CategoryA:visited{text-decoration:none;}
 .CategoryA:hover{text-decoration:underline;}
 
 .more:link,.more:visited{
	font-weight:bold;
	padding-left:22px;
	margin:5px;
	text-decoration:none;
	background-image: url(bullet-arrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
	height: 22px;
}
 .more:hover{}  
 /*---超链接样式定义结束---*/
