/*****************************************************************

******************************************************************

以下为所有风格通用样式

margin: 0;padding: 0;设置外边距,内边距空隙都为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:950px;

	margin:auto;

}

/*横幅广告*/

#banner_ad{

	margin-top:5px;

}

/******************************************

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: #222222;

	text-decoration: none;

}

a:visited {

	text-decoration: none;

	color: #007700;

}

a:hover {

	text-decoration: underline;

	color: red;

}

a:active {

	text-decoration: none;

}



/******************************************

#toplogin 网页顶部登录框表格ID编号

background表格背景颜色

height高度

*******************************************/



#toplogin{

	background:#E3F5FC;

	height:20px;

}

#toplogin .jstime{

	margin-top:5px;

	margin-right:5px;

}

/******************************************

#toplogin input.login_name用户名表单,

#toplogin input.login_pwd密码表单,写在一行,用,号分开共用样式

width:90px;表单宽

height:15px;表单高

*******************************************/



#toplogin input.login_name,#toplogin input.login_pwd{

	width:90px;

	height:15px;

}

#tab1_rr_t input.login_name,#tab1_rr_t input.login_pwd{

	width:65px;

	height:15px;

	border:1px solid #5B9400;

}



/******************************************

#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:10px;

	border-top:#ccc 1px solid;

}

#header td{

	padding-top:8px;

}



/******************************************

#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:5px;

	border-top:1px #6B92D6 solid;

	border-bottom:1px #A7CAFA solid;

	height:28px;

	background:#D2E4FC url(head1.gif);

}

#guide td{

	border:1px solid #FFF;

	border-left:0px solid #FFF;

	border-right:0px solid #FFF;

	padding:6px 3px 4px 3px;

}

#guide2{

	background:#F5FAFE;

	height:24px;

	border-bottom:1px #A7CAFA solid;

}

#guide2 td{

	padding-top:6px;

	padding-left:2px;

}

.chooseGuide{

	border-bottom:1px dotted #333;

}

/******************************************

.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:hidden;内容超过时,将隐藏.不过上面用百分比,一般这里设置无效.

只有上面用具体像素,这里才生效

border:1px #A7CAFA solid;边框样式,1个像素,可以改solid为虚线dotted,要取消边框改1px为0px

******************************************************************

******************************************************************/

.dragTable{

	width:100%;

	margin-top:5px;

	overflow:hidden;

	border:1px #A7CAFA solid;

	

}

.dragTable_a{

	width:100%;

	margin-top:5px;

	overflow:hidden;

	

}

.dragTable_b{

	width:100%;

	margin-top:5px;

	overflow:hidden;

	

}





/******************************************

内容表格模块头部样式

background:#D2E4FC;背景颜色

height:20px;高度

padding-left:1em;字体与左边距离

padding-top:7px;字体与上方距离

border:1px #FFF solid;内边框样式,一般设置为0px较多,即不要内边框居多

******************************************/

.dragTable .head_a{

	background:url(8989.gif);

	height:20px;

	padding-left:1.8em;

	padding-top:7px;

	border:1px #FFF solid;

}

.dragTable .head{

	background:url(7878.gif);

	height:20px;

	padding-left:1.8em;

	padding-top:7px;

	border:1px #FFF solid;

}





/******************************************

模块主题文字

float:left;居左,

可以设置为粗体 font-weight:bold;颜色为color:#000;

******************************************/

.TAG{

	float:left;

	color:#333333;

	font-weight:bold;

}

.dragTable .TAG{

	float:left;

	color:#fff;

	font-weight:bold;

}

.dragTable .TAG a{

	color:#fff;

}

/*文章列表的更多*/



.dragTable .more a{

	color:#fff;

	margin-right:1em;

}

/******************************************

整体大表格之间的间隙

******************************************/

.MainTable{

	margin-top:5px;

}

/******************************************

右边窄表格模块样式

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;

}



/******************************************

右边窄表格最新,最热的内容样式.

	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;

}



/******************************************

右边窄表格最新,最热的标题样式.

必须<ul><li>有超链接的才有效

display:block;定义链接为实体,方便做效果处理

margin-left:4px;文字与左边大表格边框的距离

text-indent:0.6em;文字与小图标的距离

background:url(title_icon3.gif) no-repeat left;	右边列表,最热,最新等等标题前面的小图标

no-repeat 不平铺 left;背景居左

******************************************/



.MainTable .Side .dragTable .middle ul li a{

	display:block;

	margin-left:4px;

	text-indent:0.6em;

	background:url(title_icon3.gif) no-repeat left;

}





/******************************************

列表页,包括首页,文章子栏目文章表格样式,表格高度

******************************************/

#AutoRows .dragTable .middle{

	height:100px;

	padding-top:0px;

	padding-bottom:0px;

}



/******************************************

列表页,包括首页,文章子栏目文章标题样式

	width:246px;

	display:block;

	overflow:hidden;

	text-overflow:ellipsis;

定义width指定宽度.是为了自动隐藏超出边界的标题.用百分比不能控制

line-height:18px;行高

text-indent:0.6em;文字小图标的距离

background:url(title_icon3.gif) no-repeat ;标题前的小图标

background-position: 0 40%;	小图标X,Y的坐标





	width:246px;

	overflow:hidden;

	text-overflow:ellipsis;

	white-space:nowrap;

******************************************/



#AutoRows .dragTable ul li{

	display:block;

	line-height:18px;

	text-indent:0.6em;

	background:url(title_icon3.gif) no-repeat 0 40% ;

}



#AutoRows .dragTable .list_title{

	line-height:18px;

	text-indent:0.6em;

	background:url(title_icon3.gif) no-repeat 0 40% ;

}



/******************************************

文章中列表页中的图片主题,图片列表

.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 0 3px 4px;

	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 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;

}



/******************************************

分页

******************************************/



.page{

	width:98%;

	margin-top:1em;

	clear:both;

}



.page a{

	display:block;

	float:left;

	margin-right:3px;

	border:1px solid #ccc;

	padding:2px 4px 1px 4px;

}



/*****************************************************************

******************************************************************

文章内容页

.content_word,.content_word p多种格式的控制内容的样式,字号为15像素

******************************************************************

******************************************************************/

.content_word,.content_word p{

	font-size:15px;

}



/*****************************************************************************************

******************************************************************************************

图片频道,视频,FLASH,音乐,商城,下载频道的列表页的图片列表

******************************************************************************************

******************************************************************************************/

/******************************************

display:block;定义为模块

width:98%;宽度为98%

margin:8px 8px 0 10px;与其他的外间隙上右下左的距离

height:100px;高度

overflow:hidden;文字超过则隐藏,不过上面宽度只有设置成具体像素才生效.

border-bottom:1px #ccc dotted;底部边框为一个像素的虚线.改成solid则为实线,改成0px则取消边框

这里特别要注意的是.把宽度改成width:44%;增加一句float:left;就可以一行显示两个

******************************************/



.ListPhoto ul{

	display:block;

	width:96%;

	margin:8px 8px 0 10px;

	height:100px;

	overflow:hidden;

	border-bottom:1px #ccc dotted;

}



/******************************************

图片与介绍文字是左右并排

******************************************/



.ListPhoto ul li{

	display:block;

	float:left;

}



/******************************************

图片容器样式,

width:130px;宽

border-right:1px #ccc dotted;容器右边样式,改dotted为solid则为实线,把1px改为0则取消边框

******************************************/



.ListPhoto ul li.img{

	width:130px;

	border-right:1px #ccc dotted;

}



/******************************************

图片内边框样式

******************************************/



.ListPhoto ul li.img img{

	border:1px solid #ccc;

}



/******************************************

图片外边框样式

	display:block;	定义为实体,方便加效果

	width:120px;	宽

	height:90px;	高

	text-align :center; 图片居中

	background:#eee;	背景颜色,只有图片太小时,才看得到效果.

	border:1px solid #333; 外边框样式,可改solid为dotted虚线.取消边框的话.改1px为0

******************************************/



.ListPhoto ul li.img a{

	display:block;

	width:120px;

	height:90px;

	text-align :center;

	background:#2299dd;

	border:1px solid #333;

}



/******************************************

图片的相关文字样式

margin-left:1em;与左边距离1个汉字距离

******************************************/



.ListPhoto ul li.word{

	margin-left:1em;

}



/******************************************

图片的相关文字样式

display:block;做为实体,每个占一行,

overflow:hide,文字超出边界,自动隐藏.一般只有设置了宽度时才生效

******************************************/



.ListPhoto ul li.word span{

	display:block;

	overflow:hidden;

}



/******************************************

图片的相关文字,超级链接的文字加粗显示

******************************************/



.ListPhoto ul li.word span.title a{

	font-weight:bold;

}



/*****************************************************************************************

*****************************************************************************************

**********评论

******************************************************************************************

******************************************************************************************/



#comment .content{

	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;

}



/*****************************************************************************************

*****************************************************************************************

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

*****************************************************************************************

*****************************************************************************************/



.guestbook{

	margin-bottom:4px;

	border:1px dotted #A7CAFA;

}

.guestbook .Ftd{

	padding:4px;

	border-right:1px dotted #A7CAFA;

}

.guestbook .Atd{

	border-top:1px solid #D2E4FC;

	padding-left:4px;

}

.guestbook .Ctd{

	padding:4px;

}



/*****************************************************************************************

*****************************************************************************************

网页底部

******************************************************************************************

******************************************************************************************/



#footer{

	border-top:#CBCBCB solid 1px;

	margin-top:4px;

}

#footer td{

	padding:1em 0 1em 0;

}





/*****************************************************************************************

*****************************************************************************************

间隔条

*****************************************************************************************

*****************************************************************************************/

.Space{

	height:23px;

	margin-top:4px;

	background:url(space_bg.jpg);

}

.Space .L{

	padding:5px 0 0 5px;

	font-weight:bold;

	color:#FFF;

}

.Space .L{

	float:left;

}

.Space .R{

	padding:5px 5px 0 0;

	float:right;

}







/*********************************************************************

**********************************************************************

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;

}



/*列表栏目名称*/

.showsortname{

	background:url(article_elite.gif) no-repeat 0.3em 0;

	padding-left:0.3em;

	text-indent:1.5em;

	font-weight:bold;

	float:left;

}



/*列表页,标题+图片+内容的显示样式*/

.list_sortTCP{

	margin-bottom:12px;

	width:99%;

}

.list_sortTCP .pic{

	padding-right:1em;

}

.list_sortTCP .content{

	border-bottom:1px dotted #ccc;

	text-indent:2em;

}



/*列表页,标题+内容的显示样式*/

.list_sortTC{

	margin-bottom:5px;

	width:99%;

	border-bottom:1px dotted #ccc;

}

.list_sortTC .content{

	text-indent:2em;

}



/*下拉菜单的背景颜色与透明度设置*/

#menuTable{

	background:#F5FCFE;

	border:1px solid #A7CAFA;

	filter:Alpha(Opacity=80);

}

#menuTable td{

	padding:3px 0px 3px 5px;

	line-height:15px;

}











/***********************************/

/***********************************/

/***********************************/

/***********************************/





#tab1{

	width:950px;

    margin:auto;

}

#tab1_l{

	width:250px;

	padding-top:3px;

	padding-bottom:3px;

}

#tab1_r{

	width:700px;

}







#tab1_rr_t .login{

    height:20px;width:400px;

	padding-top:3px;

	display:block;

	float:left;

}







#tab1_rr_t{

    height:20px;

	background:url(top_littlenav.gif) right no-repeat;

}

#tab1_rr_b{

    height:54px;

}

.tab1div{

    height:16px;width:240px;

	padding:4px 0px 0px 0px;

	display:block;float:right;

	text-align:center;

}

.daohan{

    height:22px;width:70px;

    padding-top:10px;

	margin-top:22px;

	display:block;float:left;

	background:url(menu_main.gif);

	text-align:center;

	color:white;

}

.daohan a{

    height:32px;width:70px;

	display:block;

    font-weight:bold;

    font-size:14px;

	color:white;

	text-decoration: none;

}

.daohan a:hover{

    height:32px;width:70px;

	display:block;

    font-weight:bold;

    font-size:16px;

	color:#C3CECD;

	text-decoration: none;

}

.daohan2 a{

    height:22px;width:70px;

    padding-top:10px;margin-top:22px;margin-left:3px;

	display:block;float:left;

	background:url(menu_channelbg.gif);

    font-weight:bold;

    font-size:14px;

	text-align:center;

	color:#000000;

	text-decoration: none;

}

.daohan2 a:hover{

    height:22px;width:70px;

    padding-top:10px;margin-top:22px;margin-left:3px;

	display:block;float:left;

	background:url(menu_main.gif);

    font-weight:bold;

    font-size:14px;

	text-align:center;

	color:white;

	text-decoration: none;

}









#tab2{

	height:37px;

	background:url(top_annoucebg.gif);

}

#tab22{

	height:37px;width:800px;

    margin:auto;

}

#tab22_l{

	height:24px;width:380px;

	padding-left:20px;

	padding-top:13px;

	background:url(arrow-1.gif) left 50% no-repeat;

}

#tab22_r{

	height:30px;width:400px;

	padding-top:7px;

}





#a2a{

	height:22px;width:68px;

	background:url(submit.gif);

	border:0px;

}











#tab3{

	width:950px;

    margin:auto;

    margin-top:10px;

}

#tab3_l{

	width:475px;

	padding-top:3px;

	padding-bottom:3px;

}

#tab3_r{

	width:475px;

}







#tab4{

	width:950px;

    margin:auto;

    margin-top:10px;

}

#tab4_l{

	width:340px;

}

#tab4_m{

	width:355px;

}

#tab4_r{

	width:255px;

}#tab4_rr{

	width:255px;

	padding-top:5px;

	padding-bottom:5px;

	border:1px solid #999999;

}

#tab4_mm{

	width:335px;

	margin:auto;

}

#tab4_mm_al{

	width:8px;height:32px;

	background:url(box_1.gif);

}

#tab4_mm_ar{

	width:8px;height:32px;

	background:url(box_3.gif);

}

#tab4_mm_am{

	width:319px;height:24px;

    padding-top:8px;

	background:url(box_2.gif);

}

#tab4_mm_am div{

	width:300px;height:19px;

	padding-top:5px;

	display:block;

	margin:auto;

	background:url(787.gif);

	text-align:center;

	font-size:14px;

	font-weight:bold;

}#tab4_mm_am div a{

	font-size:14px;

	font-weight:bold;

}

#tab4_mm_bl{

	width:8px;height:auto;

	background:url(box_4.gif);

}

#tab4_mm_br{

	width:8px;height:auto;

	background:url(box_5.gif);

}

#tab4_mm_bm{

	width:319px;height:auto;

	padding-top:5px;

	line-height:22px;

}

#tab4_mm_cl{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}

#tab4_mm_cr{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}

#tab4_mm_cm{

	width:319px;height:10px;

	background:url(box_7.gif) repeat-x;

}









#tab5{

	width:950px;height:30px;

    margin:auto;

    margin-top:10px;

}#tab5_l{

	width:118px;height:23px;

	padding-left:30px;padding-top:7px;

	font-size:14px;

	font-weight:bold;

	color:#fff;

	background:url(title_blog.gif);

}#tab5_l a{

	font-size:14px;

	font-weight:bold;

	color:#fff;

}#tab5_m{

	width:673px;height:18px;

	padding-top:12px;

	background:url(title_blog_2.gif);

	text-align:center;

}#tab5_r{

	width:129px;height:23px;

	background:url(title_blog_3.gif);

}#tab5_r div{

	width:50px;height:15px;

	display:black;float:right;

	margin-right:11px;

	margin-top:7px;

	text-align:center;

}









#tab6{

	width:950px;height:30px;

    margin:auto;

    margin-top:10px;

}#tab6_l{

	width:340px;height:auto;

}#tab6_r{

	width:610px;height:auto;

	padding-top:10px;

}

.tab6_al{

	width:8px;height:32px;

	background:url(box_11.gif);

}.tab6_ar{

	width:8px;height:32px;

	background:url(box_33.gif);

}.tab6_am{

	width:324px;height:32px;

	background:url(box_22.gif);

}.tab6_amdiv{

	width:75px;height:19px;

	display:black;float:left;

	padding-top:5px;

	margin-top:8px;

	background:url(blog_tab.gif);

	font-weight:bold;

	color:#fff;

	font-size:13px;

	text-align:center;

}.tab6_amdiv a{

	color:#fff;

}.tab6_amdiv2{

	width:249px;height:19px;

	margin-top:12px;

	display:black;float:right;

	border-bottom:1px solid #E9E9E9;

}

.tab6_bl{

	width:8px;height:auto;

	background:url(box_4.gif);

}.tab6_br{

	width:8px;height:auto;

	background:url(box_5.gif);

}.tab6_bm{

	width:324px;height:auto;

	line-height:22px;

}

.tab6_cl{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}.tab6_cr{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}.tab6_cm{

	width:324px;height:10px;

	background:url(box_7.gif) repeat-x;

}





#tab6_rr{

	width:600px;height:auto;

	margin-left:10px;

}

#tab6_rr_al{

	width:10px;height:19px;

	background:url(tt_l.gif) no-repeat;

}#tab6_rr_ar{

	width:10px;height:19px;

	background:url(tt_r.gif) no-repeat;

}#tab6_rr_am{

	width:580px;height:19px;

	background:url(tt_m.gif) repeat-x;

}

.tab6_rr_bl{

	width:10px;height:auto;

	background:url(mm_lr.gif) repeat-y;

}.tab6_rr_br{

	width:10px;height:auto;

	background:url(mm_r.gif) repeat-y;

}.tab6_rr_bm{

	width:580px;height:19px;

}

#tab6_rr_cl{

	width:10px;height:19px;

	background:url(dd_l.gif) no-repeat;

}#tab6_rr_cr{

	width:10px;height:19px;

	background:url(dd_r.gif) no-repeat;

}#tab6_rr_cm{

	width:580px;height:19px;

	background:url(dd_m.gif) repeat-x;

}



.tab6_tab{

	width:290px;height:auto;

	float:left;

}.tab6_tab_l{

	width:90px;height:auto;

}.tab6_tab_r{

	width:200px;height:auto;

	line-height:22px;

}

.tab6_tab_l_t{

	width:67px;height:18px;

	padding-top:3px;

	font-weight:bold;font-size:13px;

	color:#fff;

	display:black;

	background:url(blog_tab2.gif);

}.tab6_tab_l_t a{

	color:#fff;

}.tab6_tab_l_b{

	width:90px;height:auto;

	margin-top:4px;

	display:black;

}











.tab7{

	width:950px;height:auto;

    margin:auto;

    margin-top:10px;

}.tab7_l{

	width:340px;height:auto;

}.tab7_m{

	width:400px;height:auto;

}.tab7_r{

	width:210px;height:auto;

}

.tab7_mm{

	width:380px;height:auto;

}

.tab7_mm_a1{

	width:8px;height:32px;

	background:url(box_11.gif);

}.tab7_mm_m21{

	width:182px;height:32px;

	background:url(box_22.gif) repeat-x;

}.tab7_mm_m22{

	width:182px;height:32px;

	background:url(box_22.gif) repeat-x;

}.tab7_mm_a3{

	width:8px;height:32px;

	background:url(box_33.gif);

}

.tab7_mm_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}.tab7_mm_b3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}.tab7_mm_b21{

	width:182px;height:auto;

	line-height:22px;

}.tab7_mm_b22{

	width:182px;height:auto;

	line-height:22px;

}.tab7_mm_c1{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}.tab7_mm_c3{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}.tab7_mm_c21{

	width:182px;height:10px;

	background:url(box_7.gif) repeat-x;

}.tab7_mm_c22{

	width:182px;height:10px;

	background:url(box_7.gif) repeat-x;

}









.tab77div{

	width:67px;height:18px;

	padding-top:3px;

	font-weight:bold;font-size:13px;

	color:#fff;

	display:black;

	background:url(blog_tab2.gif);

}.tab77div a{

	color:#fff;

}



.tab77div2{

	width:67px;height:18px;

	padding-top:3px;

	font-weight:bold;font-size:13px;

	color:#fff;

	display:black;

	background:url(others_cata.gif);

}.tab77div2 a{

	color:#fff;

}







.tab7_rr_a1{

	width:7px;height:28px;

	background:url(j1.gif);

}.tab7_rr_a2{

	width:196px;height:21px;

	padding-top:7px;

	background:url(j2.gif) repeat-x;

	color:#fff;

	font-weight:bold;

	font-size:14px;

}.tab7_rr_a2 a{

	color:#fff;

	font-size:14px;

}.tab7_rr_a3{

	width:7px;height:28px;

	background:url(j3.gif);

}

.tab7_rr_b1{

	width:7px;height:auto;

	background:url(b1.gif) repeat-y;

}.tab7_rr_b2{

	width:196px;height:auto;

	background:#F1F4F4;

	line-height:22px;

	padding-top:4px;

}.tab7_rr_b3{

	width:7px;height:auto;

	background:url(b3.gif) repeat-y;

}

.tab7_rr_c1{

	width:7px;height:10px;

	background:url(d1.gif) no-repeat;

}.tab7_rr_c2{

	width:196px;height:10px;

	background:url(d2.gif) repeat-x;

}.tab7_rr_c3{

	width:7px;height:10px;

	background:url(d3.gif) no-repeat;

}







.baner-h{

	width:950px;height:auto;

    margin:auto;

    margin-top:10px;

}





.tab8{

	width:950px;height:auto;

    margin:auto;

    margin-top:10px;

}.tab8_l{

	width:125px;height:20px;

	color:#fff;

	font-size:14px;

	font-weight:bold;

	padding-top:10px;padding-left:30px;

	background:url(title_vblog_1.gif) no-repeat;

}.tab8_l a{

	font-size:14px;

	color:#fff;

}.tab8_m{

	width:665px;height:18px;

	text-align:center;

	padding-top:12px;

	background:url(title_vblog_2.gif) no-repeat;

}.tab8_r{

	width:130px;height:30px;

	background:url(title_vblog_3.gif) no-repeat;

}.tab8_r div{

	width:50px;height:15px;

	display:black;float:right;

	margin-right:11px;

	margin-top:7px;

	text-align:center;

}





#tab9{

	width:950px;height:auto;

    margin:auto;

}#tab9_a1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}#tab9_a3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}#tab9_a2{

	width:934px;height:auto;

	padding-top:10px;

}

#tab9_b1{

	width:8px;height:auto;

	background:url(box_6.gif) no-repeat;

}#tab9_b3{

	width:8px;height:auto;

	background:url(box_8.gif) no-repeat;

}#tab9_b2{

	width:934px;height:auto;

	background:url(box_7.gif) repeat-x;

}











.tab9l{

	width:380px;height:auto;

	float:left;

}.tab9l_l{

	width:155px;height:auto;

}.tab9l_r{

	width:225px;height:auto;

	line-height:22px;

}

.tab9l_l img{

    padding:1px;

	border:1px solid #CCCCCC;

}





.tab92{

	width:174px;height:auto;

	float:right;

}.tab92_t{

	width:174px;height:26px;

	padding-top:10px;

	background:url(ft.gif) center 50% no-repeat;

	text-align:center;

	font-weight:bold;

	font-size:13px;

	color:#000000;

}.tab92_t a{

	font-size:13px;

	color:#000000;

}.tab92_b{

	width:174px;height:auto;

	line-height:22px;

}













#tab10{

	width:950px;height:auto;

	margin:auto;

    margin-top:10px;

}#tab10_a1{

	width:8px;height:14px;

	background:url(88l.gif) no-repeat;

}#tab10_a3{

	width:8px;height:14px;

	background:url(88r.gif) no-repeat;

}#tab10_a2{

	width:934px;height:14px;

	background:url(88m.gif) repeat-x;

}

#tab10_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}#tab10_b3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}#tab10_b2{

	width:934px;height:auto;

	background:#F8F9FA;

}

#tab10_c1{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}#tab10_c3{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}#tab10_c2{

	width:934px;height:10px;

	background:url(box_7.gif) repeat-x;

}





#tab101{

	width:340px;height:auto;

	float:left;

}#tab101 img{

    width:90px;height:60px;

    margin:0px 5px 5px 5px;

    padding:1px;

	border:1px solid #CCCCCC;

}





#tab102{

	width:390px;height:auto;

	float:left;

}#tab102_a1{

	width:195px;height:auto;

}#tab102_a2{

	width:195px;height:auto;

}#tab102_b1{

	width:195px;height:auto;

	padding-top:5px;

	line-height:22px;

}#tab102_b2{

	width:195px;height:auto;

	padding-top:5px;

	line-height:22px;

}





#tab103{

	width:200px;height:auto;

	float:left;

	line-height:22px;

}



#tab11{

	width:950px;height:30px;

	margin:auto;

    margin-top:10px;

}#tab11_l{

	width:125px;height:20px;

	padding-left:30px;

	padding-top:10px;

	color:#fff;

	font-size:13px;

	font-weight:bold;

    background:url(title_campus_1.gif) no-repeat;

}#tab11_l a{

	color:#fff;

	font-size:13px;

}#tab11_m{

	width:665px;height:20px;

	padding-top:10px;

	text-align:center;

	background:url(title_campus_2.gif) no-repeat;

}#tab11_r{

	width:130px;height:30px;

	background:url(title_campus_3.gif) no-repeat;

}#tab11_r div{

	width:50px;height:15px;

	display:black;float:right;

	margin-right:11px;

	margin-top:7px;

	text-align:center;

}













.tab8_l{

	width:125px;height:20px;

	color:#fff;

	font-size:14px;

	font-weight:bold;

	padding-top:10px;padding-left:30px;

	background:url(title_vblog_1.gif) no-repeat;

}.tab8_l a{

	font-size:14px;

	color:#fff;

}













#tab12{

	width:950px;height:auto;

	margin:auto;

    margin-top:10px;

}



#sisi{

	width:340px;height:auto;

	float:left;

}



#tab12m{

	width:380px;height:auto;

	float:left;

	margin:0px 10px;

}

#tab12m_a1{

	width:10px;height:19px;

	background:url(tt_l.gif) no-repeat;

}#tab12m_a2{

	width:360px;height:19px;

	background:url(tt_m.gif) repeat-x;

}#tab12m_a3{

	width:10px;height:19px;

	background:url(tt_r.gif) no-repeat;

}



.tab12m_b1{

	width:10px;height:auto;

	background:url(mm_lr.gif) repeat-y;

}.tab12m_b2{

	width:360px;height:auto;

}.tab12m_b2 img{

	width:160px;height:90px;

	border:1px solid #CCCCCC;

	margin-bottom:4px;

	padding:1px;

}.tab12m_b3{

	width:10px;height:auto;

	background:url(mm_r.gif) repeat-y;

}

#oo1o{

	width:360px;height:auto;

    padding-top:3px;

    line-height:22px;

}





#tab12m_c1{

	width:10px;height:19px;

	background:url(dd_l.gif) no-repeat;

}#tab12m_c2{

	width:360px;height:19px;

	background:url(dd_m.gif) repeat-x;

}#tab12m_c3{

	width:10px;height:19px;

	background:url(dd_r.gif) no-repeat;

}









.tab12r{

	width:210px;height:auto;

	float:left;

}



.tab12r_rr_a1{

	width:7px;height:28px;

	background:url(ll1.gif);

}.tab12r_rr_a2{

	width:196px;height:21px;

	padding-top:7px;

	background:url(llm.gif) repeat-x;

	color:#fff;

	font-weight:bold;

	font-size:14px;

}.tab12r_rr_a2 a{

	color:#fff;

	font-size:14px;

}.tab12r_rr_a3{

	width:7px;height:28px;

	background:url(llr.gif);

}





.tab12r_amdiv{

	width:75px;height:19px;

	display:black;float:left;

	padding-top:5px;

	margin-top:8px;

	background:url(campus_tab.gif);

	font-weight:bold;

	color:#fff;

	font-size:13px;

	text-align:center;

}.tab12r_amdiv a{

	color:#fff;

}















#tab13{

	width:950px;height:auto;

	margin:auto;

    margin-top:10px;

}#tab13_a1{

	width:8px;height:14px;

	background:url(88l.gif) no-repeat;

}#tab13_a3{

	width:8px;height:14px;

	background:url(88r.gif) no-repeat;

}#tab13_a2{

	width:934px;height:14px;

	background:url(88m.gif) repeat-x;

}

#tab13_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}#tab13_b3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}#tab13_b2{

	width:934px;height:auto;

	background:#F8F9FA;

}

#tab13_c1{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}#tab13_c3{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}#tab13_c2{

	width:934px;height:10px;

	background:url(box_7.gif) repeat-x;

}











#tab7_tab{

	width:380px;height:auto;

	margin:auto;

}

#tab7_tab_a1{

	width:8px;height:32px;

	background:url(box_11.gif) no-repeat;

}

#tab7_tab_a2{

	width:150px;height:32px;

	background:url(box_22.gif) repeat-x;

}.tab7div{

	width:67px;height:17px;

	padding-top:4px;

	color:#fff;

	font-weight:bold;

	background:url(club_cata.gif);

}.tab7div a{

	color:#fff;

}

#tab7_tab_a3{

	width:214px;height:32px;

	background:url(box_22.gif) repeat-x;

}

#tab7_tab_a4{

	width:8px;height:32px;

	background:url(box_33.gif) no-repeat;

}



#tab7_tab_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}

#tab7_tab_b2{

	width:150px;height:auto;

}#tab7_tab_b2 img{

	width:130px;height:75px;

	border:1px solid #ccc;

	padding:1px;

	margin-bottom:3px;



}

#tab7_tab_b3{

	width:214px;height:auto;

	line-height:22px;

}

#tab7_tab_b4{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}





#tab7_tab_c1{

	width:8px;height:10px;

	background:url(box_6.gif) no-repeat;

}

#tab7_tab_c2{

	width:150px;height:10px;

	background:url(box_7.gif) repeat-x;

}

#tab7_tab_c3{

	width:214px;height:10px;

	background:url(box_7.gif) repeat-x;

}

#tab7_tab_c4{

	width:8px;height:10px;

	background:url(box_8.gif) no-repeat;

}









.tab6_amdivl{

	width:75px;height:19px;

	display:black;float:left;

	padding-top:5px;

	margin-top:8px;

	background:url(club_tab.gif);

	font-weight:bold;

	color:#fff;

	font-size:13px;

	text-align:center;

}.tab6_amdivl a{

	color:#fff;

}





.tab7_rr_a1y{

	width:7px;height:28px;

	background:url(yyl.gif) no-repeat;

}.tab7_rr_a2y{

	width:196px;height:21px;

	padding-top:7px;

	background:url(yym.gif) repeat-x;

	color:#fff;

	font-weight:bold;

	font-size:14px;

}.tab7_rr_a2y a{

	color:#fff;

	font-size:14px;

}.tab7_rr_a3y{

	width:7px;height:28px;

	background:url(yyr.gif) no-repeat;

}









#tab14{

	width:948px;height:auto;

	margin:auto;

	margin-top:10px;

	border:1px solid #CCCCCC;

}#tab14td{

	width:928px;height:50px;

	padding:5px 10px 5px 10px;

	background:url(friendlink_bg.gif) repeat-x;

}



#tab15{

	height:auto;

	margin-top:10px;

	ling-height:20px;

	background:url(footer_bg.gif) repeat-x;

}

#tab15td{

	line-height:16px;

    padding-top:10px;

    padding-bottom:10px;

}







#ben{

	width:950px;height:auto;

    margin:auto;

    margin-top:10px;

}

#benl{

	width:680px;height:auto;

}

#benr{

	width:265px;height:auto;

	padding-left:5px;

}





.benr1{

	width:265px;height:auto;

	background:url(neibg.gif) repeat-x;

}

.benr1_a1{

	width:8px;height:32px;

	background:url(box_11.gif) no-repeat;

}

.benr1_a2{

	width:249px;height:32px;

	background:url(box_22.gif) repeat-x;

}.benr1_a2 div{

	width:67px;height:16px;

	padding-top:5px;

	text-align:center;

	font-weight:bold;

	color:#fff;

	background:url(nb.gif);

}

.benr1_a3{

	width:8px;height:32px;

	background:url(box_33.gif) no-repeat;

}



.benr1_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}

.benr1_b2{

	width:249px;height:auto;

	line-height:22px;

}

.benr1_b3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}





.benr1_c1{

	width:8px;height:auto;

	background:url(box_6.gif) no-repeat;

}

.benr1_c2{

	width:249px;height:auto; 

	background:url(box_7.gif) repeat-x;

}

.benr1_c3{

	width:8px;height:auto;

	background:url(box_8.gif) no-repeat;

}















.bena1{

	width:680px;height:auto;

}

.bena1_a1{

	width:8px;height:32px;

	background:url(box_11.gif) no-repeat;

}

.bena1_a2{

	width:664px;height:22px;

	padding-top:10px;

	font-size:13px;

	color:#000000;

	background:url(box_22.gif) repeat-x;

}.bena1_a2 div{

	width:67px;height:16px;

	padding-top:5px;

	text-align:center;

	font-weight:bold;

	color:#fff;

	background:url(nb.gif);

}

.bena1_a3{

	width:8px;height:32px;

	background:url(box_33.gif) no-repeat;

}



.bena1_b1{

	width:8px;height:auto;

	background:url(box_4.gif) repeat-y;

}

.bena1_b2{

	width:664px;height:auto;

	line-height:22px;

}

.bena1_b3{

	width:8px;height:auto;

	background:url(box_5.gif) repeat-y;

}





.bena1_c1{

	width:8px;height:auto;

	background:url(box_6.gif) no-repeat;

}

.bena1_c2{

	width:664px;height:auto; 

	background:url(box_7.gif) repeat-x;

}

.bena1_c3{

	width:8px;height:auto;

	background:url(box_8.gif) no-repeat;

}





