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

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

.sf-rightmenu li ul li:hover ul,
.sf-rightmenu li ul li.sfHover ul {
	left:			-160px; /* match ul width */
	top:			0;
}


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

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