.treeview { /*CSS for Simple Tree Menu*/
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
margin: 0 0px;
padding: 0 2px;
background-color:#F0EFE4;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
background-color:#F0EFE4;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(/global/treemenu/list.gif) no-repeat left top;
list-style-type: none;
padding-left: 22px;
margin-top: 8px;
margin-bottom: 8px;
background-color:#F0EFE4;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(/global/treemenu/closed.gif) no-repeat left 3px;
cursor: hand !important;
cursor: pointer !important;
background-color:#F0EFE4;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
background-color:#F0EFE4;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
background-color:#F0EFE4;
}
