@charset "UTF-8";


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

 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#menu
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	zoom:1;
	z-index:1;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul#menu li
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	width:150px;
	*width:141px;
	background-image:none;


}

ul#menu span{
	display:block;
}
/* 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#menu ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-top:solid 1px #849b9d;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 220px;
	position: absolute;
	visibility:hidden;
	top:54px;
	left:0;
}
/* 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#menu ul ul{
	top:-15px;
}
ul#menu li:hover ul,
ul#menu li.hover ul
{
	visibility:visible;

}

ul#menu li:hover ul ul,
ul#menu li.hover ul ul
{
	visibility:hidden;
}

ul#menu ul li:hover ul,
ul#menu ul li.hover ul
{

	visibility:visible;	
}

/* Menu item containers are same fixed width as parent */
ul#menu ul li
{
	width: 220px;
	border:solid 1px #849b9d;
	border-top:none;
	padding-left:0;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul#menu ul ul
{
	position: absolute;
	margin: 15% 0 0 100%;
	left:0;
}


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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers */
ul#menu{
	background-image:url(../images/nav/menu_bg.jpg);
	background-repeat:repeat-x;
	height:54px;

}
ul#menu ul
{
	color:#555555;
	z-index: 1010;
}

ul#menu li{
	background-image:url(../images/nav/separator.jpg);
	background-repeat:no-repeat;
	background-position:right;	
	padding-right:1px; /* to show separator */
	height:54px;
}
ul#menu ul li{
	padding-right:0; 
}
ul#menu li.nosep{
	background-image:none;
}
ul#menu li a,
ul#menu li a:active,
ul#menu li a:visited{
	height:54px;

}
/*
ul#menu li:hover a,
ul#menu li.hover a,
ul#menu li:hover a:active,
ul#menu li.hover a:active,
ul#menu li:hover a:visited,
ul#menu li.hover a:visited{
	background-image:url(../images/nav/menu_link_hover.jpg);
	background-repeat:no-repeat;
	color:white;
}

*/
ul#menu li:hover a,
ul#menu li.hover a
{
	background-image:url(../images/nav/menu_link_hover.jpg);
	background-repeat:no-repeat;
	color:white;
}

ul#menu li:hover ul a,
ul#menu li.hover ul a,
ul#menu li:hover ul a:active,
ul#menu li.hover ul a:active,
ul#menu li:hover ul a:visited,
ul#menu li.hover ul a:visited{
	background-image:none;
}

/* Submenu containers */
ul#menu ul li a,
ul#menu ul li a:active,
ul#menu ul li a:visited{
	font-size:11px;
	height:45px;
}
ul#menu ul li a span,
ul#menu ul li a:active span,
ul#menu ul li a:visited span{
	padding-top:12px;
	
}

ul#menu ul{
	background-color:white;
}

ul#menu ul li{
	background-color:transparent;
	background-image:url(../images/nav/submenu_link_bg.jpg);
	background-repeat:repeat-x;
	height:45px;
}



ul#menu ul li:hover a,
ul#menu ul li.hover a{
	color:#5f5f5f;
}
ul#menu ul li:hover,
ul#menu ul li.hover{
	background-image:none;
	

}

/* Menu items are a light gray block with padding and no text decoration */
ul#menu a, 
ul#menu a:active, 
ul#menu a:visited
{
	color:#F3EBE9;
	cursor:pointer;
	display:block;
	font-size:12px;
	text-decoration:none;
	text-transform:uppercase;

}

ul#menu span{
	padding:18px 0 0;
}

ul#menu li:hover ul a,
ul#menu ul a,
ul#menu li:hover ul a:active,
ul#menu ul a:visited,
ul#menu li:hover ul a:visited,
ul#menu ul a:visited{
	color:#555555;

}


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

 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#menu 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#menu li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
