@import "partials/partials";

// region Global Styles
body {
    font-family: 'Caecilia LT Std', serif;
    font-size: 14px;
    color: #1a1a1a;
    margin: 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caecilia LT Std', serif;
    color: #1a1a1a;
    margin-top: 15px;
    margin-bottom: 25px;
}

h4, h5, h6 {
    font-size: 18px;
}

a {
    color: #c1041f;
    text-decoration: none;

    &:hover, &:focus {
        outline: none;
        color: #c1041f;
        text-decoration: underline;
    }
}

strong {
    font-weight: normal;
    text-shadow: 0 0 0 black;
}

dl {
    dt, dd {
        font-family: 'Caecilia LT Std', serif;
        font-size: 14px;
        font-weight: normal;
    }

    dt {
        font-size: 16px;
    }
}

blockquote {
    border: none;
    position: relative;
    padding-left: 50px;
    font-style: italic;

    &:before {
        display: block;
        content: '';
        background: url("../images/sprites/build/sprites.png?v=1.001") @sprite-icon-quote-red-md-offset-x @sprite-icon-quote-red-md-offset-y no-repeat;
        width: @sprite-icon-quote-red-md-width;
        height: @sprite-icon-quote-red-md-height;
        position: absolute;
        top: 5px;
        left: 0;
    }
}

ul {
    font-size: 16px;
    list-style: outside url("../images/sprites/src/icon_arrow_right_o.png");
    padding-left: 25px;
    margin-bottom: 15px;

    li {
        line-height: 26px;

        ul {
            margin: 0;
        }
    }
}

ol {
    font-size: 16px;
    list-style: outside url("../images/sprites/src/icon_arrow_right_o.png");
    padding-left: 25px;
    margin-bottom: 15px;

    li {
        line-height: 26px;

        ol {
            margin: 0;
        }
    }
}

img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: auto !important;
    margin-bottom: 15px;
}

table {
    width: 100% !important;
    border: none;
    font-size: 14px;
    margin-bottom: 15px;

    th {
        padding: 5px 10px;
        border: none;
        background-color: #cd5257;
        border-right: thin dashed white;

        &:last-of-type {
            border-right: thin solid #c1041f;
        }

        font-weight: normal;
        font-size: 16px;
        color: white;
    }

    tbody th {
        border-top: thin dashed white;
        border-right: 0 !important;

        & + td {
            border-left: 0;
        }
    }

    tbody tr:last-of-type th {
        border-bottom: thin solid #c1041f;

        & + td {
            border-left: 0;
        }
    }

    td {
        padding: 5px 10px;
        border-color: #c1041f;
    }
}

// endregion
