/* CSS Document */
#tab { position: relative;
    width: 509px;
    height: 277px;
    margin-top: 30px;
    border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-top: 2px solid #ae0202;
    float: left;}
/*设置容器高宽等*/
html > body #tab {   width: 486px;
    padding-left: 10px;
    padding-right: 10px;}
/*兼容IE6:IE6下宽度不够*/
#tab div {         position: absolute;
    top: 50px;
    left: 0;
    width: 475px;
    height: 206px;
    padding: 10px;
}
/*设置容器高宽等*/
#tab div { display:none;}
/*设置容器默认隐藏:不用ID是因为下面将利用class来控制容器显示,而class优先级低于id选择器*/
#tab .block { display:block;}
/*选中的容器*/
#tab h3 {    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: rgb(163, 163, 163);
    font-weight: bold;
    font-family: 微软雅黑;
    width: 33.33%;
    float: left;
    text-align: center;
    border-bottom: 1px solid rgb(163, 163, 163);
    margin: 0px;
    padding: 10px 0px;}
/*默认标题样式*/
#tab .up {     border-bottom: 1px solid #ac1f25;
    color: #ac1f25;
    float: left;}
/*选中的标题样式*/
/*修饰列表内容*/
#tab ul { list-style:none; padding:0; height:186px; margin-top:0px;}
#tab li { background-image: url(../images/ico.jpg);
    background-position: 0 12px;
    background-repeat: no-repeat;
    padding-left: 15px;
    line-height: 28px;
    height: 30px;
    font-size: 14px;
    color: #444; overflow:hidden;}
#tab li a { text-decoration:none; color: #444; }
#tab 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;}

