/**
 * Markdown rendering area
 */
.md-render img {
    max-height: 350px;
}

.md-render img.left {
    float: left;
    margin-right: 15px;
}

.md-render img.right {
    float: right;
    margin-left: 15px;
}

.md-render img.center {
    display: block;
    margin: 0px auto;
}

.md-render hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    clear: both;
    margin-bottom: 20px;
    position: relative; top: 10px; /*kind-of-hack for margin-top: 10px; */
}

.md-render hr.noclear {
    clear: none;
}

.md-render hr.nopad {
    margin: 0px;
    top: 0px;
    position: static;
}

.md-render hr.hide {
    visibility: hidden;
}

.md-render::after {
   content: "";
   display: block;
   clear: both;
}
