@charset "UTF-8";/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6 *//* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. *//******************************************************************************* 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.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	/*width: auto;*/
	width: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
/* 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
{
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	/*width: 8em;*/
	width: auto;
	float: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;}/* 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
{
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 25em;
	position: absolute;
	left: -1000em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
/*	border: 1px solid #993300;
*/}/* 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 {
	padding: 0;
	margin: 0;
	display: block;
	float: none;
	width: 25em;
	white-space: nowrap;
	/*	background-color: #333333;
	background-image: url(../../images/submenu.jpg);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #993300;
*/	height: 18px;
	text-align: left;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* 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;
}/******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************//* Submenu containers have borders on all sides */
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal li a
{
	display: block;
	cursor: pointer;
	color: #4E657E;
	text-decoration: none;
	padding-top: 13px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 13px;
	font-size: 0.9em;
	font-weight: bolder;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #b6c4d3;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #eceff3;/*	background-image: url(../../images/bg_menu.jpg);
	background-repeat: no-repeat;
*/
}
ul.MenuBarHorizontal li a.rechtereinde {
/*	background-image: url(../../images/rechtereinde.jpg);
	background-repeat: no-repeat;
*/	border-right-width: 0px;
	padding-right: 18px;
}
ul.MenuBarHorizontal li a:hover
{
	text-decoration: none;
	color: #FFFFFF;
	background-image: url(../../images/bg_menu_hover.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
/* dit is het submenu dat uitschuift*/
ul.MenuBarHorizontal li ul li a
{
	display: block;
	cursor: pointer;
	color: #40556A;
	text-decoration: none;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 0.5em;
	font-size: 0.9em;
	font-weight: normal;
	/*	font-weight: bold;
	background-image: url(../../images/submenu.jpg);
	background-repeat: repeat-x;
*/	width:15em;
	background-image: none;
	background-color: #D6E0EB;
	border: 1px dotted #7D8D9B;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal li ul li a:hover, ul.MenuBarHorizontal li ul li a:focus
{
	color: #FFFFFF;
	background-color: #465C73;
	padding-top: 2px;
	padding-bottom: 2px;
}
/* Hoofd-menu items met een submenu uitgeschoven krijgen een andere opmaak */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #F2F6F9;
	background-image: url(../../images/bg_submenu_hover.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
/*ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-image: url(../../images/bg_hoofdmenu.jpg);
	background-color: #666666;
	color: #FF9900;
}
*/
/******************************************************************************* 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;
	}
}
