@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
 
 /*applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td
{
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	outline: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
}*/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	cursor: default;
	width: 370px;
	height: 35px;
	position: absolute;
	right: 32px;
	top: 33px;
	/*background: transparent url(../images/pnav_bg.gif) no-repeat 0 0;*/
	list-style-type:none;
	margin: 0;
	padding: 0;
}
/* 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
{
	cursor: pointer;
	float: left;
	margin: 0;
	padding: 0;
}


ul.MenuBarHorizontal li a#company
{
	display: block;
	width: 110px;
	height: 35px;
	background: transparent url(../images/c3_topnav_company_link.png) no-repeat 0 0;
}

ul.MenuBarHorizontal li a#expertise
{
	display: block;
	width: 117px;
	height: 35px;
	background: transparent url(../images/c3_topnav_expertise_link.png) no-repeat 0 0;
}

ul.MenuBarHorizontal li a#servingClients
{
	display: block;
	width: 143px;
	height: 35px;
	background:  url(../images/c3_topnav_servingclients_link.png) no-repeat 0 0;
}

ul.MenuBarHorizontal li a#company:hover, ul.MenuBarHorizontal li a#company.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a#company.MenuBarSubmenuVisible, ul.MenuBarHorizontal li a#company.highlight
{
	background: transparent url(../images/c3_topnav_company_link_selected.png) no-repeat 0 0;
}


ul.MenuBarHorizontal li a#expertise:hover, ul.MenuBarHorizontal li a#expertise.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a#expertise.MenuBarSubmenuVisible, ul.MenuBarHorizontal li a#expertise.highlight
{
	background: transparent url(../images/c3_topnav_expertise_link_selected.png) no-repeat 0 0;
}

ul.MenuBarHorizontal li a#servingClients:hover, ul.MenuBarHorizontal li a#servingClients.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a#servingClients.MenuBarSubmenuVisible, ul.MenuBarHorizontal li a#servingClients.highlight
{
	background: transparent url(../images/c3_topnav_servingclients_link_selected.png) no-repeat 0 0;
}

ul.MenuBarHorizontal li a#company span, ul.MenuBarHorizontal li a#expertise span, ul.MenuBarHorizontal li a#servingClients span
{
	display: none;
}
/* 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;
	cursor: default;
	position: absolute;
	left: -1000em;
	margin: 0;
	padding: 0;
	list-style: none;
	/*border-top: 1px solid #D1D2D1;*/
	width: 148px;
}

/* 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;
	margin-left: 16px;
}
ul.MenuBarHorizontal li ul li 
{ 
	font-size: 11px;
	line-height: 14px;
	float: none;
	height: auto;
	margin: 0;
	padding: 0;
	width: 148px;

}


ul.MenuBarHorizontal li ul li a
{
	display: block;
	height: auto;
	padding: 5px 0 5px 8px;
	font-family: Helvetica, Arial, sans-serif;
	color: #fff;
	text-decoration: none;
	border-left: 1px solid #925061;
	border-right: 1px solid #925061;
	border-bottom: 1px solid #925061;
	background-color:  #77243a;
	width: 140px;
}


ul.MenuBarHorizontal li ul li a:hover
{
	background-color:  #5e1828;
	color: #fff;
}






/*******************************************************************************

 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;
	filter:alpha(opacity:0.1);
}
/* 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;
		f\loat: left;
	}
}
