@charset "UTF-8";

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.mbhor
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.2em;
	cursor: default;
	width: auto;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.mbhor li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.0em;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 9.0em;
	float: left;
}
ul.mbhor .mbitemsmall
{
	width: 5.0em;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially hidden */
ul.mbhor ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1.0em;
	z-index: 1020;
	cursor: default;
	width: 10em;
	position: absolute;
	visibility: hidden;
}
/* Make submenu's visible when hover */
ul.mbhor li:hover ul,
ul.mbhor li li:hover, /* IE hack */
ul.mbhor li a:hover ul /* IE hack */ {
	visibility: visible;
	z-index: 1050;
}
ul.mbhor li:hover ul li a,
ul.mbhor li a:hover ul li a /* IE hack */ {
	display: block;
}
/* Applies to links on the drop-down menu */
ul.mbhor li:hover ul li a:hover,
ul.mbhor li a:hover ul li a:hover /* IE hack */ {
	color: #FFFFFF;
}
/* IE6 hack applies to its table drop-down */
#headernav2 table {
	margin: -1px;
	border-collapse: collapse;
	position: absolute;
	top: 0.5em;
	left: 0;
	z-index: 100;
}
/* IE6 hack applies to its table drop-down */
#headernav table {
	margin: -1px;
	border-collapse: collapse;
	position: absolute;
	top: 0.5em;
	left: 0;
	z-index: 100;
}
/* Menu item containers are same fixed width as parent */
ul.mbhor ul li
{
	width: 10em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.mbhor ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation mbsubhere, we set left to 0 so it comes onto the screen */
ul.mbhor ul.mbsubhere ul.mbsubhere
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.mbhor ul
{
	border: 1px solid #DDDDDD;
}
/* Menu items have padding and no text decoration */
ul.mbhor a
{
	display: block;
	cursor: pointer;
	padding: 0.5em 0.75em;
	color: #333333;
	text-decoration: none;
	height: 2.0em; /*25px;*/
	text-align: center;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.mbhor a:hover, ul.mbhor a:focus
{
	color: #333333;
	background-color: #6699CC;
	background-image: url(images/menuactive2.gif);
	background-repeat: no-repeat;	
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.mbhor a.mbsubhere
{
	color: #FFFFFF;
	background-image: url(images/menuactive2.gif);
	background-repeat: no-repeat;
}
.item {
	color: #333333;
	background-color: #6699CC;
}
/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation mbitemsub and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */

ul.mbhor a.mbitemsub
{
	background-image: url(images/mbdown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation mbitemsubHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */

ul.mbhor a.mbitemsub:hover
{
	background-image: url(images/mbdownhover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
