.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
background-image: none;
margin-left: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background-image:  url(list.gif);
background-repeat: no-repeat;
background-position: left center;
list-style-type:none;
margin: 3px 0px 6px 0px;
padding-left: 20px;
}

.treeview li a{
background-image:  none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: transparent url(closed.gif) no-repeat left 1px;
list-style:none;
cursor: hand !important;
cursor: pointer !important;
margin-left: 0px;
}

/*
.treeview li.submenu a{
background-image:  none;
padding-left: 22px;
}
*/

.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;
}