/* common styling */
/* zoet zee vijver menu*/

.menu {
font-family: verdana, arial, sans-serif; 
width:930px;
height: 26px; 
margin:0; 
position:relative;
z-index:100;
top:5px;


}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;

}
/* float the list so that the items are in a line */
.menu ul li {
float:left; 
}
/* style the links to be 310px wide by 20px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-align:left; 
text-decoration:none; 
width:310px; 
height:20px; 
color:#000; 
border:1px solid #fff;
border-width:0px 0px 1px 0px;
background-color:#cccccc;
background-image: url(); 
line-height:18px;
font-size:11px;
}
/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover D8AB4B */
.menu ul li:hover a {
color:#000; 
background:#ddd;
}
/* make the sub menu ul visible and position it beneath the first list item */
.menu ul li:hover ul {
text-align:left;
display:block; 
position:absolute; 
top:20px; 
left:0; 
text-align:left;
z-index:100;
}
/* make the sub menu ul li the full width with padding and border background D8AB4B. Add an auto scroll bar */
.menu ul li:hover ul li {
background:#ddd; 
color:#000;
padding:0px;
width:930px;
height:400px;

border:1px solid #000;
border-width:0px 0px 1px 0px;
}
/*float the image left with padding and no border */
.menu ul li:hover ul li img {
float:none 
padding:0px 0px 0px 0px; 
border:0px solid #000;
}
/* style the paragraph font height */
.menu ul li:hover ul li p {
font-size:1.0em;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:inline;
background:none;
color:#c00;
text-decoration:underline;
border:0;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
text-decoration:none; 
color:#000;
}
