/* NOTES:																	*/
/* - SET FONT SIZE *FIRST* BEFORE ATTEMPTING TWEAK OTHER PARAMETERS			
	 - Change all "Menu Width" parameters to change width of menus.  NOTE: USE em NOT px
	 - Change #Content in main CSS file: padding: X X X 13em - Em value should be Menu Width + 1em
	 - Change "line-height" to change height of menu items.  May need to be tweaked in Mozilla/Netscape to avoid missing borders
	 - Must have javascript for sfhover in each file in order for these menus to function
*/


#nav { /* all lists , #nav ul*/

	font-size: 13px; /* Changes height and width of menu */	
	
	padding: 0;
	margin: 0;
	list-style: none;
	float : left; /* DO NOT CHANGE - allows sub-menus to "float" next to main menu */
	width : 12em; /* Menu Width of background layer in 2nd level of non-explorer browsers xxx*/
	border-bottom: 0px none #000066; 	/* BORDER - left blank to avoid doubling of lines */
	border-right: 2px none #999999;
	border-left: 2px none #999999;	
	border-top: 1px solid #999999;  /* BORDER - Four Sides Border - item below subtracts one border to avoid double thick bordering */
	background-color: #999999;
}

#nav ul {
	border-left: 3px double #999999;
	border-right: 1px solid #999999;
}
#nav li { /* all list items */
	position : relative; /* removed - Holly Hack ???? */
	float : left;
  line-height : 1.85em; /* Orig: 1.25em  - SpaNet.DLW - Suckerfish ORIGINAL - commented out - Fixes "Every 4 Line" extra space in Firefox/Netscape  separator*/
/*	margin-bottom : -1px;   Correction to overlap Menu Items - causes width of border on bottom to display as one pixel less than setting */
	width: 12em; /* Menu Width of background layer in 1st level of non-explorer browsers */
	clear: left; /*  - SpaNet.DLW - DLW Addition used to clear up problem with 1st level display in Dreamweaver MX 2004 */
	border-bottom: 1px solid #000066; /* BORDER - Replace last border from <ul> above to complete border at bottom of menu */
/*	border-left: 4px solid #999999;  BORDER - only needed if you want a solid line on left edge*/
 	color: #FFFFFF; 		/*Menu Text Color - for NON-ANCHOR elements - items with a sub-menu  - can differ from anchor elements if differentiation is desired */
	font-weight: bold;		/* Menu Text Weight - for NON-ANCHOR elements - items with a sub-menu */
/*	padding: 0 0.5em; 		 Padding between menu text and edges of "block" - for NON-ANCHOR elements - items with a sub-menu */

}

#nav li a { /* SpaNet.DLW - Actual display formatting for "cells" (links) in menu */
/*	width: 20em; 			 Menu Width  - IEXPLORER tweak - this applies ONLY to IEXPLORER 5 */
	w\idth: 11em; 			/* Menu Width  - IEXPLORER tweak - Menu width for anchor level all browsers EXCEPT IEXPLORER 5 - Generally other widths minus 1*/
	display: block;			/* DO NOT CHANGE */
	color: #E9EFEC; 		/* Menu Text Color */
	font-weight: bold;		/* Menu Text Weight */
	text-decoration: none; 	/* Menu Link decoration - Removes underline from links */
	background-color:#999999; 	/* Menu Background Color */
	padding: 0 0.5em; 		/* Padding between menu text and edges of "block" - Original Suckerfish Value  0 0.5em; (top&bottom left&right */
/*	border-color: #2D5329; 		 Menu Border Color - Applies to edges of each individual menu item */
/*	border-style: solid none solid none;  Menu Border Style for each edge: top right bottom left */
/*	border-width: 1px 0px 1px 0px;  Width of separator border between menu items - Actual width will be 1px less (see above) - top right bottom left */
}

#nav li a:hover {
	color : white; /* Menu "Over" text color */
	background-color: #91B09E; /* Menu "Over" background color */
}
