#header {
	background-color: teal;
	color: white;
	height: 200px;
	text-align: center;
	font-size: 1.3em;
	font-family: sans-serif;
	font-variant: small-caps;
	display: table;
	width: 100%;
}

#header div {
	display: table-cell;
	vertical-align: middle;
}

#header a {
	color: white;
	text-decoration: none;
}

#menu {
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -o-sticky;
	position: -ms-sticky;
	position: sticky;
	top: 0px;
}

#menu img {
	width: 32px;
}

/*
h2 {
	border-bottom: 2px solid grey;
}
*/

.foerderer-logos {
	text-align: center;
}

.foerderer-logos img {
	max-width: 30%;
}

.person-page img {
	margin-right: 10px;
	width: 130px;
}
.personeninfo {
	max-height: 190px;
	overflow: hidden;
	transition-property: max-height;
	transition-duration: 1s;
}

.personeninfo:hover {
	max-height: 1000px;

}

.personeninfo:after {
	background-color: rgba(0,0,0,0.5);
	width: 100px;
	height: 20px;
	position: absolute;
	bottom: 25px;
	display: block;
	content:'Mehr …';
	text-align:center;
	color: rgba(255,255,255,1);
	transition-property: background-color,color;
	transition-duration: 1s;
}

.personeninfo:hover:after {
	background-color: rgba(0,0,0,0);
	color: rgba(255,255,255,0);
}

.frontinfo {
	max-width: 368px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.frontinfo img {
	width: 100%;
}

.footer-logos {
	text-align: center;
}

.footer-logos img {
	height: 50px;
}

.sponsoren-logos img {
	max-width: 100%;
}

.newsbar {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
    
	margin: 20px 0;
	padding: 10px 0;
	white-space: nowrap;
	overflow: hidden;
}

.newsbar span {
	display: inline-block;
	padding-left: 100%;  /* show the marquee just outside the paragraph */
	animation: marquee 15s linear infinite;
}

.newsbar span:hover {
	animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
	0%   { transform: translate(0, 0); }
	100% { transform: translate(-100%, 0); }
}

.imagecontainer {
	text-align: center;
}

.imagecontainer img {
	max-width: 100%;
}

