/*body {
	font: bold 20px Trebuchet Verdana Geneva Arial Helvetica sans-serif;
}
p {
	font-size:.8em;
	font-weight: normal;
}*/
.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
width: 325px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #eefafc url(../img/list.gif) no-repeat left 4px;
color: #042848;
font-weight:bold;
font-size:1.15em;
line-height:1.8em;
list-style-type: none;
padding-left: 24px;
margin: 5px;
text-decoration:none;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: #fff url(../img/closed.gif) no-repeat left 7px;
color:  #042848;
font-weight:bold;
/*text-decoration:underline;*/
cursor: hand !important;
cursor: pointer !important;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
text-decoration:none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
font-size: .95em;
text-decoration:none;
}

a {text-decoration:underline;}