.treeview { /*CSS for Simple Tree Menu*/
margin: 0px 0px 0px 0px;
padding: 4px 0px 4px 0px;
font-family: Calibri, Arial, Helvetica, sans-serif;
font-size:1.4em;
width:336px;
}


.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px 0px 10px 0px;
padding: 4px 0px 0px 10px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background-position: left center;
list-style-type: none;
padding-left: 8px;
margin-bottom: 5px;
font-weight: normal;
line-height:24px;
color:#fff;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background-image: url(closed.gif);
background-repeat: no-repeat;
background-position:top left;
cursor: hand !important;
cursor: pointer !important;
font-weight: bold;
padding-top:0px;
padding-left:18px
}


.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;
}