BODY{ }

#popupmenu{
	float: none;
	position: relative;  /*This can also be fixed or absolute*/
	margin: 0 1em;
	padding: 0;
	/*height: 30px;*/
	width: 100%;
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	background: #FFFFFF;
}

#popupmenu a {
	color: #009378;
	text-decoration: none;
	margin: 0;
	padding-right: 0.5em;
	padding-left: 0.5em;
}

#popupmenu li:hover a,
#popupmenu li.sfhover a{ 
	/*color: #877B67;*/
	display: block;
	color: #2F81DD;
}
#popupmenu li a:hover,
#popupmenu li li a:hover {
	color: #FFFFFF;
}
#popupmenu ul ul a{
	display: block;
	width: 100%;
}

#popupmenu ul{
	float: left; /* to keep the other floating objects contained*/
	list-style: none;
	white-space: nowrap;
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1000;
}
#popupmenu li ul { /* Sets second level to lower left of parent. Works in IE, breaks Opera */
	display: none;
	position: absolute; 
	top: 100%;
	left: 0;
	background: #8CC63F; /* sub menu, not hovering */
	margin: 0;
	padding: 0;
	border: 2px outset #666666;
	width: 16em;
	z-index: 1000;
}
/* Fix for Opera Browsers */
#popupmenu ul > li {
	top: auto;
	left: auto;
}

#popupmenu li {
	float: left;
	position: relative;
	background: none;
	/*text-align: center;*/
	margin: 0 1px 0 0;
	padding: 0.2em 0 0.2em 0;
}
#popupmenu li li {
	/*display: block;*/
	margin: 1px solid #E9F1B1;
	border-bottom: 1px solid #999999;
	float: none;
	z-index: 1000;
}

#popupmenu li:hover, /*top level hover*/
#popupmenu li.sfhover { /* sfhover is the javascript class that 
			dynamically assigns to LI nodes, necessary for IE6. Actual function in HTML file */
	background: #8CC63F;
}

#popupmenu li:hover ul, /*submenu default background*/
#popupmenu li.sfhover ul { 
	display: block;
	background: #E9F1B1;
}

#popupmenu li li:hover, /*submenu hovering*/
#popupmenu li li.sfhover { /* sfhover is the javascript class that 
			dynamically assigns to LI nodes, necessary for IE6. Actual function in HTML file */
	background: #8CC63F;
}

