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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */

ul.MenuBarHorizontal {
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */

ul.MenuBarActive {
	z-index: 1000;
}

/* Menu item containers, position children relative to this container and are a fixed width */

ul.MenuBarHorizontal li {
	margin: 0 12px 0 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	font: 16px/16px Georgia, "Times New Roman", Times, serif;
	white-space: nowrap;
	border: 1px solid #fff;
}

ul.MenuBarHorizontal a,
ul.MenuBarHorizontal li a:link,
ul.MenuBarHorizontal a:visited,
ul.MenuBarHorizontal a:hover,
ul.MenuBarHorizontal a:active {
	text-decoration: none !important;
	border-bottom-style: none !important;
	border-bottom-width: 0 !important;
	color: #fff !important;
}



/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */

ul.MenuBarHorizontal ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */

ul.MenuBarHorizontal ul {
	/* border: 1px solid #CCC; */
}

/* Menu items are a light gray block with padding and no text decoration */

ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	background-color: #0000cd;
	padding: 0.5em 0.65em;
	color: #fff;
	text-decoration: none !important;
}

/* Menu items that have mouse over or focus have a blue background and white text */

ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {
	background-color: #4169e1;
	color: #fff;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */

ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
	background-color: #4169e1;
	color: #fff;
}