.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
width: 100%;
text-align: left;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(../img/site/list.gif) no-repeat left center;
background-position: left -10px;
list-style-type: none;
list-style-image: none;
margin: 0;
padding-left: 0px;
padding-bottom: 10px;
text-align: left;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../img/site/closed.gif) no-repeat left 1px;
padding: 0;
cursor: hand !important;
cursor: pointer !important;
margin: 0;
padding-bottom: 10px;
list-style-image: none;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
margin: 0;
padding: 0;
padding-bottom: 10px;
list-style-image: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin: 0;
padding: 0;
padding-bottom: 10px;
list-style-image: none;
}

.treeview .submenu ul li a { /*Style for LIs of ULs that are children of LIs (submenu) */
font-weight: bold;
list-style-image: none;
}