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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #E1E1E1 url(../images/list.png) no-repeat left;
/*/background: #E1E1E1;*/
font-family:Verdana, Geneva, sans-serif;
font-size:11px;
padding-bottom:3px;
padding-top:3px;
list-style-type: none;
padding-left: 20px;
margin-bottom: 2px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #E1E1E1 url(../images/closed.png) no-repeat left 0px;
cursor: hand !important;
cursor: pointer !important;
}


.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;
}