/* 
 		Horizontales Menü

 		ADxMenü (c) http://creativecommons.org/licenses/by/2.0/

*/


/*************************** Standard Style ******************************/

/* Alle Listenstyles entfernen */
.menu, .menu ul {
	margin: 0;
	left: 30px;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

/* Alle Listenelemente in einer Reihe durch float */
.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
}

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover {
	position: relative;
}


/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem)
   Höhe stellt die Höhe der ausgewählten Menüs dar
 */
 
.menu li li {
	width: 100%;
	height: 50%;
}


/* fix the position for 2nd level submenus.
	first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.menu li li div {
	top: 0;
	left: 0;
}


/* ...and then place the submenu where it should be when shown */
.menu li li:hover div {
	left: 100%;
}

/* initialy hide all sub menus */
.menu div {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
.menu li:hover>div {
	display: block;
}


/* -- 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;
}
/* IE7 float clear: */
.menu, .menu ul {
	min-height: 0;
}
/* -- float.clear.END --  */


/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu div" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
	
.menu div {
	padding: 10px 25px 25px 25px;
	margin: -10px 0 0 -25px;
	/*background: #f00;*/		/* uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
}



/*************** Eigentliches Layout des Menüs ********************/

/****** Navigation Hintergrund Bar *******/

.menu {		
	position:relative;
	z-index:2000;
	top: 0px;
	left:0px;
	font-family:"Lucida Grande", verdana, arial, helvetica, sans-serif;
	font-size: 12px;
	width:100%;
	background-color:#ffffff;
/*	background:url(images/nav-bg.gif) 0 0 repeat;		/*  Hintergrund der Menübar */
/*	font:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px; 
/*	border-top: 1px solid #ccc;								/*  Rahmen um Menübar       */
/*	border-bottom: 1px solid #ccc;								/*  Rahmen um Menübar       */
}


/**************** DropDown Menü Hintergrund*****************/

.menu ul {	
	width: 150px;
	border:1px solid #000;
	font-family:verdana;
	font-size:12px;
}

.menu li li:hover>div {			/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

.menu ul a:hover { 				/* drop down hover style (IE6 included) */
	color: #FF8000;
	font-weight:normal;
}

.menu li:hover>a { 				/* first level hover button style (IE6 excluded) */
	color: #FF8000;
	font-weight:normal;
	/*background: url(images/nav-bg_hover.gif) 100% 0 no-repeat;*/
	/*background: #eee;*/	 /* uncomment this if you want to use a color instead of background image */
}

.hover2 li:hover>a {	/* drop down hover style (IE6 excluded) */
	color: #FF8000;
	font-weight:normal;
}

/**********************  Oberstes Menü weitere Parameter *****************************/
.menu a {	
	color: #4C0972;				/*  Schriftfarbe oberstes Menü */
	padding: 6px;
	display: block;
	text-decoration: none;
/*	font-weight:bold;*/
}

/**********************  Erstes Untermenü *****************************/
.menu a:hover {		
	text-decoration: none;
	color:#FF8000;
	/*font-weight:bold;*/
}

/**********************  Erstes Untermenü Layout *****************************/
.menu ul a {	
	color: #4C0972;
	background: #e3e6e8;
	font-weight:normal;
}


.active a {	/* first level menu active state style (IE6 included) */
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

