.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 5;
color: #ffffff;
text-align: left;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color: #ffffff;
list-style-type: none;
font-size: 9px;
text-align: left;
padding-left: 20px;
margin-bottom: 10px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
position:relative;
left:-42px;
background: transparent url(closed.png) no-repeat left 1px;
cursor: hand !important;
text-align: left;
color: #ffffff;
cursor: pointer !important;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
color: #ffffff;
text-align: left;
display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
color: #ffffff;
text-align: left;
cursor: default;
}

