/* ESSENTIAL STYLES */

ul.sf-menu {
	z-index: 1;
}

ul.sf-menu, ul.sf-menu * {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.sf-menu li {
	position: relative;
}

ul.sf-menu ul {
	display: none;
	left: 0;
	position: absolute;
	top: 100%;
	z-index: 99;
}

ul.sf-menu > li {
	float: left;
}

ul.sf-menu li:hover > ul, ul.sf-menu li.sfHover > ul {
	display: block;
}

ul.sf-menu a {
	display: block;
	position: relative;
}

ul.sf-menu ul ul {
	left: 100%;
	top: 0;
}

/* MAIN MENU */

ul.sf-menu {
	font-family: "Oswald", sans-serif;
	font-size: 1.1em;
	min-height: 30px;
	margin: 0 0;
	padding: 5px;
}

ul.sf-menu:after {
	clear: both;
	content: '';
	display: block;
	height: 0;
}

ul.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	padding: 5px;
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}

ul.sf-menu a {
	color: #FFF;
	line-height: 20px;
	padding: 5px 10px;
}

ul.sf-menu a:hover {
	text-decoration: none;
}

/* arrows (for all except IE7) */
.sf-arrows .sf-with-ul {
	padding-right: 25px;
	*padding-right: 10px; /* no CSS arrows for IE7 (lack pseudo-elements) */
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	border: 5px solid transparent;
	border-top-color: #FFF; /* edit this to suit design (no rgba in IE8) */
	content: '';
	height: 0;
	margin-top: -3px;
	position: absolute;
	right: 10px;
	top: 50%;
	width: 0;
}

.sf-arrows > li > .sf-with-ul:focus:after, .sf-arrows > li:hover > .sf-with-ul:after, .sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #FFF; /* IE8 fallback colour */
}

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	border-color: transparent;
	border-left-color: #999; /* edit this to suit design (no rgba in IE8) */
	margin-right: -3px;
	margin-top: -5px;
}

.sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after, .sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #FFF;
}
