.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;
padding-left: 0px;
margin-bottom: -2px;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
text-decoration:none;

}


.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;
background-color:white;
text-decoration:none;

}

.treeview .submenu ul li a:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;

width:130px;
height:15px;
background-color:black;
text-decoration:none;
}

a.navmenu:link{ text-decoration:none; font-weight:bold;border:1px;}
a.navmenu:hover{ text-decoration:none; color:red;}
a.navmenu:visited{ text-decoration:none; color:color:red;font-weight:bold;border:1px;}


