/* CSS Document */
#tab { width:570px; height:320px; position:relative;margin:40px auto 0 auto;}
/*设置容器高宽等*/
html > body #tab { width:570px;}
/*兼容IE6:IE6下宽度不够*/
#tab div { position:absolute; top:30px; left:0; width:570px; height:320px;}
/*设置容器高宽等*/
#tab div { display:none;}
/*设置容器默认隐藏:不用ID是因为下面将利用class来控制容器显示,而class优先级低于id选择器*/
#tab .block { display:block; }
/*选中的容器*/
#tab h3 { float:left; width:103px; height:30px; line-height:30px; margin:0 0 0 0; font-size:24px; cursor:pointer; text-align:center; color:#333; font-family:Microsoft YaHei;font-weight: bold;}
#tab h4 { float:left; width:103px; height:30px; line-height:30px; margin:0 0 0 0; font-size:14px; cursor:pointer;  text-align:center; color:#df0716; font-family:Microsoft YaHei;font-weight: normal;}
/*默认标题样式*/
#tab .up { color:#df0716;}
/*选中的标题样式*/
/*修饰列表内容*/
#tab ul { list-style:none; padding:0; height:186px; margin-top:0px;}
#tab li { margin-left:10px; margin-right:10px;  height:32px; padding-top:23px; overflow:hidden; }
#tab li a { display:inline; font-size:14px; text-decoration:none; text-indent:10px; margin-right:10px;}
#tab li span{ display:block; padding-top:5px; float:left;width:60px;height:22px;text-align:center; border-radius:20px;background:#e0e0dc;color:#0080ca;font-size:14px; font-weight:600; font-family:Arial,Helvetica,sans-serif}
#tab li span:hover{background:#0080ca;color:#fff}
a.tab_title:link { color: #5a5a5a; text-decoration:none; padding-left:10px; font-size:14px;}
a.tab_title:visited { color:#5a5a5a; text-decoration:none;}
a.tab_title:hover { color:#0080ca;font-weight:700; text-decoration:none;}
a.tab_title:active { color:#5a5a5a; text-decoration:none;}
a.tab_menu:link { color:#df0716; text-decoration:none;}
a.tab_menu:hover { color:#8888e0; text-decoration:underline;}
 