/* Top Row */

#Menu {
	margin: 0px;
	padding-top: 18px;
	padding-left: 65px;
	height: 87px;
	background: url(../images/menu/bg.jpg) top left no-repeat;
}

/* hack to correct IE5.5 faulty box model */
* html #Menu { 
	width: 1000px;
	w\idth: 935px;}

/* remove all the bullets, borders and padding from the default list styling */
#Menu ul { 
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float: left;
}

#Menu ul ul {
	width: 186px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#Menu li { 
	float: left;
	position: relative;
}

/* style the links for the top level */
#Menu li a.HomeLink{
	display: block;
	width: 140px;
	height: 41px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.AboutLink {
	display: block;
	width: 158px;
	height: 41px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.ScienceTechnologyLink {
	display: block;
	width: 128px;
	height: 41px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.ProductsLink {
	display: block;
	width: 162px;
	height: 41px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.WebshopLink {
	display: block;
	width: 140px;
	height: 41px;
	text-indent: -9999px;
}

#Menu li a.RelationsLink {
	display: block;
	width: 146px;
	height: 41px;
	text-indent: -9999px;
}

/* a hack so that IE5.5 faulty box model is corrected 
* html #Menu a, * html #Menu a:visited { 
	width: 149px;
	w\idth: 138px;
}*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
#Menu ul ul { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 41px;
	left: 0px;
	width: 196px;
}

#Menu ul ul.About { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 41px;
	left: -25px;
	width: 196px;
}

#Menu ul ul.ScienceTechnology { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 41px;
	left: -40px;
	width: 196px;
}

#Menu ul ul.Products { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 41px;
	left: -23px;
	width: 196px;
}

#Menu ul ul.Relations { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 41px;
	left: -31px;
	width: 196px;
}

/* another hack for IE5.5 */
* html #Menu ul ul { 
	top: 41px;
	t\op: 41px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#Menu table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
}

/* style the second level links */
#Menu ul ul a, #Menu ul ul a:visited {
	display: block;
	background: #0c47cb;
	color: #FFF;
	padding: 6px 10px;
	width: 186px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	opacity:0.94;
	filter:alpha(opacity=94);
	outline: none;
}


/* yet another hack for IE5.5 */
* html #Menu ul ul a, * html #Menu ul ul a:visited {
	width: 186px;
	w\idth: 186px;
}

/* style the top level hover */
#Menu a:hover{
	background: none;
}

#Menu ul ul a:hover{
	color:#FFF;
	background: #b80000;
	text-decoration: none;
	outline: none;
	}

#Menu :hover > a {
	color:#fff;
}

#Menu ul ul :hover > a {
	color:#FFF;
	background: #b80000;
}

/* make the second level visible when hover on first level list OR link */
#Menu ul li:hover ul,
#Menu ul a:hover ul{
	visibility: visible;
}

/* keep the third level hidden when you hover on first level list OR link */
#Menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
#Menu ul :hover ul :hover ul{ visibility:visible;}