.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	background-image: none;
	border: thin solid #CCCCCC;
	color: #999999;
	font-weight: bold;
}
.container .middle #treemenu1 li {

}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	margin-bottom: 3px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: left center;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
	list-style-position: inside;
	list-style-image: url(arrow-right.gif);
	padding-left: 10px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background-color: white;
	background-image: none;
	background-repeat: no-repeat;
	background-position: left 1px;
	list-style-position: inside;
	cursor: pointer;
	color: #666666;
	text-align: left;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none;
	color: #333333;
	list-style-position: inside;
	list-style-image: url(open.gif);
}


.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	font-weight: bold;
	color: #666666;
	list-style-image: url(closed.gif);
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: left 1px;
	margin-bottom: 3px;
	text-decoration: none;
	text-align: left;
	margin-left: 0px;
	padding-left: 10px;
}
