#article h5 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
}
#article h6 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 1em;
}

#article a{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: rgb(29, 78, 216);
}
#article a:hover{
    color: #e6a400;
}

#article u {
    text-decoration: none;
    border-bottom: 1px solid #2452ad;
}
#article b,
#article strong {
    font-weight: bold;
}
#article em {
    font-style: italic;
}

#article p {
    padding: 0 0 1.2em 0;
    line-height: 1.6;
}

/* Table */
#article table {
    border-collapse: collapse;
    margin: 0 auto 30px auto;
    width: 100%;
}

#article table th,
#article table td {
    font-size: 100%;
    font-weight: normal;
    vertical-align: middle;
    text-align: left;
    padding: 0.2em 0.3em;
    border: 1px solid #e6a400;
}

#article table th {
    font-weight: bold;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}

#article table tr:nth-child(even) {
    background-color: #ffffb4;
}

/* Listen */
#article ol,
#article ul {
    margin-left: 0.8em;
    padding-bottom: 1em;
}

#article ul > li,
#article ol > li {
    list-style: circle;
    margin-left: 1em;
    padding: 0.2em 0;
}

#article ol ol,
#article ul ul {
    padding-bottom: 0;
}

/* List-Classes */
.list_square {
    list-style: square;
}
.list_num {
    list-style: decimal;
}
.list_rom {
    list-style: upper-roman;
}
.list_none {
    list-style: none;
}

/* Marker-Classes */
.marker_red {
    color: #ff1210 !important;
}
.marker_green {
    color: #91b029 !important;
}
.marker_blue {
    color: #2452ad !important;
}
.marker_gray {
    color: #7a7a7a !important;
}
.marker_violet {
    color: #534581 !important;
}

.marker_bg_red {
    background-color: #ff1210 !important;
}
.marker_bg_green {
    background-color: #91b029 !important;
}
.marker_bg_blue {
    background-color: #2452ad !important;
}

.marker_bold {
    font-weight: bold;
}
.marker_ital {
    font-style: italic;
}
.marker_under {
    border-bottom: 1px solid #2452ad;
}
.marker_depr {
    text-decoration: line-through;
}

.marker_small {
    font-size: 0.8em;
}
.marker_large {
    font-size: 1.2em;
}

.text_center {
    display: flex;
    justify-content: center;
}

/* Blockquotes */
#article blockquote {
    background: #ffffea;
    padding: 0.5em 0.6em;
    border: 1px solid #e6a400;
    border-left: 10px solid #e6a400;
    margin-bottom: 1.2em;
    quotes: "\201C""\201D";
}

#article blockquote:before {
    content: open-quote;
    margin-right: 7px;
    font-size: 1.2em;
}

/* Bilder */
#article div.image {
    padding: 0 0 1em;
    overflow: hidden;
}

#article figure {
    width: 254px;
    background-color: #ffffea;
    border: 2px solid #e6a400;
    margin-bottom: 1em;
}

#article figure > figcaption {
    text-align: center;
    width: 250px;
    font-size: 0.8em;

    padding: 0.2em;
    border-top: 1px solid #e6a400;
}

#article figure > img {
    vertical-align: top;
    width: 250px;
    height: auto;
    padding: 0.2em;
    margin: 0;
}

/* Image-Classes (Direction) */
.direc_i_left {
    text-align: left;
}
.direc_i_center {
    text-align: center;
}
.direc_i_right {
    text-align: right;
}

.direc_b_left {
    margin-left: 0;
    margin-right: auto;
}
.direc_b_center {
    margin-left: auto;
    margin-right: auto;
}
.direc_b_right {
    margin-left: auto;
    margin-right: 0;
}

.direc_flow_left {
    float: left;
    margin-right: 1em;
}
.direc_flow_right {
    float: right;
    margin-left: 1em;
}
