.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 2;
padding: 2;
font-size:12;color:blue
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background:  url(list.gif) no-repeat left center;
list-style-type: none;
padding-left: 22px;
margin-bottom: 1px;
font-size:14;
color:blue
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background:  url(open.gif) no-repeat left top;
cursor: hand !important;
cursor: pointer !important;
font-size:17;
margin-bottom: 1px;
color:blue
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-size:15;
margin-bottom: 1px;
color:blue
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-size:14;
margin-bottom: 1px;
color:blue
}