/* SmartMenus - pure CSS menus */
@media (min-width: 768px) {

	/* sub menus defaults - width should be the same for all */
	.sm ul {
		width: 12em;
		left: 0;
	}
	.sm-rtl ul {
		left: auto;
		right: 0;
	}

	/* sub menus offset */
	.sm ul ul, .sm-vertical ul {
		margin: -2.7em 0 0 11.8em;
	}
	.sm-rtl ul ul, .sm-rtl.sm-vertical ul {
		margin: -2.7em 11.8em 0 0;
	}

	/* show sub menus on hover */
	.sm li:hover > ul {
		display: block;
		z-index: 10000;
	}
}
/* Source: https://www.smartmenus.org/forums/topic/smartmenu-doesnt-in-javascript-not-enabled-browsers/ */
