/*CSS for Simple Tree Menu*/
.treeview{ 
	margin: 0px;
	padding: 0px;
	margin-left: 12px;
	margin-top: 5px;
	margin-bottom: 10px;
	font-weight:bold;
	color: white;	
	font-size: 11px;
}

.treeview ul{
	margin: 0px;
	padding: 0px;
	font-weight:normal;	
}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 10px;
	margin-bottom: 10px;	
}

.treeview .submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: url(../images/arrow_hor.gif) no-repeat left 4px;
	cursor: pointer !important;
	
}


.treeview .submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	margin-top: 10px;	
	font-size: 11px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: pointer !important;
}

.treeview a{
	color: white;
}

.treeview .selected a{
	color: black;
	font-weight: bold;
}