@charset "UTF-8";

ul.menu { margin: 0; padding: 0; list-style-type:none; width:auto; z-index:1000;}

/* 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:1020; }

/* Menu item containers, position children relative to this container and are a fixed width */
ul.menu li { list-style-type: none; position: relative;	text-align: left; width:auto; float:left; }

/* 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 { list-style-type: none; z-index:1020; width:160px; position:absolute; left: -1000em; }

/* 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.MenuBarSubmenuVisible { left: auto; z-index:1020;}

/* Menu item containers are same fixed width as parent */
ul.menu ul li { width:160px; background:#bb2225; float:none; }

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.menu ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible { left:auto; top:0; }

/* Design dingen */

/* Submenu containers have borders on all sides */
ul.menu ul { margin:1px 0 0 0; }
/* Menu items are a light gray block with padding and no text decoration */
ul.menu a, a:link, a:visited { display:block; padding:7px 10px 6px 10px; color:#fff; font-weight:bold;}
ul.menu a.active { color:#000; }
ul.menu ul li a { font-weight:normal; width:160px; background:#bb2225;}
ul.menu a.secure { display:block; color:#fff; text-decoration:underline; font-weight:bold; background:#bb2225;}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.menu a:hover, ul.menu a:focus { color:#000; }
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.menu a.MenuBarItemHover, ul.menu a.MenuBarItemSubmenuHover, ul.menu a.MenuBarSubmenuVisible { color: #000; }

/* 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:1020; 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.menu li.MenuBarItemIE
	{
		display:inline;
		f\loat:left;
		background:transparent;
	}
}
