/**
 *
 * Main Menu Styles
 *
 */

/*body {
	margin: 0;
	padding: 0;
}*/

#displayMenu {
	/*margin-left: 168px;
	margin-top: 61px;*/
	position: absolute;
	left: 178px;
	top: 74px;
}

.mainmenu tr .space {
	font-size: 0pt;
	width: 18px;
}

.mainmenu tr .borderline {
 	width: 2px;	
 }
 
.mainmenu tr .bordertext {
	background-color: blue;
}

html>body .mainmenu tr .bordertext {
	border-bottom: 1px solid black;
}
/* letters van de menublokken */
.mainmenu tr .normal {
	cursor: pointer;
	font-size: 8pt;
	text-align: center;
	width: 56px;
	padding: 0px 4px 0px 4px;
}

.mainmenu .text .normal {
	color: black;
	background-color: #ff9933;
	border-top: 2px solid white;
	border-left: 2px solid white;
	border-right: 2px solid gray;
	border-bottom: 2px solid gray;
	height: 24px;
}

.mainmenu tr .active {
	cursor: pointer;
	font-size: 8pt;
	text-align: center;
	width: 56px;
	padding: 0px 4px 0px 4px;
}

.mainmenu .text .active {
	color: gray;
	background-color: #ffcc66;
	border-top: 2px solid gray;
	border-left: 2px solid gray;
	border-right: 2px solid white;
	border-bottom: 2px solid #ffcc66;
	height: 24px;
}


/**
 *
 * Drop Menu
 *
 */

.dropmenu {
	background-color: gray; /* needed for IE */
	font-family: verdana, arial, helvetica, tahoma, trebuchet, sans-serif;
	font-size: 8pt;
	position: absolute;
	visibility: hidden;
	width: 180px;
	z-index: 100;
}

.dropmenu ul {
	font-size: 8pt;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dropmenu ul li {
	padding: 1px;
}

.dropmenu ul li a {
	display: block;
	text-decoration: none;
	padding: 2px;
	width: 172px;
}

/* Drop Menu Normal */

.dropmenu .normal {
	background-color: #ffcc66; 
	border: 1px solid #999999;
	padding-top: 0px;
}

.dropmenu .normal a {
	background-color: transparent;
	color: black;
}

.dropmenu .normal a:hover {
	background-color: #ff9933; 
	color: white;
}

