* {
    margin: 0; border: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #3d348b;
    color: #e0e2db;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 12px;
}

h1 {
    text-align: center;
    margin-bottom: 32px;
}

h1 span {
    color: #e6af2e;
}

p {
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
}

dl {
    border: 4px solid #191716;
    padding: 12px;
    border-radius: 4px;
}

dt {
    color: #e6af2e;
    font-weight: bold;
}

dd {
    margin-left: 2em;
    margin-top: 4px;
    margin-bottom: 12px;
    line-height: 1.4;
}

dd:hover {
    background-color: #E0E2db;
    color: #3d348b;
}

.inspirational-quote {
    color: #e6af2e;
    margin: 12px;
    padding: 8px;
    line-height: 1.6;
    display: none;
}

.inspirational-quote span {
    display: block;
    text-align: right;
    margin-top: 12px;
    color: #eee;
    font-weight: bold;
}

table {
    border: 2px solid #e6af2e;
    width: 80%;
    margin: 24px auto;
    border-collapse: collapse;
}

caption {
    margin: 4px 0;
}

th, td {
    border: 2px solid #e6af2e;
    padding: 8px;
}

tr:first-child th {
    width: 13%;
}

tr:first-child th:first-child,
tr:first-child td:first-child {
    width: 9%;
}

.special {
    color: #fff;
    font-weight: bold;
    background-color: #222;
}

tr:nth-child(odd) {
    background-color: #5f56ad;
}

tr:first-child {
    background-color: #191716;
    color: #beb7a4;
}


/* print styles=============================== */
@media print {

    body {
        margin: .25in;
    }

    header + p {
        display: none;
    }

    dl {
        display: none;
    }

    body, td, th, p {
        color: black;
        background-color: white;
    }

    table {
        width: 100%;
    }

    td, th {
        border-left: 0;
        border-right: 0;
        font-size: 10pt;
        padding: 4px;
    }

    .inspirational-quote {
        display: block;
    }

    .inspirational-quote span {
        display: inline;
    }

    .inspirational-quote span::before {
        content: " --";
    }

}
/* end of print styles =========================== */

