
#sidenav {
    margin-bottom: 10px;
}
#sidenav ul {
    font-size: 12px;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: relative;
}
#sidenav ul li {
    background: none repeat scroll 0 0 #FFD9D9;
    border-top: 1px solid #A00000;
    display: block;
    position: relative;
    transition: background 0.4s linear 0s;
}
#sidenav li ul {
    display: none;
}
#sidenav ul li a {
    border-bottom: 1px solid #D3D3D3;
    color: #383838;
    display: block;
    margin-left: 1px;
    padding: 12px 15px;
    text-decoration: none;
    white-space: nowrap;
}
#sidenav ul li a:hover, #sidenav .active {
    background: none repeat scroll 0 0 #A00000;
    color: white;
    transition: background 0.4s linear 0s;
}
#sidenav .active a {
    color: white;
}
#sidenav li:hover ul {
    display: block;
    left: 160px;
    position: absolute;
    top: 0;
    z-index: 900;
}
#sidenav li:hover li {
    border-left: 0 none;
    border-right: 0 none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    float: none;
    font-size: 12px;
    width: 200px;
}
#sidenav li:hover a {
    background: none repeat scroll 0 0 #FFD9D9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#sidenav li:hover li a:hover {
    background: none repeat scroll 0 0 #1C1A1A;
}