/* Vertical style flyout navigation
 * Requires: 	js/flyouts.js 
 * 				styles/base.css 
 */

#nav ul {										/* overall styles for lists */
	list-style: none;								/* DO NOT REMOVE */
	font-family: arial, helvetica, sans;			/* change as required */
	width: 166px;									/* = width of #nav li */
	margin-left: 35px;
	margin-top: -50px;
}

#nav li { 											/* Main Nav items */
	position: relative;								/* DO NOT REMOVE */								
	float: left;									/* DO NOT REMOVE */	
	width: 156px;									/* width of main nav items */									
	height: 36px;									/* = desiredHeight - padding-top */
	padding: 0 0 0 10px;							/* for positioning text within the element */
	color: #77290b;									/* text color for main nav items */
	margin-bottom: 5px;
	line-height: 0;
	font-size: 0.1em;
}

#nav li#nav_home{ background: url("../images/nav_home_off.gif") no-repeat; }
#nav li#nav_pecans{ background: url("../images/nav_pecans_off.gif") no-repeat; }
#nav li#nav_whatsnew{ background: url("../images/nav_whatsnew_off.gif") no-repeat; }
#nav li#nav_nutrition{ background: url("../images/nav_nutrition_off.gif") no-repeat; }
#nav li#nav_recipes{ background: url("../images/nav_recipes_off.gif") no-repeat; }
#nav li#nav_healthprof{ background: url("../images/nav_healthprof_off.gif") no-repeat; }
#nav li#nav_press{ background: url("../images/nav_press_off.gif") no-repeat; }
#nav li#nav_pecanmonth{ background: url("../images/nav_pecanmonth_off.gif") no-repeat; }
#nav li#nav_commercial{ background: url("../images/nav_commercial_off.gif") no-repeat; }
#nav li#nav_where{ background: url("../images/nav_where_off.gif") no-repeat; }
#nav li#nav_members{ background: url("../images/nav_members_off.gif") no-repeat; }
#nav li#nav_contact{ background: url("../images/nav_contact_off.gif") no-repeat; }
#nav li#nav_search{ background: url("../images/nav_search_off.gif") no-repeat; }

#nav li ul { 										/* flyout boxes */
	position: absolute;								/* DO NOT REMOVE */	
	left: -999em;									/* DO NOT REMOVE */
	font-size: 1.0em;								/* DO NOT REMOVE */
	margin-top : -30px;								/* = neg(#nav li height + #nav li padding-top */
	margin-left: 156px;								/* = #nav li width */
	border-top: 1px solid #bf9755;					/* Outline color for flyouts */
	width: 180px;									/* width of flyout item + borders & padding */
	z-index: 10;
}

#nav li ul li{ 										/* individual flyout menu options */
	position: relative;								/* DO NOT REMOVE */
	border-width: 0 1px 1px 4px;					/* DO NOT REMOVE */
	background: #d0a45d;							/* Background for flyouts */					
	border-style: solid;							/* Style for the borders between flyout items */
	border-color: #bf9755;								/* Color for the borders between flyout items */
	padding: 0 0 0 5px;							/* Used to position text within the flyout box */
	width: 170px;									/* Width of a flyout item */
	font-size: 11em;
	line-height: 2.2em;
	height: 2.2em;
	margin: 0;
}

#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: #d0a45d;									/* Color of the text for your nav items */
	font-weight: normal;
}

#nav li ul li a{ color: #77290b; }

#nav li a:hover {									
	/* The a:hover state should only be used to change the color attribute; NOTHING ELSE */
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;									/* DO NOT REMOVE */
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
	left: auto;										/* DO NOT REMOVE */
}

#nav li ul li:hover, #nav li ul li.sfhover{
	background: #fad08b;							/* Background of the sub nav items when hovered */
}

