/* Vertical style flyout navigation
 * Requires: 	js/flyouts.js 
 * 				styles/base.css 
 */

ul#nav{										/* overall styles for lists */
	list-style: none;								/* DO NOT REMOVE */
	font-family: verdana, arial, helvetica, sans;	/* change as required */
	font-weight: bold;
	width: 216px;									/* = width of ul#nav li */
	font-size: 1.2em;								/* change as required */
	margin-top: 50px;
	letter-spacing: -1px;
}

ul#nav li { 											/* Main Nav items */
	position: relative;								/* DO NOT REMOVE */								
	float: left;									/* DO NOT REMOVE */	
	width: 166px;									/* width of main nav items */									
	height: 29px;									/* = desiredHeight - padding-top */
	padding : 7px 0 0 50px;							/* for positioning text within the element */
	color: #164d85;									/* text color for main nav items */
	background: url(../images/nav5_off.gif) no-repeat;
}

ul#nav li a {											/* Link properties */
	display: block;									/* DO NOT REMOVE */
	background-color : transparent;					/* DO NOT REMOVE */
	color: inherit;									/* DO NOT REMOVE */
	text-decoration: none;							/* DO NOT REMOVE */
	width: 100%;									/* DO NOT REMOVE */
	height: 100%;									/* DO NOT REMOVE */
	color: #164d85;									/* Color of the text for your nav items */	
}

ul#nav li a:hover {									
	/* The a:hover state should only be used to change the color attribute; NOTHING ELSE */
}

ul#nav li:hover, ul#nav li.sfhover {
	background: url("../images/nav_on.gif");		/* Background of the main nav items when hovered */
}

