/* ------------------------------------------------
Dropdown-Menü
------------------------------------------------ */

.menu { /* Hauptmenu: Positionierung, Maße */
	position:absolute;
	top:62px;
	left:227px;
	width:760px; 
	font-size:101%; 
	z-index:100;
	}
	
* html .menu { /* Box-Modell-Hack für IE5.5 und IE6 */
	width:751px; /* Breite des Menus in IE5.5 */
	w\idth:765px; /* Breite des Menus in IE6 */
	}

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

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

/* style the links for the top level */
.menu a, 
.menu a:visited {
	display:block;
	padding:0; /* Abstand IE7 und FF */ /* vorher 10 25*/
	font-size:14px;
	text-decoration:none; 
	color:#ffffff; 
	width:95px; /*statt 56*/
	background:transparent;
	/*background-color:#f00;border: 1px dotted #666; */
 }

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, 
* html .menu a:visited {
	 width:95px; padding:0; /* Breite und Höhe des Top-Levels in IE5.5 */
	w\idth:95px; /* Breite des Top-Levels in IE6 85px */
	}

/* aktives Top-Level-Menü */
.menu a.active, 
.menu a.active:visited {color: #d77e01; background: transparent;}

/* aktives Top-Level-Menü bei IE5.5 und IE6*/
* html .menu a.active, 
* html .menu a.active:visited  {color: #d77e01; background:transparent;}

/* Top-Level Hover - mit Hack für IE5.5 und IE6 */
.menu a:hover,
.menu a.active:hover,
* html .menu a.active:hover {color:#d77e01;background:#021802; text-decoration:none;} 

.menu :hover > a {color:#d77e01;background:#021802; text-decoration:none;} 

