/* Final CSS Horizontal Menu! */ 
#menuh_hoofdnavigatieh ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
} 

#menuh_hoofdnavigatieh li { /* all list items */ 
    float: left; 
    position: relative; 
    width: 107px; 
} 

#menuh_hoofdnavigatieh li ul {/* second-level lists */ 
    position: absolute; 
    display: block; 
    top: 43px; 
    width: 150px; 
    left: 0; 
} 

#menuh_hoofdnavigatieh li>ul {/* to override top and left in browsers other than IE */ 
    top: auto; 
    left: auto; 
} 

#menuh_hoofdnavigatieh li ul li ul {/* third-level lists */ 
    position: absolute; 
    display: block; 
    top: 0; 
    left: 9em; 
} 

/* Fix IE. Hide from IE Mac */ 
* html #menuh_hoofdnavigatieh ul li { float: left; height: 1%; } 
* html #menuh_hoofdnavigatieh ul li a { height: 1%; } 
/* End */ 

#menuh_hoofdnavigatieh li:hover ul { display: block; } 

#menuh_hoofdnavigatieh li:hover>ul { visibility:visible; } 

#menuh_hoofdnavigatieh ul ul { visibility:hidden; }         

/* Make-up syles */ 
#menuh_hoofdnavigatieh ul, li { 
    margin: 0 0 0 0; 
} 

/* Styles for Menu Items */ 
#menuh_hoofdnavigatieh ul a { 
    display: block; 
    text-decoration: none; 
    font-weight: bold;
    font-size: 12px; 
    color: #fff; 
    padding: 13px; 
} 
/* Hover Styles */ 
#menuh_hoofdnavigatieh ul a:hover { 
    color: #f1f1f1; 
    background-image: url(/images_up/camping-the-white-horse.nl/design/selected.jpg); 
    background-repeat: repeat-x; 
} 

/* Sub Menu Styles */ 
#menuh_hoofdnavigatieh li ul a { 
    text-decoration: none; 
    color: #ffffff; 
    background: #666666; /* IE6 Bug */ 
    padding: 5px; 
} 

/* Sub Menu Hover Styles */ 
#menuh_hoofdnavigatieh li ul a:hover { 
    color: #cccccc; 
    background: #666666; 
} 