/* styling for mod 8 class 1 */

*{
    margin: 0; padding: 0; border: 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;
    font-weight: normal;
}

h1 span {
    color: #e6af2e;
}

p {
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
}

dl {
    border: 2px solid #191716;
    padding: 12px;
}

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;
}

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,
tr:first-child td {
    width: 13%;
}

tr:first-child
th:first-child,
tr:first-child
td:first-child {
    width: 9%;
}

.special {
    color: #e6af2e;
    font-weight: bold;
    background-color: #191716;
}

tr:nth-child(odd) {
    background-color: #5f56ad;
    color: #beb7a4;
}

tr:first-child {
    background-color: #191716; /* !important;  use if not in normal order */
    color: #beb7a4;
}

.inspirational_quote {
    color: #e6af2e;
    margin: 12px;
    /* border: 2px solid #191716; */
    padding: 8px;
    line-height: 1.6;
    display: none;  /* hides it from the page */
}

.inspirational_quote span {
    display: block;
    text-align: right;
    margin-top: 32px;
    color:darkgray;
    font-weight: bold;
}

@media print {

    body {
        margin: .25in;
    }

    header + p {
        display: none; /* hide the paragraph that occurs right after the header */
    }

    h1 {
        font-size: 16pt;
    }

    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: "  --";
    }



}