.menu {
	width:1000px; 
	height:62px; 
	font-size:11px; 
	position:relative; 
	z-index:100;
	/*border-right:1px solid #000;*/
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:1001px; 
	w\idth:1000px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:125px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	margin:0;
	float:left;
	width:125px;
	position:relative;
	border-bottom:1px solid #fff;
}
/* style the links for the top level */
.menu a, 
.menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none; 
	color:#fff; 
	width:124px; 
	height:30px; 
	text-align:center;
	border-left:1px solid #fff; 
	padding-top:25px;
	padding-bottom:5px;
	line-height:29px;
	font-weight:bold;
	text-transform:uppercase;
	
}
.menu a.erster, 
.menu a.erster:visited {
	border:none;
}
.menu a.letzter, 
.menu a.letzter:visited {
	border-right:1px solid #fff; 
}

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

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:61px;
	/*left:0; */
	width:125px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:59px;
	border-top:1px solid #fff;
	t\op:60px;
}


/* 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 {
	background:#7f7f7f;
	filter: alpha(opacity=90);
	-moz-opacity:0.9;
	opacity:0.9;
	color:#fff; 	
	height:auto; 
	line-height:13px; 
	padding:5px 10px; 
	width:105px;
	text-align:left;
	text-transform:uppercase;
	font-size:10px;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, 
* html .menu ul ul a:visited {
	width:126px;
	w\idth:104px;
}

/* style the top level hover */
.menu a:hover {
	color:#fff; 
	background:none;
}
.menu ul ul a:hover{
	color:#8f0e19; 
	background:#7f7f7f;
	font-weight:bold;
}
.menu :hover > a {
	color:#fff;
	background:none;
}
.menu ul ul :hover > a {
	color:#8f0e19;
	background:#7f7f7f;
	font-weight:bold;
}

/* 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;
}

html:first-child>b\ody .menu li a{/*opera*/
	background-image:url(../../images/pixel.gif);
}

.menu ul ul li  {
	width:125px;
	overflow:hidden;
}
.menu li.aktiv a {
	color:#b2b2b2;
}
.menu li.aktiv li a {
	color:#fff;
}
.menu li.aktiv li a:hover{
	color:#8f0e19; 
}
