.treeview {
	margin: 0;
	padding: 0;
	width: 679px;
}
.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/treemenu_bg.gif) no-repeat left center;
	list-style-type: none;
	margin: 0px 0px 3px;
	padding: 0px 0px 0px 22px;
	font: bold 14px/36px "Times New Roman", Times, serif;
	color: #717171;
	border: 1px solid #d5d5d5;
}
.treeview li a {
	font: bold 14px "Times New Roman", Times, serif;
	color: #717171;
	text-decoration: none;
}
.treeview li a:hover {
	font: bold 14px "Times New Roman", Times, serif;
	color: #717171;
	text-decoration: none;
}


.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: url(../images/treemenu_closed.gif) no-repeat left top;
	cursor: hand !important;
	cursor: pointer !important;
	line-height: 36px;
	border-style: none;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	padding: 0px;
	margin: 3px 0px 0px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	list-style: none;
}

