/* adding menu class in addition to sf-menu creates a vertical menu */
/* eg. <ul class="sf-menu menu"> ... */
.menu-header .menu {
  width: auto;
  /* If you want the width of the closed menu to expand to its
  widest top-level menu item (like its "Supersubs" submenus do),
  replace the width rule above with the following two rules. */
}
.menu-header .menu ul {
	left: 100%;
	top: 0;
	background-color: #009900;
}
.menu-header .menu > li {
  float: none;
}
.menu-header .menu li {
  width: auto;
}

/*** alter arrow directions ***/
.menu-header .menu.sf-arrows > li > .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
  border-left-color: rgba(255,255,255,.5);
}
.menu-header .menu.sf-arrows li > .sf-with-ul:focus:after,
.menu-header .menu.sf-arrows li:hover > .sf-with-ul:after,
.menu-header .menu.sf-arrows .sfHover > .sf-with-ul:after {
  border-left-color: white;
}

@media only screen and (min-width: 480px) {
/*** ESSENTIAL STYLES ***/
.menu-header .menu, .menu * {
	position: relative;
}
.menu-header .menu li {
	position: relative;
	float: left;
	width:auto;
}
.menu-header .menu ul li {
	float:none;
	border-bottom:1px solid #1A96C6;
}
.menu-header .menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	background-color: #8AC641;
	width:160%;
}
.menu-header .menu ul li a {
	position: relative;
	font-size:12px;
}
.menu-header .menu > li {
}
.menu-header .menu li:hover > ul,
.menu li.sfHover > ul {
	display:block;
}
.menu-header .menu a {
	position: relative;
	text-align:center;
}
.menu-header .menu ul ul {
	top: 0;
	left: 100%;
}
}