/* 
NAV1 = HET HOOFDMENU
NAV11  = 1e LEVEL VAN HET SUBMENU
NAV12 = 2e     "          "      "             " 
enz.......
LI = KNOPPEN 
UL = HET HELE BLOCK
*/


ul.NAV1,
ul.NAV1 ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

ul.NAV1 ul {
    position: absolute;
}


ul.NAV1 li {
    position: relative;
    float: left;
    width: auto;
	padding-right:10px;
	height: 18px;
    border-left: 2px dotted #0c0f46;
}

ul.NAV1 li > ul {
    display: none;
}
* html ul.NAV1 ul {
    display: none;
}


/**
 * This will open the submenu when hovered 
  */
ul.NAV1 ul.hover,
ul.NAV1 ul:hover {
    display: block;
	background-color:#dff466;
}

/**
* GELDT VOOR ZOWEL VOOR HOOFD ALS SUB
 * Styling of links used in the menu 
 * Change colors, padding and text-decoration as you like
 */
ul.NAV1 li a {
    display: block;
    text-decoration: none;
    float: left;
	color:#0c0f46;
    padding: 3px;

}

/*
ul.NAV11 li a {
    border-left: 1px solid #0c0f46;
}
*/
/**
 * This block describes styling of hovered menu items
 * Change colors or text-decoration as you like
 */
ul.NAV1 a.hover,
ul.NAV1 a:hover {
    color: #EE3C96;
}

/**
 * This block describes styling of active menu items
 */
ul.NAV1 a.active,
ul.NAV1 a:active {
    color: #EE3C96;
}

/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV1 li { float: left; }
* html ul.NAV1 li a { height: 1%; }
/* End */



/* SUBMENU */

ul.NAV11,
ul.NAV11 ul {
	top:18px;
left: 0px;
	width:200px;
	z-index: 20;
	border:#a2bf00 2px dotted;
}

ul.NAV11 li {
	height:auto;
    width: 200px;
padding: 0px;
	border:0px;
}

* html ul.NAV11 ul {
    display: none;
    z-index: 20;
}
ul.NAV11 a.hover,
ul.NAV11 a:hover {
    display: block;
    text-decoration: none;
	color:#0c0f46;
}
ul.NAV11 a.active,
ul.NAV11 a:active {
    display: block;
    text-decoration: none;
	color:#0c0f46;
}
ul.NAV11 li a {
    display: block;
    text-decoration: none;
	color:#0c0f46;
}
ul.NAV11 li.hover,
{
	background-color:#f1fdaa;
}
	
/* Fixes IE-windows problems with linebreaks, hide for IE-mac \*/
* html ul.NAV1 li { float: left; }
/* End */

