/* --MENUOPBOUW-- */

table#layout td {
	overflow: scroll;
	}

ul#alfabetisch {
	list-style: none;
	}

ul#thematisch, ul#thematisch ul {
	position: relative;
	top: 0px;
	left: 0px;
	width: 250px;
	border: 0px solid #b0b0b0;
	background: white;
	list-style: none;
	}

ul#thematisch ul {
	border: 1px solid #b0b0b0;
	}

ul#thematisch li {
	position: relative;
	padding: 1px;
	z-index: 9;
	}
	#thematisch li.folder ul {
		position: absolute;
		left: 100px;
		top: 5px;
		}

ul#thematisch a {
	display: block;
	text-decoration: none;
	color: gray;
	font-weight: normal;
	width: 100%; /* breedte voor IE */
	}
	#thematisch li>a { width:auto; } /* breedte voor andere browsers */


/* --HOVERS-- */

/* geef de menuitems een hover-kleurtje */
ul#thematisch a.knv:hover { background-color: #640096; }
ul#thematisch a.bus:hover { background-color: #0f8c32; }
ul#thematisch a.taxi:hover { background-color: #0578b4; }
ul#thematisch a.goederen:hover { background-color: #e10a00; }
ul#thematisch a.spoor:hover { background-color: #000080; }

ul#thematisch a:hover {
	color: white; /* de hover-tekst is altijd wit */
	}

ul#thematisch li.folder:hover {
	z-index: 10;
	}

ul#thematisch ul {
	display: none; /* verberg submenu */
	}

ul#thematisch li:hover ul {
	display: block; /* toon submenu */
	}

