#popupmenu{
	float: left; /* to keep the other floating objects contained*/
	position: relative; /* This can also be fixed or absolute*/
	width: 100%;
	background-color: #FFFFFF;
	color: #345D84;
	font-family: Arial, Helvetica, sans-serif;
	border-style: none;
	border-width: 0px 0 0px 0;	
}
#popupmenu ul{
	float: left;
	white-space: nowrap;
	margin: 0;  
	padding: 0;  

}
*#popupmenu ul {
	/*Does nothing*/left: 0px;
}
/* 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
{ 
	margin: 0;
	padding: 0;
	float: left;
	list-style-type: none;
	position: relative;  
}
/* 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: 1000;
}
/* First submenu level*/
#popupmenu  > ul > li:hover > ul{
	display: block; /*unhide it*/
	float: right;	
	position: absolute; /* It needs to be absolute
	for the effect to work.*/
	width: 125px;
	bottom: 30px; /* This places the the bottom of the 
	ul 1.1em from the bottom of the enclosing li. This 
	is the important part of the effect.*/

/* 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 {
	float: right;
	display: block;
	position: absolute;
	width: 125px;
	bottom: 3px; /* Required with some value or
	the effect will not work*/
}
#popupmenu ul li:hover ul li{ 
	display: block;
 	float: left;   
 	width: 100%;
}
#popupmenu ul li a{
	float: left;
	display: block;
	text-decoration: none;
	color: #1A3148;
	padding: 5px;
}
/* The on state for the link when you are on the submenu.
This should be before the hover state for the link itself*/
#popupmenu ul li:hover > a{
	background-color: #FFFFFF;
	color: White;
}
#popupmenu ul li a:hover
{ 
	background-color: #FFFFFF; 
	color: #345D84; 
}
#popupmenu ul li ul li a{ 
	float: none;
	border-color: #345D84;  
	border-style: none; 
 	border-width: 0 0px 0px 0px;  
 	background-color: #E6E7F9;
 	color: #345D84;
 	font-size: 8pt;
 	white-space: normal;
 }
#popupmenu ul li ul li:first-child a{
	border-width: 1px 1px 1px 1px;
}
/* Do Not Move - Must Come Before display:block for Gecko */
ul#popupmenu li.iehover2 ul ul,
ul#popupmenu li.iehover2 ul ul ul,
ul#popupmenu li.iehover2 ul ul ul {
  display: none;
}

ul#popupmenu li.iehover2 ul,
ul#popupmenu ul li.iehover2 ul,
ul#popupmenu ul ul li.iehover2 ul {
  display: block;
}
