/*只当显示具体文章内容的时候让文章的文字变得大一点，其他时候还是很小*/
.postBody{
        font-size:18px;
}
/*改变首页文章简介文字大小*/
.postCon,.c_b_p_desc{
        font-size:15px;
}
/*改变字体和鼠标样式*/
body{
        font-family:"Galdeano","Hiragino Sans GB","Microsoft YaHei",Trebuchet,"Trebuchet MS",Tahoma,"Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif !important;

}
/*设置选中内容的背景颜色*/
body ::-moz-selection{background:#197500;color:#fff}
body ::selection{background:#197500;color:#fff}
/*设置主标题样式*/
#Header1_HeaderTitle{
	color: #FA2D1A !important;
}
/*设置副标题样式*/
#blogTitle h2{
	color: #FA2D1A;
        font-weight:bolder;
        font-size:27px;
        margin-left:8em;
}
/*设置链接的各种状态的颜色，当然由于优先级，有的不一定起作用*/
a{
        text-decoration:none !important;
}
a:link {
        color:#197500;
}
a:visited {
	color: #ff0000;
}
a:hover {
	color: #0000ff;
}
/*修改每篇文章的标题的颜色为红色*/
.postTitle a:link, .postTitle a:visited, .postTitle a:active{
        color:red !important;
}