@charset "utf-8";
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal{
	padding: 0;
	margin-top:0;

	height:25px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	width: 950px;
	background-repeat:repeat-x;
	
}
/* 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{
	list-style-type: none;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 17px;
	padding-top:6px;
	/*background: url(../images/divider.gif) no-repeat right center;*/
	
}
/* 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 li ul{
	z-index: 1020;
	position: absolute;
	left: -1000em;
	margin: -1px 0 0;
	background-color: #FFF3F7;
	padding:0px;
	border:1px solid #720505;
	
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal li ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal li ul li{
	float: none;
	white-space: nowrap;
	font-size: 14px;
	font-weight:normal;
	text-align: left;
	background:none;
	_padding-bottom:1px;/*fixes extra bottom space in IE6*/
	
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal li a{
	color: #FF709C;
	text-decoration: none;
	display: block;
	cursor:pointer;
	padding-top: 3px;
	padding-right: 25px;
	padding-bottom: 3px;
	padding-left: 25px;
	border-right:1px solid #FF709C;

}
/* submenu link */
ul.MenuBarHorizontal li ul li a{
	padding-top: 3px;
	padding-right: 25px;
	padding-bottom: 3px;
	padding-left: 25px;
	border:none;
	background:none;

	
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a background and white text */
ul.MenuBarHorizontal li a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{
	padding-top: 3px;
	padding-right: 25px;
	padding-bottom: 3px;
	padding-left: 25px;	
	
}
/* Highlighted submenu item */
ul.MenuBarHorizontal li ul li a.MenuBarItemHover, ul.MenuBarHorizontal li ul li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li ul li a.MenuBarSubmenuVisible{
	padding-top: 3px;
	padding-right: 25px;
	padding-bottom: 5px;
	padding-left: 25px;
	color:#FF709C;
	background-color:#FFD0DF;
	

	
}

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

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

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

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe{
	position: absolute;
	z-index: 1010;
}
