/*****************************************************************
******************************************************************
以下为所有风格通用样式
margin: 0;padding: 0;设置外边距,内边距空隙都为0
font-size: 12px;为字体大小.一般表格内的,不受他控制
li,ul设置list-style: none;主要是取消默认的小圆点.不太好看
******************************************************************
*****************************************************************/

body, form, ul, li, p, dl, dd, dt ,h,th,h3{
	margin: 0;
	padding: 0;
	font-size: 12px;
}
li,ul{
	list-style: none;
}

/******************************************
TD中的color: #333333;为没有超级链接的字体颜色
VERTICAL-ALIGN: top;表格里的内容居顶
text-align:left;表格里的内容居左
*******************************************/

TD {
	color: #333333;
	VERTICAL-ALIGN: top;
}

/******************************************
border:1px solid #ccc; 表单边框为1个像素的实线,
要为虚线改solid为dotted,要换颜色改#ccc
可以自定义背景颜色
background:#eee;
*******************************************/

input,textarea{
	border:1px solid #ccc;
}

/******************************************
网页整体宽度
******************************************/
.wrap{
	width:980px;
	margin:auto;
}

/******************************************
font-size: 12px;超级链接字体大小
color:字体颜色
text-decoration: none;没有下画线.要有下画线.改none为underline
a 为统一超级链接,
a:link没有点击过的超级链接样式
a:visited 被点击过的超级链接样式
a:hover 鼠标指向时的超级链接样式
a:active 被用户激活(在鼠标点击与释放之间发生的事件)时的样式.少用
*******************************************/

a {
	font-size: 12px;
}
a:link {
	color: #333333;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #333333;
}
a:hover {
	text-decoration: underline;
	color: #4E667B;
}
a:active {
	text-decoration: none;
}

#header{
	width:100%px;
}

.IndexLeft{
	width:770px;
	float:left;
}
.IndexRight{
	width:215px;
	float:right;
}
/******************************************
#toplogin input.login_name用户名表单,
#toplogin input.login_pwd密码表单,写在一行,用,号分开共用样式
width:90px;表单宽
height:15px;表单高
*******************************************/

#header .login{
	float:right;
	border:1px dotted #FFDD99;
	width:733px;
	margin-top:2px;
	margin-bottom:2px;
	
}
#header .login table td{
	text-align:right;
	padding-right:5px;
}
#header .login input.login_name,#header .login  input.login_pwd{
	width:90px;
	height:15px;
}

/******************************************
#toplogin input.login_sub提交按钮表单,
width:90px;表单宽
height:15px;表单高
background:#D2E4FC;	背景颜色
*******************************************/

#toplogin input.login_sub{
	width:40px;
	height:19px;
	background:#D2E4FC;
}

/******************************************
#header div 头部LOGO与广告图的容器,
float:left;靠左排列

#header div.ad广告容器,样式指定了靠右
*******************************************/

#header div{
	float:left;
}
#header div.ad{
	float:right;
}

/******************************************
#header头部大表格
margin-bottom:10px;与下面的表格距离10像素
border-top:#ccc 1px solid;表格上方一个像素的实线,颜色为#ccc,
可以把solid改成虚线dotted
#header td 大表格内的TD
padding-top:8px;上方留空8个像素
*******************************************/

#header{
	margin-bottom:7px;
	border-top:#ccc 1px solid;
}
#header .logo{
	margin-top:0px;
}

/******************************************
#guide头部网站导航表格编号
margin-top:5px;与上方表格距离5像素
border:1px #6B92D6 solid;边框样式solid改为dotted则为虚线
height:28px;高度
background:#D2E4FC;背景颜色
#guide td导航表格内部TD容器
border:1px solid #FFF;内边框样式
padding:6px 3px 4px 3px;导航文字与上右下左的距离
*******************************************/

#guide{
	margin-top:0px;
	border-top:0px #6B92D6 solid;
	border-bottom:0px #A7CAFA solid;
	height:35px;
	background:#D2E4FC url(head1.gif);
}
#guide td{
	border:0px solid #FFF;
	border-left:0px solid #FFF;
	border-right:0px solid #FFF;
	padding:8px 0px 0px 0px;
	color:#fff;
	font-size:14px;
	text-align:center;
}
#guide td div{
	width:990px;
	text-align:left;
	margin:auto;
	color:#106C96;
}
#guide td a{
	color:#fff;
	font-size:14px;
}

.nav_guide{
	border:1px solid #F8CD65;
	margin-top:5px;
	margin-bottom:2px;
}
.nav_guide td{
	padding:5px;
	background:#FEF7C1;
}
/******************************************
.MainTable .guide样式导航表格样式
margin-top:5px;与上方表格的距离
border:1px #A7CAFA solid;边框样式,solid可更换成dotted虚线
height:20px;表格高度
background:#F5FAFE;表格背景颜色

.MainTable .guide td{ padding:5px; 表格内的文字距离四周的间距
可改成 padding:5px 0 0 0;指上右下左
*******************************************/

.MainTable .guide{
	margin-top:5px;
	border:1px #A7CAFA solid;
	height:20px;
	background:#F5FAFE url(head2.gif);
}
.MainTable .guide td{
	padding:5px;
}


/*****************************************************************
******************************************************************
内容大表格模块样式
width:100%;占满整个空间宽度
margin-top:5px;与上一个表格间距为5个像素
overflow:hide;内容超过时,将隐藏.不过上面用百分比,一般这里设置无效.
只有上面用具体像素,这里才生效
border:1px #A7CAFA solid;边框样式,1个像素,可以改solid为虚线dotted,要取消边框改1px为0px
******************************************************************
******************************************************************/

.dragTable{
	width:100%;
	margin-top:5px;
	overflow:hide;
	border:0px #A7CAFA solid;
	
}

/******************************************
内容表格模块头部样式
background:#D2E4FC;背景颜色
height:20px;高度
padding-left:1em;字体与左边距离
padding-top:7px;字体与上方距离
border:1px #FFF solid;内边框样式,一般设置为0px较多,即不要内边框居多
******************************************/

.dragTable .head{
	background:#D2E4FC url(head_2.gif);
	height:33px;
	padding-left:0em;
	padding-top:0px;
	border:0px #FFF solid;
}

.dragTable .head .L{
	height:33px;
	width:17px;
	display:block;
	float:left;
	background:url(head_1.gif) no-repeat left;
}
.dragTable .head .R{
	height:33px;
	width:8px;
	display:block;
	float:right;
	background:url(head_3.gif) no-repeat right;
}
.dragTable .foot{
	height:8px;
	background:url(foot_2.gif)  repeat-x top;
}
.dragTable .foot .L{
	height:8px;
	width:9px;
	display:block;
	float:left;
	background:url(foot_1.gif) no-repeat left top;
}
.dragTable .foot .R{
	height:8px;
	width:9px;
	display:block;
	float:right;
	background:url(foot_3.gif) no-repeat right top;
}
/******************************************
模块主题文字,与点击查看更多
float:left;居左,
可以设置为粗体 font-weight:bold;颜色为color:#000;
******************************************/

.dragTable .TAG{
	padding-left:0.6em;
	padding-top:12px;
	float:left;
	color:#666666;
	font-weight:bold;
}

.dragTable .TAG a{
	color:#666666;
}

.dragTable .more{
	float:right;
	padding-right:1em;
	padding-top:12px;
}
.dragTable .more a{
	color:#666;
}
/******************************************
整体大表格之间的间隙
******************************************/
.MainTable{
	margin-top:0px;
}
/******************************************
右边窄表格模块样式
width:98%;宽度
line-height:17px;字体行高
******************************************/

.MainTable .Side .dragTable{
	width:98%;
}

.MainTable .Side .dragTable .middle{
	line-height:17px;
}

/******************************************
内容模块主体部分
padding:8px;距离四周距离为8个像素,
可以改成更具体些的padding:8px 0 0 0;即上右下左的距离
line-height:20px;行高,即是使用<br>换行符时的文字行高
******************************************/

.dragTable .middle{
	padding:6px 1px 4px 7px;
	height:50px;
	line-height:20px;
	border:1px solid #E9E9E9;
	border-bottom:0px solid #E9E9E9;
}

/******************************************
右边窄表格最新,最热的内容样式.
	width:210px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
通过设定固定宽度,使控制自动隐藏超出边界的内容自动隐藏,用省略号表示
只对<ul><li>有效
******************************************/

.MainTable .Side .dragTable .middle ul li{
	width:210px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}


/******************************************
列表页,包括首页,文章子栏目文章表格样式,表格高度
******************************************/
#AutoRows .dragTable .middle{
	padding-top:0px;
	padding-bottom:0px;
	height:100px;
}

/******************************************
文章中列表页中的图片主题,图片列表
.listpic每张图的占位空间
width:127px;占位宽度127像素
padding:3px 0 3px 4px;内间隙距离上右下左
float:left;居左排列
.listpic .title图片底下的标题样式
	width:127px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
固定了宽度,控制自动隐藏超出边界的文字
******************************************/

.listpic{
	width:127px;
	padding:3px 7px 3px 10px;
	float:left;
}
.listpic .title{
	width:127px;
	text-align:center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

/******************************************
文章中列表页中的图片主题,图片内边框样式
border:1px #FFF solid;边框一个像素,为实线,可以改0px,即取消内边框
改solid为dotted即是虚线
******************************************/

.listpic img{
	border:1px #FFF solid;
	width:120px;
	height:90px;
}

/******************************************
文章中列表页中的图片主题,图片外边框样式
width:120px;	图片外边框宽 height:90px;	图片外边框高
display:block;	定义链接为实体利于加效果
text-align :center;	图片在边框内居中
border:1px #ccc solid;图片外边框样式,要取消边框,可以把1改0,
要加粗粗,把1改成更大的数,要用虚线,可以把solid改成dotted,要换颜色修改#ccc为其他的
margin-bottom:5px;			与底部文字的距离
******************************************/

.listpic .img a{
	width:120px;
	height:90px;
	display:block;
	text-align :center;
	border:1px #ccc solid;
	margin-bottom:5px;
}

/******************************************
文章列表
padding:7px 5px 0 5px;内间隙,上右下左的距离
border-bottom:1px dashed #ccc;底部虚线,也可改为实线solid 或其他颜色

.listarticle span参数样式
******************************************/
.listarticle{
	width:98%;
}

.listarticle td{
	padding:7px 5px 0 5px;
	border-bottom:1px dashed #ccc;
}
.listarticle span{
	display:block;
	float:left;
}

/******************************************
文章列表
文章标题样式
text-indent: 0.6em;与小图标的距离
background:url(title_icon3.gif) no-repeat left;小图标,居左不平铺
background-position: 0em 40%;小图标是背景,坐标位置

.listarticle span.time{float:right;}时间靠右显示
******************************************/

.listarticle span.title{
	text-indent: 0.6em;
	background:url(title_icon3.gif) no-repeat left;
	background-position: 0em 40%;
}
.listarticle span.time{
	float:right;
}

/******************************************
分页
******************************************/

 

 

/*****************************************************************
******************************************************************
文章内容页
.content_word,.content_word p多种格式的控制内容的样式,字号为15像素
******************************************************************
******************************************************************/
.content_word,.content_word p{
	font-size:20px;
}



/*****************************************************************************************
*****************************************************************************************
**********评论
******************************************************************************************
******************************************************************************************/

#comment .content{
	width:99%;
	border:dotted 1px #ddd;
	margin-bottom:10px;
}
#comment .content .word{
	border-bottom:solid 1px #ddd;
	padding-left:5px;
	height:50px;
}
#comment .content .img{
	border-right:dotted 1px #ddd;
	padding:1em;
}
#comment .content .info{
	padding:2px 0 0 5px;
}



/*****************************************************************************************
*****************************************************************************************
网页底部
******************************************************************************************
******************************************************************************************/

#footer{
	border-top:#CBCBCB solid 1px;
	margin-top:4px;
}
#footer td{
	padding:1em 0 1em 0;
}





/*********************************************************************
**********************************************************************
AJAX在线编辑DIV容器
这个会员看不到.只是版主管理员才可以看到.这是后台风格
一般不必修改了.修改了会员也看不到
**********************************************************************
*********************************************************************/
#AjaxEditTable{
	border:1px solid #BEDDFF;
	background:#FFF;
}
#AjaxEditTable .head{
	height: 21px;
	background: #DBEAFF;
	border-bottom:1px solid #BEDDFF;
	padding:3px 5px 0 7px;
}
#AjaxEditTable .head a{
	color:#FFF;
}
#AjaxEditTable .head span{
	DISPLAY: block; 
	FLOAT: right;
}
#AjaxEditTable .middle{
	background:#FFF;
	line-height:18px;
	padding:5px;
}
#AjaxEditTable .middle input,#AjaxEditTable .middle textarea{
	border:1px solid #BEDDFF;
	background:#FFF;
}



/******************************************************
******************************************************
**列表页小分类页
******************************************************
******************************************************/

/*标题+内容*/
#sort_list .list_sortTC{
	border-bottom:1px dotted #ccc;
	width:99%;
	margin-bottom:10px;
}

#sort_list .list_sortTC .content{
	text-indent:2em;
}
/*标题+内容+图片*/
#sort_list .list_sortTCP{
	border-bottom:1px dotted #ccc;
	width:99%;
	margin-bottom:10px;
}
#sort_list .list_sortTCP .pic{
	padding-bottom:5px;
	padding-right:8px;
}
#sort_list .list_sortTCP .content{
	text-indent:1em;
}

/******************************************************
******************************************************
****主页布局设置
******************************************************
******************************************************/

.IndexL{
	padding-right:2px;
}
.IndexR{
	padding-left:2px;
}

.btable .list_title_tb div{
	width:45%;
	line-height:150%;
	float:left;
	padding-left:2px;
}

.btable .toptable{
	border-bottom:1px dotted #ccc;
	width:99%;
}
.btable .toptable .img{
	padding-bottom:5px;
}
.btable .toptable .bigword{
	font-weight:bold;
}

/*****************************************************************************************
*****************************************************************************************
************留言本
*****************************************************************************************
*****************************************************************************************/

.guestbook{
	margin-bottom:4px;
	border:1px dotted #A7CAFA;
	width:99%;
}
.guestbook .Ftd{
	padding:4px;
	border-right:1px dotted #A7CAFA;
}
.guestbook .Atd{
	border-top:1px solid #D2E4FC;
	padding-left:4px;
}
.guestbook .Ctd{
	padding:4px;
}

/******************************************************
******************************************************
****其它
******************************************************
******************************************************/
#showcontent,#showcontent p{
	font-size:16px;
	line-height:25px;
}


/*列表栏目名称*/
.showsortname{
	background:url(article_elite.gif) no-repeat 0.3em 0;
	padding-left:0.3em;
	text-indent:1.5em;
	font-weight:bold;
	float:left;
}

/*下拉菜单的背景颜色与透明度设置*/
#menuTable{
	background:#F5FCFE;
	border:1px solid #A7CAFA;
	filter:Alpha(Opacity=80);
}
#menuTable td{
	padding:3px 0px 3px 5px;
	line-height:15px;
}

.HD .head{
	background:#D2E4FC url(hd1.gif);
	height:29px;
	padding-left:0em;
	padding-top:0px;
	border:1px #FFF solid;
}

.HD .head span{
	float:left;
	width:86px;
	padding-top:6px;
	height:23px;
	display:block;
	text-align:center;
	cursor: hand;
}

.HD .head .hd2{
	background:url(hd2.gif);
	font-weight:bold;
	color:#fff;
}

.quotecomment_div{
	margin:5px;
	border:1px dotted #A7CAFA;
	border-left:2px solid #A7CAFA;
	color:#ccc;
}

#comment_title{
	height:92px;
	background:url(comment_title.gif);
}
#comment_title td{
	padding-top:18px;
}

/*列表页,标题+图片+内容的显示样式*/
.list_sortTCP{
	margin-bottom:12px;
	width:99%;
}
.list_sortTCP .pic{
	padding-right:1em;
}
.list_sortTCP .content{
	border-bottom:1px dotted #ccc;
	text-indent:2em;
	color:#646464;
}
.list_sortTCP .title a{
	color:#555555;
}
/*列表页,标题+内容的显示样式*/
.list_sortTC{
	margin-bottom:10px;
	width:99%;
	border-bottom:1px dotted #ccc;
}
.list_sortTC .title a{
	color:#666;
}
.list_sortTC .content{
	text-indent:2em;
	color:#646464;
}

/*************顶客********************/
.Digg{
	background:url(digg_center.gif) center;
}
.Digg .left{
	background:url(digg_left.gif) left;
	width:5px;
}
.Digg .right{
	background:url(digg_right.gif) right;
	width:5px;
}
.Digg .number{
	font-size:25px;
	font-weight:bold;
	text-align:center;
	padding-top:14px;
	color:#2B4399;
}
.Digg .title{
	font-size:13px;
	text-align:center;
	padding-top:18px;
}
.Digg .title a{
	color:#990000;
}

.small_digg{
	width:38px;
	height:24px;
	background:url(bg_digg.gif);
	text-align:center;
	padding-top:7px;;
	font-size:16px;
	margin-bottom:8px;
	margin-right:4px;
}

.module_table{
	border:1px dotted #ccc;
}
.module_tr td{
	background:#eee;
	color:red;
	padding:3px;
}

#comment_title{
	height:92px;
	background:url(comment_title.gif);
}
#comment_title td{
	padding-top:18px;
}
/************************************************************************************/
#head_1{
	background:url(headbg1.gif);
}
#head_2{
	background:url(headbg2.gif);
}
#head_er .logo{
	float:left;
}
#head_er .login{
	float:right;
	border:0px dotted #FFDD99;
	width:533px;
	margin-top:6px;
	margin-bottom:0px;
	
}
#head_er .time{
	float:right;
	color:#306794;
	margin-right:6px;

}
#head_er .login table td{
	text-align:right;
	padding-right:20px;
	color:#306794;
}
#head_er .login table td a{
	color:#306794;
}
#head_er .login input.login_name,#head_er .login  input.login_pwd{
	width:90px;
	height:15px;
	border:1px solid #9ABFDE;
}

 

#head_er input.login_sub{
	width:40px;
	height:19px;
	background:#D2E4FC;
	border:1px solid #9ABFDE;
}

#head_er .top_menu{
	float:left;
	height:38px;
	margin-right:6px;
}

#head_er .top_menu .center{
	padding-top:11px;
	text-align:center;
}
#head_er .top_menu .center a{
	font-size:14px;
	letter-spacing:0px;
	color:#fff;
	font-weight:normal;
}
#head_er .top_menu .left{
	background:url(headbg2_1.gif) no-repeat left;
	width:10px;
}

#head_er .top_menu2 .left{
	background:url(headbg2_21.gif) no-repeat left;
	width:8px;
}
#head_er .top_menu2 .center{
	background:url(headbg2_22.gif) ;
	width:70px;
}
#head_er .top_menu2 .center a{
	color:#214767;
	font-weight:normal;
}
#head_er .top_menu2 .right{
	background:url(headbg2_23.gif) no-repeat right;
	width:8px;
}

.about_p8{
	margin-top:1.5em;
	width:94%;
}
.about_p8 .about_p8_td1{
	font-size:13px;
	font-weight:bold;
	padding-bottom:4px;
	color:#444;
}
.about_p8 .about_p8_td2{
	line-height:180%;
	color:#555;
	border-bottom:1px dotted #D7D7D7;
	padding-bottom:6px;
}
.news_title {
	line-height:170%;
	padding-left:1em;
	padding-top:1em;
	font-size:13px;
	
}
.news_title a{
	text-decoration: underline;
	color:#555;
}
.news_title a:visited {
	text-decoration: underline;
	color:#555;
}
.news_title a:hover {
	color: red;
}

.button{
	color:#333;
	background:url(../default/bt_bg.gif);
	height:21px;
	border:1px solid #555;
	letter-spacing:2px;
}

.imgfriendlink a{
	display:block;
	float:left;
	margin:2px 7px 2px 6px;
}

#showstyle td{
	padding:4px 0px 2px 5px;
	
}
/********************/
.style_list_sortTCP .pic img{
	width:150px;
	height:120px;
	border:2px #fff solid;
}
.style_list_sortTCP .pic a{
	width:154px;
	height:124px;
	display:block;
	border:2px #ccc solid;
	margin:4px;
}
.style_list_sortTCP .title,.style_list_sortTCP{
	border-bottom:1px dotted #ccc;
}
.style_list_sortTCP .title a{
	font-size:15px;
	color:#990000;
}
.style_list_sortTCP .more_about{
 
}




.showstyle_down .listpic2{
	width:153px;
	padding:6px 0px 3px 0px;
	float:left;
	text-align:center;
}
.showstyle_down .listpic2 .title{
	width:147px;
	text-align:center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.showstyle_down .listpic2 .title a{
	text-decoration: underline;
}
.showstyle_down .listpic2 img{
	border:2px #FFF solid;
	width:140px;
	height:115px;
}

.showstyle_down .listpic2 .img a{
	width:144px;
	height:119px;
	display:block;
	text-align :center;
	border:1px #ccc solid;
	margin-bottom:5px;
}
.showstyle_down .listpic2 .img a:hover{
	border:1px red solid;
}

.ad_js{
	float:left;
	width:140px;
	text-align:left;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

#rolldemosite div{
	float:left;
	width:150px;
	text-align:left;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
#rolldemosite div.red a{
	color:red;
}


.index_pic_word .pw1{
	line-height:200%;
	color:blue;
	font-weight:bold;
	font-size:16px;
}

.index_pic_word .pw2{
	line-height:150%;
	color:#555;
}

.index_pic_word .wpic{
	margin-right:8px;
}

.index_pic_word .pw3{
	line-height:150%;
	color:#007BA8;
	padding-top:5px;
}
.index_pic_word .pw3 a{
	color:#007BA8;
	text-decoration: underline;
}

.index_pic_word .pw3 a:hover{
	color:red;
}
#pw_tdl{
	padding-top:5px;
}

.pw_title{
	background:url(selected.gif) no-repeat right;

}
#pw_tdl div{
	height:19px;
	text-align:right;
	padding-right:45px;
	padding-top:6px;
}
#pw_tdl div a:hover{
	text-decoration: none;
}

/***************php168主推产品******************/
#index_list_product .top{
	background:url(btable_head2.gif);
	height:61px;
}
#index_list_product .top .L{
	padding-left:10px;
	padding-top:16px;
	font-size:16px;
	font-weight:bold;
	color:#666;
}
#index_list_product .top .R{
	padding-top:4px;
	padding-left:18px;
	color:#A9A9A9;
}
#index_list_product .middle{
	background:#F8F8F8;
	padding-left:15px;
	padding-top:8px;
}
#index_list_product .middle .tb{
	width:97%;
	border-bottom:#CCCCCC dotted 1px;
	margin-bottom:7px;
}
#index_list_product .middle .tbb{
	border-bottom:#CCCCCC dotted 0px;
}
#index_list_product .middle .t_l{
	color:#007BA8;
	font-weight:bold;
	font-size:14px;
	float:left;
	width:30%;
}
#index_list_product .middle .t_r{
	float:right;
	width:60%;
	text-align:right;
	padding-top:4px;
}
#index_list_product .middle .t_r a{
	color:#007BA8;
}
#index_list_product .middle .f_l{
	width:55px;
	float:left;
	padding-top:8px;
	padding-left:11px;
	padding-bottom:7px;
}
#index_list_product .middle .f_r{
	float:left;
	padding-top:8px;
	text-indent:2em;
	line-height:130%;
	padding-bottom:7px;
	width:555px;
}
#index_list_product .middle .f_rr a{
	width:100px;
	display:block;
	float:left;
	padding-top:8px;
	padding-left:10px;
	font-weight:bold;
	color:#821515;
	font-size:14px;
}
/*******友情链接*******************/
.wordfriendlink{
	clear:both;
	margin-top:5px;
	padding-top:5px;
	margin-left:10px;
	width:600px;
	border-top:1px #ccc dotted;
}

/*************PHP168整站v5.0正式版上线*****************/
#v5cms .top{
	background:url(news_head2.gif);
}
#v5cms .top .t_l{
	background:url(news_head1.gif) no-repeat left;
	width:61px;
	height:73px;
	float:left;
}
#v5cms .top .t_c{
	float:left;
}
#v5cms .top .t_c .c_l{
	 padding-top:16px;
	 padding-left:8px;
	 font-size:14px;
	 font-weight:bold;
	 color:#555;
}
#v5cms .top .t_c .c_l .red{
	color:red;
}
#v5cms .top .t_c .c_r{
	padding-top:6px;
	padding-left:8px;
	color:#666;
}
#v5cms .top .t_r{
	background:url(news_head3.gif) no-repeat right;
	width:7px;
	height:73px;
	float:right;
}
#v5cms .mi{
	border:1px #D1D1D1 solid;
	border-bottom:0px #D1D1D1 solid;
	background:url(news_middle.gif) repeat-x top;
	line-height:150%;
	padding:12px;
	color:#444;
	padding-right:5px;
}
#v5cms .mi .about{
	width:130px;
	float:left;
	text-indent:2em;
}
#v5cms .mi .pic{
	padding-left:5px;
	width:133px;
	float:left;
}
#v5cms .mi .word{
	padding-top:8px;
	clear:both;
}
#v5cms .mi .word a.f{
	color:red;
	background:url(downicon.gif) no-repeat;
	text-indent:22px;
	display:block;
	float:left;	
}

/******授权查询*********/
#checkBiz{
	margin-top:4px;
}
#checkBiz .L{
	background:url(biz_1.gif) no-repeat left;
	width:59px;
	height:73px;
}
#checkBiz .C{
	background:url(biz_2.gif);
	height:73px;
}
#checkBiz .C .top{
	padding-top:18px;
	padding-left:22px;
	font-size:15px;
	font-weight:bold;
	color:#666;
	text-decoration: underline;
}
#checkBiz .C .top a{
	font-size:15px;
	font-weight:bold;
	color:#666;
	text-decoration: underline;
}
#checkBiz .C .bottom{
	padding-top:4px;
	padding-left:22px;
	color:#A9A9A9;
}
#checkBiz .R{
	background:url(biz_3.gif) no-repeat left;
	width:11px;
	height:73px;
}
/**************模块表格*****************/
.dtable{
	margin-top:8px;
	float:left;
	padding-right:22px;
}
.dtable .top{
	background:url(head_2.gif);
}
.dtable .top .L{
	background:url(head_1.gif) no-repeat left;
	width:17px;
	height:33px;
	float:left;
}
.dtable .top .C{
	float:left;
	padding-top:11px;
	padding-left:8px;
	font-size:14px;
	font-weight:bold;
	color:#666;
}
.dtable .top .R{
	background:url(head_3.gif) no-repeat right;
	width:8px;
	height:33px;
	float:right;
}
.dtable .middle{
	border:1px #E9E9E9 solid;
	border-bottom:0px #D1D1D1 solid;
	line-height:150%;
	padding:12px;
	color:#444;
}
.dtable .middle2{
	line-height:;
	padding:2px;
}
.dtable .foot{
	background:url(foot_2.gif);
	height:8px;
}
.dtable .foot .L{
	background:url(foot_1.gif) no-repeat left top;
	width:9px;
	height:8px;
	float:left;
}
.dtable .foot .R{
	background:url(foot_3.gif) no-repeat right top;
	width:9px;
	height:8px;
	float:right;
}
.dtable .top .more{
	float:right;
	padding-top:12px;
	padding-right:8px;
	font-size:12px;
	color:#666;
}
.dtable .top .more a{
	font-size:12px;
	color:#666;
}
/*******媒体报道*************/
.wz2 {
	height: 25px;
	display: block;
	font-size: 12px;
	color: #707070;
	font-family: Arial, Helvetica, sans-serif;
	width: 227px;
}
.kuai2 {
	height: 46px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	width: 286px;
}
.li3 {
	font-size: 13px;
	font-weight: bold;
	color: #0C0081;
	line-height: 20px;
	display: block;
	float: left;
	text-align: left;
	width: 190px;
	height: 10px;
	margin-top: 3px;
}
.li4 {
	display: block;
	float: left;
	margin-top: 15px;
}
.wz2 img {
	margin-left: 24px;
}
.li5 {
	font-family: 13;
	font-size: 13px;
	color: #0C0081;
	font-weight: bold;
	display: block;
	float: left;
	margin-top: 12px;
	width: 190px;
	text-decoration: none;
}
.wz1 a {
	font-size: 13px;
	color: #99003D;
	text-decoration: none;
}
.wz2 a {
	color: #999999;
	text-decoration: none;
}
.li3 a {
	color: #99003D;
	text-decoration: none;
}
.li3 a {
	color: #99003D;
}
.li5 a {
	color: #0C0081;
	text-decoration: none;
}
.li3 a {
}
.font{width:286px; height:270px;}
.font ul{margin:0;padding:0px; display:block;}
.font li{list-style-type:none;}
.kuai{
	height:64px;
	border-bottom:1px dashed #ccc;
	margin-bottom:; 	width: 286px;
}
.li1{
	float:left;
	display:block;
	padding-top:5px;
	margin-top: 5px;
	width: 50px;
	margin-right: 5px;
}
.li2{
	width:230px;
	float:left;
	display:block;
	float:left;
	padding-top:5px;
}
.wz1 {
	height: 20px;
	width: auto;
	display: block;
	margin: 0px;
	padding: 0px;
	font-size: 13px;
	color: #99003D;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.STYLE1 {
	color: #99003D;
	width: 190px;
	height: 10px;
	margin-top: 15px;
}
.wz1 a:hover {
}
.li3 STYLE1 a {
	color: #99003D;
	text-decoration: none;
}

#meiti .middle{
	padding:5px 0 0 8px;
	height:310px;
}

.font{
	clear:both;
}

.index_pr .a2 .lt{
	 background:url(ico_block.gif) 10px 4px no-repeat;
	 padding-left:29px;
	 height:23px;
}
.index_pr .a1 .down{
	 background:url(bgd.gif) no-repeat;
	 padding-top:3px;
	 height:22px;
	 padding-left:15px;
	 margin-bottom:5px;
}
.index_pr .a1 .down a{
	text-decoration: underline;
}
.index_pr .a1 .down a:hover {
	text-decoration: none;
}
.index_pr .a1 .word{
	font-size:14px;
	line-height:25px;
}
.index_pr .bt{
	border-bottom:1px dotted #ccc;
	margin-bottom:10px;
}
.index_pr .bt3{
	border-bottom:0px dotted #ccc;
	margin-bottom:0px;
}



.wy{
   margin:auto; width:981px;
   }

.l{
   float:left;
   }
.r{
   float:right;
   }
.background_p10{
   background:url(p10.gif) repeat-y; height:740px;width:660px; 
   }
.background_p9{
   background:url(p9.gif) repeat-x; height:267px; width:658px; margin:auto; 
   }
.php_border{
   border-bottom:1px dotted #CACACA; margin:auto; width:648px; height:257px;
   }
.php_size{
   padding:0px; margin:0px;  letter-spacing:1px; font-size:14px; color:#5D5D5D; clear:both;
   }
   .php_size li{line-height:22px; height:22px;}
.php_kg{
   width:450px; padding-top:10px;
   }
/*私服隐藏链接*/
#sfdivid{
	display:none;
}


/*************DIV布局的大表格结构,这里可以控制左右列表的调转*******************/
.MainDivTable .Main{
	width:70%;
	float:left;
}
.MainDivTable .Side{
	width:30%;
	text-align:right;
	float:right;
}
.MainDivTable .Side .dragTable{
	float:right;
}

/**********************************分页******************************************/

.page{
	text-align:center;
	padding:8px;
}


/*****************************************************************
******************************************************************
文章内容页
.content_word,.content_word p多种格式的控制内容的样式,字号为15像素
******************************************************************
******************************************************************/
.content_word,.content_word p{
	font-size:15px;
}



/************************************评论样式***************************/

#comment .content,#comment_show .content{
	width:99%;
	border:dotted 1px #ddd;
	margin-bottom:10px;
}
#comment .content .word,#comment_show .content .word{
	border-bottom:solid 1px #eee;
	padding-left:5px;
	height:50px;
}
#comment .content .img,#comment_show .content .img{
	border-right:dotted 1px #ddd;
	padding:1em;
}
#comment .content .info,#comment_show .content .info{
	padding:2px 0 0 5px;
}
/******************************内容页*************************************/
#view_article .head{
	display:none;
}
#view_article .middle{
	border-top:1px solid #D0D0D0;
	background:#FDFEFF;				/**内容页背景颜色**/
}
#view_article .main_title{
	margin-top:33px;
	margin-bottom:15px;
	font-size:20px;
	color:#000;
	font-weight:bold;
	text-align:center;
}
#view_article .fit_title{
	line-height:40px;
	font-size:15px;
	color:#000;
	text-align:center;
}
#view_article .top_about{
	text-align:center;
	color:#666;
	padding-bottom:10px;
	border-bottom:1px solid #eee;
	width:96%;	
	margin:auto;
	margin-bottom:15px;
}
#view_article .top_about a{
	color:#666;
}
#view_article .top_about #commnetsnum{
	color:red;
}
#view_article .content{
	width:96%;
}
.content_word,.content_word td,.content_word p,.content_word div,.content_word span,.content_word a{
	font-size:15px;
	line-height:200%;
}
#view_article .tag_username{
	border:#ccc dotted 1px;
	margin-top:10px;
}
#view_article .tag_username .Tags a{
	font-weight:bold;
}
#view_article .tag_username td{
	padding:3px 9px 1px 9px;
	background:#fff;
}
#view_article .nextpage td{
	font-size:14px;
	line-height:80px;
}
#view_article .nextpage td a{
	font-size:14px;
}

/*把相关相目的TAG隐藏掉*/
#sonSortName .head,#sonSortName .foot{
	display:none;
}
#sonSortName .middle{
	border-top:1px solid #D0D0D0;
	
	padding:0px;
}