/* Text styles */

.bigtext {
    font-weight: bold;
    font-size: 2.1em;
}

.mediumtext {
    font-weight: bold;
    font-size: 1.5em;
}

.tinytext {
    font-size: 0.75em;
}

/* Table styling */

.td-center {
    vertical-align: center;
    text-align: center;
}

.td-top-center {
    vertical-align: top;
    text-align: center;
}

.td-top-left {
    vertical-align: top;
    text-align: left;
}

.td-padded {
    padding: 1em;
}

.td-padded-top {
    padding-top: 1em;
}

hr {
    width: 100%;
    margin: 2em;
    border: 2px solid #0d6097;
    text-align: center;
}

th.custom-table, td.custom-table {
    border: 1px solid #999;
}

/* Blockquotes */

blockquote.bq-special {
    /* font-size: 1.4em; */
    width: 85%;
    margin: 20px auto;
    font-style: italic;
    color: #555555;
    padding: 1.2em 75px 1.2em 50px; /* top right bottom left */
    border-left: 8px solid #78C0A8 ;
    line-height: 1.6;
    position: relative;
    background: #F6F6F6;
}

blockquote.bq-special::before {
    font-family: Arial;
    content: "\201C";
    color: #78C0A8;
    font-size: 4em;
    position: absolute;
    left: 10px;
    top: -10px;
}

blockquote.bq-special::after {
    font-family: Arial;
    content: "\201D";
    color: #78C0A8;
    font-size: 4em;
    position: absolute;
    right: 30px;
    bottom: -20px;
}

blockquote.bq-special span {
    display: block;
    color :#333333;
    font-style: normal;
    font-weight: bold;
    margin-top: 1em;
}





