/*设置所有链接颜色为蓝色*/
a{
	color: #064C9E;
}
/*设置首页文章标题链接被访问过仍然是蓝色*/
div.postTitle a:visited {
	color: #064C9E;
}
/*设置首页文章鼠标移上去显示绿色*/
div.postTitle a:hover {
	color: #9CBA39;
}


/*设置body背景色*/
body {
    background: #eee;
}


/*推荐悬浮在右下角显示*/
#div_digg {
	background-color: white;
	border: 1px solid #CCCCCC;
	bottom: 0;
	padding: 8px;
	margin-right: 40px;
	position: fixed;
	right: -20px;
}


/*-----设置博客Header----*/
#header {
    border-bottom: 10px solid #092e66;
}
div#blogTitle {
    height: 68px;
    background: #1a427f;
}
div.title {
    float: left;
    font-family: 微软雅黑;
}
div.title a {
    font-size: 20px;
}
div#blogTitle div.subtitle {
    position: relative;
    top: 43px;
    color: #a8b1c6;
    left: -35px;
    font-size: 12px;
}
div#navigator ul#navList li a {
    background: #2a5ca8;
}
#nav_q, #nav_ing {
    display: none;
}


/*-----设置博客园默认插入代码展示样式-----*/
.cnblogs_code {
    border: 0;
    margin: 5px 15px;
    padding: 15px;
}
/*设置代码大小1*/
.cnblogs_code pre {
    font-size: 13px!important;
}
/*隐藏复制代码按钮*/
.cnblogs_code_toolbar {
    display: none;
}
/*设置代码大小2*/
.cnblogs_code span {
    font-size: 13px!important;
}
/*设置h2样式*/
#cnblogs_post_body h2 {
	color: #064C9E;
	border-left: #064C9E 12px solid;
	padding-left: 5px;
	font-size: 16px;
	font-weight: bold;
}