@charset "utf-8";
/* CSS Document */

* {
	margin: 0 auto;
	font-family:Arial, Helvetica, sans-serif;
	letter-spacing:0.1em;
	line-height:1.3em;
	font-size:13px;
}

html, body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
}


#top {
	height:120px;
	text-align:right;
	width:100%;
}

#header {
	width:100%;
	max-height:59px;
	background-color:#5db12f;
	margin-bottom:18px;
}

#header #inside {
	max-width:950px;
}

#content {
	max-width:950px;
}
#content #inside {
	padding:20px;
}


/* Hauptinhalt flexibel */
#main-content {
	flex: 1;
	width:100%;
}

/* Footer immer unten */
#footer {
	width: 100%;
}

#footer hr {
	margin: 0;
	border: 1px solid #000;
}

#footer #inside {
	max-width: 960px; /* gleiche Breite wie #inside oben */
	margin: 0 auto;
	padding: 20px;
}

h1 {
	font-size: 19px;
	font-weight: normal;
}

.clear {
	clear:both;
}

@media (max-width: 461px) {
	#header #inside img {
		width:100%;
	}
}