/* CSS Document */
.treeview a:link {
	color:#004B2D;
	text-decoration:none;
	font-weight:bold
	}
.treeview a:visited {
	color:#004B2D;
	text-decoration:none;
	font-weight:bold
	}
.treeview a:hover,a:active {
	color:#006b3f;
	border-bottom:1 px dotted;
	}
.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)*/
	background:  url(/images/menu/list.gif) no-repeat left center; /* url(list.gif)*/
	list-style-type: none;
	padding-left: 15px;
	margin-bottom: 3px;
	font-weight:bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #004B2D;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background:  url(/images/menu/closed.gif) no-repeat left 1px;
	cursor: hand;
	cursor: pointer;
	font-weight:bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #004B2D;
}


.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;
}
