.treeview ul{ /*CSS for Simple Tree Menu*/
    margin: 0;
    padding-top: 5;
    line-height: 1.2em;
    list-style: none outside;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
    background: none url("../../Content/treeview/list.png") no-repeat left center;
    list-style-type: none!important;
    padding-left: 22px;
    margin-bottom: 5px;
    line-height: 1.2em;
    list-style: none outside;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: transparent url("../../Content/treeview/closed.png") no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
padding-top:0px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-left:0px;
}