/*---SUCKERFISH VERTICAL 3-LEVEL NAVIGATION CSS---*/
/*--REVISION OCT. 9, 2012 12:15--*/

body {
	font-family: arial, helvetica, san-serif;
	font-size: 10pt;
	text-decoration: none;

}

a:link.vert {
	text-decoration: none;
	color: #ffffff;
}


a:visited.vert {
	text-decoration: none;
	color: #ffffff;
}


a:hover.vert {
	text-decoration: underline;
}


a:active.vert {
	text-decoration: none;
}




#nav_vert, #nav_vert ul {
	margin: 0;
	list-style: none;
	line-height: 1.75;
	height: 340px;
	width: 175px;
	padding-top: 10px;
	padding-left: 8px;
}

#nav_vert a {
	display: block;
	width: 185px;
}

#nav_vert li { /* all list items */
	/*float: left;*/
	width: 185px;
	/* width needed or else Opera goes nuts */

}

#nav_vert li ul { /* second-level lists */
	position: absolute;
	background: #336699;
	width: 165px;  /*--THIS CONTROLS COLUMN WIDTH OF FIRST LEVEL FLY-OUT--*/
	margin: 0 0 0 14.5em;	/*--THIS CONTROLS THE HORIZONTAL POSITION OF THE FIRST FLY-OUT COLUMN--*/
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #333333;
	border-bottom-color: #333333;
}

#nav_vert li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;    /*-- -1em 0 0 10--*/
}

#nav_vert li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav_vert li:hover ul, #nav_vert li li:hover ul, #nav_vert li li li:hover ul, #nav_vert li.sfhover ul, #nav_vert li li.sfhover ul, #nav_vert li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	margin-top: -2.5em;  /*--THIS MOVES ELEMENTS IN THE FIRST FLY-OUT COLUMN VERTICALLY - THE LARGER THE NEGATIVE NUMBER THE HIGHER UP THE SCREEN--*/
}

#content {
	clear: right;

}
