/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.sf-menu.sf-vertical, .sf-menu.sf-vertical li {
	width:	173px;
	border: none;
	text-align: left;
}
.sf-menu.sf-vertical li ul{
	width:	153px;
	background-color: #fff;
	padding:0;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-menu.sf-vertical li:hover ul,
.sf-menu.sf-vertical li.sfHover ul {
	width:	163px; /* match ul width */
	top:	0;
	left:	173px; 
}
.sf-menu.sf-vertical li,
.sf-menu.sf-vertical li a{
	padding:0;
	width:	173px;
	height: 37px;
	border: none;
}
.sf-menu.sf-vertical li li {
	background-color: #fff;
	height: 20px;	
	width:	153px;
}
.sf-menu.sf-vertical li li a{
	padding:0;
	margin: 0;
	width:	153px;
	height: 10px;
	padding: 5px;
	border: none;
	background-color: #fff;
	font-size: 10px;
	color: #35425E;
}
.sf-menu.sf-vertical a:focus, 
.sf-menu.sf-vertical a:hover, 
.sf-menu.sf-vertical a:active {
	background:		#cfcfcf;
	outline:		0;
}
/*** alter arrow directions ***/
.sf-menu.sf-vertical .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.sf-menu.sf-vertical a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.sf-menu.sf-vertical a:focus > .sf-sub-indicator,
.sf-menu.sf-vertical a:hover > .sf-sub-indicator,
.sf-menu.sf-vertical a:active > .sf-sub-indicator,
.sf-menu.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-menu.sf-vertical li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}