.topnavigationgroup ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.topnavigationgroup ul li {
	float: left;
}
.topnavigationgroup ul li a {
	padding: 10px 20px 10px 20px;
	margin-right: 2px;
	text-decoration: none;
	font-size: 14px;
	background: #3f6997;
	color: #fff;
	display: block;
}
.topnavigationgroup ul li a:hover {
	background: #fff;
	color: #3f6997;
}
.topnavigationgroup ul li ul {
	display: none;
	float: left;
	position: absolute;
}
.topnavigationgroup ul li:hover ul {
	display: block;
}
.topnavigationgroup ul li:hover ul li{
	float: none;
}
.topnavigationgroup ul li:hover ul li a{
	display: block;
	float: none;
}
/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
.topnavigationgroup ul li a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 85%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
.topnavigationgroup ul li ul li a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
.topnavigationgroup ul li a:hover.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 85%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
.topnavigationgroup ul li ul li a:hover.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

