/* adding usf-vertical class in addition to usf-menu creates a vertical menu */
/* eg. <ul class="usf-menu usf-vertical"> ... */
.usf-vertical {
  width: 12em;
  /* 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. */

  /*
  min-width: 12em;
  *width: 12em;
  */
}
.usf-vertical ul {
	left:	100%;
	top: 0;
}
.usf-vertical > li {
  float: none;
}
.usf-vertical li {
  width: 100%;
}

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