/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

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

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

#menu	{
	position:relative;
	margin:0;
	padding:0 0 0 10px;
	}

/* 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: pointer;
	width: 100%;
}
/* 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 */

/* 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:0px 0 0 0px;
	padding:0px 0 5px 0;
	z-index:1001;
	width:auto;
	position:absolute;
	top:28px;
	left:-1000em;
	border-top:solid 1px #dfdfd1;
}
ul.MenuBarHorizontal ul li, #fullnavigation li li {
	display:block;
	margin:3px 3px;
	list-style:none;
	z-index:1002;
	width:170px;
	font-size:13px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#fff;
	text-decoration:none;
	border:none;
}
ul.MenuBarHorizontal ul li a, #fullnavigation li ul a {
	display:block;
	padding:5px;
	color:#f2f1e9;
	text-decoration:none !important;
	cursor:pointer;
	border:none;
}
ul.MenuBarHorizontal ul li a:hover, #fullnavigation li ul a:hover {
	text-decoration:underline !important;
}
#fullnavigation a {
	text-decoration:none !important;
}

html ul.MenuBarHorizontal ul.programs_nav, #fullnavigation ul.programs_nav { /* custom sub nav adjustments, note additional of ul class in html */
margin-left:112px;
}
html ul.MenuBarHorizontal ul.media_nav, #fullnavigation ul.media_nav { /* custom sub nav adjustments, note additional of ul class in html */
margin-left:287px;
}
html ul.MenuBarHorizontal ul.testimonials_nav, #fullnavigation ul.testimonials_nav { /* custom sub nav adjustments, note additional of ul class in html */
margin-left:356px;
}




/* 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 ul.MenuBarSubmenuVisible {
	left: auto;
}
/* Menu item containers are same fixed width as parent */
html ul.MenuBarHorizontal ul li {
	display:block;
	clear:left;
	width:200px;
	padding:0;
	margin:0px 0 0 0;
	color:#fff;
	text-align:left;
	border:none;
	font-size:14px;
	font-weight:normal;
	background:none !important;
}
ul.MenuBarHorizontal ul li a {
	color:#fff;
	display:block;
	padding:3px 8px;
	margin:0 3px;
	border-bottom:solid 1px #ccc;
/*	border-bottom:solid 1px #f0e1c5;  */
}
ul.MenuBarHorizontal ul li a.bottom {
	border-bottom:none;
}
ul.MenuBarHorizontal ul li a:hover {
	color:#fff;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {
	left: 0;
	top: 0;
}

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

 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;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE {
		display: inline;
		float: left;
		background: #fff;
	}
}
