/* SECTION STYLES */
/* Custom section styles */
body {
    margin: 0;
    padding: 0;
}
.intext-link {
    font-weight: bold;
    text-decoration: underline;
    color: #323232;
}
.intext-link:hover {
    color: #209cee;
}

/* BASIC TEXT WRAPPER */
.wrapper {
    width: 100%;
    height: auto;
    text-align: center;
}
.wrapper-text{
    display: inline-block;
    text-align: left;
    padding-top: 40px;
    width: 80%;
    max-width: 850px;
}

/*TABLE LIST DATA*/
table {
    margin-bottom:50px;
}

.mon {
  text-align: center;
}
.tue {
  text-align: center;
}
.wed {
  text-align: center;
}
.thu {
  text-align: center;
}
.fri {
  text-align: center;
}
.time {
  text-align: center;
  padding:12px;
}

table tr .title {
    background:#209cee;
    color:#fff;
    font-weight:bold;
    padding:5px;
    width:100px;
}

table tr .text {
    padding-left:10px;
}

/* schedule table gray block */
table tr .stgb {
    background: #cccccc;
}
table tr .mtg {
    font-style: italic;
    font-size: smaller;
    background: #eeeeee;
}
table tr .classa {
    background: #bce4e5;
}
table tr .classb {
    background: #fedcc6;
}
table tr .classc {
    background: #ffff66;
}

/* Some better description list styles */
/* https://clicknathan.com/web-design/styling-html-5-description-lists-formerly-known-as-definition-lists-properly/ */
dl {
    display: flex;
    flex-wrap: wrap;
    width:100%;
    max-width: 670px;
}
dl > * {
    padding-top: 0.5em;
}
dt {
    width:30%;
    font-weight: bold;
    text-align:right;
}
dd {
    width:60%;
    padding-left:1em;
    margin-left: 0px;
}
dd + dd {
    width: 100%;
    padding-left: calc(30% + 1em);
}
dt + dt {
    padding-right: 60%;
}
dt + dt + dd {
    margin-top: -1.625em; /* own height including padding */
    padding-left: calc(30% + 1em);
}

/* NAVIGATION BAR */
.fas {
    text-decoration: none;
}
.navmenu {
    position: fixed;
    background: #209cee;
    width: 100%;
    height: 40px;
}
/*Strip the ul of padding and list styling*/
.navmenu ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: absolute;
}
/*Create a horizontal list with spacing*/
.navmenu li {
    display:inline-block;
    float: left;
}
/*Style for menu links*/
.navmenu li a {
    display: block;
    min-width: 140px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #f8f8f8;
    background: #209cee;
    text-decoration: none;
}
/*Hover state for top level links*/
.navmenu li:hover a {
    color: #323232;
    background: #ffffff;
}
/*Hide dropdown links until they are needed*/
.navmenu li ul {
    display: none;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #f8f8f8;
    background: #209cee;
    text-align: left;
    padding: 10px 10px;
    display: none;
}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 575px){
    /*Make dropdown links appear inline*/
    .navmenu ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
    .navmenu li {
        margin-bottom: 0px;
    }
    /*Make all menu links full width*/
    .navmenu ul li, li a {
        width: 100%;
    }
    .navmenu li a {
        text-align: left;
        padding-left: 10px;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
}
