.leftMenu a {
    text-decoration: none;
    display: block;
}

.leftMenu {
    background: #092b5a;
    left: -1000px;
    position: fixed;
    top: 0px;
    display: block;
    height: 100%;
    width:50%;
    min-width: 140px;
    max-width: 440px;
    z-index: 90002;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: fixed;
    overflow: auto;
}

.leftMenu.menu-open {
    left: 0;
}

.leftMenu ul {
    list-style: none;
    padding: 0;
}

.leftMenu ul li {
    position: relative;
    padding: 14px 0 14px 15px; font-size: 16px; border-bottom: 1px solid #34516e;text-align: left;
}
.leftMenu ul li a{ color: #fff; }
.leftMenu ul li.hasChild > a dt { background: url("../images/img_1.png"); width: 15px; height: 15px; background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top:15px;
    font-size: 18px;
    font-weight: 300;
}

.leftMenu ul li.hasChild.open > a dt {
    background: url("../images/img_2.png"); width: 15px; height: 15px; background-size: 100% 100%;
    right: 23px;
    font-size: 28px;
    top:15px;
}
.leftMenu ul li.hasChild .f2 ul{ padding-top: 10px; }
.leftMenu ul li.hasChild .f2 ul li{ font-size: 14px; text-align: left; padding:10px 0 10px 0;border-bottom: none;}
.leftMenu ul li.hasChild .f2 ul li .f3 ul li{ width: 100%;padding:10px 0px 10px 0px; }
.f2, .f3 {
    height: 0;
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease;
    -moz-transition: height 0.4s ease;
    -webkit-transition: height 0.4s ease;
    -o-transition: height 0.4s ease;
}

.menu-dark-backdrop {
    background: rgba(0,0,0,0);
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    overflow: hidden;
}

    .menu-dark-backdrop.in {
        height: 100%;
        z-index: 90001;
        background: rgba(9,43,90,0.5);
    }
