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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background:  url(../images/menu/list.gif) no-repeat left center;
list-style-type: none;
padding-left: 22px;
margin-top: 5px;
margin-bottom: 7px;
color:#000000;
font-weight:500;
background-position: 0 .5em;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background:  url(../images/menu/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
color:217bf6;
}


.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;
vertical-align:top;
}
