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

.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). */
	cursor: pointer !important;
	background-repeat: no-repeat;
}

.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 .submenu ul li a{
	color: #FFFFFF;
}

.treeview .submenu a{
	color: #FFFFFF;
}

.treeview .submenu ul li ul li.submenu a{
	color: #CA73CE;
}

.treeview .submenu ul li ul li a{
	color: #CA73CE;
}

.treeview .submenu ul li ul li.submenu ul li a{
	color: #A8A8E2;
}

