@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 0.938em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 725px;
    border: solid 1px #000;
    background: #fff;
    padding: 4rem;
}
p {
    padding-bottom: 1rem;
}
.bottom {
    padding: 0;
}
h1 {
    margin: 0rem 0rem 1rem;
    text-align: center;
    font-size: 1em;
    line-height: 1.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
a ins {
    color: #0000FF;
}
.center {
    text-align: center;
    margin-bottom: 0.5rem;
}
a {
    color: #000;
    text-decoration: none;
}
.bold {
    font-weight: 700;
}
.block {
    display: block;
    padding-left: 6rem;
}
.pdl {
    padding-left: 2.75rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex span:last-of-type {
    width: 93%;
}
.tasks li:before {
    content: "\2012";
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 40px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -30px;
}
/* Main */
/* Ende Main */
/* Header */
header {
    padding: 0rem 0rem 1rem;
}
/* Ende Header */
/* Article */
article {
    padding: 0rem 0rem 0rem;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0rem 0rem 0rem;
}
/* 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;
}
/* Ende Standard */
/* Responsive */
@media only screen and (max-width:724px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .hide_m {
        display: none;
    }
    .flex span:last-of-type{
        width: 100%;
        padding-left: 5px;
            }
    .block{
        padding-left: 3rem;
    }
}
/* Ende Responsive */