/* CSS Document */
#tab {padding:20px; overflow:hidden; position:relative;}
/*设置容器高宽等*/
html > body #tab { }
/*兼容IE6:IE6下宽度不够*/
#tab div { position:absolute; top:20px; left:254px;}
/*设置容器高宽等*/
#tab div { display:none;}
/*设置容器默认隐藏:不用ID是因为下面将利用class来控制容器显示,而class优先级低于id选择器*/
#tab .block { display:block;}
/*选中的容器*/
#tab h3 { width:234px; height:50px; line-height:50px; font-size:18px; cursor:pointer; background-color:#c5c5c5; text-align:center; color:#5a5a5a; font-family:"微软雅黑";font-weight:normal;}
/*默认标题样式*/
#tab .up { background:#0292cf;color:#fff;}
/*选中的标题样式*/
/*修饰列表内容*/
#tab .gs_list { list-style:none; padding:0; width:711px; height:400px; margin-top:0px;}
#tab .gs_list li { margin-left:10px; margin-right:10px; border-bottom:1px dotted #c6c6c6; height:22px; padding-top:0; overflow:hidden; font-size:12px;}
#tab .gs_list li a { display:inline; font-size:12px; text-decoration:none; text-indent:10px; margin-right:10px;}
#tab .gs_list li span{ display:block; float:right; margin-right:5px; color: #bdacb3;}
a.tab_title:link { color: #5a5a5a; text-decoration:none;}
a.tab_title:visited { color:#5a5a5a; text-decoration:none;}
a.tab_title:hover { color:#5a5a5a; text-decoration:none;}
a.tab_title:active { color:#5a5a5a; text-decoration:none;}
a.tab_menu:link { color:#6464d5; text-decoration:none;}
a.tab_menu:hover { color:#8888e0; text-decoration:underline;}


