/* to keep the other floating objects contained*/

/* This can also be fixed or absolute*/

/* Formatting*/

/*Menu font size*/

#popupmenu {
	position: absolute;
	width: 950px;
	left: 0px;
	bottom: 0px;
	background-color: #7BB87F;
	font: 1.25em/2 "Arial Black", Arial, Helvetica, sans-serif;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

#popupmenu ul {
	float: right;
	white-space: nowrap;
	padding: 0;
	margin: 0;
}

/* add more for each extra submenu level*/

#popupmenu ul li,
#popupmenu ul li ul li,
#popupmenu ul li ul li ul li,
#popupmenu ul li ul li ul li ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* add more for each extra submenu level*/

#popupmenu ul li ul,
#popupmenu ul:hover li ul li ul,
#popupmenu ul:hover li ul li ul li ul,
#popupmenu ul:hover li ul li ul li ul li ul {
	display: none;
	z-index: 2000;
}

/* First submenu level*/

/* unhide it*/

/* It needs to be absolute for the effect to work.*/

#popupmenu  > ul > li:hover > ul {
	display: block;
	float: right;
	position: absolute;
	width: 8em;
	top: 100%;
}

/* For the remaining submenu levels*/

/* add more for each extra submenu level*/

#popupmenu  ul  li  ul  li:hover  ul,
#popupmenu  ul  li  ul li ul li:hover  ul,
#popupmenu  ul  li  ul li ul li ul li:hover  ul {
	display: block;
	float: right;
	position: absolute;
	width: 150%;
	left: 60%;
	top: -1%;


/*

Required with some value or the effect will not work.*/
}

#popupmenu ul li:hover ul li {
	display: block;
	float: left;
	width: 150%;
}

#popupmenu ul li a {
	display: block;
	float: left;
	text-decoration: none;
	color: #000;
	padding: 0 .5em 0 .5em;
}

/* The on state for the link when you are on the submenu.
This should be before the hover state for the link itself 1A3148 345D84 69c */

#popupmenu ul li:hover > a {
	background-color: #69c;
	color: #fff;
}

#popupmenu ul li a:hover {
	background-color: #69c;
	color: #fff;
}

#popupmenu ul li ul li a {
	float: none;
	border-color: #345D84;
	border-style: solid;
	border-width: 0 1px 1px 1px;
	background-color: #F1F6FA;
	font-size: 90%;
	white-space: normal;
	line-height: 2;
	text-align: left;
}

#popupmenu ul li ul li:first-child a {
	border-width: 1px 1px 1px 1px;
}