﻿@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: Calibri, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 41.313rem;
  margin: 1rem auto;
  border: solid thin #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem 1rem 1rem;
}

p {
  padding-bottom: 0.8rem;
}

h1 {
  margin: -0.2rem 0rem 0.8rem;
  font-size: 1.2em;
  line-height: 1.2em;
  background-color: #0076B2;
  color: #fff;
  text-align: center;
  padding: 0.1rem 0.5rem 0.1rem;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 1rem 0rem;
  list-style: none;
}

li {
  padding-left: 1.6rem;
}

ul li:before {
  content: "-";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.6rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Standard */

/* Header */
header {
  padding: 0.1rem 0rem 0rem;
}
header img{
	padding: 0rem 0rem 0.6rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}
article p strong{
  font-size: 1.1em;
}
article aside{
	display: flex;
	justify-content: flex-start;
}
article aside section{
	width: 47%;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}
footer p{
  margin: -0.2rem 0rem 0rem;
  background-color: #0076B2;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.1rem 0.5rem 0.2rem;
}
footer a{
	color: #fff;
}
/* Ende Footer */

/* Responsive */
@media only screen and (max-width:41.25rem) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
  }
	
	article aside{
	flex-direction: column;
}
article aside section{
	width: 100%;
}
  article ul br, footer br{
	display: none;
  }
  li {
  padding-left: 1rem;
}

ul li:before {
  content: "-";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}
a {
  font-size: 1rem;
}
}

/* Ende Responsive */
