/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		margin-top: 3px;
		list-style: none;
		width : 220px;
		font-size: 84%;
		padding-left: 14px;
		letter-spacing: .05em;
		position: relative;
		float: left;

	}
.sf-vertical, .sf-vertical li {
	width:	10em;
}
/* 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:	10em; /* match ul width */
	top:	0;
}

/*** 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*/
}
/* CSS Document */
 
	
	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		margin-top: 3px;
		list-style: none;
		width : 220px;
		font-size: 84%;
		padding-left: 14px;
		letter-spacing: .05em;
		position: relative;
		float: left;

	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.2em;
		margin-bottom : -1px;
		width: 210px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 200px;
		margin-top : -2.8em;
		z-index: 10000000;
	}
	#nav li ul li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 190px;
		margin-top : -2.8em;
		z-index: 10000000;
	}
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	#nav li ul li {	
	font-size: 100%;
	}
	#nav li ul li ul li {	
	font-size: 120%;
	}
	#nav li a {
		width: 187px;
		display : block;
		color : #666666;
		font-weight : bold;
		text-decoration : none;
		padding : 0.5em 0.5em;
		padding-right: 10px;
	}
	#nav li a.nohref {
		background: #FFF url(/images/right-off.gif) center right no-repeat;
	}
	#nav li a:hover.nohref {
		background: url(/images/right-on.gif) center right no-repeat;
	}
	#nav li ul li a.nohref {
		background: #FFF url(/images/right-grey.gif) center right no-repeat;
	}
	#nav li ul li a:hover.nohref {
		background: #666 url(/images/right-black.gif) center right no-repeat;
	}
	#nav li ul a {
		border: 1px solid #666666;
		background-color: #FFFFFF;
		font-weight: normal;
	}
	#nav li a:hover {
		color : #660000;
	}
	#nav li ul a:hover {
		color: #FFFFFF;
		background-color: #666666;
	}
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	#leftNav {
	position: relative;
	float: left;
	width: 220px;
	display: block;
}
#nav li:hover {
	height: 1%; 
	background-position: 0 0;
}
/* extra positioning rules for limited noscript keyboard accessibility */
#nav li a:focus + ul { margin-left: 0; }
#nav li li a:focus + ul { margin-left: 190px; }
#nav li li a:focus { margin-left: 190px; background: #666; color: #FFF; }
#nav li li li a:focus {margin-left: 190px; background: #666; color: #FFF; }
#nav li:hover a:focus, #nav li.sfhover a.sffocus { margin-left: 0; }
#nav li li:hover a:focus + ul, #nav li li.sfhover a.sffocus + ul { margin-left: 190px; }
