.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: no-repeat left 1px;
list-style-type: none;
padding-top:3px;
margin-top:3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background:  no-repeat left 6px;
padding-left:15px;
padding-top:-3px;
cursor: hand !important;
cursor: pointer !important;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
PADDING-LEFT: 15px;
MARGIN-BOTTOM: 0px;
MARGIN-top: 0px;
PADDING-BOTTOM: 0px;
LINE-HEIGHT: 15px; 
}

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