/* 
	Menu
*/

#menu {
	font-family: arial; 
	width:750px;                    /*  (1)  */
	position:relative; 
	font-size: 125%;
	z-index:100;
	background: #336699;
	height: 30px;
	background-color: #ff9900;
	background-image:url(../files/menu_bg.gif);
	background-repeat: no-repeat;
	margin-bottom: 7px;
}
#menu ul {                        /* UL Ebene 1 */
	padding:0; 
	margin:0;
	list-style-type: none;
		
}
#menu ul li {                     /* Listenelemente der Ebene 1 */
	float:left;
	position:relative;
}

/* 
	Menu 1st 
*/
#menu ul.nav1st {
	font-size: 1.0em;
	font-weight: bold;
	font-family: arial;
	height:30px;
	display: block;
	z-index:100;
}
#menu ul.nav1st .drop,
#menu ul.nav1st .normal{
    min-height: 30px;
    height: 30px;		
	overflow: hidden;
}
* html #menu ul.nav1st .drop,      /* IE6 only */
* html #menu ul.nav1st .normal{
	height: 31px;
}
*+html #menu ul.nav1st .drop,      /* IE7 only */
*+html #menu ul.nav1st .normal{
	height: 31px;
}
#menu ul li a, 
#menu ul li a:visited {           /* Links der Listenelemente der Ebene 1 */
  display:block; 
  text-decoration:none; 
  padding-left: 10px;
  color:#fff; 
  outline-style:none; /* Punkte um Link bei Bild sind ausgeschaltet */
           /* Breite von (#menu)/(Anzahl der Punkte)-(1Px)  --> (1) */
  border-width:1px 1px 0 0; 
  line-height:30px; 
  height: 30px;              /*  --> (2)  */
}
*html #menu ul li a, #menu ul li a:visited {
  float: left;
}
#menu ul li ul {
  display: none;
}
#menu ul.nav1st a:hover {
	color:#fff; 
	background: none;
	z-index:100;
	text-decoration: underline;
}

#menu ul.nav1st li { 		/* Anpassen wenn weitere 1st Navipunkte dazu kommen */
	padding-left: 34px;
	padding-right: 34px;
}

table {
  margin:-1px; 
  border-collapse:collapse;
  font-size:0.8em;
}


/* 
	Menu 2nd 
*/
#menu ul.nav2nd {
	font-size: 125%;
	font-weight: normal;
	font-family: Arial;
	text-align: left;
	padding-left: 34px;
}
#menu ul.nav2nd li {
	border-top: 1px solid #fff;
	padding-left: 0px;  /* Anpassen wenn weitere 1st Navipunkte dazu kommen */
	padding-right: 0px;
    z-index:100;	
}
/* 
	Menu 2nd link hover
*/
#menu ul.nav2nd a:hover {
	color:#fff; 
	background: none;
	z-index:100;
}
/* li:hover  fuer non-IE-Browser  ---  a:hover  fuer IE */
#menu ul li:hover a,
#menu ul li a:hover {
	color:#fff; 
	background: none;
}
#menu ul li:hover ul,
#menu ul li a:hover ul {
  display:block; 
  position:absolute; 
  top:30px;                          /*  --> Entfernung vom Menu 1st (2)  */
  margin-top:0px;
  left:0; 
  width:132px;
}
/* IE-Browser  fix */
* html #menu ul li a:hover ul {
  margin-top:0;
  marg\in-top:0px;
}
#menu ul li:hover ul li ul,
#menu ul li a:hover ul li a ul {
  visibility:hidden; 
  position:absolute; 
  height:0; 
  width:0;
}

/* 
	Menu 2nd link
*/
#menu ul li:hover ul li a,
#menu ul li a:hover ul li a {
  display:block; 
  color:#FFF; 
  background:#ff9900;
  height:auto; 
  line-height:15px; 
  padding-top:5px; 
  padding-bottom: 5px;
  width:132px;
  font-weight: bold;
  
}
/* 
	IE FIX
*/
* html #menu ul li a:hover ul li a {
  width:132px;
  w\idth:132px;
}

#menu ul li:hover ul li a.drop,       /* Ebene 2 mit  Subpunkten */
#menu ul li a:hover ul li a.drop {
  background:#E6CB93 url(../../graphics/drop.gif) bottom right no-repeat;
}
/* 
	Menu 2nd link hover
*/
#menu ul li:hover ul li a:hover,      /* Ebene 2 hover */
#menu ul li a:hover ul li a:hover {
	background:#ff9900; 
	color:#FFF;
	text-decoration: underline;
}

#menu ul li:hover ul li:hover ul,     /* Ebene 3 */
#menu ul li a:hover ul li a:hover ul {
  visibility:visible; 
  position:absolute; 
  left:152px; 
  top:0;
  width:152px;
}

#menu ul li:hover ul li:hover ul.left,  /* Ebene 3  letztes Element */
#menu ul li a:hover ul li a:hover ul.left {
  left:-150px;
}

