/* adding sf-vertical class in addition to sf-menu creates a vertical menu */
/* eg. <ul class="sf-menu sf-vertical"> ... */
.sf-vertical {
  width: 100%;
  /* 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;
  */
  background: #fff;
  z-index: 900;
  border: 0;
}
.sf-vertical li ul {
    border:0;
}

.sf-vertical ul {
  left: 101%;
  top: 0;
}
.sf-vertical > li {
  float: none;
}
.sf-vertical li {
  width: 100%;
  display: block;
  height: 35px;
  border-top: 1px solid rgba(255,255,255,.5);
}

/*** alter arrow directions ***/
.sf-vertical.sf-arrows > li > .sf-with-ul:after {  
  border-color: transparent;  
  border-left-color: #fff;
  top: 12px;
  right: -10px;
}
/*border-left-color: rgb(185, 185, 185);*/
.sf-vertical.sf-arrows li > .sf-with-ul:focus:after,
.sf-vertical.sf-arrows li:hover > .sf-with-ul:after,
.sf-vertical.sf-arrows .sfHover > .sf-with-ul:after {
  border-left-color: white;
}
.sf-vertical li:first-child { border-top:none; }
.sf-vertical li a {
  border-left: none;
  padding: 10px;
  font-size: 12px; font-weight:bold;
  width: 81%;
  text-align: left; /* fallback colour must use full shorthand */
}
.sf-vertical li ul li a {
  height:auto;
  border-left:0;
  border-top: 1px solid #dFeEFF; /* fallback colour must use full shorthand */
  border-top: none;
  padding: .75em 1em;
  text-decoration: none;
  zoom: 1; /* IE7 */
  line-height: 15px;
}
.sf-vertical {
}
.sf-vertical li.last ul {
  right: auto;
left: 100%;
}

