* {
    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: yellow;
  }

  p {
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 1em;
  }

  dl {
    border: 2px solid black;
  }

  dt {
    color: #e0e2db;
    font-weight: bold;
    padding: 10px;
    
  }

  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 #e6e6e6;
    width: 80%;
    margin: 25px 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: #FFF;
    font-weight: bold;
    background-color: #191716;
}

tr:nth-child(odd) {
    background-color: #5F56AD;
}


tr:first-child {
    background-color: #191716 !important;
    color: #beb7a4;
}

.inspirational_quote {
    color: #e6af2e;
    margin: 12px;
    padding: 8px;
    line-height: 1.6;
    display: none;
}

.inspirational_quote span {
    display: block;
    text-align: right;
    margin-top: 32px;
    color: #EEE;
    font-weight: bold;
}

@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, tr {
        border-left: 0;
        border-right: 0;
        font-size: 10pt;
    }

    .inspirational_quote {
        display: block;
    } 

    .inspirational_quote span {
        display: inline;
    }

    .inspirational_quote span::before {
        content: "  --"; 
    }


}



