.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0; padding: 0; list-style-image: none; }

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white no-repeat left center; /*url(list.gif)*/
margin-bottom: 3px; list-style-type: none; list-style-image: none; }

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white no-repeat left 1px; cursor: hand !important; cursor: pointer !important; font-weight:bold; color: #cc6600; list-style-image: none; }


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
list-style-image: none; display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
list-style-image: none; cursor: default; }

.treeview li a{ text-decoration:none; color: #003399; font-weight: normal; margin-left: 12px; }

.treeview li a:hover{ color: #c60; }

