@charset "UTF-8";

/* De buitenste container van het menu, vaste breedte zonder marge of padding */
ul.MenuBarVertical
{
	margin:				20px 0 0 0;
	padding:			0px;
	list-style-type:	none;
	cursor:				default;
	width:				180px;
	font-family:		Tahoma, Verdana, Arial;
	text-transform:		uppercase;
	text-decoration:	none;
}

/* Instellen van de z-index voor het actieve menu; IE rendering bug */
ul.MenuBarActive
{
	z-index:			9980;
	font-family:		Tahoma, Arial, Verdana;
}
/* Menu item containers, positie submenus ten opzichte van deze container met dezelfde breedte */
ul.MenuBarVertical li
{
	margin-bottom:		0px;
	padding-top:		0px;
	font-size:			12px;
	position:			relative;
	top:				0px;
	width:				180px;

}
/* Submenus met hogere z-index, intitieel buiten scherm geplaatst (-1000em) */
ul.MenuBarVertical ul
{
	margin:				0 0 0 179px;
	padding:			0px;
	top:				0px;
	list-style-type:	none;
	font-size:			12px;
	position:			absolute;
	z-index: 			9981;
	cursor: 			default;
	width:				180px;
	left:				-1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left:				0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width:				180px;
}

/*******************************************************************************

 ONTWERP
 
 *******************************************************************************/

/* Buitenste menu container zonder randen */
ul.MenuBarVertical
{
	border: 			0px solid #FFFFFF;
}

/* Submenu containers hebben links een rand */
ul.MenuBarVertical ul
{
	border-left:		1px solid #FFFFFF;
}
/* Menu items zijn Alara-Lukagro oranje met 4 px padding, zonder tekst decoratie */
ul.MenuBarVertical a
{
	display:			block;
	cursor:				pointer;
	background-color: 	#FFFFFF;
	padding:			4px;
	padding-left:		10px;
	line-height:		14px;
	color:				#FFFFFF;	/* kleur letters alle menu's */
	text-decoration:	none;
	background-color:	#EE6F14;	/* achtergrond passief AL-oranje */
	border-bottom: 		1px solid #FFFFFF;
	border-right:		1px solid #FFFFFF;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color:	#254E80;	/* menu items bij cursor over donkerblauw */
	color:				#FFFFFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color:	#254E80;	/* menu item met actief submenu donkerblauw */
	color:				#FFFFFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image:	url(../images/SpryMenuBarRight.gif);
	background-repeat:	no-repeat;
	background-position:95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image:	url(../images/SpryMenuBarRightHover.gif);
	background-repeat:	no-repeat;
	background-position:95% 50%;
}

/*******************************************************************************

 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.MenuBarVertical 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.MenuBarVertical li.MenuBarItemIE
	{
		display:	inline;
		f\loat: 	left;
		background:	#FFF;
	}
}
