#tab1_bg{
  background:url(../images/top_tab_bg.gif) repeat-x;
  height:29px;
  width:100%
  }
#secTable{
  padding-top:6px;
  padding-left:20px;
 
  }
#mainTable{
  width:100%;
  padding:5px 20px 5px 20px;
  }
.sec1 {
cursor: hand;
color: #000000;
width:94px;
font-weight:bold;
 height:23px;
}
.sec2 {
color: green;
background:url(../images/nv_ouer1.jpg) no-repeat;
font-weight: bold;
font-size:12px;
width:94px;
text-align:center;
 height:23px;
 margin-left:20px;
}
.main_tab {
  width:100%;
  
}

.Menubox {
width:100%;
background:url(../images/tit_bg.gif) repeat-x;
height:33px;
line-height:33px;
}
.Menubox ul{
margin:0px;
padding-left:10px;
}
.Menubox li{
 float:left;
 display:block;
 cursor:pointer;
 width:114px;
 text-align:center;
 color:#fff;
 font-weight:bold;
 }
.Menubox li.hover{
 padding:0px;
 width:102px;
 background:url(../images/tab2_over.gif) no-repeat;
 color:#739242;
 font-weight:bold;
 height:32px;
line-height:32px;
margin-top:1px;
}
.Contentbox{
 clear:both;
 margin-top:0px;
 border-top:none;
 text-align:center;
 padding-top:8px;
 padding-left:3px;
}
/*内容模块 */
.page{
  margin-bottom:10px;
  margin-top:10px;
  }
.tab_mo{ 
border:1px solid #ccc; 
border-top:none; 
padding:10px;
}
/*菜单模块 */
.tab{
 border-bottom:1px solid #ccc; /* 菜单模块的底部边框，也就是内容模块的上边框 */
 list-style:none;
 padding:4px 5px 3px 5px;
 }
.tab li{ 
display:inline; /* 【重点】让li横向排列。*/
 font-size:12px;
 }
.tab li a{ 
padding:5px 6px; /* 因为没有固定高度，所以用填充来调整显示效果。 */
border:1px solid #ccc;  /* 菜单项的边框 */
color:#888; 
border-bottom:none; /* 底部无边框 */
text-decoration:none;
background:#f7f7f7
}
/*鼠标经过时的样式 */
.tab li a:hover{ 
background:#fff;
}
/*选中时的样式 */
.tab li.no a{ 
background:#fff; 
border-bottom:none; /*  隐藏菜单项的底部边框 */
position:relative;  /* 【重点】菜单项里面的连接使用了相对定位 */
top:1px;            /* 【重点】相对于外层顶部为1像素，正好是底部边框的像素。所以就遮住了ul的底部边框 */
color:#000000; 
font-weight:bold
}

