﻿body {
	background-image: url('files/titelbild.jpg');
	background-attachment:fixed;
	background-position:center;
  	background-color: #CCCCCC;
  	font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
   	margin-right: 30px; /* Abstand rechts */
 	margin-left: 30px; /* Abstand links */
 	line-height: 1.5;
}

* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

/* hide the checkbox and the label */

input#responsive-nav,
label.responsive-nav-label {
  display: none;
}

p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
  	margin-right: 30px; /* Abstand rechts */
  	margin-left: 30px; /* Abstand links */
  	text-align: justify;
 	line-height: 1.5;
}

table {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
}

h1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
 	color: #437a0c;
}

h2 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
   	margin-right: 30px; /* Abstand rechts */
  	margin-left: 30px; /* Abstand links */
  	color: #437a0c;
}

h3 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
   	margin-right: 30px; /* Abstand rechts */
  	margin-left: 30px; /* Abstand links */
  	color: #437a0c;
}

h4 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
  	color: #437a0c;
}

div#wrap {
  	width: 860px;
  	margin: auto;
 	align: center;
}

nav {
  float: left;
  width: 100%;
  background: #437a0c;
  font-size: 13px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

nav ul {
  margin: 0;
  padding: 0;
  width: 860px;
  z-index: 100;
}
 
nav a {
  display: block;
  color: #fff;
  text-decoration: none;
}

nav ul li {
  position: relative;
  float: left;
  list-style: none;
  color: #fff;
} 

ul li a:hover {
    color: #fff;
    background: #999999;
	-webkit-animation: fadein 1s; /* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
	
	-moz-animation: fadein 1s; /* Firefox */
	-ms-animation: fadein 1s; /* Internet Explorer */
	-o-animation: fadein 1s; /* Opera */
	animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
    
nav ul li:hover {
  background: #3b3b3b;
}
 
nav ul li a {
    padding: 10px 23px 10px 12px;
}

nav ul > li.submenu > a:after {
  position:absolute;
  float: right;
  content: '';
  margin-left: 5px;
  margin-top: 7px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 5px solid transparent;
}

nav ul ul li.submenu > a:after {
  margin-left: 6px;
  margin-right: -10px;
  margin-top: 5px;
  border-left: 5px solid #fff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

nav ul li:hover {
  background: #999999;
  z-index:100;
	-webkit-animation: fadein 1s; /* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
	
	-moz-animation: fadein 1s; /* Firefox */
	-ms-animation: fadein 1s; /* Internet Explorer */
	-o-animation: fadein 1s; /* Opera */
	animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

nav ul ul {
  opacity: 0;
  position: absolute;  
  
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  background: #3b3b3b;
  z-index: -1;   
  display: block; 
  width: 150px;
}

nav ul ul li {
  float: none;
  /* border-bottom: 1px solid #999999; */
}

nav ul ul li a {
  padding: 10px 20px;
}

nav ul ul li:last-child {
  border-bottom: none; 
}

nav ul li:hover > ul {
  top: 100%;
  left: 0;  
  z-index:100;
  visibility: visible;
  opacity: 1;
}

nav ul ul li:hover > ul {
  top: 0;
  left: 150px;
  width: 180px;
}

div#content {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: white;
  margin-top: 13px;
  margin-right: auto; /* Abstand rechts */
  margin-left: auto; /* Abstand links */
  
	/* Required for IE 5, 6, 7 */
	/* ...or something to trigger hasLayout, like zoom: 1; */
	width: 100%; 
		
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=90);
	
	/* Older than Firefox 0.9 */
	-moz-opacity:0.9;
	
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.9;
    
	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.9;

	overflow:auto;
	height: auto;
	min-height: 300px;	
}

div#footer {
  text-decoration:none;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size:0.5em;
  color:white;
  background-repeat:no-repeat;
  height:40px;
  padding-left:28px;
  padding-top:10px;
  margin-bottom:0px;
  text-decoration:none;
}

div#impressum {
  text-decoration:none;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color:white;
  padding-top:0px;
  float: right;
  padding-right:48px;
}

div#impressum a {
  color:white;
  text-decoration:none;
}

.border { 
	border-width: 10px; 
	border-bottom: 0px;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
	border-color: #FFFFFF;
	border-style: solid; 
} 

.border2 { 
	border-width: 1px; 
	border-color: #999999;
	border-style: solid; 
} 

#googleMap /* Google Maps */
{
	width: 700px;
	height: 500px;
	style=margin-left:30px;
}

/* Marquee Text */

#display {
  background: #fff;
  height: 30px;
  width: 860px;
  overflow: hidden;
  position: relative;
}

#text {
  color: #437a0c;
  font-size: 13px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 5px;
}

/* Marquee Fisch */

#fisch {
  cursor: pointer;
  overflow: hidden;
  position: absolute;

}