/* Final CSS Horizontal Menu! */ 
#menuh_hoofdnavigatieh_collectief ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
    line-height: 18px; 
} 
#menuh_hoofdnavigatieh_collectief li { /* all list items */ 
    float: left; 
    position: relative; 
    width: 150px; 
} 
#menuh_hoofdnavigatieh_collectief li ul {/* second-level lists */ 
    position: absolute; 
    display: block; 
    top: 28px; 
    left: 0; 
} 
#menuh_hoofdnavigatieh_collectief li>ul {/* to override top and left in browsers other than IE */ 
    top: auto; 
    left: auto; 
} 
#menuh_hoofdnavigatieh_collectief li ul li ul {/* third-level lists */ 
    position: absolute; 
    display: block; 
    top: 0; 
    left: 9em; 
} 
/* Fix IE. Hide from IE Mac */ 
* html #menuh_hoofdnavigatieh_collectief ul li { float: left; height: 1%; } 
* html #menuh_hoofdnavigatieh_collectief ul li a { height: 1%; } 
/* End */ 
#menuh_hoofdnavigatieh_collectief li:hover ul { display: block; } 
#menuh_hoofdnavigatieh_collectief li:hover>ul { visibility:visible; } 
#menuh_hoofdnavigatieh_collectief ul ul { visibility:hidden; }         
/* Make-up syles */ 
#menuh_hoofdnavigatieh_collectief ul, li { 
    margin: 0 0 0 0; 
} 
/* Styles for Menu Items */ 
#menuh_hoofdnavigatieh_collectief ul a { 
    display: block; 
    text-decoration: none; 
    color: #FFFFFF; 
    background: #000000; /* IE6 Bug */ 
    padding: 5px; 
} 
/* Hover Styles */ 
#menuh_hoofdnavigatieh_collectief ul a:hover { 
    color: #FFFFFF; 
    background: #C9C9C9; /* IE6 Bug */ 
} 
/* Sub Menu Styles */ 
#menuh_hoofdnavigatieh_collectief li ul a { 
    display: block; 
    text-decoration: none; 
    color: #FFFFFF; 
    background: #000000; /* IE6 Bug */ 
    padding: 5px; 
} 
/* Sub Menu Hover Styles */ 
#menuh_hoofdnavigatieh_collectief li ul a:hover { 
    color: #000000; 
    background: #cccccc; 
    line-height: 12px; 
} 
