/* Acrescentado sufixo -o em todos os seletores */


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

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