.current {
	background-color: #DEDE39; /* For current menu item */
}

#main
{
	position:static;
	margin:auto;
	width: 1000px; /* Needs to tie up with navbar ul li width * number of top-level entries! */
	height: 70px;
	background: white;
}
#navouter
{
	position: relative;
}
#navbarfixed /* 11/9/13 - Allows for table influences */
{
	position: absolute;
	padding: 0px;
	left: 0px;
	top: -12px;
	width: 100%;
	height: 35px;
	background: #82A839; /* Navbar Background */
	color: white;
	text-align: center;
	font: bold 14px arial, helvetica, sans-serif; /* Font details */
	z-index:100;
}

#navbar
{
	position: absolute;
	background-color: #B03060; /* Level 1 Background (#B03060 - Maroon) */ 
	color: white;
	max-height:210px;
}
#navbar a:link, #navbar a:visited, #navbar a:hover, #navbar a:active {color: white; text-decoration: none;}
#navbar ul
{
	margin-left:auto; margin-right:auto; Margin-top:0px; margin-bottom:0px;
	list-style-type: none;
	padding: 0px;
	text-align: center;
}
/* Top level Styling */
#navbar ul li
{
    display: inline-block;
	float: left;
	margin: 0px;
	padding: 0px;
	width: 200px; /* Width of a nav box */
	height: auto;
	line-height:35px;
}
#navbar ul li:hover
{
	background:#DEDE39; /* Level 1 Background Hover (#DEDE39 - Pea Green) */
	max-height:35px;
}
/* Drop-down (2nd level) Styling */
/* Turn Drop-down off by default */
#navbar ul li ul li
{
	display:none;
}
/* Turn Drop-down on when Top-level hover */
#navbar ul li:hover ul li
{
	display: block;
	position: relative;
	background: #B03060; /* Level 2 */
}
/* Change Drop-down background on hover */
#navbar ul li:hover ul li:hover
{
	background: #DEDE39; /* Level 2 Hover */
}
/* Pop-out (3rd level) Styling */
/* Turn Pop-out off by default */
#navbar ul li:hover ul li ul li
{
	display:none;
}
/* Turn Pop-out on when Drop-down hover */
#navbar ul li ul li:hover ul li
{
	display: block;
	position: relative;
	top: -35px;
	left: 200px;
	background:#82A839;
}
#navbar ul li ul li:hover ul a li /* Level 3 */
{
	color:yellow;
}
/* Change Pop-out background on hover */
#navbar ul ul li:hover ul li:hover
{
	background:cyan; /* Level 3 Hover*/
}
