ul { /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 4px;
}

.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 3px 0px;
}

.treeview li * a {
	text-decoration: none;
}

.treeview li span { 
	display: flex;
	align-items: center;
}

.treeview li span a {
	flex-grow: 1;       /* Force the link to grow and fill empty space */
    text-align: left;   /* Keeps text to the left within that new space */
    display: block;     
}

.treeview li span img {
	float: left;
	padding: 0px 0px 0px 0px;
	margin: 0px 10px 0px 2px;
    transition: transform 0.3s;
}

.treeview li.submenu { 
	padding: 0px 0px 0px 2px;
	cursor: hand !important;
	cursor: pointer !important;
}

.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;
}
