/* Menue mit Pull-Down links */
ol, ul {
	list-style: none; }

/* Main Styles */	
	
#wrapper{
	margin:auto auto;
	margin-top:0px;
}

#nav {
	position:relative;
	margin:auto auto;
}

/* position basic nav row */
ul#navigation {
	position:relative;
   float:left;
   margin:auto auto;
	border-left:0px solid #c4dbe7; /* hellblau */
	border-right:1px solid #c4dbe7; /* hellblau */
}
/* first level boxes */
ul#navigation li {
	display: grid;
	 /* Höhe der Items: */
   grid-template-rows:auto;
    /* Breite der Items: */
   grid-template-columns: 7em; 
	margin:0;
	padding:0;
	float:left;
	position:relative;
   font-size:0.8em;
	font-weight:bold;
   font-family:Verdana;
   text-align:center;
	border-top:1px solid #c4dbe7; /* hellblau */
	border-bottom:2px solid #c4dbe7; /* hellblau */
}
/* first level row text */
ul#navigation li a {
	padding:3px 3px;
	color:#285078;
	text-shadow:1px 1px 0px #fff;
	text-decoration:none;
	display:inline-block;
	border-right:1px solid #fff; /* weiss */
	border-left:1px solid #C2C2C2; /* grau */
	border-top:1px solid #fff;
	background: #f8edd4; /* beige */
	transition:color 0.2s linear, background 0.2s linear;	
}

ul#navigation li a:hover {
	background:#f8f8f8;
	color:green;
}
/* mouse over first level row text */
ul#navigation li:hover > a {
	background:#fff; /* weiss */
   color: #285078; /* blau */
	font-weight:bold;
}

/* Drop-Down Navigation */
ul#navigation li:hover > ul
{
	visibility:visible;
	opacity:1;
    color: green;
}
/* second level boxes */
ul#navigation ul, ul#navigation ul li ul {
	list-style: none;
	 font-size:0.8em;
    margin: 0;
    padding: 1px;    
	visibility:hidden;
    position: absolute;
    z-index: 99999;
	width:160px; /* Breite der Sub-Items */
	background:#e6e6e6; /* hellgrau */
	box-shadow:2px 2px 3px #ccc;
	opacity:0;
	transition:opacity 0.2s linear, visibility 0.2s linear; 	
}

ul#navigation ul {
    top: 28px;
    left: 1px;
}

ul#navigation ul li ul {
    top: 0px;
    /* left von 182 geändert */
    left: 0px;
}

ul#navigation ul li {
	clear:both;
	width:100%;
	border:2px;
	border-bottom:1px solid #c9c9c9;
}
/* first pulldown text */
ul#navigation ul li a {
	background:none;
	padding:5px 5px;
	font-size: 1.6em;
	color:#285078;
	text-shadow:1px 1px 0px #fff;
	text-decoration:none;
   text-align:left;
	display:inline-block;
	border:0 none;
	float:left;
	clear:both;
	width:160px; /* Sub Item: Breite des Schattens */
}

ul#navigation li a.first {
	border-left: 1px solid #c9c9c9;
}

ul#navigation li a.last {
	border-right: 0 none;
}