.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 2px;
padding: 2px;
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px;
background-color: white;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url(/finan/img/list.gif) no-repeat left center;
background-color: white;
list-style-type: none;
padding-left: 20px;
margin-bottom: 4px;
vertical-align: top;
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(/finan/images/pdf.gif) no-repeat left 1px;
background-color: white;
cursor: hand !important;
cursor: pointer !important;
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
background-color: white;
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
background-color: white;
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px;
}

