@charset "utf-8";
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
.header ul.MenuBarHorizontal{
	float:left;
	display:inline;
	/*margin: 52px 0 0 74px;*/
	margin: 52px 0 0 50px;
	padding: 0;
	width: 656px;
	height:26px;
	font-size: 13px;
	font-weight:bold;
	text-transform: uppercase;
}
/* 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 */
.header ul.MenuBarActive{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
.header ul.MenuBarHorizontal li{
	list-style-type: none;
	float: left;
}
/* 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) */
.header ul.MenuBarHorizontal li ul{
	z-index: 1020;
	position: absolute;
	left: -1000em;
	margin: -1px 0 0;
	padding:1px 0 0;
	font-size: 12px;
	font-weight:normal;
	white-space: nowrap;
	text-transform: none;
	border:1px solid #666;
	border-top:none;
	background: #FFF url(../images/nav-border.gif) no-repeat;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
.header ul.MenuBarHorizontal li ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
.header ul.MenuBarHorizontal li ul li{
	float: none;
	_padding-bottom:1px;/*fixes extra bottom space in IE6*/
}
.header ul.MenuBarHorizontal li ul li.soldout a{/*Sold out communities appear grey*/
	color:#B1B1B1;
}
/*ul.MenuBarHorizontal li ul li.soldout em{
	font-style:normal;
	font-size:10px;
	margin-left:6px;
	padding:1px 4px;
	background-color:#CCC;
	color:#FFF;
}*/

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items are a light gray block with padding and no text decoration */
.header ul.MenuBarHorizontal li a{
	color: #000;
	text-decoration: none;
	display:block;
	padding:0 12px;
	line-height:28px;
}
/* submenu link */
.header ul.MenuBarHorizontal li ul li a{
	padding: 6px 27px 6px 12px;
	border:none;
	line-height:14px;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a background and white text */
.header ul.MenuBarHorizontal li a.MenuBarItemHover, .header ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, .header ul.MenuBarHorizontal a.MenuBarSubmenuVisible{
	background-color:#FFF;
	border:1px solid #666;
	padding:4px 11px;
	line-height:18px;
}
/* Highlighted submenu item */
.header ul.MenuBarHorizontal li ul li a.MenuBarItemHover, .header ul.MenuBarHorizontal li ul li a.MenuBarItemSubmenuHover, .header ul.MenuBarHorizontal li ul li a.MenuBarSubmenuVisible{
	background: #CCC;
	border:none;
	padding: 6px 27px 6px 12px;
	line-height:14px;
}

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

 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 */
.header ul.MenuBarHorizontal iframe{
	position: absolute;
	z-index: 1010;
}

