/*************************************************************/
/*************************************************************/
/************************** css 索引 *************************/
/*************************************************************/
/*************************************************************/
/******************** 搜索索引编号进行查找 *******************/

/****------------- 1.0.0 - 基本元素 ----------------------****/
	/***---------- 1.1.0 - 主体 ---------------------------***/
	/***---------- 1.2.0 - 链接 ---------------------------***/
	/***---------- 1.3.0 - h1、h2、h3、h4 -----------------***/
	/***---------- 1.4.0 - acronym、abbr ------------------***/
	/***---------- 1.5.0 - blockquote、code、cite ---------***/
	/***---------- 1.6.0 - p、small、e、span 及其它 -------***/
	/***---------- 1.7.0 - 图片设置 -----------------------***/


/****------------- 2.0.0 - 头部 --------------------------****/
	/***---------- 2.1.0 - 页面导航 -----------------------***/
	/***---------- 2.2.0 - 文章导航 -----------------------***/

/****------------- 3.0.0 - 内容 --------------------------****/
	/***---------- 3.1.0 - 基本元素 -----------------------***/
	/***---------- 3.2.0 - 文章 ---------------------------***/
		/**------- 3.2.1 - 文章、评论、引用通告标题 --------**/
		/**------- 3.2.2 - 文章内容 ------------------------**/
		/**------- 3.2.3 - 文章信息 ------------------------**/
	/***---------- 3.3.0 - 评论 ---------------------------***/
		/**------- 3.3.1 - 作者评论 ------------------------**/
		/**------- 3.3.2 - 用户评论 ------------------------**/
		/**------- 3.3.3 - 引用通告 ------------------------**/
		/**------- 3.3.4 - 回复表格 ------------------------**/
	/***---------- 3.4.0 - 归档 ---------------------------***/


/****------------- 4.0.0 - 页脚 --------------------------****/
	/***---------- 4.1.0 - 信息 ---------------------------***/
	/***---------- 4.2.0 - 搜索表格 -----------------------***/


/*************************************************************/
/*************************************************************/
/************************ css 内容 ***************************/
/*************************************************************/
/*************************************************************/

/*************************************************************/
/****------------- 开始 1.0.0 - 基本元素 -----------------****/
/*************************************************************/
	/************* 开始 1.1.0 - 主题 *************/
	body {
		font-size: 12px;
		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
		background-color: #d5d6d7;
		color: #333333;
		text-align: left;
		margin: 0;
		padding: 0;
		}
	/************* 结束 - 主题 *************/

	/************* 开始 1.2.0 - 链接 *************/
	a {white-space: normal;}
	a:link {
		color: #cc0000;
		text-decoration: none;
		}
	a:visited {
		color: #cc0000;
		text-decoration: none;
		}
	a:hover {
		color: #dd5800;
		text-decoration: none;
		}
	a:active {text-decoration: none;}
	/************* 结束 - 链接 *************/

	/************* 开始 1.3.0 - h1、h2、h3、h4 *************/
	h1, h2, h3 {
		font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
		font-weight: bold;
		margin: 0;
		}
	h1 {
		font-size: 4em;
		text-align: left;
		}
		h1.title {margin: 45px 0 -10px 45px;}
		h1.title a {
			color: #cc0000;
			text-decoration: none;
			}
		h1.title a:visited {color: #cc0000;}
		h1.title a:hover {color: #dd5800;}
	h2 {
		font-size: 17px;
		color: #cc0000;
		line-height: 19px;
		}
	h3 {
		font-size: 18px;
		color: #cc0000;
		padding: 0;
		}
	a, h2 a:hover, h3 a:hover {
		color: #dd5800;
		text-decoration: none;
		}
	/************* 结束 - h1、h2、h3、h4 *************/

	/************* 开始 1.4.0 - acronym、abbr  *************/
	acronym, abbr {
		font-size: 12px;
		cursor: help;
		border-bottom: 1px dashed #999999;
		}
	/************* 结束 - acronym、abbr *************/

	/************* 开始 1.5.0 - blockquote、code、cite *************/
	blockquote {
		color: #777777;
		margin: 15px 0 0 0;
		padding-left: 10px;
		border-left: 5px solid #dddddd;
		white-space: normal;
		}
	blockquote cite {
		margin: 5px 0 0;
		display: block;
		}
	code {
		font: 12px 'Courier New', Courier, Fixed, serif;
		white-space: normal;
		width: 450px;
		}
	/************* 结束 - blockquote、code、cite *************/

	/************* 开始 1.6.0 - p、small、e、span 及其它 *************/
	small {
		color: #777777;
		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
		font-size: 12px;
		text-decoration: none;
		}
	span a {color: #cccccc;}
	span a:hover {color: #ff5000;}
	hr {display: none;}
	.center {text-align: center;}
	.padding {
		margin: 0;
		padding: 0 45px 0 45px;
		}
	/************* 结束 - p、small、e、span 及其它 *************/

	/************* 开始 1.7.0 - 图片设置 *************/
	p img {
		padding: 5px;
		max-width: 400px;
		border: 1px solid #a9a9a9;
		}
	a img {
		padding: 5px;
		border: 1px solid #a9a9a9;
		}
	a:hover img{
		padding: 5px;
		border: 1px solid #cc0000;
		}
	img .centered {
		display: block;
		margin-left: auto;
		margin-right: auto;
		border: 1px solid #a9a9a9;
		}
	/************* 结束 - 图片设置  *************/
/*************************************************************/
/****------------- 结束 - 基本元素 -----------------------****/
/*************************************************************/


/*************************************************************/
/****------------- 开始 2.0.0 - 头部 ---------------------****/
/*************************************************************/
	/************* 开始 2.1.0 - 页面导航 *************/
	#navcontainer {
		margin-top: 20px;
		padding: 0px;
		width: 100%;
		height: 22px;
		background-color: #cccccc;
		text-align: right;
		text-transform: uppercase;
		}
	#navlist ul {
		margin-left: 0;
		margin-right: 5px;
		padding-left: 0;
		white-space: nowrap;
		z-index: 1;
		}
	#navlist li {
		display: inline;
		list-style-type: none;
		}
	#navlist a {
		padding: 1px 10px 1px 10px;
		color: #ffffff;
		background-color: #999999;
		text-decoration: none;
		}
	#navlist a:hover {
		color: #000000;
		background-color: #ffffff;
		text-decoration: none;
		}
	.page_item {font-size: 11px;}
	/************* 结束 - 页面导航 *************/

	/************* 开始 2.2.0 - 文章导航 *************/
	.navigation {
		width: 450px;
		display: block;
		text-align: center;
		margin: 0 45px 0 45px;
		padding: 20px 0 35px 0;
		text-decoration: none;
		}
	.navigation_page {
		width: 450px;
		display: block;
		text-align: center;
		margin: 0 45px 0 45px;
		padding: 20px 0 0 0;
		text-decoration: none;
		}
	.navigation a:link {color: #cc0000;}
	.navigation a:visited {color: #cc0000;}
	.navigation a:hover {color: #dd5800;}
	.alignright {
		float: right;
		padding-left:10px;
		}
	.alignleft {
		float: left;
		padding-right:10px;
		}
	/************* 结束 2.2.0 - 文章导航 *************/
/*************************************************************/
/****------------- 结束 - 头部 ---------------------------****/
/*************************************************************/


/*************************************************************/
/****------------- 开始 3.0.0 - 内容 ---------------------****/
/*************************************************************/
	/************* 开始 3.1.0 - 基本元素 *************/
	.space {
		padding: 10px 0 10px 0;
		font-size: 40px;
		font-weight: bold;
		color: #dddddd;
		}
	#page {
		text-align: left;
		background-color: #ffffff;
		margin: 0 auto 0 100px;
		padding: 0;
		width: 542px; /* for IE5/WIN */
		voice-family: "\"}\"";
		voice-family: inherit;
		width: 540px; /* 实际值 */
		border: 1px solid #959596;
		}
	html>body #page {width: 540px;}
	#content {font-size: 12px;}
	.narrowcolumn {
		float: left;
		padding-top: 15px;
		padding-bottom: 45px;
		}
	.narrowcolumn .entry {
		line-height: auto;
		margin: 15px 45px 15px 45px;
		}
	.narrowcolumn .postmetadata {text-align: left;}
	.wp-smiley { border: none; }
	/************* 结束 - 基本元素  *************/

	/************* 开始 3.2.0 - 文章 *************/
	.post {
		margin: 0;
		clear: left;
		text-align: left;
		text-decoration: none;
		}
	.post a {color: #cc0000;}
	.post a:visited {color: #cc0000;}
	.post a:hover {color: #dd5800;}
		/************ 开始 3.2.1 - 文章、评论、引用通告标题 **********-**/
		.post_bg {
			width: 450px;
			background-color: #eeeeee;
			padding: 15px 45px 15px 45px;
			}
		.post_bg h2 {
			padding: 0;
			margin: 0;
			}
		.date {
			color: #dddddd;
			padding: 40px 0 10px 0;
			margin: 0 45px 0 45px;
			font-size: 40px;
			font-weight: bold;
			}
		.time {
			color: #000000;
			float: left;
			margin: 0 0 0 0;
			text-align: center;
			font-weight: bold;
			padding-right: 8px;
			font-size: 16px;
			}
		.counter {
			color: #999999;
			text-decoration: none;
			}
		.counter a {color: #999999;}
		.counter a:visited {color: #999999;}
		.counter a:hover {color: #cc0000;}
		small.cat a {color: #999999;}
		small.cat a:visited {color: #999999;}
		small.cat a:hover {color: #cc0000;}
		small.catindex a {color: #999999;}
		small.catindex a:visited {color: #999999;}
		small.catindex a:hover {color: #cc0000;}
		/************ 结束 - 文章、评论、引用通告标题 **********-**/

		/************ 开始 3.2.2 - 文章内容 ************/
		html>body .entry ul {
			margin-left: 10px;
			padding: 0 0 0 30px;
			list-style: none;
			padding-left: 10px;
			}
		html>body .entry li {
			list-style-image: url(../images/bullet.gif);
			margin: 0 10px 0 25px;
			}
		.entry ol li {
			padding: 0;
			margin-left: 5px;
			margin-top: 0px;
			margin-bottom: 0px;
			}
		.entry ul li {
			padding: 0;
			margin-left: 5px;
			margin-top: 0px;
			margin-bottom: 0px;
			}
		.entry dl {/* null */}
		.entry dt {
			margin-left: 30px;
			padding-left: 18px;
			font-weight: none;
			background: url(../images/bullet.gif) no-repeat 0 2px;
			}
		.entry dd {
			margin-left: 50px;
			padding-left: 18px;
			color: #999999;
			background: url(../images/bullet.gif) no-repeat 0 2px;
			}
		.entry form { /* 对密码保护的文章进行设置的样式 */
			text-align:center;
			}
		.entrytext dl {/* null */}
		.entrytext dt {
			margin-left: 30px;
			padding-left: 18px;
			font-weight: none;
			background: url(../images/bullet.gif) no-repeat 0 2px;
			}
		.entrytext dd {
			margin-left: 50px;
			padding-left: 18px;
			color: #999999;
			background: url(../images/bullet.gif) no-repeat 0 2px;
			}
		.entrytext {
			padding: 0;
			margin: 15px 45px 15px 45px;
			}
		.entrytext li {
			list-style-image: url(../images/bullet.gif);
			padding: 0;
			margin-left: 5px;
			margin-top: 0px;
			margin-bottom: 0px;
			}
		/************ 结束 - 文章内容 ************/

		/************ 开始 3.2.3 - 文章信息 ************/
		.alter {border-top: 1px solid #dddddd;}
		.postmetadata {
			color: #777777;
			text-align: left;
			padding: 10px 0 1px 0;
			}
		acronym, abbr {
			cursor: help;
			border-bottom: 1px dashed #999999;
			}
		/************ 结束 - 文章信息 ************/
	/************* 结束 - 文章 *************/

	/************* 开始 3.3.0 - 评论 *************/
	.alt {
		margin: 0;
		padding: 0;
		}
	.commentlist {
		width: 455px;
		text-align: left;
		margin-top: 40px;
		}
	.commentlist li {
		font: 12px 'Lucida Grande', Verdana, Arial, Sans-Serif;
		font-weight: bold;
		line-height: 14px;
		background-color: #f5f5f5;
		border: 1px solid #f5f5f5;
		margin: 0;
		padding: 5px;
		list-style: decimal outside;
		/* 以下两项解决 ie 及 opera 下的文字换行问题，没 firefox 的！ */
		white-space: normal;
		word-break: break-all;
		}
	.commentlist p {
		margin: 12px 0 0 0;
		font-weight: normal;
		text-transform: none;
		}
	.commentlist cite {
		color: #000000;
		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
		font-style: normal;
		font-size: 12px;
		}
	.nocomments {
		text-align: center;
		margin: 0;
		padding: 0;
		}
		/************ 开始 3.3.1 - 作者评论 ************/
		.commentlist li.author-comment {
			font-weight: bold;
			background-color: #fffaf0;
			border: 1px solid #fffaf0;
			margin-bottom: 25px;
			list-style: none;
			}
		.commentlist li.author-comment .comment-header {
			font: 12px 'Lucida Grande', Verdana, Arial, Sans-Serif;
			color: #000000;
			}
		.commentlist li.author-comment .comment-body {
			font-size: 12px;
			color: #000000;
			}
		/************ 结束 - 作者评论 ************/

		/************ 开始 3.3.2 - 用户评论 ************/
		.commentlist li.user-comment {
			font-weight: bold;
			background-color: #f5f5f5;
			border: 1px solid #f5f5f5;
			margin-bottom: 25px;
			list-style: none;
			}
		.commentlist li.user-comment .comment-header {
			font: 12px 'Lucida Grande', Verdana, Arial, Sans-Serif;
			color: #000000;
			}
		.commentlist li.user-comment .comment-body {
			font-size: 12px;
			color: #000000;
			}
		/************ 结束 - 用户评论 ************/

		/************ 开始 3.3.3 - 引用通告 ************/
		.trackbacklist {
			margin: 35px 45px 0 45px;
			padding: 0;
			}
		.trackbacklist li {
			font: 12px 'Lucida Grande', Verdana, Arial, Sans-Serif;
			line-height: 14px;
			font-weight: bold;
			background-color: #ffffff;
			margin: 0 0 30px 0;
			list-style: none;
			}
		.trackbacklist p {
			font-weight: normal;
			text-transform: none;
			}
		.trackbacklist small {
			font-weight: normal;
			text-transform: none;
			}
		.trackbacklist small a {color: #999999;}
		.trackbacklist small a:visited {color: #999999;}
		.trackbacklist small a:hover {color: #cc0000;}
		/************ 结束 - 引用通告 ************/

		/************ 开始 3.3.4 - 回复表格 ************/
		#commentform {
			margin: 15px 45px 0 45px;
			width:450px;
			}
		#commentform p {
			margin: 0;
			font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
			color: #000000;
			}
		#commentform input, #commentform textarea {
			font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
			font-size: 12px;
			color: #000000;
			line-height: 14px;
			word-break: break-all;
			}
		.commentform-input-normal {
			width: 440px;
			height: 14px;
			margin: 5px 5px 1px 0;
			background-color: #ffffff;
			border: 1px solid #000000;
			padding: 2px 0 2px 2px;
			}
		.commentform-input-over {
			width: 440px;
			height: 14px;
			margin: 5px 5px 1px 0;
			background-color: #eeeeee;
			border: 1px solid #cc0000;
			padding: 2px 0 2px 2px;
			}
		.commentform-textarea-normal {
			width: 440px;
			margin: 5px 5px 1px 0;
			background-color: #ffffff;
			border: 1px solid #000000;
			padding: 2px 0 2px 2px;
			}
		.commentform-textarea-over {
			width: 440px;
			margin: 5px 5px 1px 0;
			background-color: #eeeeee;
			border: 1px solid #cc0000;
			padding: 2px 0 2px 2px;
			}
		.commentform-submit {
			color: #000000;
			height: 30px;
			width: 444px;
			margin-top: 5px;
			border: 1px solid #000000;
			background-color: #ffffff;
			}
		.commentform-submit-active {
			color: #ffffff;
			height: 30px;
			width: 444px;
			margin-top: 5px;
			border: 1px solid #cc0000;
			background-color: #cc0000;
			}
		/************ 结束 - 回复表格 ************/
	/************* 结束 - 评论 *************/

	/************* 开始 3.4.0 - 归档 *************/
	#archive {padding: 0 45px 0 0;}
	#archive dl {margin: 0 0 0 12px;}
	#archive dt {
		margin: 0 0 0 30px;
		padding: 0 0 0 18px;
		font-weight: none;
		background: url(../images/bullet.gif) no-repeat 0 2px;
		}
	#archive dd {
		margin: 0 0 10px 48px;
		padding: 0;
		color: #999999;
		}
	#archive_desc {
		margin: -10px -10px 20px 45px;
		color: #999999;
		}
	#archive_desc blockquote {
		padding-left: 10px;
		}
	/************* 结束 - 归档 *************/
/*************************************************************/
/****------------- 结束 - 内容 ---------------------------****/
/*************************************************************/


/*************************************************************/
/****------------- 开始 4.0.0 - 页脚 ---------------------****/
/*************************************************************/
#footer {
	font-size: 11px;
	height: 60px;
	background-color: #ffffff;
	padding: 20px 45px 10px 45px;
	border-top: 1px solid #dddddd;
	clear: both;
	text-decoration: none;
	}
#footer p {margin: 0;}
	/************* 开始 4.1.0 - 信息 *************/
	.info {float: left;}
	/************* 结束 - 信息 *************/

	/************* 开始 4.2.0 - 搜索表格 *************/
	.search {text-align: right;}
	.searchform-input-normal {
		font-size: 12px;
		width: 100px;
		height: 14px;
		background-color: #ffffff;
		border: 1px solid #000000;
		padding: 2px 0 2px 2px;
		text-align: left;
		}
	.searchform-input-over {
		font-size: 12px;
		width: 100px;
		height: 14px;
		background-color: #eeeeee;
		border: 1px solid #cc0000;
		padding: 2px 0 2px 2px;
		text-align: left;
		}
	/************* 结束 - 搜索表格 *************/
/*************************************************************/
/*****------------- 结束 - 页脚 --------------------------****/
/*************************************************************/



/*
eek

“无产阶级文化大革命（嘿）就是好！就是好啊就是好啊就是好。马列主义大普及，上层建筑红旗飘。
革命大字报（嘿），烈火遍地烧。胜利凯歌冲云霄。七亿人民团结战斗，红色江山牢又牢。”

WordPress Theme Almodovar + Public 简体中文版
by a freelance designer and photographer.
*/
