
#menu ul {
/* 	position:relative; */
	padding:0px;
	margin:0px;
	cursor: pointer;             /* gives an pointer cursor */
	list-style-type: none;
	white-space: nowrap;
	height:28px;
}

#menu ul ul {
  padding: 0px;           /* stops the usual indent from ul */
  margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  border:0px;
  width:127px;
	z-Index:1000000;
}

#menu ul li {
  display: inline;             /* display horizontal */
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #777;                 /* sets the default font colour to white */
}
#menu ul li > ul {             /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 14px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
  border-top:1px solid #fff;
   width:127px;
}
#menu ul li > ul li > ul {             /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 127px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
   width:127px;
}
/* #menu ul li:hover, #menu ul li:hover a, #menu ul li.CSStoHighlight, #menu ul li.CSStoHighlight a { */
#menu ul li:hover a, #menu ul li.CSStoHighlight a {
	background-image:url(/domains/hoofddorp-pioniers.nl/images/left_red.png);
	background-position:right;
  background-color: #ccc;      /* gives the active menu items a yellow background */
  color: #fff;                 /* makes the active menu item text black  (dark blue: #2A3588) */
}
#menu ul li:hover ul li a, #menu ul li.CSStoHighlight ul li a {
  background-color: none;      /* gives the active menu items a yellow background */
  color: #727272;                 /* makes the active menu item text black  (dark blue: #2A3588) */
	background-image:url(/domains/hoofddorp-pioniers.nl/images/menu_out.png);
	background-repeat:repeat-y;
}
#menu ul li:hover ul li:hover a, #menu ul li.CSStoHighlight ul li.CSStoHighlight a {
  background-color: none;      /* gives the active menu items a yellow background */
  color: #e82b39;                 /* makes the active menu item text black  (dark blue: #2A3588) */
	background-image:url(/domains/hoofddorp-pioniers.nl/images/menu_over.png);
	background-repeat:repeat-y;
}
#menu ul ul.CSStoShow {        /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
#menu ul li:hover > ul {       /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}


#menu ul li li {
	display: block;				/* NEEDED! */
/* 	top:0px; */
	padding:0px;
}


/* and some link styles */
#menu ul li a {
	padding-top:3px;
	padding-bottom:3px;
	padding-left:5px;
	padding-right:5px;
	font-size:11px;
	font-weight:normal;
	color: #444;
	text-decoration:none;
	border-left:1px solid #ccc;
	border-right:1px solid #aaa;
}
#menu ul li li a {
	display: block;				/* NEEDED! */
	padding-top:3px;
	padding-bottom:3px;
	padding-left:5px;
	padding-right:5px;
	border:0px;
	border-right:1px solid #000;
	border-left:1px solid #000;
	border-bottom:1px solid #000;
	font-size:11px;
	font-weight:bold;
	color:#727272;
	background-color:none;
	background-image:url(/domains/studiovdb/tritel.nl/images/menu_out.png);
	background-repeat:repeat-y;
}
#menu ul li li a:hover,
#menu ul li ul li a.CSStoHighLink {
	background-color:none;
	background-image:url(/domains/studiovdb/tritel.nl/images/menu_over.png);
	background-repeat:repeat-y;
	color: #e82b39;
}
#menu ul li li:hover > a {		/* supports links in branch headings - must not be display: block; */
	background-color:none;
	background-image:url(/domains/studiovdb/tritel.nl/images/menu_over.png);
	background-repeat:repeat-y;
	color: #e82b39;
}

#menu .arrow > a {
	background-image:url(/domains/studiovdb/tritel.nl/images/menu_arrow.gif);
	background-repeat:no-repeat;
	background-position:right top;
}
#menu .noarrow > a {
	background:none;
}