/* NOTES:																	*/
/* -These parameters currently only are exact for font-size: 12px;			*/


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left; /* DO NOT CHANGE - allows sub-menus to "float" next to main menu */
	width : 14em; /* Menu Width */
	border-bottom: 0px none #000000; 	/* BORDER - left blank to avoid doubling of lines */
	border-right: 0px none #CFE7CF;
	border-left: 0px none #CFE7CF;	
	border-top: 1px solid #2D5329;  /* BORDER - Four Sides Border - item below subtracts one border to avoid double thick bordering */
	background-color: #CFE7CF;

}
#nav ul {
	border-left: 3px double #2D5329;
	border-right: 1px solid #2D5329;
}
#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: 14em; /* Original Suckerfish value 11em */
	clear: left; /*  - SpaNet.DLW - DLW Addition used to clear up problem with 1st level display in Dreamweaver MX 2004 */
	border-bottom: 1px solid #2D5329; /* BORDER - Replace last border from <ul> above to complete border at bottom of menu */
 	color: #2D5329; 		/*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 ul { /* second-level lists */
	position : absolute;    /* absolute "hides" item off screen by moving "left: -999em;" below.  On :hover "position: auto;" brings it back */
	left: -999em;		   	/* DO NOT CHANGE - this is the code to "hide" sub-menus by sliding them off screen to left */
	margin-left : 14em; 	/* SUBMENU POSITION - position of second level lists from left edge of #mainbox */
	margin-top : -1.95em;	/* Sets vertical alignment of second level list - Original Suckerfish Value = -1.35em*/

}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em; /* DO NOT CHANGE - this is the code to "hide" sub-menus by sliding them off screen to left */
}

#nav li a { /* SpaNet.DLW - Actual display formatting for "cells" (links) in menu */
	width: 14em; 			/* Menu Width  - IEXPLORER tweak - this applies ONLY to IEXPLORER */
	w\idth: 13em; 			/* Menu Width  - IEXPLORER tweak - Menu width for all browsers EXCEPT IEXPLORER */
	display: block;			/* DO NOT CHANGE */
	color: #2D5329; 		/* Menu Text Color */
	font-weight: bold;		/* Menu Text Weight */
	text-decoration: none; 	/* Menu Link decoration - Removes underline from links */
	background-color:#CFE7CF; 	/* 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: #89B1F5; /* Menu "Over" background color */
}

#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 CHANGE - this is the code to "hide" sub-menus by sliding them off screen to left */
}

#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 { /* lists nested under hovered list items */
	left: auto; /* DO NOT CHANGE - this is the code to "show" menus by returning them to screen */
}

#content {
	margin-left : 14em; /* Original 12em */
}

