/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a{text-decoration:none;color:#666;}
 a:hover{color:#960;}
 .sidepanel a:link,.sidepanel a:visited{}
 .sidepanel a:hover{}
 #container #foot a:link,#container #foot a:visited{text-decoration:none;color:#6b6b52;}
 #container #foot a:hover{color:#949472;text-decoration:underline}
 .menuA:link,.menuA:visited{
	text-decoration:none;
	color:#2a2821;
	font-size:9pt;
	font-weight:bold;
}  
 .menuA:hover{color:#963;text-decoration:none;} 
 .titleA:link,.titleA:visited{
	font-weight:bold;
	text-align:left;
	font-size: 10.5pt;
	color: #333;
}
 .titleA:hover{
	color: #726542;
}
 .sideA:link,.sideA:visited{
	background:url(arrow.gif) no-repeat center left;
	overflow:hidden;
	display:block;
	margin-bottom:0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	color: #2a2821;
}
  .page ul a{
	border: 1px dashed #999;
	text-decoration: none;
	font-weight: lighter;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
  } 
  .page ul a:hover{
	color: #FFF;
	text-decoration: none;
	background-color: #BCAC82;
	border-top-color: #F0DEAF;
	border-right-color: #F0DEAF;
	border-bottom-color: #F0DEAF;
	border-left-color: #F0DEAF;
  }
 .sideA:hover{
	overflow:hidden;
	color: #960;
}
 .CategoryA:link,.CategoryA:visited{
	text-decoration:none;
	font-size:9pt;
	color: #2a2821;
}
 .CategoryA:hover{
	text-decoration:underline;
	color: #960;
}
 .more:link,.more:visited{
	padding-left:20px;
	text-decoration:none;
	font-size:9pt;
	background-image: url(readmore.gif);
	background-repeat: no-repeat;
	background-position: left center;
}
 .more:hover{}  
 /*---超链接样式定义结束---*/
