@charset "utf-8";

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.kruismenulist, .kruismenulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
 z-index: 10;
 background: #c6afc3;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.kruismenulist ul {
 display: none;
 position: absolute;
 top: 18px;
 left: 0px; 
 width: 150px;
}

/* Second and third etc. level submenus - position across from parent instead */
.kruismenulist ul ul {
 top: 5px; margin-top: 0;
 left: 145px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.kruismenulist li {
 float: left;
 display: block;
 position: relative;
 border: 0px solid #fa9a10; 
 background: #c6afc3; /* e9e1ea  */
 font-size : small; 
 margin-bottom: 0px;
 text-align:left;
 padding-top: 0px;
 padding-bottom: 0px;
 margin-top: 0px;
 margin-bottom: 0px;
 margin-right: 0px;
 padding-right: 0px;
 width: 130px;
/* height: 18px; */
 vertical-align: bottom;
 margin-left: 0px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.kruismenulist ul li {
 float: none;
 margin: 0;
 width: 160px;
 margin-left: 0px;
/* margin-bottom: -1px; */ 
}
.kruismenulist ul>li:last-child {
 margin-left: 0px;
 margin-bottom: 1px; /* Mozilla fix */
}

.kruismenulist .leeg {
 display: block;
 padding-left: 5px;
 color: #808080;  /* 5d2c00 */
 text-decoration: none;
 padding-top: 0px;
 padding-bottom: 1px;
 vertical-align: bottom;
}

/* Links inside the menu */
.kruismenulist a {
 display: block;
 padding-left: 5px;
 color: #60375b;  /* 5d2c00 */
 text-decoration: none;
 padding-top: 0px;
 padding-bottom: 1px;
 border-bottom: 1px solid #60375b; /* 54769f */
/* height: 18px; */
 vertical-align: bottom;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.kruismenulist a:hover, .kruismenulist a.highlighted:hover, .kruismenulist a:focus {
 color: #FFF;
 background-color: #782780; /* 847486 */
 text-decoration: none;
}
.kruismenulist a.highlighted {
 color: #FFF;
 background-color: #9a7095; /* b9a9bb */
 text-decoration: none;
}

.alternatief, .alternatief a {
	font-size: 13px;
	color: #b69bb9;
	font-weight: normal;
	background-color: #782780;
	vertical-align: bottom;
	padding-top:0px;
	height:18px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b69bb9;
}

.kruismenulist li .alternatief {
	width: 158px;
	vertical-align: bottom;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b69bb9;
	float: left;
}

.alternatief a:hover, .alternatief a:focus {
 color: #000;
 background-color: #a575ad;  /* 0079bd */
 text-decoration: none;
}

.kruismenulist .alternatiefhead {
	display: block;
	padding-left: 5px;
	color: #FFF;
	background-color: #9a7095;
	text-decoration: none;
	padding-top: 0px;
	border-bottom: 1px solid #c99ece;
	padding-bottom: 1px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .kruismenulist a#xyz {
      background-image: url(out.gif);
    }
    .kruismenulist a#xyz:hover, .kruismenulist a.highlighted#xyz, .kruismenulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.kruismenulist a .subind, .kruismenulist .subind {
 float: right;
 padding-top: -3px;
 
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.kruismenulist a {
 float: left;
}
.kruismenulist ul a {
 float: none;
}
/* \*/
.kruismenulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .kruismenulist ul li {
 float: left;
 width: 100%;
}

* html .kruismenulist ul li {
 float: left;
 height: 1%;
}
* html .kruismenulist ul a {
 height: 1%;
}
/* End Hacks */

