/* CSS Document */
#navi {
	position: relative;
	z-index: 20;
	background-image: url(../global-gfx/verlauf-navi.jpg);
	height: 66px;
	width: 990px;	
}
/* hack to correct IE5.5 faulty box model */
* html #navi {
	/*width: 980px;
	w\idth: 980px*/
}
/* remove all the bullets, borders and padding from the default list styling */
#navi ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}
#navi ul ul {
	width: 179px
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#navi li {
	float: left;
	/*width: 149px;*/
	position: relative;
}
/* style the links for the top level */
#navi a, #navi a:visited {
	font-size: 16px;
	z-index: 10;
	font-family: "MS Trebuchet", Arial, Helvetica, sans-serif;
	background: transparent;
	width: 119px;
	display: block;
	height: 66px;
	padding: 0 10px;
	border-right: 1px solid #CCC;
	clear: both;
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #navi a, * html #navi a:visited {
	/*width: 149px;
	w\idth: 138px*/
	float: left;
	display: inline;
}

#navi ul a.on, #navi ul a:hover {
	background-image: url(../global-gfx/verlauf-navi-hover.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	background-color: #FFF;
	color: #0080c6;
}
	
/* another hack for IE5.5 */
* html #navi ul ul {
	top: 66px;
	t\op: 66px
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#navi ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 66px;
	left: 0;
	width: 179px;
	border-top: 1px solid #CCC;
}

/* style the second level links */
#navi ul ul a, #navi ul ul a:visited {
	background: #FFF;
	color: #000;
	min-height: 20px;
	height: auto!important;
	height: 20px;
	line-height: 20px;
	padding: 3px 10px;
	font-size: 12px;
	width: 158px;
	border-width: 0 1px 1px 1px;
	border-color: #D6D6D6;
	border-style: solid;
	opacity: 0.9;
	-moz-opacity: 0.9;
	filter:alpha(opacity=90);
	font-weight: normal;
}

#navi ul ul a.on, #navi ul ul a:hover {
	color: #FFF;
	background: #0080c6;
}
#navi ul ul :hover > a {
		color: #FFF;
		background: #0080c6;
	}
/* yet another hack for IE5.5 */
* html #navi ul ul a, * html #navi ul ul a:visited {
	width: 180px;
	w\idth: 158px
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#navi table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
}

/* make the second level visible when hover on first level list OR link */
#navi ul li:hover ul,
#navi ul a:hover ul{
	visibility: visible
}
/* keep the third level hidden when you hover on first level list OR link */
#navi ul :hover ul ul{
	visibility: hidden
}
/* make the third level visible when you hover over second level list OR link */
#navi ul :hover ul :hover ul{
	visibility: visible
}



