/* Final CSS Horizontal Menu! */ 
#menuh_nl ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
} 
#menuh_nl li { /* all list items */ 
    float: left; 
    position: relative; 
} 
#menuh_nl li ul {/* second-level lists */ 
    position: absolute; 
    display: block; 
    top: 38px; 
    left: 0; 
} 
#menuh_nl li>ul {/* to override top and left in browsers other than IE */ 
    top: auto; 
    left: auto; 
} 
#menuh_nl li ul li ul {/* third-level lists */ 
    position: absolute; 
    display: block; 
    top: 0; 
    left: 9em; 
} 
/* Fix IE. Hide from IE Mac */ 
* html #menuh_nl ul li { float: left; height: 1%; } 
* html #menuh_nl ul li a { height: 1%; } 
/* End */ 
#menuh_nl li:hover ul { display: block; } 
#menuh_nl li:hover>ul { visibility:visible; } 
#menuh_nl ul ul { visibility:hidden; }         
/* Make-up syles */ 
#menuh_nl ul, li { 
    margin: 0 0 0 0; 
} 
/* Styles for Menu Items */ 
#menuh_nl ul a { 
    display: block; 
    text-decoration: none; 
    color: #000000; 
    padding: 10px; 
    text-align: center; 
    border-right: 1px solid gray; 
    background-image: url(/images_up/website-bijhouden.nl/design/navbg.jpg); 
    background-repeat: repeat-x; 
} 
/* Hover Styles */ 
#menuh_nl ul a:hover { 
    color: #FFFFFF; 
} 
/* Sub Menu Styles */ 
#menuh_nl li ul a { 
    text-decoration: none; 
    color: #000000; 
    background: #fff; /* IE6 Bug */ 
    border-top: 1px solid #9A9A9A; 
    border-bottom: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
    border-right: 1px solid #ccc; 
    padding: 5px; 
    text-align: center; 
    font-size: 10px; 
} 
/* Sub Menu Hover Styles */ 
#menuh_nl li ul a:hover { 
    color: #F86805; 
    background: #f9f9f9; 
} 