	.NavDrop1 {
	position: absolute;
	top: 4px;
	left: 40px;
	z-index: 5;
	}
	
	.NavDrop2 {
	position: absolute;
	top: 4px;
	left: 160px;
	z-index: 5;
	}

	.NavDrop3 {
	position: absolute;
	top: 4px;
	left: 350px;
	padding-right: 100px;
	z-index: 5;
	}

	.NavDrop4 {
	position: absolute;
	top: 4px;
	left:550px;
	z-index: 5;
	}

	.NavDrop5 {
	position: absolute;
	top: 4px;
	left:735px;
	z-index: 5;
	}

	.NavDrop6 {
	position: absolute;
	top: 4px;
	left:830px;
	z-index: 5;
	}
	


#nav, #nav ul {     
	float: left;
	width: 800px;
	list-style: none;
	line-height: 1;
	background: #ffffff;  /* sets background color of drop down area */
	padding: 0px;
	border: solid #000000;   /* sets outside border of drop down */
	border-width: .0em .0em;
	margin: 0em 0em 0em 0em;  
	z-index: 5; 
	} 
	
#nav ul li {
	position: relative;
	}
 
#nav a   {
	display: block;
	width: 160px;  /* sets where drop down appear horizontally from main category */
	color: #fafad2;  /* sets Font color on top category */
	font-family: arial, san-serif;   /* controls FONT on top category */
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 600;   
	padding: .1em 0.1em;
	text-decoration: none; 
	z-index: 5; 
	}

#nav li { 
	float: center; 
	width: 0em;  /* width sets color change area of top category */
	display: block; 
	} 


#nav li a {	
	color: #ffffff;    /* controls color of type on top nav */
	display: block;
	height: 15px;
	width: 160px;
	padding: 5px;	
	z-index: 5; 
	}


#nav li ul {
	position: absolute;
	top: 23px;   /* Controls how far down from top category drop-down appears */
	left: -999em;   /* sets how far down drop-down can stretch */
	height: auto;
	width: 182px;  /* sets outside border width of drop-down area */
	font-weight: normal;
	border-width: 0.05em;
	margin: 0;
	border-top: none;
	z-index: 5; 
	}


#nav li li 	{   
	padding-right: 1em; /* Controls Grid area and Grid-lines on drop-downs */ 
	width: 165px;  /* sets roll-over-color width on drop down  */
	height: 25px;	
	border: .08em solid #000000; 	
	border-width: .01em 0; 
	border-top: none; 
	background: #3399ff;
	background-image: url(../images/DropNavBack.gif); /* Controls background of menus in passive state */ 
	z-index: 5; 
	}  


#nav li ul a     /* controls FONT in Grid Area on drop-downs */ 
	{
	display: block; 
	width: 165px;  
	height: 17px; 
	font-family: arial, san-serif;  
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 600;   
	padding-top: 6px; 
	color: #000000; /* controls Font Color of text in Dropdown area in passive state */
	z-index: 5; 
	}    


#nav li ul ul 
	{ margin: 0em 0 0 0em; z-index: 5;  }
	
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul 
	{ left: -999em; }

#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; display: block;   }	

#nav li:hover, #nav li.sfhover 
	{background: #e5e5e5; 	}  /* sets color-change on hover of roll-over of drop-down */
	

<script type="text/javascript"><!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//--><!]]></script>

