ul.treeview {
	font-family: Arial;
	padding-left: 5px;
	margin: 5px 0;
	font-size: 13px;
}

.treeview > ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
}

ul.treeview {
	/* background-color: #fff; */
}

ul.treeview > li > .foldername {
	padding-left: 0;
	color: #225D84;
}

.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	/* background: white url(/images/icons/16x16/folder.png) no-repeat left center; */
	background-image: none !important;
	list-style-type: none;
	font-size: 0.9rem;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	/* background: white url(/images/icons/16x16/folder.png) no-repeat left 1px; */
	cursor: pointer !important;
	/* padding-left: 22px; */
	position: relative;
}

.treeview li.submenu:after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	color: #707070;
	line-height: 2.2;
	float: right;
}

.treeview li.submenu[style*="folder-open"]:after {
	content: "–";
}

.treeview li .foldername {
	display: block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 10px;
}
.treeview li .foldername:hover {
	color: #0e222f;
}

.treeview li .foldername:before {
	content: "folder";
	font-family: 'Material Icons';
	color: #a9cbe0;
	font-size: 17px;
	margin-right: 0.66rem;
	vertical-align: bottom;
}

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