/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menutops/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menutop {
	width:658px; 
	height:32px; 
	position:relative; 
	z-index:100;
	border-right:0px solid #000; 
	font-family: Arial, Helvetica, Geneva, sans-serif;
	float: left;
	top: 0px;
	left: 6px;
}

/* hack to correct IE5.5 faulty box model */
* html .menutop {
	width:658px; 
	w\idth:657px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menutop ul {
	padding:0;
	margin:0;
	list-style-type:none;
}


.menutop ul ul {
	width:109px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menutop positon */
.menutop li {
	float:left;
	width:109px;
	position:relative;
}


/* style the links for the top level */
.menutop a, .menutop a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	color:#FFF; 
	width:104px; 
	height:32px; 
	/*border:1px solid #FFF; 
	border-width:1px 0 1px 1px; 
	background:#FFF; */
	padding-left:5px; 
	line-height:30px; 
	font-weight:bold;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menutop a, * html .menutop a:visited {
	width:109px; 
	w\idth:104px;
}



/* style the second level background */
.menutop ul ul a.drop, .menutop ul ul a.drop:visited {
	background:#666;
}


/* style the second level hover */
.menutop ul ul a.drop:hover{
	background:#666;
}

.menutop ul ul :hover > a.drop {
	background:#666;
}

/* style the third level background */
.menutop ul ul ul a, .menutop ul ul ul a:visited {
	background:#3C4C56;
}

/* style the third level hover */
.menutop ul ul ul a:hover {
	background:#666;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menutop ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:32px;
	left:0; 
	width:149px;
	/*border-top:1px solid #000;*/
}


/* another hack for IE5.5 */
* html .menutop ul ul {
	top:32px;
	t\op:31px;
}



/* position the third level flyout menutop */
.menutop ul ul ul{
	left:158px; 
	top:0px; 
	width:159px;
}



/* position the third level flyout menutop for a left flyout */
.menutop ul ul ul.left {
	left:-149px;
}



/* style the table so that it takes no ppart in the layout - required for IE to work */
.menutop table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}



/* style the second level links */
.menutop ul ul a, .menutop ul ul a:visited {
	background:#3C4C56; 
	color:#FFF; 
	height:auto; 
	line-height:1em; 
	padding:5px; 
	width:148px;
	font-weight: normal;
	/*border-width:0 1px 1px 1px;*/
}


/* yet another hack for IE5.5 */
* html .menutop ul ul a, * html .menutop ul ul a:visited {
	width:160px;
	w\idth:148px;
}



/* style the top level hover */
.menutop a:hover{
	color:#FFF;
	text-decoration: none; 
	background:transparent; /* ALTIJD LATEN STAAN!!!!!!!!!!!!*/
}

/*.menutop ul a:hover{
	color:#555; 
	background:yellow;
}*/

.menutop ul ul a:hover{
	color:#FFF; 
	background:#666;
}

/*.menutop :hover > a, .menutop ul ul :hover > a {
	color:#666; 
	/*background:#FFF;
}
*/

/* make the second level visible when hover on first level list OR link */
.menutop ul li:hover ul,
.menutop ul a:hover ul{
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menutop ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menutop ul :hover ul :hover ul{
 visibility:visible;
}


