body {
  behavior:url(../csshover.htc);
 } 

 a.menu {
  text-decoration:none;
  color:#c0c0c0;
 }
  a.menu:hover {
  text-decoration:none;
   color:#e88fa2;
   
   }
   
a.tekst {
	text-decoration: none;
	color: #c0c0c0;
}
a.tekst:hover {
	text-decoration: none;
	color: #e88fa2;
}

 ul, li {
 	margin:0;
	padding:0;
	display:block;
} 
  
 ul {
   width: 947px; /* breedte van het menu mag je zelf kiezen, als je tekst er maar inpast */
   list-style: none;
   border: 1px solid #000000;
   background-color: #414141;
   float:left;
}   
 li {
   position: relative;
   left:38%; 
   padding: 4px 5px;
   float: left; 
 }
 
   
 ul ul{
   position: absolute;
   left: 0;
   top: 100%;
   width:100px; 
   border: 1px solid #c0c0c0;
}

li li{
	position:relative;
	left:0;
	float:left;
	
}

ul ul ul{
   
   position: absolute;
   width:140px;
   left: 100%;
   top: 5px;
   width:120x; 
   border: 1px solid #c0c0c0;
}

* html ul ul ul
{
   width:140px;
}


 /* Alle subnavigatie verbergen */
  
 ul ul {
  position:absolute;
  display:none;
  
 }
  
  /* :hover, met specificity */
  
  li:hover ul ul {
   display:none;
  }

  li:hover ul, li:hover li:hover ul {
   display:block;
  }
