<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */


* {
    margin: 0; 
    padding: 0;
}

#menubalk {
    width: 100%;
    background-color: black;
}

#menubalk:after {
    clear: both;
    content: "";
    display: table;
}

#menubalk ul { 
	list-style-type: none;
}

#hoofdmenu &gt; li {
    float: left;
    position: relative;
}

#hoofdmenu &gt; li &gt; a {
    background-color: black;
    color: white;
    font-family: "Arial", Helvetica, sans-serif;
	font-size: 1em;
    font-weight: bold;
    padding: 0px 40px 0px 60px;
    text-align: left;
    text-decoration: none;
    display: block;
}

#hoofdmenu &gt; li &gt; a:hover {
    background-color: grey;
}

.submenu &gt; ul {
    display: none;
}

#hoofdmenu &gt; li:hover ul {
    display: block;
    position: absolute;
    z-index: 2;
}

.submenu &gt; ul &gt; li &gt; a {
    background-color: grey;
    border-top: 1px solid white;
    color: white;
    font-family: "Arial", Helvetica, sans-serif;
	font-size: 1em;
    font-weight: bold;
    padding: 0px 50px 0px 50px;
    text-align: left;
    text-decoration: none;
	display: block;
    padding: 0px 30px 0px 40px;
    text-align: left;
    text-decoration: none;
    width: 7em;
    display: block;
}

.submenu &gt; ul &gt; li &gt; a:hover {
    background-color: steelblue;
}
</pre></body></html>