.treeview ul{ /*CSS for Simple Tree Menu*/
padding-left:-40px;
}



.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
cursor:pointer;
margin-bottom:1px;
margin-top:1px;
margin-right:10px;

font-family:OpenSans-Semibold;
	font-size:13px;
	color:#3f3e3e;
}
.treeview li:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

color:#3b8686;

}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */

}


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