/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
  position:relative;
  z-index:500;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
  padding:0;
  margin:0;
  list-style-type:none;
}
.menu ul ul {
  width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
  float:left;
  position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
  display:block;

}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
}
/* style the second level hover */
.menu ul ul a.drop:hover{
  background:#000000;
}
.menu ul ul :hover > a.drop {
  background:#000000;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
  background:#DB0000;
}
/* style the third level hover */
.menu ul ul ul a:hover {
  background:#000000;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
  visibility:hidden;
  position:absolute;
  height:0;
  top:25px;
  left:0;
  border-top:1px solid #ffffff; 
}
/* another hack for IE5.5 */
* html .menu ul ul {
  top:25px;
  t\op:25px;
}

/* position the third level flyout menu */
.menu ul ul ul{
  left:150px; 
  top:0;
  width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
  left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
  font:  bold 10px Verdana, Arial, Helvetica, sans-serif;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px 10px 4px 5px;
  cursor: hand;
  width: 130px;
  display: block;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
  width:150px;
  w\idth:129px;
}
.menu ul ul.stijl a, .menu ul ul.stijl a:visited {
  background:#55004B;
  border-bottom: 1px solid #77336F;
  }
.menu ul ul.fitness a, .menu ul ul.fitness a:visited {
  background: #109CC9;
  border-bottom: 1px solid #70C4DF;
}
.menu ul ul.sex a, .menu ul ul.sex a:visited {
  background: #FF0000;
  border-bottom: 1px solid #FE7D7D;
}
.menu ul ul.gezondheid a, .menu ul ul.gezondheid a:visited {
  background: #1A5411;
  border-bottom: 1px solid #5B9152;
}
.menu ul ul.voeding a, .menu ul ul.voeding a:visited {
  background: #7DA027;
  border-bottom: 1px solid #B7D374;
}
.menu ul ul.psyche a, .menu ul ul.psyche a:visited {
  background: #F04F00;
  border-bottom: 1px solid #FFA579;
}
.menu ul ul.mode a, .menu ul ul.mode a:visited {
  background: #55004B;
  border-bottom: 1px solid #B44FA8;
}

.menu ul ul.relax a, .menu ul ul.relax a:visited {
  background: #EE7EB0;
  border-bottom: 1px solid #B44FA8;
}

.menu ul ul.mhshop a, .menu ul ul.mhshop a:visited {
	background: #FFCE00;
	border-bottom: 1px solid #B44FA8;
}

.menu ul ul.video a, .menu ul ul.video a:visited {
	background: #000000;
	border-bottom: 1px solid #B44FA8;
}


/* style the top level hover */
.menu a:hover {
  background: url(../images/navigation/bg_navhover.gif) repeat-x;
}
.menu :hover > a {
  background: url(../images/navigation/bg_navhover.gif) repeat-x;
}
.menu ul ul.stijl a:hover{
  background-color: #577336F;
}
.menu ul ul.stijl :hover > a{
  background-color: #577336F;
}
.menu ul ul.fitness a:hover{
  background-color: #57BAD9;
}
.menu ul ul.fitness :hover > a {
  background-color: #57BAD9;
}
.menu ul ul.sex a:hover{
  background-color: #FF4C4C;
}
.menu ul ul.sex :hover > a {
  background-color: #FF4C4C;
}
.menu ul ul.gezondheid a:hover{
  background-color: #5E8758;
}
.menu ul ul.gezondheid :hover > a {
  background-color: #5E8758;
}
.menu ul ul.voeding a:hover{
  background-color: #A4BC67;
}
.menu ul ul.voeding :hover > a {
  background-color: #A4BC67;
}
.menu ul ul.psyche a:hover{
  background-color: #F4834C;
}
.menu ul ul.psyche :hover > a {
  background-color: #F4834C;
}
.menu ul ul.mode a:hover{
  background-color: #884C81;
}
.menu ul ul.mode :hover > a {
  background-color: #884C81;
}
.menu ul ul.mhshop a:hover{
  background-color: #FFDB4C;
}
.menu ul ul.mhshop :hover > a {
  background-color: #FFDB4C;
}
.menu ul ul.relax a:hover{
  background-color: #EDC4D6;
}
.menu ul ul.relax :hover > a {
  background-color: #EDC4D6;
}

.menu ul ul.video a:hover{
  background-color: #666666;
}
.menu ul ul.video :hover > a {
  background-color: #666666;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
  visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
  visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
  visibility:visible;
}
