.menu {	
	position:absolute; 
	left:192px; 
	top:71px; 
	z-index:5;
	width:769px;
}

/*---------   Menü Leiste   ---------*/

.menu {
	font-size: 12px;
/*	background: #fff url(img/menuehg0.gif);	 */
	background: transparent;	 
	border: 1px solid #66676B;
	
}

.menu ul {
	width: 150px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-left: 1px solid #66676B;
}

.menu li {
	display: block;
	float: left;
	text-align: center;
	margin: 0;
	list-style-type: none;
	list-style-image: none;

}



.menu a {
	display: block;
	background-color: #e9efee;
	color: #d6006a;
	line-height: 1.5em;
	padding: 0.5em 0.5em;
	border-right: 1px solid #66676B;
	background-image:  url(img/menuehg1.gif);
	background-repeat: repeat-x;
	font-weight: bold;
	text-decoration: none;

}

.menu .menu-parent {
	color:#000;
	background-image:  url(img/menuehgparent.gif);
	background-repeat: repeat-x;
	background-position: right bottom;
}
.menu .menu-current {
	color:#000; 
	background-image:  
	url(img/menuehgcurrent.gif);}

#breadcrumbs {font-size: 11px;}
#breadcrumbs  .menu-current a{
	font-weight: bold;
	text-decoration: none;
}


/*siehe auch ie.css */
.menu a:hover, .menu li:hover>a {
	background-color: #D56374;
	color: #fff;
	background-image:  url(img/menuehg2.gif);
	background-repeat: repeat-x;
	display: block;
	z-index: 20;
}

.menu li li:hover>ul {	
	display: block;
	z-index: 20;
	
}

.menu li li {
	width: 250px;
	display: block;
	margin: 0;
	text-align: left;	
	border: 1px solid #ccc;
}


.menu li li a {  /* Die ausgekpappten Flächen */
	background: #e9efee;
	line-height: 0.9em;
	display: block;
	clear: both;
	border: none;
}



.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}


/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #d6006a;
}



.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: inline;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	/*left: 0;	 while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
	
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 8px;
	left: 66%;
}





/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 1px;
}
/* -- float.clear.END --  */

.menu ul {
	background-image: url(img/blind.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 0;
	margin: 0;	
}


.menu ul ul {
	padding: 0;
	margin: 0;
	background-color:#e9efee;	
}


