.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
text-decoration:none;
color:#0D1C57;
font-family:Verdana, Georgia;
font-weight:bold;
padding-left: 0px;
margin-bottom: 4px;
}
/*fonts*/
.treeview  li {font-size: 80%;}
.treeview  li ul li {font-size: 80%;}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
cursor: hand !important;
cursor: pointer !important;
}

/*.treeview li.submenu :hover{text-decoration:underline;}*/

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

a.navLink {color:#0D1C57;text-decoration:none;}
a.navLink:visited {color:#0D1C57;text-decoration:none;}
a.navLink:hover {color:#0D1C57;text-decoration:underline;}
a.navSubLink:link {color:#996600;text-decoration:none;}
a.navSubLink:visited {color:#996600;text-decoration:none;}
a.navSubLink:hover {color:#996600;text-decoration:underline;}


