@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #fff;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.9375em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem;
  background: #fff url("bg.jpg") no-repeat 0 0;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 1.25rem 0rem 2rem;
  font-size: 1.5em;
  line-height: 1.25em;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 1.125rem;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

ul {
  padding: 0rem 0rem 2rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1.3rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.25em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
}

/* Ende Header */

/* Article */
article {
  padding: 113px 52px 23px 52px;
}

aside {
  position: absolute;
  top: 45px;
  left: 49px;
}

section {
  font-size: 0.6875em;
  line-height: 1.2em;
  margin: 1.125rem 0 0;
  letter-spacing: -0.1px;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
    background-size: 100% 100%;
    font-size: 0.9375em;
    line-height: 1.3em;
  }

  aside {
    position: static;
    padding: 0.75rem;
  }

  article {
    padding: 0.75rem;
  }

  p {
    text-align: left;
  }

}

/* Ende Responsive hieu */