.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: transparent ;
list-style-type: none;
margin-left: -20px;
padding-left: 22px;
font-size: 12px; font-weight: bold; color: brown;
text-align: left;
margin-top: 2px;
margin-bottom: 3px;
padding-bottom: 3px;
line-height: 14px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #f0e0d3 url(/js/tri.gif) no-repeat 9px 5px;
/*background: #f0e0d3 */
font-size: 13px; font-weight: bold; color: brown; 
font-family: "Arial, Helvetica, MS Sans Serif";
border-top: 1px solid brown;
margin-bottom: 6px;
line-height: 15px;
cursor: hand !important;
cursor: pointer !important;
margin-left: -46px;
color: indigo;
}


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