﻿/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
#listMenuRoot, #listMenuRoot li {
	width:	10em;
}
#listMenuRoot ul li {
	width:	12em;
}

/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
#listMenuRoot li:hover ul,
#listMenuRoot li.sfHover ul {
	left:	10em; /* match ul width */
	top:	0;
}
#listMenuRoot ul li:hover ul,
#listMenuRoot ul li.sfHover ul {
	left:	12em; /* match ul width */
	top:	0;
}

/*** alter arrow directions ***/
#listMenuRoot .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
#listMenuRoot a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
#listMenuRoot a:focus > .sf-sub-indicator,
#listMenuRoot a:hover > .sf-sub-indicator,
#listMenuRoot a:active > .sf-sub-indicator,
#listMenuRoot li:hover > a > .sf-sub-indicator,
#listMenuRoot li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}