main{
    display: grid;
    width: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
}

.grid-containerAlt {
    display: grid;
    grid-template-columns: 100%;
}

#container{
    overflow: hidden;
    display: grid;
    grid-column: span 2;
    grid-row: 1;
}

.item2{
    overflow: inherit;
    grid-column: 1;
    grid-row: 2;
}

.item2alt{
    overflow: hidden;
    grid-column: span 2;
    grid-row: 2;
    width: auto;
}

.item3{
    grid-column: 2;
    grid-row: 2;
}

section{
    font-size: 90%;
}

nav{
    font-size: 90%;
    text-align: center;
}

nav a{
    display: inline;
    color: black;
    margin-left: .25em;
}

h1{
    font-size: 80%;
}

.headerAlign{
    text-align: center;
}

#bigHeader{
    font-size:80%;
}

img{
    max-width: 8em;
    max-height: 4em;
}

figcaption{
    font-size: 50%;
    text-align: left;
}

.padding{
    margin-top: -1em;
    padding: 1em 1em 1em 1em;
}

#bottomNote{
    font-size: 75%;
}

ul{
    list-style-position: outside;
    margin: 0.3125em 0.3125em 0.3125em -3.125em;
}

h2{
    font-size: 90%;
}

.headerFix{
    margin-top: 6em;
}

.centerImg {
    display: block;
    margin: 0.3125em 0.3125em 0.3125em -3.125em;
    float: left;
}

table{
    display: table-row-group;
}

.center{
    width: 70%;
}

.activePage{
    color: rgb(153, 153, 153);
    font-weight: bold;
    border-bottom: solid black .025em;
}

.newsTable{
    font-size: 50%;
    border: 1px solid black;
}

td{
    width:0.1%;
    white-space: nowrap;
} 

.formElements{
    justify-content: left;
    width: auto;
}