.treeview {
font-family: "Myriad Web" Arial, Helvetica, sans-serif;
top: 0;
font-size: 0.7em;
font-weight: bold;
margin: 0px 15px 0px 0px;
padding: 0px;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0px;
padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
color: white;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
color: white;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
color: #FF8ED2;
text-decoration: none;
margin-left: 30px;
margin-bottom: 10px;
line-height: 16px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
color: #FF8ED2;
list-style-type:disc;
}

.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
color: #FF8ED2;
text-decoration: none;
}

.treeview .submenu ul li a:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
color: #ff0080;
text-decoration: none;
}