/* LAYER HACK FOR IE6 + IE7 so that vertical menu is behind horizontal */
ul.sf-vertical {
        z-index: 9;
        position: relative;
}

/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/

.sf-vertical {
        border: 0px;
}

.sf-vertical, .sf-vertical li {
	width: 162px;
        float:none;
}

.sf-vertical a {
        white-space:normal;
}

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

.sf-vertical li a {
	border-left: 0;
        border-bottom: 1px solid #eeeeee;
        padding-left:1px;
}

.sf-vertical li ul li a {
        border: 0;
	border-left: 1px solid #f36f21;
}

.sf-vertical #sf_first_link, .sf-vertical .sf_first_link {
        color: #808080;
        border-bottom: 1px solid #AAAAAA;
}

.sf-vertical #sf_first_link:hover, .sf-vertical .sf_first_link:hover {
        color: #393536;
}

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

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