﻿* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*浮动菜单控件*/
.lift-nav {
    position: fixed;
    top: 100px;
    left: 10px;
    display: none;
    color: white;
}
    /*菜单的标题*/
    .lift-nav div {
        width: 266px; /*菜单宽度*/
        height: 32px;
        line-height: 32px;
        background: #a90000; /*菜单的标题Title背景*/        
        padding-left: 2px;
        padding-top: 0px;
    }

    /*子菜单*/
    .lift-nav li {
        font-family: Calibri;
        font-size: 14px;
        width: 260px; /*菜单宽度*/
        height: 18px;
        line-height: 18px;
        text-align: left;
        color: white;
        padding: 2px 3px 5px 3px; /*上右下左*/
        margin-bottom: 0px;
        background: #0e2f61; /*菜单背景*/
        cursor: pointer;
        border: 1px dotted black;
        vertical-align: central;
    }

        /*选择的菜单背景*/
        .lift-nav li.current {
            background: #2457a7;
        }
