#topmenu {
	font-family:arial,sans-serif;
	margin-right:3px;
	height:36px;
	float:right;
	position:relative;
	top:-6px;
}
	#topmenu .topmenucontainer {
		float:left;
	}
		#topmenu .topmenucontainer .left {
			background-image:url(/domains/skoop.nl/images/top_menu/top_menu_01.png);
			background-repeat:no-repeat;
			height:36px;
			width:20px;
			float:left;
		}
		#topmenu .topmenucontainer .middle {
			background-image:url(/domains/skoop.nl/images/top_menu/top_menu_03.png);
			background-repeat:repeat-x;
			height:36px;
			float:left;
		}
		#topmenu .topmenucontainer .right {
			background-image:url(/domains/skoop.nl/images/top_menu/top_menu_05.png);
			background-repeat:no-repeat;
			height:36px;
			width:21px;
			float:left;
		}

	#topmenu .search {
		font-family:arial,sans-serif;
		float:left;
		margin-top:4px;
		white-space: nowrap;
	}
	#topmenu .search .input {
		font-family:arial,sans-serif;
		margin:5px;
		margin-left:10px;
		border:1px solid #A176A5;
		width:100px;
		font-size:12px;
/*     	height:21px; */
/* 		position: relative; */
		float:left;
	}
	#topmenu .search .submit {
		font-family:arial,sans-serif;
		font-size:12px;
/* 		top:-4px; */
/* 		position:relative; */
/* 		background-color:#D06D2A; */
		color:#fff;
	}

#topmenu ul {
	padding:0px;
	margin:0px;
	cursor: pointer;             /* gives an pointer cursor */
	list-style-type: none;
	white-space: nowrap;
	width:auto;
}

#topmenu ul ul {
  padding: 0px;           /* stops the usual indent from ul */
  margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
/*   width:180px; */
}

#topmenu 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: #fff;                 /* sets the default font colour to white */
	top:7px;
}
#topmenu 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: 20px;                    /* 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 */
	z-index:1;
	border-bottom:1px solid #fff;
}
#topmenu 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: 150px;                  /* 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 */
	z-index:1;
	border-bottom:1px solid #fff;
}
/* #topmenu ul li:hover, #topmenu ul li:hover a, #topmenu ul li.CSStoHighlight, #topmenu ul li.CSStoHighlight a { */
#topmenu ul li:hover a, #topmenu ul li.CSStoHighlight a {
  background-color: none;      /* gives the active menu items a yellow background */
  color: #EFE899;                 /* makes the active menu item text black */
}
#topmenu 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 */
}
#topmenu 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 */
}


#topmenu ul li li {
	display: block;				/* NEEDED! */
	width:180px;
	top:0px;
	padding:0px;
	background-color: #ccc;
}


/* and some link styles */
#topmenu ul li a {
	padding-top:5px;
	padding-bottom:5px;
	padding-left:5px;
	padding-right:5px;
	font-size:12px;
	font-weight:bold;
	color: #fff;
	text-decoration:none;
}
#topmenu ul li li a {
	display: block;				/* NEEDED! */
	width:170px;
	padding-top:4px;
	padding-bottom:4px;
	padding-left:5px;
	padding-right:5px;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	font-size:11px;
	color: #fff;
    font-weight:normal;
}
#topmenu ul li li a:hover,
#topmenu ul li li a.CSStoHighLink {
	background-color:#D06D2A;
	color: #fff;
}
.menu ul li li:hover > a {		/* supports links in branch headings - must not be display: block; */
	background-color:#D06D2A;
	color: #fff;
}
