﻿/*-----------超链接样式---------------
说明:伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
a标签代表通用超链接样式 
.menuA代表Blog导航条菜单的样式 
.titleA代表日志标题的样式 
.sideA代表侧栏的超链接样式 
.CategoryA代表树形分类的链接样式 
.more代表更多链接的样式
------------------------------------*/
a:link, a:visited {
	text-decoration: none;
	color: #555;
	
}
a:hover {
	text-decoration:none;
	color: #555;
	
}
.menuA:link,.menuA:visited{
	float: left;
	text-align: center;
        line-height:220%;
        font-family: "微软雅黑";
	padding: 0px 8px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	
}
.menuA:hover{
	color: #FFFFFF;
        font-family: 微软雅黑, Arial;
	background: #060407;
	color: #fff;
	
}
.titleA:link, .titleA:visited {
	text-decoration: none;
	text-align: left;
        font-family: "微软雅黑";
	color: #555;
	
}
.titleA:hover {
	color: #ff0000;
        font-family: "微软雅黑";
	text-decoration: underline;
	
}
.sideA:link, .sideA:visited {
	color: #777;
	text-decoration: none;
	height: 20px;
	padding-left: 22px;
	margin-left: 0px!important;
	display: block;
	overflow: hidden;
	background: url(sidea_bg1.gif) no-repeat;
	
}
.sideA:hover {
	color: #ff0000;
	text-decoration: underline;
	overflow: hidden;
	display: block;
	background: url(sidea_bg2.gif) no-repeat;
	
}
.CategoryA:link, .CategoryA:visited {
	color: #777;
        font-family: "微软雅黑";
	text-decoration: none;
	padding-left: 2px;
	
}
.CategoryA:hover {
	color: #ff0000;
        font-family: "微软雅黑";
	text-decoration: none;
	
}
.more:link, .more:visited {
	height: 30px;
	line-height: 30px;
	background: url(more1.gif) no-repeat left;
	font-weight: bold;
	padding-left: 20px;
	margin-top: 40px;
	text-decoration: none;
	
}
.more:hover {
	color: #ff0000;
	background: url(more2.gif) no-repeat left;
	
}
 /*---超链接样式定义结束---*/