    *, ::before, ::after
    {
        box-sizing: border-box;
        line-height: 1.5rem;
        margin: 0;
        padding: 0;
    }

    body { background: #DADFE1; font-family: sans-serif; }

/* Header */

    header
    {
        align-items: flex-start;
        background-color: #333;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1200px;
        width: 100%;
    }
    header img { margin: 1.5rem 1.5rem 1.5rem 1.5rem; width: 200px; }
    header h1 { color: white; font-size: 1.4em; margin: 1rem 0 0 1.5rem; }
    header h2 { color: #ccc; font-size: 1em; margin: 0 0 1rem 1.5rem; }

/* Text */

    section.text
    {
        background: white;
        margin: 1.5rem auto 0 auto;
        max-width: 1200px;
        padding: 1em;
        width: 100%;
    }
    section.text p { margin-top: 1em; }
    section.text ul { color: #666666; margin-left: 1em; margin-top: 1em; }
    section.text h1 { color: black; font-size: 1.2rem; margin-top: 0.5rem; }
    section.text h2 { color: #666; font-size: 1rem; margin-top: 0.5rem; }
    section.text h3 {  margin-top: 0.5rem; }

    a.butt
    {
        background: #CC0000;
        border: 0;
        color: white;
        display: inline-block;
        padding: 1rem;
        text-align: center;
        text-decoration: none;
    }
    a.butt:hover { cursor: pointer; }
    a.butt.grey { background: grey; }

/* Table */

    table { border-collapse: collapse; font-size: 0.9rem; width: 100%; }
    tr { border-top: 1px solid #ccc; border-right: 1px solid #ccc; }
    tr td:first-child { width: 60px; }
    /* tr td:nth-child(3) { width: 100px; } */
    tr.date { background: #666; color: white; }
    th, td
    {
        border-bottom: 1px solid #ccc;
        border-left: 1px solid #ccc;
        padding: 0.5rem;
        text-align: left;
        vertical-align: top;
    }

    td.live, td.ondemand
    {
        background: #cc0000;
        color: white;
        font-weight: bold;
        padding: 0;
        text-decoration: none;
    }
    td.live a, td.ondemand a
    {
        display: inline-block;
        color: white;
        padding: 0.5rem;
        text-decoration: none;
        width: 100%;
    }

    td.complete { color: #999; font-weight: bold; }

    th { background: #111; color: white; }

/* Live */

    section.live { display: flex; margin: 1.5rem auto 0 auto; max-width: 1200px; padding-bottom: 0; }
    section div.video { flex-grow: 1; width: 65%; }
    section div.sidebar { height: 0; flex: 1 1 25%; overflow: hidden; padding-bottom: 39.4%; }

/* FAQs */

    section.faqs { background: white; margin: 1.5rem auto 0 auto; max-width: 1200px; padding: 1em; text-align: center; }
    section.faqs h3 {  }
    section.faqs > div
    {
        display: flex;
        justify-content: space-between;
        margin: 1em 0 0 0;
        text-align: left;
    }
    section.faqs > div > div { flex: 0 1 49%; margin: 0; text-align: left; }
    section.faqs > div > div dl { margin-top: 1em; }
    section.faqs > div > div dl dt { border: 2px solid black;  font-weight: bold; }
    section.faqs > div > div dl dt a { color: black; display: inline-block; padding: 1em; text-decoration: none; width: 100%; }
    section.faqs > div > div dl dd { display: none; font-weight: 300; line-height: 157%; padding: 1em; }
    section.faqs > div > div dl dt.clicked { background: black; }
    section.faqs > div > div dl dt.clicked a { color: white; }

    @media screen and (max-width: 980px)
    {
        section.faqs > div { flex-wrap: wrap; }
        section.faqs > div > div { flex: 0 0 100%; }
    }






