@charset "UTF-8";

ul.MenuBarHorizontal {
	padding: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 0px;
	clear: both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

/* 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;
}
ul.MenuBarHorizontal  strong, .hide {
	display: none;
}

ul.MenuBarHorizontal li {
	display: inline;
	position: relative;
	float: left;
}
ul.MenuBarHorizontal a {
	background-repeat: no-repeat;
	background-position: 0px bottom;
	height: 34px;
	display: block;
}
ul.MenuBarHorizontal a.home {
	background-image: url(../images/nav-home.gif);
	width: 125px;
}
ul.MenuBarHorizontal a.products {
	background-image: url(../images/nav-products.gif);
	width: 141px;
}
ul.MenuBarHorizontal a.rental-program {
	background-image: url(../images/nav-rental-program.gif);
	width: 189px;
}
ul.MenuBarHorizontal a.services {
	background-image: url(../images/nav-services.gif);
	width: 200px;
}
ul.MenuBarHorizontal a.about {
	background-image: url(../images/nav-about.gif);
	width: 139px;
}
ul.MenuBarHorizontal a.contact {
	background-image: url(../images/nav-contact.gif);
	width: 166px;
}
ul.MenuBarHorizontal a.current {
	background-position: 0px top;
}
ul.MenuBarHorizontal  a:hover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover {
	background-position: 0px top;
}
/* 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: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
	width: 200px;
}
/* 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 */
ul.MenuBarHorizontal ul li
{
	width: 270px;
	display: block;
}
ul.MenuBarHorizontal ul li a {
	font-family: Arial, Helvetica, sans-serif;
	color: #ff9e00;
	width: 100%;
	text-decoration: none;
	height: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 35px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	background-color: #FFFFFF;
	font-weight: normal;
	font-size: .8em;
	text-transform: uppercase;
}

ul.MenuBarHorizontal /* Menu items that have mouse over or focus have a blue background and white text */
 ul li a:hover, ul.MenuBarHorizontal ul li a:focus
{
	background-color: #efefef;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #33C;
}

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

 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;
		f\loat: left;
		background: #FFF;
	}
}
ul.MenuBarHorizontal .current {
	background-position: 0px top;
}
