div#navigation { 
	/* Coding as required for page location*/ 
	position: relative; 
	z-index: 1;
	font-size: 12px; 
	font-family: Verdana, Arial, sans-serif; 
}

div#navigation ul { 
	list-style: none; 
	list-image: none; 
	margin: 0; 
	padding: 0; 
	position: absolute; 
	border: thin solid #0A3590; 
	border-bottom: none; 
	background-color: #d9f2f9; 
	width: 130px; 
} 

div#navigation ul.level1 li { 
	position: relative; 
	border-bottom: 1px solid #0A3590;
} 

div#navigation ul ul { 
	position: absolute; 
	left: -9999px;
}

div#navigation li.submenu:hover ul.level2 { 
	display: block; 
	width: 130px;
	left: 128px; 
	top: 0px; 
}

div#navigation li a { 
	display: block; 
	padding: 3px 0 3px 3px; 
	text-decoration: none; 
}

div#navigation ul.level1 a {		/* text color of main menu items without children before hover */
	width: 127px; 
	color: #0A3590;
} 

/*width of 1st sub menu, discovered that not really needed, comment out */
/*div#navigation ul#sub1 {
	width: 110px; 
}*/

/* width of 1st sub menu highlight, discovered that not really needed, comment out */
/*div#navigation ul#sub1 a {	
	width: 107px; 
}*/

/* width of 2nd sub menu, discovered that not really needed, comment out */
/*div#navigation ul#sub2 {
	width: 110px; 
}*/

/* width of 2nd sub menu highlight, discovered that not really needed, comment out */
/*div#navigation ul#sub2 a {	
	width: 107px; 
}*/

/* width of 3rd sub menu, discovered that not really needed, comment out */
/*div#navigation ul#sub3 {
	width: 110px; 
}*/

/* width of 3rd sub menu highlight, discovered that not really needed, comment out */
/*div#navigation ul#sub3 a {
	width: 107px; 
}*/

div#navigation li a:hover {				/* text & background color of main menu items that have no children during hover */
	color: #D9F2F9; 
	background-color: #0A3590; 
}

#sub1, #sub2 , #sub3 {				/* allow submenus to be front most elements */
	z-index: 2;
}

li.submenu {					/* text color of main menu items with children before hover */
	color: #0A3590;
	padding: 3px 0 3px 3px; 
	z-index: 2;
}

li.submenu:hover {					/* text & background color of main menu items that have children during hover */
	color: #D9F2F9; 
	background-color: #0A3590;
}

#banner {
    position: relative;
    top: 0px;
    left: 0px;
    border: 5px solid green;
}

