/* adding lmex-vertical class in addition to lmex-menu creates a vertical menu */
/* eg. <ul class="lmex-menu lmex-vertical"> ... */
.lmex-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;
  */
}
.lmex-vertical ul {
	left:	100%;
	top: 0;
}
.lmex-vertical > li {
  float: none;
}
.lmex-vertical li {
  width: 100%;
}

/*** alter arrow directions ***/
.lmex-vertical.lmex-arrows > li > .lmex-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);
}
.lmex-vertical.lmex-arrows li > .lmex-with-ul:focus:after,
.lmex-vertical.lmex-arrows li:hover > .lmex-with-ul:after,
.lmex-vertical.lmex-arrows .sfHover > .lmex-with-ul:after {
  border-left-color: white;
}
