/* adding sf-vertical class in addition to sf-menu creates a vertical menu */
/* eg. <ul class="sf-menu sf-vertical"> ... */
.sf-vertical {
  /* 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;
  */
}
.sf-vertical ul {
	left: -13em;
	top: 0;
}
.sf-vertical ul ul {
	left: -12m;
	top: 0;
}
.sf-vertical > li {
  float: none;
}
.sf-vertical li {
  width: 100%;
}
.sf-menu ul li a {
	color: #000;
	border: none;
}

/*** alter arrow directions ***/
.sf-vertical.sf-arrows > li > .sf-with-ul:after {
 margin-top: -5px;
border-color: transparent;
border-right-color: transparent;
border-right-color: #dfeeff;
border-right-color: rgba(0,0,0,.5);
right: 13em;
}
.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-right-color: white;
}
.sf-arrows .sf-with-ul {
    padding-left: 2em;
}
.sf-menu a { 
	padding: 10px 4px;
	margin: 5px;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border: 1px solid #FFF;
}
.sf-menu ul ul li a {
	border-bottom: 1px solid #FFF;
	padding: 10px 4px;
    padding: 0.75em 2em;
    text-decoration: none;
}