@charset "utf-8";
/* CSS Document */
#navigation {
	position: relative;
	top: 177px;
	width: auto;
	height: 20px;
	margin-left: 2px;
	padding: 0 0 0 10px;
	font-size: 16px;
}

#navigation ul {
	list-style-type: none;
}
#navigation dfn{
	display: none;
}
#first {
	border-left: none !important;
}
#navigation ul li {
	float: left;
	margin: 0;
}
#navigation ul li a {
	display: block;
	color: #2d4c9c;
	font-weight: bold;
	text-decoration: none;
	padding: 0 5px;
}
#navigation ul li a:hover {
	color: #fff;
	text-decoration: none;
}
#navigation ul li.act {
	color: #fff;
}
/* Für Unterpunkte keine Float-Eigenschaft */
#navigation ul ul li {
	float:none;
	background-color: transparent;
	background:none;
	height: auto;
	padding: 0 0 0 0;
	border-left: none;
}
#navigation ul ul li .act {
	color: #0055a7;
	background-color: #efefef;
}
/* Links auf Unterpunkten sollen die Hintergrundfarbe ändern */
#navigation ul ul li.hover, #navigation ul ul li:hover {
	background: #efefef;
}
/* Zweite Ebene */
#navigation ul ul {
	display: none;
	position: absolute;
	width: 200px;
	margin:0;
	padding: 0;
	font-size: 0.95em;
	background-color: #0055a7;
}
#navigation ul ul li a {
	color: #fff;
	height: auto;
	padding: 1px 10px;
	font-weight: normal;
	text-indent: 0em;
}
#navigation ul ul li a:hover {
	color: #0055a7;
	text-decoration: none;
}
/* Zweite Ebene anzeigen */
#navigation ul li.hover ul, #navigation ul li:hover ul {
	display: block;
}