body {
    font-family: verdana, helvetica, sans-serif;
    font-size: 80%;
}

div#menu {
    position: absolute;
    top: 124px;
    left: 16px;
    height: 25px; /* = hoogte menu + hoogte submenu */
    width: 622px;
}

.nav {
    width: 100%;
    padding-left: 78px;
    background: #146182; 
    line-height:1.0; /* schijnt handig te zijn om afstand naar submenu te bepalen */
/*  margin-bottom:1.5em;*/
}

/*** HOOFDMENU ***/
.nav li {
    height: 25px; /* Hoogte hoofdmenu (check ook positie submenu!) */
    background:#146182;
    color: #FFF;
    font-weight: normal;
    font-size: 110%;
}
    
.nav a {
    height: 21px; /* Overschreven in IE_only.css */
    color: #FFF;
/*  padding: .75em 0 .75em 2em; */
/*    margin-left: 10px;
    margin-right: 10px;*/
    padding-top: 4px; /* Overschreven in IE_only.css */
    padding-left: 20px;
    padding-right: 20px;
    text-decoration:none;
}

.nav a:visited {
    color: #FFF;
}

/* Onmouseover */
.nav li:hover,
.nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
    background: #CCC;
}

.nav li.sfHover a,
.nav a:focus, .nav a:hover, .nav a:active {
    color: #000;    
}

/* Actieve item */
.nav li.current, li.sfHover {
    background: #FFF;
}
.nav li.current a, li.sfHover a {
    color: #146182;
}

/* Onmouseover v/h actieve item */
/* Deze is bij voorkeur gelijk aan Actieve item, omdat deze instellingen ook geld bij onmouseover van een subitem v/h actieve item (ze zitten tenslotte in dezelfde li!) */
.nav li.current:hover,
.nav li.current a:focus, .nav li.current a:hover, .nav li.current a:active {
    background: #FFF;
}

.nav li.current a:focus, .nav li.current a:hover, .nav li.current a:active, .nav li.current a:visited {
    color: #146182;
}   
/*** einde hoofdmenu ***/   

/*** SUBMENU ***/
/* Positie submenu */
.nav li:hover ul, /* pure CSS hover is removed below */
body .nav li.current ul, /* this must be more specific than the .superfish override below */
ul.nav li.sfHover ul {
    top: 25px;
    padding-top: 10px;
}

/* Algemeen */
.nav li li {
    font-size: 100%;
}
.nav li li a {
}

/* Standaard item (subitems van actieve hoofdmenu én overige menus) */
.nav li li, .nav li.current li {
    color: #146182;
    background: #FFF;
}
.nav li li a, .nav li.current li a {
    color: #146182;
    text-decoration: underline;
}

/* Actieve item */
.nav li.current li.current {
    background: #FFF;
}

.nav li.current li.current a {
    color: #A00;
    text-decoration: none;
}

/* Onmouseover */
.nav li li:hover,
.nav li li a:focus, .nav li li a:hover, .nav li li a:active {
    background:#FFF;
}
/*** einde submenu ***/
