/* Content styling and formatting */

/* Image alignment */
.tk img.align-left {
    float: left;
    margin: 10px 15px 10px 0;
}
.tk img.align-right {
    float: right;
    margin: 10px 0 10px 15px;
}
.tk img.align-center {
    margin: 20px auto;
    display: block;
}
.tk img.full {
    width: 100%;
    margin: 20px auto;
    display: block;
}
.tk img.top {
    /* This class is mostly used for main images of articles, since they immediately follow article header and should
       be vertically aligned with article body. */
    margin-top: 0;
}

/* Text styling */
.tk .content-uppercase {
    text-transform: uppercase;
}
.tk .content-lowercase {
    text-transform: lowercase;
}

