/* NOTES:																	*/
/* -These parameters currently only are exact for font-size: 12px;			*/


#nav, #nav ul {
	padding: 0 0 0 0;
	margin: 0;
	list-style: none;
	float : left;
	width : 14em;
	border-bottom: 0px none #000000;
	border-right: 0px none #CFE7CF;
	border-left: 0px none #CFE7CF;
	border-top: 1px none #2D5329;
	background-image:url(images/nav-bg-section.jpg);
	font-family: Arial, Helvetica, sans-serif;
	color: #666699;
	font-size: 12px;
	/* background-repeat: no-repeat; */
	text-indent: 17px;
}
#nav ul {
	/* border-right: 1px solid #CCCCFF; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666699;
}
#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 none #2D5329; /* BORDER - Replace last border from <ul> above to complete border at bottom of menu */
 	  color: #666699; 		/*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 {
	position : absolute;
	left: -999em;
	margin-left : 13.2em;
	margin-top : -1.95em;
	/* background-repeat: no-repeat; */
	background-repeat: repeat-y;
}

#nav li ul ul { /* third-and-above-level lists */
	position : absolute;
	left: -999em;  /* DO NOT CHANGE - this is the code to "hide" sub-menus by sliding them off screen to left */
	margin-left : 12.6em;
	margin-top : -2em;
	
}

#nav li a {
	width: 14em;
	display: block;
	color: #666699;
	font-weight: bold;
	text-decoration: none;
	background-image:url(images/nav-bg-section.jpg);
	padding: 0 0.5em;
	background-repeat: no-repeat;
	line-height: 24px;
/*	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-image:url(images/nav-bg-section-over.jpg); /* 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;
	font-family: Arial, Helvetica, sans-serif;
	color: #6666CC;
}