/*****************************************************************
******************************************************************
以下为所有风格通用样式
margin: 0;padding: 0;设置外my_guide边距,内边距空隙都为0
font-size: 12px;为字体大小.一般表格内的,不受他控制
li,ul设置list-style: none;主要是取消默认的小圆点.不太好看
******************************************************************
*****************************************************************/

body, form, ul, li, p, dl, dd, dt ,h,td,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:960px;
	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: #595959;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #595959;
}
a:hover {
	text-decoration: underline;
	color: red;
}
a:active {
	text-decoration: none;
}

#header{
	width:960px;
}

/************************************************************************************
网页最顶部登录框与日历相关
**************************************************************************************/
#header_top{
	width:960px;
	background:url(head_top_2.gif);
}
#header_top .L{
	width:9px;
	height:30px;
	background:url(head_top_1.gif);
}
#header_top .R{
	width:7px;
	height:30px;
	background:url(head_top_3.gif);
}
#header_top .login{
	width:500px;
	float:left;
	margin-top:4px;
}
#header_top .Time{
	width:300px;
	float:right;
	text-align:right;
	padding-top:6px;
	padding-right:5px;
	margin-top:2px;
}
#header_top .login input.login_name,#header_top .login  input.login_pwd{
	width:90px;
	height:15px;
}
#header_top .login_sub{
	color:#fff;
	background:url(login_button.gif);
	padding-top:1px;
	border:1px solid #ccc;
	height:19px;
}
/******************************************************************************************
网站LOGO与小图片菜单
******************************************************************************************/
#header{
	clear:both;
	width:960px;
	margin:auto;	
	margin-top:7px;
}
#header .logo{
	float:left;
	padding-top:5px;
	padding-bottom:7px;
}
#header .ico_guide{
	float:right;
	width:75px;
	border-right:1px dotted #ccc;
	margin-right:4px;
	margin-top:10px;
}
#header .ico_guide a{
	width:75px;
	text-align:center;
	padding-top:34px;
	display:block;
}
#header .ico_guide a{
	font-weight:bold;
}
#header .bbs{
	background:url(headico/bbs.gif) no-repeat top center;
}
#header .post{
	background:url(headico/post.gif) no-repeat top center;
}
#header .jf{
	background:url(headico/jf.gif) no-repeat top center;
}
#header .user{
	background:url(headico/user.gif) no-repeat top center;
}
#header .search{
	background:url(headico/search.gif) no-repeat top center;
}
#header .book{
	background:url(headico/book.gif) no-repeat top center;
}
#header .digg{
	background:url(headico/digg.gif) no-repeat top center;
}
#header .sell{
	background:url(headico/sell.gif) no-repeat top center;
}


/******************************************************************************************
网站头部菜单
******************************************************************************************/
#guide{
	width:960px;
	clear:both;
	margin:auto;
	margin-top:0px;
	height:31px;
	background: url(cate_nav_bg.gif) repeat-x;
}
#guide .L{
	height:31px;
	width:10px;
	background:url(cate_nav_bg1.gif);
	float:left;
}
#guide .C span a{
	font-size:14px;
	color:#FAFAFA;
	font-weight:bold;
	letter-spacing:1px;
}
#guide .C span{
	float:left;
	height:22px;
	padding:9px 15px 0px 10px;
	background:url(cate_nav_bg_3.gif) no-repeat right;
}
#guide .R{
	float:right;
	height:23px;
	text-align:right;
	padding-right:15px;
	padding-top:8px;
	background: url(cate_nav_bg2.gif) right no-repeat;
}
#guide .R a{
	background:url(flea_dot.gif) no-repeat 0px 0px;
	padding-left:19px;
	font-size:14px;
	color:#fff;
	margin-right:5px;
}

/*****栏目导航****/
.nav_guide{
	width:928px;
	margin:auto;
	padding:10px 15px;
	border-left:1px solid #EAEAEA;
	border-right:1px solid #EAEAEA;
	color:#595959;
}
#list_nav_guide{
	width:960px;
	margin:auto;
	padding:10px 0px;
	color:#595959;
}
/******************************************
.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 #9ACAD6 solid;
	
}

/******************************************
内容表格模块头部样式
background:#D2E4FC;背景颜色
height:20px;高度
padding-left:1em;字体与左边距离
padding-top:7px;字体与上方距离
border:1px #FFF solid;内边框样式,一般设置为0px较多,即不要内边框居多
******************************************/

.dragTable .head{
	background:#ccc url(head_bg.gif) no-repeat right;
	height:30px;
	padding-top:0px;
	border:0px #FFF solid;
	border-bottom:0px #C6EBEE solid;
}

.dragTable .head .L{
	background:url(hd_a1.gif);
	width:15px;
	height:30px;
	margin-left:0px;
	float:left;
}

/******************************************
模块主题文字,与点击查看更多
float:left;居左,
可以设置为粗体 font-weight:bold;颜色为color:#000;
******************************************/

.dragTable .TAG{
	float:left;
	color:#666;
	font-weight:bold;
	padding:9px 5px 0 0px;
	height:21px;
	font-size:13px;
}
.dragTable .TAG a{
	color:#247384;
	font-size:13px;
}
.dragTable .morelink{
	float:left;
	padding-top:8px;
	padding-left:10px;
}
.dragTable .morelink a{
	margin-left:10px;
	text-decoration: underline;
}
.dragTable .more{
	float:right;
	padding-right:1em;
	padding-top:8px;
}
.dragTable .more a{
	color:#666;
}
/******************************************
整体大表格之间的间隙
******************************************/
.MainTable{
	margin-top:0px;
}
/******************************************
右边窄表格模块样式
******************************************/

.MainTable .Side .dragTable{
	width:98%;
}

.MainTable .Side .dragTable .middle{
	line-height:17px;
}

/*************DIV布局的大表格结构,这里可以控制左右列表的调转*******************/
.MainDivTable .Main{
	width:70%;
	float:left;
}
.MainDivTable .Side{
	width:30%;
	text-align:right;
	float:right;
}
.MainDivTable .Side .dragTable{
	float:right;
}
/******************************************
内容模块主体部分
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 #D0D0D0;
	border-top:0px solid #D0D0D0;
}

/******************************************
右边窄表格最新,最热的内容样式.
	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:120px;
	padding:3px 7px 3px 5px;
	float:left;
}
.listpic .title{
	width:120px;
	text-align:center;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.listpic img{
	border:1px #FFF solid;
	width:120px;
	height:90px;
}
.listpic .img a{
	width:120px;
	height:90px;
	display:block;
	text-align :center;
	border:1px #ccc solid;
	margin-bottom:5px;
}

/**********************************分页******************************************/

.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;
}



/***********************网页底部************************************/

#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;
}

/*********************************留言本***********************************************/

.guestbook{
	margin-bottom:4px;
	border:1px dotted #ccc;
	width:99%;
}
.guestbook .Ftd{
	padding:4px;
	border-right:1px dotted #ccc;
}
.guestbook .Atd{
	border-top:1px solid #eee;
	padding-left:4px;
}
.guestbook .Ctd{
	padding:4px;
}


/******************下拉菜单的背景颜色与透明度设置*************/
#menuTable{
	background:#CDCDCD;width:auto;
	border:1px solid #ccc;
	filter:Alpha(Opacity=100);
}
#menuTable td{
	padding:3px 5px 3px 5px;text-align:center;
	line-height:18px;
}
#menuTable td a{
	width:100%;height:12px;padding-top:3px;float:left;
	color:3000;
	text-decoration: none;
}
#menuTable td a:hover{
	width:100%;height:12px;padding-top:3px;float:left;
	color:#fff;
	text-decoration: none;
	background:#8C8C8C;
}
/******************评论页显示样式**********************/

#comment_title{
	height:92px;
	background:url(../default/comment_title.gif);
}
#comment_title td{
	padding-top:18px;
}


/******************顶客页digg.php显示样式**********************/
.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:5px;
	width:99%;
	border-bottom:1px dotted #ccc;
}
.list_sortTC .title a{
	color:#555555;
}
.list_sortTC .content{
	text-indent:2em;
	color:#646464;
}



/*******************************顶客**************************************/
.Digg{
	background:url(../default/digg_center.gif) center;
}
.Digg .left{
	background:url(../default/digg_left.gif) left;
	width:5px;
}
.Digg .right{
	background:url(../default/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(../default/bg_digg.gif);
	text-align:center;
	padding-top:7px;;
	font-size:16px;
	margin-bottom:8px;
	margin-right:4px;
}




/*******************************提交按钮*************************************/
.button{
	color:#333;
	background:url(../default/bt_bg.gif);
	height:21px;
	border:1px solid #555;
	letter-spacing:2px;
}


/***************************专题列表页*****************************************/
#listsp{
	width:99%;
}
#listsp .sptd{
	border-bottom:1px dotted #ccc;
	padding-top:5px;
}
#listsp .pic{
	padding:3px 1em 0.5em 5px;
}
#listsp .title{
	padding-bottom:0.2em;
}
#listsp .title a{
	color:#990000;
}
#listsp .pic img{
	border:1px solid #333;
}
#spshow .about{
	color:#990000;
}


/****************************积分介绍页*************************************/
.jfsort{
	margin-bottom:10px;
}
.jfsort .jfname{
	background:url(article_elite.gif) no-repeat 10px 0px  ;
	text-indent:25px;
	color:red;
	font-weight:bold;
}
.jfsort .title{
	background:url(arrow.gif) no-repeat 25px 0px;
	text-indent:35px;
}

.jfsort .about{
	text-indent:45px;
}

 
/*********下载*********/
.viewcontent .middle{
	padding:0px;	
}
#viewdownload .middle td{
	padding-left:8px;
	padding-top:3px;
}
#viewdownload .middle .a1{
	font-weight:bold;
}
#viewdownload .middle .b1{
	background:#fff;
}
/***************视频*****************/
#viewmv .middle td{
	padding-left:8px;
	padding-top:3px;
}
#viewmv .middle .a1{
	font-weight:bold;
}
#viewmv .middle .b1{
	background:#fff;
}
/********************商城****************************/
.sortshop{
	width:180px;float:left;
	border-right:solid 1px #ccc dotted;
	border-bottom:solid 1px #ccc dotted;
}
.sortshop.about{
	padding-left:5px;
}
.sortshop a{
	font-weight:bold;
}

.sorttitle{
	width:98%;
}
.sorttitle td{
	padding-top:3px;
	background:url(iicon3.gif) repeat-x bottom;
}
.sorttitle a{
	display:block;
	background:url(iicon1.gif) no-repeat left;
	text-indent:1.2em;
	background-position: 0 40%;
}


.sortshop .title a{
	display:block;
	background:url(items.gif) no-repeat 5px 0px;
	width:170px;
	text-indent:2em;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

/**********图片大分类页**************/
.BigsortImg .v0{
	width:120px;
	padding:5px 0px 5px 18px;
}
.BigsortImg .v0 .p1 img{
	width:120px;
	height:90px;
	border:1px solid #fff;
}
.BigsortImg .v0 .p1 a{
	width:120px;
	height:90px;
	display:block;
	border:1px solid #ccc;
}
.BigsortImg .v0 .p2{
	text-align:center;
	padding-top:5px;
	width:120px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
/**********图片内容列表页**************/
.list_sortpic .listpic{
	margin-left:6px;
}
/********************/
.BigsortTile .a2{
	padding-right:10px;
}

/*********图片主题************/
#ListShowPic .listpic{
	margin-left:6px;
}


#content_vote{
	margin:10px;
}



/**********Flash大分类页**************/
.FlashBigsortImg .v0 .p2{
	text-align:left;
}
/**********商城大分类页**************/
.ShopBigsortImg .v0 .p2{
	text-align:left;
}
/**********商城大分类页**************/
.MvBigsortImg .v0 .p2{
	text-align:left;
}

/****************************************************/
#IndexMainNews .L{
	height:70px;
	width:4px;
	background:url(topnews_a1.gif) no-repeat top;
}

#IndexMainNews .C{
	background:url(topnews_a2.gif) repeat-x top;
	line-height:150%;
}

#IndexMainNews .R{
	width:4px;
	background:url(topnews_a3.gif) no-repeat top;
}

#IndexMainNews{
	border-bottom:1px solid #E3E3E3;
}
/**********************************首页推荐栏目************************************/
.AutoRows .list_title{
	background:url(ico_block.gif) no-repeat 0px 6px ;
	text-indent:15px;
	padding-top:2px;
	padding-right:9px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;

}
.AutoRows .list_title a{
	font-size:13px;
}
/*********************************首页滑动门特效标题样式*******************************/
.bmenu{
	width:140px;
	height:19px;
	background:url(blog_mu.gif);
	margin-right:5px;
	text-align:left;
	padding-top:11px;
}
.bmenu span{
	font-size:13px;
	color:#707070;
	font-weight:bold;
	cursor:hand;
}
.bmenu .a1{
	margin-left:10px;
	color:#990000;
}
.bmenu .a2{
	margin-left:5px;
}
.rmenu{
	margin-right:5px;
}
.rmenu .LL{
	background:url(m_l.gif);
	width:5px;
	height:30px;
}
.rmenu .RR{
	background:url(m_r.gif);
	width:5px;
}
.rmenu .CC{
	background:url(m_c.gif);	
	font-size:13px;
	font-weight:bold;
	color:#707070;
}
.rmenu .CC div{
	height:20px;
	padding-top:10px;
	padding-left:0px;
	padding-right:7px;
	margin-right:4px;
	margin-left:2px;
	float:left;
	letter-spacing:2px;
	background:url(m_ch.gif) no-repeat right;
	cursor:hand;
}
.rmenu .CC div.f{
	background:url();
	letter-spacing:0px;
	margin-right:0px;
}

.rmenu .CC div.ch{
	color:#990000;
}


/*********************************友情链接.更多.申请*******************************/
.linkmenu{
	width:140px;
	height:19px;
	background:url(blog_mu.gif);
	margin-right:5px;
	text-align:left;
	padding-top:11px;
}
.linkmenu span a{
	font-size:13px;
	color:#707070;
	cursor:hand;
}
.linkmenu span a:visited {
	color:#707070;
}
.linkmenu .a1{
	margin-left:10px;
	color:#056FC8;
}
.linkmenu .a2{
	margin-left:11px;
}

/******************************内容页*************************************/
#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;
}
#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;
}
/****************************************列表页*****************************************/
#list_article .head{
	display:none;
}
#list_article .middle{
	border-top:1px solid #D0D0D0;
	background:#FDFEFF;				/**列表页背景颜色**/
}

/**自定义表单**/
.formlist_head td{
	line-height:24px;
	color:red;
	background:#eee;
}
.formlist_tr td{
	line-height:26px;
}
.formlist_table{
	background:#eee;
}


/*把相关相目的TAG隐藏掉*/
#sonSortName .head{
	display:none;
}
#sonSortName .middle{
	border-top:1px solid #D0D0D0;
	
	padding:0px;
}

/************************************首页搜索***********************************************/
#Index_Search{
	margin-top:1px;
}
#Index_Search .dragTable .middle{
	border-top:#D0D0D0 1px solid;

}
#Index_Search .Main .dragTable .middle{
	background:url(search_logo.gif) no-repeat 20px 5px;
	padding-left:80px;
}
#Index_Search .Main .dragTable .middle .input{
	width:330px;
	height:17px;
	border:1px solid #7C9FBD;
	margin-left:10px;
}
#Index_Search .Main .dragTable .middle .s_bt{
	display:block;
	background:url(search_img.gif);
	width:65px;
	height:24px;
	float:left;
	text-indent:-1000px;
	margin-left:10px;
}
#Index_Search .Main .dragTable .middle .right{
	float:left;
	padding-top:4px;
	padding-left:15px;
}
#Index_Search .Main .dragTable .middle .right a{
	font-size:13px;
	color:#0F42A6;
	text-decoration: underline;
}
#Index_Search .Main .dragTable .middle .right a:hover{
	text-decoration:none;
}
#Index_Search .Main .dragTable .middle .top{
	height:30px;
}
#Index_Search .Main .dragTable .middle .hotkey a{
	margin-left:5px;
}

#Index_Search .Side .dragTable .middle #num_info div{
	float:left;
	display:block;
	padding-left:4px;
	width:48%;
	line-height:25px;
}

/*把首页普通文字链接隐藏掉,为避免重复显示*/
.wordfriendlink{
	display:none;
}

/*为了首页的后台更新标签好看些*/
.label_head_guides{
	width:660px;
}



/***********************************
************************************/
.select_contain{width:235px;height:20px;float:left;} 
.select_contain span{border:0px solid #777;position:absolute;overflow:hidden;} 
.select_contain select{margin:-2px;width:235px;} 
.select_contain_2{width:150px;height:20px;float:left;}
.select_contain_2 span{border:0px solid #777;position:absolute;overflow:hidden;} 
.select_contain_2 select{margin:-2px;width:150px;} 
.select_contain_3{width:170px;height:20px;float:left;}
.select_contain_3 span{border:0px solid #777;position:absolute;overflow:hidden;} 
.select_contain_3 select{margin:-2px;width:170px;} 

/***********************************
************************************/

.color_BE0200 a{
	color:#BE0200;
	background:2% 15% url(r_gi.gif) no-repeat;
}
.color_BE0200 a:visited {
	text-decoration: none;
	color:#BE0200
}
.color_BE0200 a:hover {
	text-decoration: underline;
	color:red;
}

.red_font{
	color:#FC0110;
}
.red_font a{
	color:#FC0110;
}
.red_font a:visited {
	text-decoration: none;
	color:#FC0110;
}
.red_font a:hover {
	text-decoration: underline;
	color:#FC0110;
}





.my_more{
	width:45px;height:15px;padding-top:10px;text-align:center;float:right;
}
.my_more2{
	width:35px;height:18px;padding-top:7px;text-align:center;float:left;
}
.my_more3{
	width:40px;height:18px;padding-top:7px;text-align:center;float:right;
}
#my_login{
	width:960px;height:25px;margin:auto;
	background:url(my_login.gif);
}
#my_login_l{
	width:150px;height:25px;line-height:25px;text-align:center;float:left;
}
.my_login_r1{
	width:110px;height:25px;line-height:25px;float:right;
}
#my_login_r2{
	width:95px;height:25px;line-height:25px;text-align:center;float:right;
	background:10% 45% url(rss.png) no-repeat;
}


#ind_banner{
	width:960px;height:143px;
	margin:auto;
}

#my_guide{
	width:950px;height:33px;padding-left:5px;margin:auto;
	background:url(my_guide.gif) repeat-x;
}
#my_guide span{
	width:83px;height:33px;line-height:33px;text-align:center;float:left;
	font-size:14px;font-weight:bold;color:#fff;
	background:right top url(my_guide_li.gif) no-repeat;
}
.my_guide_index_span{
	width:115px;height:33px;line-height:33px;text-align:center;float:left;
	font-size:14px;font-weight:bold;color:#fff;
	background:right top url(my_guide_li.gif) no-repeat;
}
.my_guide_index_span a{
	font-size:14px;color:#fff;
}
#my_guide span a{
	font-size:14px;color:#fff;
}
#my_guide a:visited {
	text-decoration: none;
	color:#fff;
}
#my_guide a:hover {
	text-decoration: underline;
	color:#fff;
}


#my_search{
	width:960px;height:30px;margin:auto;margin-top:3px;
	background:#F3F3F3;
}

#my_search_l{
	width:300px;height:25px;padding-top:5px;padding-left:100px;float:left;
	background:10% 50% url(search_logo.gif) no-repeat;
}
#my_search #search_keyword{
	width:230px;height:15px;
}
#my_search #s_buttom{
	width:47px;height:17px;border:0px;cursor:hand;
	background:url(search_buttom.gif) no-repeat;
}

#my_search_r1{
	width:220px;height:30px;padding-right:20px;line-height:30px;float:right;
}
#my_search_r2{
	width:200px;height:30px;line-height:30px;float:right;
}



#main_conter{
	width:960px;height:525px;margin:auto;margin-top:5px;background:#fff;
}
#main_conter_l{
	width:720px;height:auto;float:left;
}
#main_conter_r{
	width:240px;height:auto;float:right;
}


#l_one{
	width:708px;height:auto;float:left;padding-top:5px;
	border:1px solid #ddd;
}
#l_one_l{
	width:265px;height:auto;padding:0px 0px 5px 5px;float:left;
}
#l_one_r{
	width:420px;height:auto;float:left;
}

#l_one_r .head{
	width:330px;height:25px;padding-left:90px;padding-top:10px;float:left;
	background:url(hd1_tit_bg.gif) no-repeat;
}
.hd1{
	width:75px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(hd_tit_bg1.gif) no-repeat;
}
.hd2{
	width:75px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(hd_tit_bg2.gif) no-repeat;color:red;
}

.hd21{
	width:80px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(90.gif) no-repeat;
}
.hd22{
	width:80px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(90.gif) no-repeat;color:red;
}

.hd31{
	width:116px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(110.gif) no-repeat;
}
.hd32{
	width:116px;height:25px;text-align:center;line-height:25px;float:left;
	background:url(110.gif) no-repeat;color:red;
}

#l_one_r .middle{
	width:403px;height:auto;
	border:1px solid #ddd;border-top:0px;
	padding:10px 0px 10px 15px;
	line-height:22px;
}




#l_two{
	width:710px;height:auto;float:left;padding-top:5px;
}
.l_two_sort{
	width:350px;height:auto;float:left;
}
.l_two_sort .r_head{
	width:270px;height:25px;padding-left:80px;padding-top:10px;float:left;
	background:url(two2_tit_bg.gif) no-repeat;
}
.l_two_sort .middle{
	width:333px;height:auto;
	border:1px solid #ddd;border-top:0px;
	padding:10px 0px 10px 15px;
	line-height:22px;
}





.l_two_sort1{
	width:350px;height:auto;float:left;
}
.l_two_sort1 .head{
	width:280px;height:25px;padding-left:70px;padding-top:10px;float:left;
	background:url(two1_tit_bg.gif) no-repeat;
}
.l_two_sort1 .middle{
	width:333px;height:auto;
	border:1px solid #ddd;border-top:0px;
	padding:10px 0px 10px 15px;
	line-height:22px;
}



.l{
	float:left;
}
.r{
	float:right;
}


#l_three{
	width:710px;height:45px;float:left;margin-top:5px;
}
.l_three_sort{
	width:auto;height:45px;display:block;float:left;
}




#r_one_r_tit{
	width:240px;height:30px;float:left;
	background:url(tit_bg.gif) no-repeat;
}
#r_one_r_tit2{
	width:240px;height:30px;margin-top:5px;float:left;
	background:url(tit_bg2.gif) no-repeat;
}
.r_one_r_li{
	width:233px;height:auto;float:left;
	border:1px solid #ddd;border-top:0px;
	padding:5px 0px 5px 5px;
	line-height:22px;
}
#r_mv{
	width:238px;height:auto;float:left;
	border-left:1px solid #ddd;border-right:1px solid #ddd;
	padding:5px 0px 5px 0px;
	text-align:center;
}
#r_mv_li{
	width:228px;height:auto;float:left;padding:5px 0px 5px 10px;
	background:#F5F5F5;	border:1px solid #ddd;border-top:0px;
	line-height:20px;
}

#r_bgfb{
	width:240px;height:35px;margin-top:5px;float:left;
}
#r_zgrz{
	width:240px;height:41px;margin-top:3px;float:left;
}
#r_dcwj{
	width:240px;height:36px;margin-top:5px;float:left;
}
#r_dcwj2{
	width:240px;height:32px;margin-top:5px;float:left;
}

#my_foot1{
	width:960px;height:30px;margin:auto;
	background:#E0E0E0;
}
#my_foot1_l{
	width:180px;height:30px;line-height:30px;text-align:center;float:left;
}
#my_foot1_r{
	width:570px;height:22px;padding-top:8px;float:right;
}
#my_foot1_r select{
	color:#2A2A2A;
}

#my_foot2{
	width:960px;height:30px;margin:auto;line-height:22px;
	text-align:center;padding:7px 0px;color:#595959;
}

/**************************/

#my_list{
	width:960px;height:940px;margin:auto;
}
#my_list_l{
	width:220px;height:940px;padding-top:10px;float:left;
	background:#F3F3F3;
}
#my_list_r{
	width:720px;height:940px;float:right;
}

.list_l_tit{
	width:200px;height:30px;margin:auto;
	border:1px solid #ccc;
	background:url(list_l_bg.gif) repeat-x;
}
.list_l_tit span{
	width:100px;height:22px;padding-left:40px;float:left;
	font-weight:bold;font-size:14px;padding-top:8px;color:#4D4D4D;
	background:20% 50% url(list_l_bg2.gif) no-repeat;
}
.list_l_li{
	width:200px;height:auto;margin:auto;
	border:1px solid #ccc;border-top:0px;
	background:#FFF;padding:8px 0px;
}

.list_l_li .bigsort_li{
	width:187px;height:20px;padding-top:5px;padding-left:8px; float:left;
	color:#595959;
}
.list_l_li .sort_li{
	width:175px;height:20px;padding-top:0px;padding-bottom:5px;padding-left:25px;float:left;
	color:#595959;
}
.red a{
	color:red;font-weight:bold;
}
.red a:visited {
	text-decoration: none;
	color:red;
}
.red a:hover {
	text-decoration: underline;
	color:red;
}




#list_r_guide{
	width:720px;height:20px;
}
#list_r_guide00{
	width:420px;height:20px;float:left;
	background:url(gugu.gif) repeat-x;
}
#list_r_guide_l{
	width:auto;height:18px;padding:0px 10px 0px 30px;float:left;
	font-weight:bold;font-size:14px;color:red;
	border-bottom:2px solid #4593C1;
	background:5% 10% url(list_r_bg.gif) no-repeat;
}#list_r_guide_l2{
	width:5px;height:18px;float:left;
	border-bottom:2px solid #fff;
}
#list_r_guide_r{
	width:300px;height:20px;float:right;
	background:url(gugu.gif) repeat-x;
}


#list_r_list .dragTable{
	width:698px;float:left;
	margin-right:5px;
	margin-left:5px;
}
/**************************/

#my_bencandy{
	width:958px;height:auto;padding-bottom:20px;margin:auto;
	border-left:1px solid #EAEAEA;border-right:1px solid #EAEAEA;
}

#my_bencandy_in{
	width:925px;height:auto;margin:auto;
	border:1px solid #EAEAEA;
	background:url(ben_bg.gif) repeat-x;
}

#my_bencandy_in_tit{
	width:auto;height:40px;padding-top:40px;margin:auto;
	text-align:center;font-size:16px;font-weight:bold;
}
#my_bencandy_in_edit{
	width:660px;height:40px;;margin:auto;
	text-align:center;
}
#my_bencandy_in_main{
	width:660px;height:auto;padding-bottom:20px;margin:auto;
	line-height:22px;
}

#my_bencandy_in_main p{
	padding-bottom:14px;font-size: 14px;
}

#my_bencandy_in_main a{
	font-size: 14px;
}

#my_bencandy_in_next{
	width:660px;height:40px;padding-top:20px;margin:auto;
	border-top:1px solid #EAEAEA;
}
.my_bencandy_in_next1{
	width:330px;height:20px;float:left;text-align:center;
}

.sort_name{
	width:175px;height:20px;padding-top:5px;padding-left:25px; float:left;
	background:5% 30% url(sort_name.gif) no-repeat;
}





.l_two_sort .middle{
	width:333px;height:auto;
	border:1px solid #ddd;border-top:0px;
	padding:10px 0px 10px 15px;
	line-height:22px;
}

.label_div{
	width:333px;height:75px;float:left;
}
.label_img{
	width:104px;height:75px;float:left;
}
.label_img img{
	border:1px solid #DDDDDD;
	padding:1px;
}
.label_word{
	width:222px;height:75px;float:right;
}
.label_contet{
	text-indent:1em;
}



.label_font_color{
	color:#BE0200;
}
.label_font_color a{
	color:#BE0200;
}
.label_font_color a:visited {
	text-decoration: none;
	color:#BE0200;
}
.label_font_color a:hover {
	text-decoration: underline;
	color:red;
}
#head_60{
	width:960px;height:40px;margin:auto;
	background:url(head_60.jpg) no-repeat;
}
.head_60_02{background:url(60_bg.jpg) no-repeat center top;}