@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
.list_dt{
    background: #f3f3f3;
    color: #333;
    width: 200px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
	margin: 0 auto;
}
.list_dt_icon{
    position: absolute;
    right: 10px;
    top: 13px;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/off.png") no-repeat;
}
#open .list_dt_icon{
    background: url("../images/open.png") no-repeat;
}
.list_dd{
    display: none;
}
.list_li{
    background: #fafafa;
    list-style-type: none;
    color: #333;
    width: 200px;
    height: 40px;
    line-height: 34px;
    cursor: pointer;
	margin: 0 auto;
}
 .list_li:hover{
    background: #1e52c2;
}

.nlist1 dd.list_dd ul li:hover{
	color: #fff;
}




















