
	.navbox1 {	position: absolute;	top: 1px; left: 30px;}
		
	.navbox2 {	position: absolute;	top: 1px; left: 175px;}
		
	.navbox3 {	position: absolute;	top: 1px; left: 375px;}
		
	.navbox4 {	position: absolute;	top: 1px; left: 540px; }
		
	.navbox5 {	position: absolute;	top: 1px; left: 690px;	}
	


#nav, #nav ul {     
	float: left;
	width: 800px;
	list-style: none;
	line-height: 1;
	background: #29386B;  /* 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; 
	} 
	
#nav ul li {
	position: relative;
	}
 
#nav a {
	display: block;
	width: 12em;  /* sets where drop down appear horizontally from main category */
	color: #fafad2;  /* sets Font color on top category */
	font-family: arial;   /* controls FONT on top category */
	font-size: 10pt;
	font-weight: 600;   
	padding: .1em 0.1em;
	text-decoration: none;
	}

#nav li 
	{ float: center; width: 0em; } /* width sets color change area of top category */


#nav li ul {
	position: absolute;
	top: 14.5px;   /* Controls how far down from top category drop-down appears */
	left: -999em;   /* sets how far down dro-down can stretch */
	height: Auto;
	width: 9em;  /* sets width of drop-down area */
	font-weight: normal;
	border-width: 0.05em;
	margin: 0;
	border-top: none;
	}

#nav li li 
	{ padding-right: 1em; width: 8em}  /* sets roll-over-color width on drop down  */


#nav li ul a 
	{ display: block; width: 10.7em;  height:20px; font-weight: 700; border: .08em solid #b5b5b5; 	
	border-width: .04em 0; border-top: none; padding-top: 0.25em; color: #fafad2;}
	 /* controls Font, Grid area and Grid-lines on drop-downs */

#nav li ul ul 
	{ margin: 0em 0 0 0em; }
	
#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: #008000; }  /* add8e6 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>

