.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../images/minus.png) no-repeat left center;
list-style-type: none;
padding-left: 10px;
margin:5px 0 0 0;
color:#6c792e;
font-weight:bold;
padding-left:20px;
}
.treeview li a{color:#6c792e; text-decoration:none;}
.treeview li a:hover{color:#6c792e; text-decoration:none;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/plus.png) no-repeat left 5px;
cursor: hand !important;
cursor: pointer !important;
color:#6c792e;
font-weight:bold;
font-size:14px;
text-transform:uppercase;
}


.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;
background: url(../images/minus.png) no-repeat left center;
padding-left: 5px;
color:#72775c;
font-weight:bold;
}
.treeview .submenu ul li a{color:#72775c; text-decoration:none;}
.treeview .submenu ul li a:hover{color:#72775c; text-decoration:none;}