/********************
MENU VERTIKAAL
*********************/
#menu_vert {
   margin-left: 1em;
}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #CCCCCC;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 5px 0.5em 5px 1.5em; /* some air for it */
   color: #000000; /* this will be link color for all levels */
   background: url(/img/menu/arrow-right.gif) no-repeat 0.5em center; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
 margin-left: -37px; 
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(/img/menu/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   color: #FE001C;
}
div#menu_vert a.activeparent:hover {
   color: #FE001C;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background: url(/img/menu/arrow-down.gif) no-repeat 0.4em center; 
   color: #FE001C;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #FE001C;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(/img/menu/arrow-right-active.gif) no-repeat 0.4em center;
   background-color: transparent;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #FE001C;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #FE001C;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(/img/menu/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}


/*************************
MENU HORIZONTAAL
**************************/

#vdividermenu ul{
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#000000;
	font-variant: normal;
	width: 100%;
	line-height: 18px;
	border: 1px solid #d3d6c5;
	background-color: #FFFFFF;
}

#menu ul li a:link{
}
#menu ul li a:active{
color: #40a6cc;
background-color: #092869;
}


* html #vdividermenu ul{ /*IE only rule, reduce menu width*/
width: 99%;
}

#vdividermenu ul li{
display: inline;
}

#vdividermenu ul li a{
float: left;
color: black;
padding: 2px 12px;
text-decoration: none;
border-right: 1px solid #d3d6c5;
}

#vdividermenu ul li a:visited{
color: black;
}

#vdividermenu ul li a:hover{
	padding-top: 2px;
	color: #FFFFFF;
	background-color: #ff001b;
}


/*************************
MENU HORIZONTAAL MET TABS
**************************/

.halfmoon{
	margin-bottom: 1em;
	padding: 3px 5px 0px 5px; 
}

.halfmoon ul{
	padding: 3px 9px 2px 5px;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
	border-bottom: 1px solid #929492;
}

.halfmoon li{
	display: inline;
	margin: 0;
}

.halfmoon li a{
	text-decoration: none;
	padding: 3px 9px 2px 5px;
	margin: 0;
	margin-right: 1px; /*distance between each tab*/
	border-left: 1px solid #9999;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #f4f4f4 url(/img/menu/tabright.gif) top right no-repeat;
		cursor:pointer; cursor:hand;
}

.halfmoon li a:visited{
	color: black;
}

.halfmoon li a:hover{
	background-color: #CECFCF;
  color: #000000;
}

.halfmoon .selected{ 
	text-decoration: none;
	padding: 4px 9px 2px 5px;
	margin-right: 5px; /*distance between each tab*/
	border-left: 1px solid #9999;
  	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background: #CECFCF url(/img/menu/tabright.gif) top right no-repeat;
}

.halfmoon .selected a{ 
background:none;
}

.button_normaal
{
	background-color:white;
	color:black !important;
	cursor:pointer; cursor:hand;
}

.button_uit
{
	background-color:white;
	color:#999999 !important;
	cursor:pointer; cursor:hand;
}


.button_selected
{
	background-color:#2c9317;
	color:white !important;
	cursor:pointer; cursor:hand;
}

.button_mogelijkheid
{
	background-color:#d8fcd1;
	color:black !important;
	cursor:pointer; cursor:hand;
}

