/* Horizontal Flyout Menus
 * Requires: 	js/flyouts.js 
 * 				styles/base.css 
 */

ul#nav { 										/* all lists */
	list-style: none;									/* DO NOT REMOVE */
	font-family: arial, arial, helvetica, serif;		/* Font for your items */
	font-size: 1.1em;										/* Font size for your nav items */
	height: 24px;
	padding: 0 0 0 6px;
}

ul#nav li { 												/* main nav items */
	float: left;										/* DO NOT REMOVE */
	display: block;
	font-size: 1em;										/* DO NOT REMOVE */
	height: 17px;										/* = desiredHeight - padding-top  - padding-bottom */
	padding : 7px 0 0 0;								/* Used to position your text within main nav items */
	margin: 0 15px 0 0;
	text-transform: uppercase;
}

ul#nav li.right{
	margin: 0;
}

ul#nav li:hover, ul#nav li.sfhover, ul#nav li.current{
	border-bottom: 3px solid #1661ad;
}

ul#nav li a{
	text-decoration: none;
	color: #3a3aa0;
}

ul#nav li a:hover{
	border: 0;
}

