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

.menu { /* Hauptmenu: Positionierung, Maße */
	position:absolute;
	top:125px;
	left:137px;
	width:769px; 
	height:35px; 
	font-size:101%; 
	z-index:100;
	border:0px solid #000;
	}
	

* html .menu { /* Box-Modell-Hack für IE5.5 und IE6 */
	width:789px; /* Breite des Menus in IE5.5 */
	w\idth:788px; /* 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;}
.menu ul ul {width:56px;}

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

/* style the links for the top level */
.menu a, 
.menu a:visited {
	display:block;
	padding:16px;
	font-size:14px;
	text-decoration:none; 
	color:#000000; 
	width:auto; 
	height:16px;
	background:transparent;
	 
 }

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

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

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

/* 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:48px; /* Startposition des 1. Levels */
	left:0; 
	width:138px;
	} 

/* another hack for IE5.5 */
* html .menu ul ul {
	top:46px; /* Startposition des 1. Levels bei IE5.5 */
	t\op:46px;/* Startposition des 1. Levels bei IE6 */
	}

/* style the table so that it takes no part 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:#ffffff;
	color:#000000;
	font-size:10px;
	text-align:left;
	height:auto; 
	line-height:1em; 
	padding:2px 15px;
	width:118px;
}

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

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

.menu ul ul a:hover {color:#cc0000;background:#ffffff; border-top: 1px solid #cc0000; border-bottom: 1px solid #cc0000;}

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

.menu ul ul :hover > a {color:#cc0000;background:#ffffff;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul,
* html .menu a.active:hover  {visibility:visible; }

