/* CSS */
@import url("./global.css"); /* 载入全局样式文件 */
/*--------------------- >>> 初始化固定置顶层（勿修改）开始 <<< --------------------*/
body {
	/* 此段必须在body属性最后且不能再设置body属性，否则失效 */
	background-image:url(text.txt); /* Only for IE6 */
	background-attachment:fixed; /* 固定 */
}
/*--------------------- >>> 初始化固定置顶层（勿修改）结束 <<< --------------------*/

/*---------------------------- >>> 页面显示区域开始 <<< ----------------------------*/
#bodyHint,#doHint{ /* 动作状态条/内容显示区域的状态条（会被mainHint所代替）设置 */
	/* 永远固定位置 */
	position:fixed;
	left:0;
	/*bottom:0;  位置:底部 */
	top:0; /* 位置:顶部 */
	/* Start Only for IE6 */
	_position:absolute;
	_top: expression(documentElement.scrollTop); /* 位置:顶部 */
	/*_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight);  位置:底部 */
	/* End Only for IE6 */
	margin:0 auto; /* 使居中 */
	overflow:visible;
	z-index:10000;
	/* 永远固定位置 */

	width:100%;
	text-align:center; /* 文字对齐:居中 */
}
#bodyHint div,#doHint div{ /* 背景图片及文字区域 */
	display:inline; /* 将对象强制作为内联对象呈递，从对象中删除行 */
	background:url("../images/sys_progressing.gif") no-repeat; /* 进度图片 */
	background-color:#fff !important; /* 优先 */
	padding:0 0 0 17px;
	border:1px solid #299213;
}
#bodyHint span,#doHint span{ /* 文字部分 */
	color:#FFF;
	background-color:#299213;
	padding:0 2px;
}
#mainHint{ /* 主显区域设置 */
	background:#fff;
}
/*---------------------------- >>> 页面显示区域结束 <<< ----------------------------*/

/*------------------------------ >>> 固定置顶层开始 <<< ----------------------------*/
#content_Topbar{ /* 内容置顶基本设置 */
	/* 永远固定位置 */
	position:fixed;
	right:0; /* 位置:居右 */
	bottom:0; /* 位置:底部 */
	/*top:0;  位置:顶部 */
	/* Start Only for IE6 */
	_position:absolute;
	/*_top: expression(documentElement.scrollTop);  位置:顶部 */
	_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight); /* 位置:底部 */
	/* End Only for IE6 */
	margin:0 auto; /* 使居中 */
	overflow:visible;
	z-index:9999;
	/* 永远固定位置 */

	font-family:Microsoft YaHei,Arial;
	padding:0;
	text-align:center; /* 文字对齐:居中 */
	border:1px solid #999;
	background:#fff;
	/*background:#bc2d09;  背景颜色:偏红色 */
	/*background:#778fcd;  背景颜色:偏蓝色 */
}
#content_Topbar ul{ /* 菜单 */
	list-style:none; /* 取消列表前点 */
	margin:0; /* 删除UL的缩进，使所有的列表内容都不缩进 */
	padding:0;
}
#content_Topbar ul li{ /* 菜单项目 */
	float:left; /* 让内容都在同一行显示 */
	display:block;
	margin:0;
}
#content_Topbar ul li a{ /* 菜单链接 */
	display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;
	height:32px;
	line-height:32px;
	padding:2px 4px;
	text-decoration:none;
}
#content_Topbar ul li a:link,#content_Topbar ul li a:visited{ /* 菜单链接 */
	font-weight:bold;
}
#content_Topbar ul li a:active,#content_Topbar ul li a:hover{ /* 菜单链接悬停 */
	color:#fff;
	background:#bc2d09;
}
#content_Topbar ul li #HelpButton{ /* 帮助按钮 */
	display:inline-block;
	width:32px;
	height:32px;
	background:url(../images/sys_help_button.png) no-repeat;
    background-position:0 0; /* 图片位置像素 */
	background-color:#fff !important; /* 优先 */
	cursor:pointer;
}
#content_Topbar ul li #HelpText{ /* 帮助文字 */
	display:inline-block;
	width:32px;
	height:32px;
	line-height:32px;
	cursor:pointer;
}
#content_Topbar ul li #AboutButton{ /* 关于按钮 */
	display:inline-block;
	width:32px;
	height:32px;
	background:url(../images/sys_about_button.png) no-repeat;
    background-position:0 0; /* 图片位置像素 */
	background-color:#fff !important; /* 优先 */
	cursor:pointer;
}
#content_Topbar ul li #AboutText{ /* 关于文字 */
	display:inline-block;
	width:32px;
	height:32px;
	line-height:32px;
	cursor:pointer;
}
#content_Topbar ul li #GoToTopButton{ /* 返回顶部按钮 */
	display:inline-block;
	width:46px;
	height:32px;
	background:url(../images/sys_gototop_button.png) no-repeat;
    background-position:6px 0; /* 图片位置像素 */
	background-color:#fff !important; /* 优先 */
	cursor:pointer;
}
#content_Topbar ul li #GoToTopText{ /* 返回顶部文字 */
	display:inline-block;
	width:46px;
	height:32px;
	line-height:32px;
	cursor:pointer;
}
#content_Topbar .menuDiv{ /* 竖线 */
	width:1px;
	height:36px;
	background:#999;
}
/*------------------------------ >>> 固定置顶层结束 <<< ----------------------------*/

/*------------------------------ >>> 登录页区域开始 <<< ----------------------------*/
#head_Login{ /* 登录页基本设置 */
	width:520px;
	text-align:left;
	margin:60px auto;
	padding:20px 50px 60px 60px;
	background:#fff;
	border:1px solid #a4cdf2;
}
#head_Login h3{
	color:#1e7ace;
	font-size:20px;
	font-weight:bold;
	margin:0;
}
#head_Login #version{
	text-align:right;
	color:#666;
	font-size:14px;
}
#head_Login p{
	color:#1e7ace;
	margin:4px;
}
#head_Login input,#head_Login select,#head_Login textarea{
	font-size:15px;
	font-family:Microsoft YaHei,Arial;
	padding:1px;
	margin:2px;
	vertical-align:-2px;
	border:1px solid #a4cdf2;
}
#head_Login input{
	color:#990000;
}
#head_Login fieldset{
	font-size:24px;
	font-family:Microsoft YaHei,Arial;
	padding:10px;
	margin-top:5px;
	border:1px solid #a4cdf2;
	background:#fff;
}
#head_Login fieldset legend{
	color:#1e7ace;
	font-weight:bold;
	padding:3px 20px 3px 20px;
	border:1px solid #a4cdf2;
	background:#fff;
}
#head_Login fieldset .lbl_left{
	float:left;
	width:120px;
	text-align:right;
	line-height:16px;
	padding:4px;
	margin:1px;
	clear:left;
}
#head_Login fieldset div{
	float:left;
	margin-bottom:2px;
}
#head_Login .close{ /* 关闭按钮 */
	float:right;
	cursor:pointer;
}
#head_Login .span{
	float:left;
	border:1px solid #1e7ace;
	padding:1px;
	background:url(../images/sys_login_button.png) no-repeat;
    background-position:-2px -2px; /* 图片位置像素 */
	background-color:#d0f0ff !important; /* 优先 */
}
#head_Login .submit{
	width:90px;
	height:52px;
	color:#fff;
	font-size:24px;
	font-family:Microsoft YaHei,Arial;
	font-weight:bold;
	border:0;
	margin:0;
	background:transparent;
	cursor:pointer;
}
#head_Login .enter{
	text-align:center;
}
#head_Login .clear{
	clear:both;
}
/*------------------------------ >>> 登录页区域结束 <<< ----------------------------*/

/*---------------------------- >>> LOGO与BANNER区域开始 <<< -------------------------*/
#head_LogoBanner{ /* LOGO与BANNER的基本设置 */
	height:60px;
	margin:0 0; /* 上下各空10px */
}
#head_LogoBanner .logoNav{ /* LOGO的基本设置 */
	float:left; /* 页面布局 */
	width:550px;
	height:60px;
	overflow:hidden; /* 修剪掉多余部分 */
}
#head_LogoBanner .bannerNav{ /* BANNER的基本设置 */
	float:right; /* 页面布局:右浮动 */
	height:60px;
	overflow:hidden; /* 修剪掉多余部分 */
	background:url("../images/banner.jpg") no-repeat 0 0; /* 图片及定位 */
}
/*---------------------------- >>> LOGO与BANNER区域结束 <<< -------------------------*/

/*------------------------------ >>> 头部主体区域开始 <<< ---------------------------*/
#head_Main{ /* 头部主体的基本设置 */
	height:46px;
	line-height:46px; /* 使垂直居中，与height值同 */
	/* background-color:#bc2d09; 背景颜色:偏红色 */
	padding:6px 30px; /* 含搜索栏等 */
	clear:both;
	background:url("../images/sys_bg.jpg") repeat; /* 图片及定位 */
}
/*------------------------------ >>> 头部主体区域结束 <<< ---------------------------*/

/*------------------------------ >>> 全局搜索区域开始 <<< ---------------------------*/
#head_Search{ /* 搜索栏的基本设置 */
	float:left;
	margin:4px;
}
#head_Search input.ie6text{ /* Only for IE6 */
	display:expression((this.type=="text")?"inline-block":"style");
	width:540px;
	height:25px;
	line-height:23px;
	color:#ccc;
	font-size:16px;
	background:url(../images/sys_search_label.png) no-repeat;
    background-position:-1px -3px; /* 图片位置像素 */
	background-color:#fff !important; /* 优先 */
	padding-left:32px;
	border:2px solid #eee;
}
#head_Search input.ie6submit{ /* Only for IE6 */
	width:expression((this.type=="submit")?"60px":"style");
	height:expression((this.type=="submit")?"30px":"style");
	line-height:expression((this.type=="submit")?"30px":"style");
	font-size:16px;
	margin-left:10px;
	border:1px solid #003b7d;
	background:url(../images/sys_search_button.gif) no-repeat;
    background-position:16px 2px; /* 图片位置像素 */
	background-color:#0060ca !important; /* 优先 */
	cursor:pointer;
}
#head_Search input[type="text"]{ /* 输入框 */
	width:560px;
	height:26px;
	font-size:16px;
	font-family:Microsoft YaHei,Arial;
	background:url(../images/sys_search_label.png) no-repeat;
    background-position:-1px -3px; /* 图片位置像素 */
	background-color:#fff !important; /* 优先 */
}
#head_Search input[type="text"]:hover{ /* 悬停时 */
	border:2px solid #fad380;
}
#head_Search input[type="submit"]{ /* 按钮 */
	width:60px;
	height:32px;
	margin-left:10px;
	border:1px solid #003b7d;
	background:url(../images/sys_search_button.gif) no-repeat;
    background-position:16px 5px; /* 图片位置像素 */
	background-color:#0060ca !important; /* 优先 */
	cursor:pointer;
}
#head_Search input[type="submit"]:hover{ /* 悬停时 */
	background-color:#0059bb !important; /* 优先 */
}

#head_Latest{ /* 最新 */
	float:left;
	height:31px;
	line-height:31px;
	color:#f2e6e8;
	font-size:12px;
	font-weight:bold;
	margin:4px 0 0 20px;
}
#head_Latest a:link,#head_Latest a:visited{
	color:#eee;
	border-bottom:1px dotted #eee;
}
#head_Latest a:active,#head_Latest a:hover{
	color:#bc2d09;
	background:#eee;
	border-bottom:1px dotted #bc2d09;
}
/*------------------------------ >>> 全局搜索区域结束 <<< ---------------------------*/

/*---------------------------- >>> 页面层容器区域开始 <<< --------------------------*/
#content_Container{ /* 容器的基本设置 */
	/* position:relative; 相对定位:相对于前面的容器定位 */
	margin:0 auto; /* 使容器居中 */
	padding:0;
	min-width:980px; /* 容器最小宽度 */
	max-width:980px; /*90%; 容器最大宽度 */
}
/*---------------------------- >>> 页面层容器区域结束 <<< --------------------------*/

/*----------------------------- >>> 页面头部区域开始 <<< ---------------------------*/
#content_Header{ /* 页头的基本设置 */
	background:#fff;
	clear:both;
}
/*----------------------------- >>> 页面头部区域结束 <<< ---------------------------*/

/*------------------------------- >>> 当前位置开始 <<< -----------------------------*/
#nav_MyHome{ /* 当前位置 */
	color:#666;
	margin:10px 0; /* 上下各空10px */
}
/*------------------------------- >>> 当前位置结束 <<< -----------------------------*/

/*------------------------------- >>> 快速搜索开始 <<< -----------------------------*/
#content_QuickSearch{ /* 搜索栏的基本设置 */
	float:right;
	margin:8px 1px 1px 1px;
	padding:1px;
}
#content_QuickSearch input.ie6text{ /* Only for IE6 */
	display:expression((this.type=="text")?"inline-block":"style");
	width:170px;
	height:25px;
	line-height:23px;
	color:#ccc;
	background:url(../images/sys_search_label.png) no-repeat;
    background-position:-1px -3px; /* 图片位置像素 */
	background-color:#eee !important; /* 优先 */
	padding-left:32px;
	border:1px solid #ddd;
}
#content_QuickSearch input.ie6submit{ /* Only for IE6 */
	width:expression((this.type=="submit")?"60px":"style");
	height:expression((this.type=="submit")?"27px":"style");
	line-height:expression((this.type=="submit")?"27px":"style");
	margin-left:20px;
	border:1px solid #003b7d;
	background:url(../images/sys_search_button.gif) no-repeat;
    background-position:16px 2px; /* 图片位置像素 */
	background-color:#0060ca !important; /* 优先 */
	cursor:pointer;
}
#content_QuickSearch input[type="text"]{ /* 输入框 */
	width:210px;
	height:26px;
	font-family:Microsoft YaHei,Arial;
	background:url(../images/sys_search_label.png) no-repeat;
    background-position:-1px -3px; /* 图片位置像素 */
	background-color:#eee !important; /* 优先 */
	border:1px solid #ddd;
}
#content_QuickSearch input[type="text"]:hover{ /* 悬停时 */
	background-color:#fff !important; /* 优先 */
	border:1px solid #fad380;
}
#content_QuickSearch input[type="submit"]{ /* 按钮 */
	width:60px;
	height:28px;
	margin-left:20px;
	border:1px solid #003b7d;
	background:url(../images/sys_search_button.gif) no-repeat;
    background-position:16px 2px; /* 图片位置像素 */
	background-color:#0060ca !important; /* 优先 */
	cursor:pointer;
}
#content_QuickSearch input[type="submit"]:hover{ /* 悬停时 */
	background-color:#0059bb !important; /* 优先 */
}
#content_QuickSearch #Cancel{ /* 取消关键词 */
	position:absolute;
	font-family:Microsoft YaHei,Arial;
	background-color:#eee;
	border:0;
	padding:0 4px;
	cursor:pointer;
}
#content_QuickSearch #Cancel:hover{ /* 悬停时 */
	background-color:#ddd;
}
/*------------------------------- >>> 快速搜索结束 <<< -----------------------------*/

/*----------------------------- >>> 设置面板样式开始 <<< ---------------------------*/
#content_MySetting{ /* 设置面板开关（文字、图标）区域 */
	display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;
	color:#bc2d09;
	font-family:Microsoft YaHei,Arial;
	font-weight:bold;
	padding:2px 6px;
	cursor:pointer;
}
#content_MySetting:link,#content_MySetting:visited{
	text-decoration:none;
}
#content_MySetting:active,#content_MySetting:hover{
	background:#fff;
}
#content_MySetting .label{ /* 设置面板标志 */
	display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;
	width:16px;
	height:16px;
	background:url(../images/sys_option.gif);
	vertical-align:-2px; /* 垂直对齐 */
}
#content_MySetting .min, .max{ /* 设置面板样式 */
	display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;
	width:14px;
	height:14px;
	background:url(../images/sprite_setting.png) no-repeat; /* Sprites图片 */
	/*text-indent:-999em; 隐藏文本的一种方法 */
	vertical-align:-2px; /* 垂直对齐 */
}
#content_MySetting .max{ /* 设置面板展开时 */
    background-position:0 -400px; /* Sprites图片位置像素 */
}
#content_MySetting .min{ /* 设置面板收起时 */
    background-position:0 -350px; /* Sprites图片位置像素 */
}
#showMySetting{ /* 设置面板显示区域 */
	position:absolute;
	width:100%; /* 设置面板显示宽度 */
	color:#000;
	font-family:Microsoft YaHei,Arial;
	background:url(../images/sys_bg.jpg);
	padding:10px;
	clear:both;
}
/*---------------------------- >>> 设置面板样式结束 <<< ----------------------------*/

/*---------------------------- >>> 页面主体样式开始 <<< ----------------------------*/
#content_Body{ /* 主体的基本设置 */
	clear:both;
}
/*---------------------------- >>> 页面主体样式结束 <<< ----------------------------*/

/*----------------------------- >>> 导航栏样式开始 <<< -----------------------------*/
#content_NavAdmin{ /* 导航栏的基本设置 */
	float:left; /* 页面布局 */
	width:100%;
	text-align:left;
	clear:left;
	overflow:hidden; /* 修剪掉多余部分 */
	z-index:1000;
}
/*----------------------------- >>> 导航栏样式结束 <<< -----------------------------*/

/*--------------------------- >>> 顶部横列导航栏开始 <<< ---------------------------*/
#content_NavAdminH{ /* 导航的基本设置 */
	text-align:left; /* 文字左对齐 */
	/*display:inline; 将对象强制作为内联对象呈递，从对象中删除行 */
	border:0 solid #bc2d09;
	padding:0;
	clear:left;
	overflow:hidden; /* 修剪掉多余部分 */
	z-index:1000;
}
#content_NavAdminH ul{ /* 菜单 */
	list-style:none; /* 取消列表前点 */
	margin:0; /* 删除UL的缩进，使所有的列表内容都不缩进 */
	/* padding:0 auto; 保留自动内缩进 */
	padding:0 10px; /* 保留内缩进 */
}
#content_NavAdminH ul li{ /* 菜单项目 */
	float:left; /* 让内容都在同一行显示 */
	display:block;
	margin:0;
}
#content_NavAdminH .NavAdmin{ /* 导航的链接默认样式 */
	display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;
	color:#888a8c;
	font-family:Microsoft YaHei,Arial;
	font-weight:normal;
	text-decoration:none;
	padding:8px 30px; /* 链接间隔 */
	/*background:url(../images/sprite_setting.png) repeat 0 -1300px; Sprites图片 */
	cursor:pointer;
}
#content_NavAdminH .NavAdmin:link,#content_NavAdminH .NavAdmin:visited{ /* 导航的链接指向样式 */
	text-decoration:none;
}
#content_NavAdminH .NavAdmin:active,#content_NavAdminH .NavAdmin:hover{ /* 导航的链接悬停样式 */
	color:#fff;
	background:#5e6065;
}
/*--------------------------- >>> 顶部横列导航栏结束 <<< ---------------------------*/

/*---------------------------- >>> 模板内容样式开始 <<< ----------------------------*/
#content_Main{ /* 模板的基本设置 */
	float:left; /* 页面布局 */
	width:100%;
	text-align:left;
	clear:right;
}
#content_Main #IndexImage{ /* 图片展示 */
	float:left; /* 页面布局 */
	text-align:left;
	border:0 solid red;
}
#content_Main #IndexImage a{ /* 图片展示 */
	text-decoration:none;
}
#content_Main #IndexLeft{ /* 左栏 */
	float:left; /* 页面布局 */
	text-align:left;
	border:0 solid red;
}
#content_Main #IndexCenter{ /* 中栏 */
	float:left; /* 页面布局 */
	text-align:left;
	border:0 solid red;
}
#content_Main #IndexCenter div{ /* 中栏 */
	width:980px;
	padding:14px 0;
	background:url("../images/sys_bg.jpg") repeat; /* 图片及定位 */
}
#content_Main #IndexCenter div .caution:link,#content_Main #IndexCenter div .caution:visited{ /* 中栏 */
	color:#666;
}
#content_Main #IndexCenter div .caution:active,#content_Main #IndexCenter div .caution:hover{ /* 中栏 */
	color:#fff;
}
#content_Main #IndexCenter table{ /* 中栏 */
	width:100%;
}
#content_Main #IndexCenter .title{ /* 中栏 */
	color:#fcb400;
	font-weight:bold;
}
#content_Main #IndexCenter td{ /* 中栏 */
	padding:0 10px;
	line-height:18px;
}
#content_Main #IndexCenter a{ /* 链接行距 */
	color:#666;
	text-decoration:none;
	line-height:18px;
}
#content_Main #IndexCenter a:active,#content_Main #IndexCenter a:hover {
	color:#eee;
}
#content_Main #IndexCenter a:hover img{ /* 图片悬停访问 */
    position:relative; 
	top:0; 
	left:0;
	border-right:0;
	border-top:0;
	border-left:0; 
	border-bottom:0;
}
#content_Main #IndexRight{ /* 右栏 */
	float:right; /* 页面布局 */
	text-align:left;
	border:0 solid red;
}
#content_Main #ListCenter div{ /* 中栏 */
	width:980px;
	padding:14px 0;
}
#content_Main #ListCenter table{ /* 中栏 */
	width:100%;
}
#content_Main #ListCenter .title{ /* 中栏 */
	color:#fcb400;
	font-weight:bold;
}
#content_Main #ListCenter td{ /* 中栏 */
	padding:0 10px;
	line-height:18px;
}
#content_Main #View{ /* 详情页设置 */
	width:980px;
	border:0 solid yellow;
	clear:right;
}
#content_Main #ViewLeft{ /* 详情页左栏 */
	float:left; /* 页面布局 */
	width:200px;
	border:0 solid red;
}
#content_Main #ViewCenter{ /* 详情页中栏 */
	float:left; /* 页面布局 */
	width:30px;
	border:0 solid red;
}
#content_Main #ViewRight{ /* 详情页右栏 */
	float:left; /* 页面布局 */
	width:730px;
	border:0 solid red;
}
#content_Main #ViewType{ /* 详情页版块 */
	font-family:Microsoft YaHei,Arial;
	font-size:26px;
	font-weight:bold;
	padding:10px;
}
#content_Main #ViewClass{ /* 详情页一级分类 */
	color:#eee;
	font-family:Microsoft YaHei,Arial;
	font-size:16px;
	border:0 solid red;
	padding:4px 10px;
	background:url("../images/sys_bg.jpg") repeat; /* 图片及定位 */
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#666666, strength=3, direction=135);box-shadow:0px 1px 5px #999;-moz-box-shadow:0px 1px 5px #999;-webkit-box-shadow:0px 1px 5px #999;-moz-border-radius:2px;border-radius:2px;
}
#content_Main #ViewTitle{ /* 详情页标题 */
	font-family:Microsoft YaHei,Arial;
	font-size:18px;
	padding:10px 2px;
	text-align:center;
	border:1px solid #666;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#666666, strength=3, direction=135);box-shadow:0px 1px 5px #999;-moz-box-shadow:0px 1px 5px #999;-webkit-box-shadow:0px 1px 5px #999;-moz-border-radius:2px;border-radius:2px;
}
#content_Main #ViewInfos{ /* 详情页信息 */
	color:#666;
	font-size:12px;
	text-align:center;
	padding:10px 0 2px 0;
}
#content_Main #ViewContent{ /* 详情页内容 */
	padding:10px;
	line-height:26px;
}
#content_Main #ViewTop{ /* 详情页置顶 */
	color:#666;
	padding:8px;
}
#content_Main #BtnMore{ /* 详情页更多内容按钮 */
	float:right;
	padding:2px;
}

/* 帮助系统 */
#content_Help{ /* 列表的基本设置 */
	font-family:Microsoft YaHei,Arial;
	padding:10px 60px;
	background-color:#fff; /* 显示区背景色 */
}
/* 版权、关于 */
#content_Version{ /* 列表的基本设置 */
	font-family:Microsoft YaHei,Arial;
	padding:10px 60px;
	background-color:#fff; /* 显示区背景色 */
}
/*---------------------------- >>> 模板内容样式结束 <<< ----------------------------*/

/*---------------------------- >>> 列表过滤标签开始 <<< ----------------------------*/
#content_Filter{ /* 标签的基本设置 */
	position:relative;
	border:1px solid #bc2d09;
	margin:2px;
}
#content_Filter #Text{ /* 标签文字 */
	color:#fff;
	background-color:#bc2d09;
	border:0;
	padding:0 4px;
}
#content_Filter #Cancel{ /* 取消标签 */
	color:#ff0000;
	font-weight:bold;
	background-color:#ddd;
	border:0;
	padding:0 4px;
	cursor:pointer;
}
#content_Filter #Cancel:hover{ /* 悬停 */
	background-color:#fff;
}
/*---------------------------- >>> 列表过滤标签结束 <<< ----------------------------*/

/*------------------------------- >>> 页脚样式开始 <<< -----------------------------*/
#footer_Bottom{ /* 页脚 */
	width:980px;
	font-family:Microsoft YaHei,Arial;
	text-align:center;
	background:#eee;
	clear:both;
}
#footer_Bottom a{ /* 页脚链接 */
	text-decoration:underline;
}
#footer_Bottom .bottomNav{ /* 页脚 */
	padding:10px;
	overflow:hidden; /* 修剪掉多余部分 */
}
/*------------------------------- >>> 页脚样式结束 <<< -----------------------------*/



