/*CSS for Simple Tree Menu*/
.treeview ul{ 
	margin: 0;
	padding: 0;
}
.treeview table, td{
	background: transparent;
}

.treeview li{
	/*background: url(list.gif) no-repeat left center;*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.treeview li.submenu{
	/* Style for LI that contains sub lists (other ULs). */
	background: url(ouvrable.png) no-repeat left 1px;
	cursor: crosshair;
	cursor: pointer;
	padding: 0;
	padding-left:12px;
}

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