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

.treeview li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(list.gif) no-repeat; /*left center;*/
list-style-type: none;
padding-left: 20px;
font-family:Comic Sans MS,Verdana,Geneva,Arial,Helvetica,sans-serif;
font-size:12px;
color:white;
text-decoration:underline;
}

.treeview a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
font-weight:bold;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/*background: transparent url(closed.gif) no-repeat left 1px;*/
background: none no-repeat;
padding-left: 0px;
cursor: hand !important;
font-family:Comic Sans MS,Verdana,Geneva,Arial,Helvetica,sans-serif;
font-size:15px;
line-height:2em;
list-style-type: square;
}


.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;
list-style-type: none;
}