/*** adding sf-stdmenu in addition to sf-menu creates a vertical menu ***/
ul#stdmenu li {
  z-index: 1000;
}

.sf-stdmenu, .sf-stdmenu li {
	width:	160px;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-stdmenu li:hover ul,
.sf-stdmenu li.sfHover ul {
	left:	160px; /* match ul width */
	top:	0;
}

/*** alter arrow directions ***/
.sf-stdmenu .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.sf-stdmenu a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.sf-stdmenu a:focus > .sf-sub-indicator,
.sf-stdmenu a:hover > .sf-sub-indicator,
.sf-stdmenu a:active > .sf-sub-indicator,
.sf-stdmenu li:hover > a > .sf-sub-indicator,
.sf-stdmenu li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}
