﻿@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.75em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 730px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem 0 33px;
  background: url('../images/bg.jpg') bottom left no-repeat, #FFF;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  padding-bottom: 0rem;
}

h1 {
  margin: 0rem 0rem 0.7rem;
  font-size: 3.5em;
  font-weight: normal;
  line-height: 1.1em;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 0;
}

h3 {
  font-size: 1em;
  line-height: 1.3;
  margin-bottom: 0;
}

ul {
  padding: 2px 0px 16px 0px;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 10px;
}

ul li:before {
  content: "";
  display: inline-block;
  background: url('../images/icon.jpg') no-repeat;
  width: 7px;
  height: 8px;
  position: relative;
  float: left;
  top: 4px;
  margin-left: -10px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem;
}

header>img {
  float: left;
  border-bottom: 1px solid #000;
}

header aside {
  float: left;
  text-align: justify;
  width: 345px;
  margin-top: -24px;
  font-size: 0.95em;
}

header aside p:first-of-type {
  background: #005D9B;
  padding: 0.8rem;
  color: #FFF;
  margin-bottom: 1rem;
  border: 1px solid #000;
  line-height: 1.2em;
}
header aside p:last-of-type{
  padding-bottom: 0.5rem;
}
@media screen and (-webkit-min-device-pixel-ratio:0) 
{
  header aside p:first-of-type{
    padding: 0.8rem 0.6rem 0.8rem 0.8rem;
  }
  ::i-block-chrome, header aside p:first-of-type {padding: 0.8rem;}
}
header aside p {
  padding: 0 0.8rem 0.8rem;
}

header a img {
  float: right;
  margin-right: 1rem;
  padding-top: 16px;
}

/* Ende Header */
main {
  padding: 0.2rem 0.8rem 0;
}

/* Article */
article {
  padding: 0rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem;
}

footer>img {
  position: absolute;
  right: 7px;
  top: 40%;
}

footer a img {
  position: absolute;
  right: 33px;
  bottom: 16%;
}

/* Ende Footer */
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Responsive */
@media only screen and (max-width:729px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }

  header aside {
    float: left;
    width: 100%;
    margin-top: 16px;
    text-align: left;
  }

  header a img {
    float: left;
    margin: 0.5rem 0rem 0;
    padding: 0 0.8rem;
  }

  main {
    padding: 0 0.8rem 1rem;
  }

  li br {
    display: none;
  }

  h1 {
    font-size: 2em;
  }
  footer a img, footer>img{
    position: static;
    padding-top: 10px;
  }

}

@media only screen and (max-width:600px) {
  body {
    font-size: 0.813em;
  }

}

/* Ende Responsive */
