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

.sf-leftmenu, .sf-leftmenu 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-leftmenu li:hover ul,
.sf-leftmenu li.sfHover ul {
	left:	160px; /* match ul width */
	top:	0;
}

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

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