﻿/*-----------超链接样式---------------
 说明: 伪类:link :visited :hover分别代表超链接的通常、被访问后、和鼠标接触链接是的样式
 a标签代表通用超链接样式
 .menuA代表Blog导航条菜单的样式
 .titleA代表日志标题的样式
 .sideA代表侧栏的超链接样式
 .CategoryA代表树形分类的链接样式
 .more代表更多链接的样式
------------------------------------*/
 a:link,a:visited{text-decoration:none;color:#999966;}
 a:hover{
	color:#CCCC00;
}

 .sidepanel a:link,.sidepanel a:visited{
	text-decoration:none;
	color:#333;
	font-family: "微軟正黑體";
	font-size: 12px;
	list-style-image: url(../../images/icon_offsite_red.gif);
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	line-height: 16px;
}
 .sidepanel a:hover{
	color:#060;
}

 #container #foot a:link,#container #foot a:visited{text-decoration:none;color:#666666;}
 #container #foot a:hover{color:#006699;}

 .menuA:link,.menuA:visited{float:left;height:26px;text-align:center;padding:0px 7px 0px 7px;text-decoration:none;color:#666666;line-height:210%;}  
 .menuA:hover{color:#FFFFFF} 

 .titleA:link,.titleA:visited{
	font-size:18px;
	text-decoration:none;
	font-weight:normal;
	text-align:left;
	color:#006633;
	font-family: "微軟正黑體";
}
 .titleA:hover{color:#FFCC33;}

 .sideA:link,.sideA:visited{
	height:16px;
	overflow:hidden;
	display:block;
	margin-bottom:2px;
	width:165px;
	line-height:140%;
	background-image: url(arrow.gif);
	background-position: 2px 3px;
	background-repeat: no-repeat;
	padding-left: 16px;
}
 .sideA:hover{
	height:16px;
	overflow:hidden;
	background-image: url(arrow.gif);
	background-position: 2px 3px;
	background-repeat: no-repeat;
	padding-left: 16px;
}

 .CategoryA:link,.CategoryA:visited{
}
 .CategoryA:hover{
}
 
 .more:link,.more:visited{font-weight:bold;background:url(bullet-arrow.gif) no-repeat 0px 0px;padding-left:18px;margin:5px;text-decoration:none;}
 .more:hover{
	background:url(bullet-arrow.gif) no-repeat 0px -15px;
	color: #666666;
} 
 /*---超链接样式定义结束---*/