.treeview ul{ /*CSS for Simple Tree Menu*/

margin-left:30px;
text-align:left;
background-color:#D2D7BE;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
margin-left:-15px;
background: white url(images/list.gif) no-repeat left center;
list-style-type: none;
margin-bottom: 3px;
font-size:92%;
line-height:130%;
text-align:left;
background-color:#D2D7BE;
padding:0;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(images/closed.gif) no-repeat left 1px;
padding:0;
cursor: hand !important;
cursor: pointer !important;
font-size:92%;
line-height:130%;
text-align:left;
background-color:#D2D7BE;

}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-size:100%;
line-height:130%;
text-align:left;
background-color:#D2D7BE;

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-size:100%;
line-height:130%;
text-align:left;
background-color:#D2D7BE;

}

.treeview li A{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
text-decoration:none;
color:#000000;
}

.treeview li A:hover{ 
text-decoration:underline;
}