﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{
	text-decoration:none;
	color:#999999;
	font-weight: lighter;
}
 a:hover{color:#333333;text-decoration:none;}

 .menuA:link,.menuA:visited{
	float:left;
	text-align:center;
	font-weight:lighter;
	color:#666666;
	font-size:11px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 4px;
}    
 .menuA:hover{
	color:#CCCCCC;
	text-decoration: none;
} 

 .titleA:link,.titleA:visited{text-decoration:none;font-weight:bold;font-family:Tahoma, Arial, "新宋体";text-align:left;}
 .titleA:hover{text-decoration:none;}

 .sideA:link,.sideA:visited{
	text-decoration:none;
	padding-left:18px;
	height:16px;
	overflow:hidden;
	display:block;
	margin-bottom:2px;
	width:160px;
	padding-top: 3px;
	font-size: 11px;
	font-weight: lighter;
	background-image: url(bullet-arrow.gif);
	background-repeat: no-repeat;
	background-position: 0px 6px;
}
 .sideA:hover{
	text-decoration:none;
	padding-left:18px;
	height:16px;
	overflow:hidden;
	background-image: url(bullet-arrow.gif);
	background-repeat: no-repeat;
	background-position: 0px -19px;
	font-weight: lighter;
}

 .CategoryA:link,.CategoryA:visited{
	text-decoration:none;
	font-size: 11px;
	font-family: Tahoma, Arial, "新宋体";
}
 .CategoryA:hover{text-decoration:none;}
 
 .more:link,.more:visited{padding-left:18px;margin:5px;text-decoration:none;}
 .more:hover{} 

 /*---超链接样式定义结束---*/

