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

.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;
}


.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;
	font-style: italic;
}

.treeview a{
	color: #000000;
}