@charset "utf-8";
/* CSS Document */

.nav {
	top: 70px;
	position: absolute;
	z-index: 100;
}
.nav ul {
	position: absolute;
}
/* 1. Zeile in Reihe */
.nav ul li {
	float: left;
	display: inline;
}

/* Links des 1. Level als Blockelemente damit Groessse und Posfelder angewandt werden koenne */
.nav ul li a {
	display: block;
	position: relative;
}

/* Elemente des 2. Level in einer Reihe anzeigen */
.nav ul li ul {
	display: inline;
	clear: both;
	float: left;
	top:26px;
}

/* Elemente des 3. Levels in der Breite begrenzen */
.nav ul li ul li ul {
	clear: both;
	top:24px;
}

/* 3. Level als Blockelement (untereinander) */
.nav ul li ul li ul li {
	clear: both;
	display: block;
}

/* 2. Level verstecken */
.nav ul li ul {
	display: none;
}

/* 2. Level beo Hover ueber 1. Level anzeigen */
.nav ul li:hover ul {
	display: block;
}
/* 3. Level bei hover ueber 1. Level verstecken */
.nav ul li:hover ul li ul li {
	display: none;
}
/* 3. Level bei Hover ueber 2. und 1. Level anzeigen */
.nav ul li:hover ul li:hover ul li {
	display: block;
}

/* Gestaltung 1. Level */
.nav ul li a {
	height: 21px;
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	float: left; 
}
.nav ul li a:hover {
	color: #FFFF33;
	text-decoration: underline;
}
.nav ul li a:active {
	color:#00FF00;
	text-decoration: underline;
	background-color: #24659b;
	background-image: url(../images/hl_bg_select.gif);
	background-repeat: repeat-x;
	background-position: top;
}
.nav .outer .first_here, .nav .outer .parent_row_here {
	height: 26px;
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	background-color:#24659b;
	background-image: url(../images/hl_bg_select.gif);
	background-repeat: repeat-x;
	background-position: top;
}

/* Gestaltung 2. Level */
.nav ul li ul li a {
	height: 19px;
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}
.nav ul li ul li a:hover {
	color: #FFFF00;
	text-decoration: underline;
	background-color: #6aa5d7;
}

.nav ul li ul li a:active {
	background-image:none;
	color: #006600;
	background-color: #6aa5d7;
}

.nav .outer .inner .inner_here,  .nav .outer .parent_row_here .parent_row_here {
	height: 24px;
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	background-image:none;
	color: #006600;
	background-color: #6aa5d7;
}

/* Gestaltung 3. Level */
.nav ul li ul li ul li a {
	height: 15px;
	width: 240px;
	color: #1c4d77;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 3px;
	padding-bottom: 2px;
	background-color: #dff1fa;
	background-image: url(../images/menu_back.gif);
	background-repeat: repeat-y;
}
.nav .parent_row_here .parent_row_here .inner .inner_here {
	height: 20px;
}
.nav ul li ul li ul li a:hover, .nav .parent_row_here .parent_row_here .inner .inner_here a {
	color: #FFFFFF;
	background-color: #6aa5d7;
	text-decoration: none;
}
.nav ul li ul li ul li a:active, .nav .parent_row_here .parent_row_here .inner .inner_here a:hover, .nav .parent_row_here .parent_row_here .inner .inner_here a:active  {
	background-image:none;	
	color: #006600;
	text-decoration: underline;
	background-color:#6aa5d7;

}

/* Positionierung der verschiedenen Level */
.nav .outer {
	width:731px;
	left:185px;
}

.nav .outer .inner {
	left: -185px;
	width: 916px;
}

.nav .outer .inner .inner {
	width: 150px;
	left:auto;
}

.nav .outer li .inner {
	background-image: url(../images/nav_2_back.gif);
	z-index: 100;
}

.nav .outer .hier .inner, .nav .outer .first_here .inner,  .nav .outer .parent_row_here .inner {
	display: block;
	z-index: -1;
}

.nav .outer .hier .inner .inner, .nav .outer .first_here .inner .inner,  .nav .outer .parent_row_here .inner .inner {
	display: none;
}

.nav .outer .hier .inner:hover .inner, .nav .outer .first_here .inner:hover .inner,  .nav .outer .parent_row_here .inner:hover .inner {
	display: block;
}
/*
.nav ul li ul li {
	display: block;
}*/
