.treeview{
	width: 195px;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0px;
	padding: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	background: none url('../images/list.gif') no-repeat left center;
	background-image: url('../images/list.gif');
	background-repeat: no-repeat;
	list-style-type: none;
	padding-left: 22px;
	margin: 7px 0px 0px 0px;
	/*	
	margin: 10px 0px 0px 0px;
	*/
	font-weight: bold;
}
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: none url('../images/closed.jpg') no-repeat left 1px;
	background-repeat: no-repeat;
	background-image: url('../images/closed.jpg');
	cursor: hand !important;
	cursor: pointer !important;
	font-weight: bold;
	margin: 7px 0px 0px 5px;
}
.treeview li.submenu a{
	color:#FF6B00;
	font-weight: bold;
}	
.treeview li.submenu a:hover{
	color:#FF6B00;
}	

.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;
}
.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
	color:#FF6B00;
	font-weight: normal;
}
.treeview .submenu ul li a:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
	color:#FF6B00;
	font-weight: normal;
}
.treeview a {
	text-decoration: none;
}
.treeview a:hover {
	text-decoration: underline;
}