/* Alles zurücksetzen */
* {
	padding: 0;
	margin: 0;
}

/* Layout */

body {
	display: -webkit-flex;
	display: flex;
	
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	
	-webkit-justify-content: center;
	justify-content: center;
	
	font-family: "Times New Roman";
}

@media print {
	body {
		display: inline;
	}
}

header {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	
	margin-top: 90px;
	text-align: center;
}

@media print {
	header {
		display: none;
	}
}

#navigation {
}

#logo {
	background: white url(logo1.png) center no-repeat;
	height: 47px;
}

@media all and (min-width: 728px) {
	#logo {
		background: white url(logo2.png) center no-repeat;
		height: 67px;
	}
}

article {
	-webkit-flex-basis: 728px;
	flex-basis: 728px;
	margin-bottom: 64px;
	margin-left: 16px;
	margin-right: 16px;
}

@media all and (min-width: 728px) {
	article {
		-webkit-flex-basis: 728px;
		flex-basis: 728px;
		margin-bottom: 64px;
		margin-left: 0;
		margin-right: 0;
	}
}

@media print {
	article {
		font-size: small;
		
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		
		-webkit-column-gap: 24px;
		-moz-column-gap: 24px;
		column-gap: 24px;
	}
}

@page {
	margin: 2.5cm;
}

footer {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	margin-bottom: 90px;
	text-align: center;
}

@media print {
	footer {
		display: none;
	}
}

/* Allgemeine Einstellungen */

nav {
	display: inline;
}

nav a:link, a:visited, a:hover, a:focus, a:active {
	color: black;
	text-decoration: none;
	border-bottom: 0 none white;
}

nav a:hover {
	color: black;
	text-decoration: none;
	border-bottom: 1px solid black;
}

a:link, a:visited, a:hover, a:focus, a:active {
	color: black;
	text-decoration: none;
	border-bottom: 1px dotted black;
}

@media print {
	a:link, a:visited, a:hover, a:focus, a:active {
		border-bottom: 0 none white;
	}
}

a:hover {
	color: black;
	text-decoration: none;
	border-bottom: 1px solid black;
}

a[name] {
	font-weight: normal;
	text-decoration: none;
}

/* Besondere Einstellungen */

dd {
	margin-left: 2em;
}

dt {
	font-weight: bold;
}

form {
	display: inline;
}

h1 {
	font-size: 137.5%;
	margin: 1em 0 0.5em 0;
}

h2 {
	font-size: 125%;
	margin: 0.5em 0 0.5em 0;
}

h3 {
	font-size: 112.5%;
	margin: 0.5em 0 0.5em 0;
}

input[type="text"] {
	margin-top: 8px;
	margin-bottom: 8px;
	width: 240px;
}

li {
	margin-left: 4em;
}

p {
	line-height: 1.3em;
	margin-bottom: 1em;
}

sup {
	font-size: 66%;
	vertical-align: text-top;
}

table {
	border-spacing: 8px;
}

td, th {
	vertical-align: top;
}

th {
	font-weight: normal;
}
