.treeview ul{ /*CSS for Simple Tree Menu*/
padding: 3px;
margin: 3px;
}

#treeview_base{
margin-top: -20px;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

background: #717687 url(../images/bullet.gif) no-repeat left;
color: #FFFFFF;
list-style-type: none;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px; 
line-height: 12px; 
font-weight: bold;
padding-left: 10px;
margin-left: -40px;
margin-bottom: 3px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #717687 url(../images/closed.gif) no-repeat left 1px;
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. */
margin-left:30px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px; 
line-height: 12px; 
font-weight: normal;
padding-left: 20px;
}