/* REGULAR TEXT */
.page-content a {
    border-bottom: 1px dotted var(--color-link);
    font-weight: normal;
}
.page-content a:hover,
.page-content a:active {
    color: var(--color-link-highlight);
    border-bottom: 1px dotted var(--color-link-highlight);
}

/**
 * LISTS
 */
.page ul {
    list-style: none;
    padding-left: 0;
}
.page ul li {
    background: url('/static/img/screenshot_list_bullet.png')  no-repeat left center;
    padding: 5px 5px 5px 75px;
    list-style: none;
    margin: 0;
    vertical-align: middle;
}
.page ul li[style*='direction:rtl'] {
    background: url('/static/img/screenshot_list_bullet.png') no-repeat right center;
    padding: 5px 75px 5px 5px;
}


.page li.invisible,
.page option.invisible {
    display: none;
}


/**
 *  IMAGES
 */
.page img {
    max-width: 100%;
    height: auto;
}
