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

ul#nav * { margin: 0; padding: 0; border: 0: }

ul#nav{ 												/* all lists */
	list-style: none;									/* DO NOT REMOVE */
	font-family: arial, arial, helvetica, serif;		/* Font for your items */
	font-size: 1em;										/* Font size for your nav items */
}

ul#nav li { 												/* main nav items */
	float: left;										/* DO NOT REMOVE */
	font-size: 1em;										/* DO NOT REMOVE */
	height: 61px;
	list-style: none;
	margin-top: -10px; 
}

* html ul#nav li { margin-top: 0; }



ul#nav li ul { 											/* drop down boxes */
	position: absolute;									/* DO NOT REMOVE */
	left: -999em;										/* DO NOT REMOVE */
	width: 125px;										/* Width of drop down box */
	border-top: 1px solid #222;							/* Color of your box border */						
	margin-left: 0px;									/* = neg(ul#nav li horizontal padding) */
	margin-top: -10px;

}

* html ul#nav li ul{ margin-left: -128px; margin-top: 58px; }

ul#nav li ul li{ 											/* drop down items */
	position: relative;									/* DO NOT REMOVE */
	background: #b12a1c;								/* Background for drop-down items */
	border-width: 0 1px 1px 1px;						/* sets the borders for your drop downs */
	border-style: solid;								/* The style of the border */
	border-color: #222;									/* color of the border for your drop downs */
	padding: 5px 0 0 5px;							/* used to position text in the drop down item */
	width: 118px;										/* = nav li ul width - padding-left - padding-right */
	margin: 0;
	height: 28px;
	line-height: 12px;
}

ul#nav li ul ul { 										/* third-and-above-level lists */
	margin-top: -2.2em;									/* = neg(parent height + parent vert. pad. + parent vert. border */									
	margin-left: 160px;									/* = parent width */
}

ul#nav a {
	display: inline;										/* DO NOT REMOVE */
	text-decoration : none;								/* DO NOT REMOVE */
	background-color : transparent;						/* DO NOT REMOVE */
	width: 100%;										/* DO NOT REMOVE */	
	height: 100%;										/* DO NOT REMOVE */
	color: #ffffff;										/* text link color */
}

ul#nav li ul li a{ display: block; }

ul#nav li:hover ul ul, ul#nav li:hover ul ul ul, ul#nav li.sfhover ul ul, ul#nav li.sfhover ul ul ul {
	left: -999em;										/* DO NOT REMOVE */
}

ul#nav li:hover ul, ul#nav li li:hover ul, ul#nav li li li:hover ul, ul#nav li.sfhover ul, ul#nav li li.sfhover ul, ul#nav li li li.sfhover ul {
	left: auto;											/* DO NOT REMOVE */
}

ul#nav li:hover, ul#nav li.sfhover {
	background: url(../images/nav_bg_on.gif);			/* Background for main nav items when hovered */
}

ul#nav li ul li:hover, ul#nav li ul li.sfhover{
	background: #8b2116;								/* Background for flyout items when hovered */
}