/* Vertical style flyout navigation
 * Requires: 	js/flyouts.js 
 * 				styles/base.css 
 */

#nav, #nav ul {										/* overall styles for lists */
	list-style: none;								/* DO NOT REMOVE */
	font-family: arial, helvetica, sans;			/* change as required */
	width: 170px;									/* = width of #nav li */
	font-size: 1.0em;								/* change as required */
	margin-left: -1px;
}

#nav li { 											/* Main Nav items */
	position: relative;								/* DO NOT REMOVE */								
	float: left;									/* DO NOT REMOVE */	
	width: 170px;								/* width of main nav items */									
	height: 30px;									/* = desiredHeight - padding-top */
	padding: 0;							/* for positioning text within the element */
	color: #1a2f57;									/* text color for main nav items */
	font-size: 1.4em;
	line-height: 30px;
	margin:0;
}

#nav li a.one { background: url("../images/nav1_off.gif") no-repeat; }
#nav li a.one:hover,  { background: url("../images/nav1_on.gif") no-repeat; }
#nav li a.two { background: url("../images/nav2_off.gif") no-repeat; }
#nav li a.two:hover,  { background: url("../images/nav2_on.gif") no-repeat; }
#nav li a.three { background: url("../images/nav3_off.gif") no-repeat; }
#nav li a.three:hover,  { background: url("../images/nav3_on.gif") no-repeat; }
#nav li a.four { background: url("../images/nav4_off.gif") no-repeat; }
#nav li a.four:hover,  { background: url("../images/nav4_on.gif") no-repeat; }
#nav li a.five { background: url("../images/nav5_off.gif") no-repeat; }
#nav li a.five:hover,  { background: url("../images/nav5_on.gif") no-repeat; }
#nav li a.six { background: url("../images/nav6_off.gif") no-repeat; }
#nav li a.six:hover,  { background: url("../images/nav6_on.gif") no-repeat; }



#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: 136px;									/* DO NOT REMOVE */
	height: 100%;									/* DO NOT REMOVE */
	color: #1a2f57;									/* Color of the text for your nav items */
	padding-left: 34px;
	font-weight: normal;
}

