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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: black url(images/tri_r_bl.gif) no-repeat left 4px;
list-style-type: none;
padding-left: 22px;
margin-bottom: 10px;
cursor: default;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: black url(images/tri_r_bl.gif) no-repeat left 4px;
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. */
cursor: default;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
cursor: default;
/*background: grey url(images/tri_r_bl.gif) no-repeat left 4px;*/
}