.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(/site/scripts/list.gif) no-repeat left top;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-color:#CCCCCC;
font-size: 11px;
font-style: normal;
list-style-type: none;
padding-left: 20px;
margin-bottom: 10px;
margin-top: 6px;
/*width:500px;
background-color:#FFE9CF;*/
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(/site/scripts/closed.gif) no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
margin-bottom: 5px;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
margin-bottom: 5px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin-bottom: 5px;
}


