 /*========================= TOP OF THE MENU CASCADE =========================*/

#menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:none;                                     /* play nicely with others */
	clear:right;
	margin:0;
	padding:0;
	border:0;
    left:20px;
	height:18px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	/*background:#f3f3f3;*/ /*Hauptmenü Hintergrund*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;         /* this (and also below) sets the menu's font size */
	/*border-bottom:1px solid black;*/        /* give us a black border underneath */
}

#menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

/*Menubuttons - alle?*/
#menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin: 1px 5px 2px 5px; /*Margin für Menüpunkte*/
	font-weight: bold;
}

/*Nur für IE lt 6*/
#menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

#topmenutext {
	height: 18px;
}

*html #topmenutext {
	height: auto;
}

#menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

#menu ul li a,
#menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
	color: #000000;
}

#menu ul li:hover a,
#menu ul li a:hover {                        /* selected top-level menu items */
	/*border-top:1px solid #000;*/    /* these 2 lines create the push-in illusion */
	z-index: 3000;
	height:16px;
	color: #339933;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

#menu ul li:hover ul,
#menu ul li a:hover ul {                           /* 2nd level drop-down box */
	z-index: 3000;
	margin: 0;
	display:block;
	float:none;
	position:absolute;
	margin:0;
	top:18px;              /* place us just up underneath the top-level images */
	left:0px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color:black;                        /* this sets the unselected-text color */
	background: #FFFFFF;         /* this sets our menu's effective "border" color */
}

#menu ul li:hover ul.leftbutton,
#menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	z-index: 3000;
	left:0px;
}



#menu ul li:hover ul li a,
#menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	z-index: 3000;
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#FFFFFF;               /* this sets the unselected drop-down text color */
	background: #C1E0C1 /*#d8d8d8*/;       /* this sets the drop-down menu background color */
	width:13.5em;
	font-weight: normal;
	font-size: 10px;
}

#menu ul li:hover ul li:hover a,
#menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	z-index: 3000;
	color:black;
	background:#F1F0F1;
	font-weight: normal;
	font-size: 10px;
}

/*Some IE overrides :-) */
#menu ul li:hover ul,
#menu ul li a:hover ul { 
	*z-index: 3000;
	*top: 16px;
	*background-image:url(../images/transparent.gif);
	*background-repeat:repeat;
	*left: -10px;
}

#menu ul li a:hover {
	*z-index: 3000;
	*cursor:pointer;
}
