/* Tags */

body {
    font-family: 'Lato', Arial, sans-serif;
    text-align: center;
    color: black;
    background: lightgray;
}

a,
summary {
    text-decoration: underline;
    color: steelblue;
    text-decoration-style: dotted;
}

a:hover,
a:focus {
    text-decoration-style: solid;
}

h1 {
    font-size: 180%;
    margin: 0;
}

h2 {
    font-size: 120%;
}


/* Container */

.container {
    max-width: 1150px;
    margin: 20px auto;
    padding: 10px;
    text-align: left;
    background: white;
}


/* Header */

.header {
    clear: both;
    margin: 0 0 10px;
    padding: 15px 10px;
    background: linen;
}


/* Main menu */

.mainmenu {
    clear: both;
    margin: 0 0 10px;
}

.mainmenu ul {
    width: 100%;
    padding: 0;
    list-style: none;
    background: whitesmoke;
}

.mainmenu li {
    float: left;
    margin: 0 0 10px;
    list-style: none;
}

.mainmenu li a {
    font-weight: bold;
    display: block;
    float: left;
    width: 105px;
    margin: 0 5px;
    padding: 12px 0 8px;
    text-align: center;
    background: whitesmoke;
}

.mainmenu li a:hover {
    background: linen;
}


/* Single content */

.content {
    font-size: .9em;
    line-height: 1.4em;
    clear: both;
    margin: 0 0 10px;
    padding: 10px;
    background: whitesmoke;
}


/* Footer */

.footer {
    font-size: 80%;
    clear: both;
    margin: 0 0 10px;
    padding: 10px;
    text-align: center;
    color: gray;
    background: whitesmoke;
}


/* Misc classes */

.inline {
    display: inline;
}

.hidden {
    display: none;
}


/* Event stylings */

.title,
.incharge,
time {
    font-weight: bold;
    display: inline;
}

time:not(.intext):after {
    content: ':';
}

.must .title {
    color: maroon;
}

.math .title {
    color: olivedrab;
}

.fun .title {
    color: chocolate;
}

.incharge:before {
    content: '(';
}

.incharge:after {
    content: ')';
}

.tWrapper ul {
    margin: 0;
    padding-left: 16px;
}

.checkbox {
    display: inline-block;
    vertical-align: -2px;
}

.checkbox:not(:checked)+.must~.tWrapper .must,
.checkbox:not(:checked)+.math~.tWrapper .math,
.checkbox:not(:checked)+.fun~.tWrapper .fun {
    opacity: .3;
}

.checkbox:not(:checked)~.checkbox:not(:checked)~.checkbox:not(:checked)~.alert {
    display: block;
}

td {
    padding-right: 8px;
}


/* responsive table simulator */

.tHeader {
    font-weight: bold;
}

.tFull {
    width: 100%;
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.tLeft {
    font-weight: bold;
}

.tWrapper {
    display: block;
    border-top: 1px solid black;
    border-bottom: 2px solid black;
}

@media(min-width:800px) {
    .tRow,
    .tFull {
        clear: both;
    }
    .tRow {
        padding: 8px 0;
        border-top: 1px dotted lightgray;
    }
    .tLeft,
    .tSingle,
    .tDouble,
    .tTriple {
        float: left;
        overflow: hidden;
        padding: 2px 10px;
    }
    .tLeft {
        width: calc(10% - 20px);
    }
    .tSingle {
        width: calc(30% - 20px);
    }
    .tDouble {
        width: calc(60% - 20px);
    }
    .tTriple {
        width: calc(90% - 20px);
    }
    .tWrapper:after {
        font-size: 0;
        display: block;
        visibility: hidden;
        clear: both;
        height: 0;
        content: ' ';
    }
}

@media(max-width:799px) {
    .tLeft {
        padding: 25px 15px 0;
        text-align: center;
        border-top: 1px dotted lightgray;
    }
    .tLeft br {
        display: none;
    }
    .onlywide {
        display: none;
    }
    .tSingle,
    .tDouble,
    .tTriple {
        padding: 10px 0;
    }
}


/* css made responsive by ronno */