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

.li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(list.gif) no-repeat left center;
list-style-type: none;
margin: 0px;
padding: 0px;
margin-left: 0px;
padding-left: 0px;
}

.li.submenu{ /* Style for LI that contains sub lists (other ULs). */
color: #ffffff;
cursor: hand !important;
cursor: pointer !important;
margin: 0px;
padding: 0px;
margin-left: 0px;
padding-left: 0px;
}


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

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