@charset "UTF-8";

ul.MenuBarHorizontal
{
	margin:0 auto;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	height:58px;
	width:1000px;
}
/* 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
{
	margin:0;
	padding:0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	font-size:12px;
	font-weight:bold;
}

ul.MenuBarHorizontal li a	{
	display:block;
	height:auto;
	padding:11px 24px 12px 24px;
	color:#e8f6cf;
	text-decoration:none;
	border-right:1px solid #456d1b;
}
ul.MenuBarHorizontal li a:hover, ul.MenuBarHorizontal li a.highlight	{
	background:url(../../media/images/common/nav_li_bg_over.jpg) no-repeat #3a5d17;
}
ul.MenuBarHorizontal li a.home, ul.MenuBarHorizontal li a.contact,ul.MenuBarHorizontal li a.lifestyle, ul.MenuBarHorizontal li a.location	{padding-top:18px; padding-bottom:19px;}
ul.MenuBarHorizontal li a.home	{border-left:1px solid #456d1b;}
/* 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
{
	top:58px;
	margin:0 0 0 0;
	padding:0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width:180px;
	position: absolute;
	left: -1000em;
	background-color:#3a5d17;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width:180px;
	height:auto;
	text-align:left;
	height:auto;
	padding:0;
	margin:0;
}
ul.MenuBarHorizontal ul li a	{
	display:block;
	padding:10px;
	margin:0 auto;
	width:160px;
	border-bottom:1px solid #2b4d11;
	border-right:none;
	font-size:11px;
}
ul.MenuBarHorizontal ul li a:hover	{
	background:none;
	background-color:#54771B;
}
/* 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;
}
/* 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: auto;
	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;
	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;
	}
}
