* {
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Commissioner', sans-serif;
    color: #222;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

html{
    scroll-behavior: smooth;
}

.clear{
    clear: both;
}

a{
    text-decoration: underline;
    color: #005eb8;
    font-weight: 500;
}

p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.small{
    font-size: 16px;
    font-weight: 300;
}

h1{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

h4{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

button,
.button{
    background:#fff;
    border:2px #005eb8 solid;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
}
    button:hover,
    button:active,
    .button:hover,
    .button:active{
        text-decoration: underline;
        background:#e7f0f9 ;
    }

#skiplink{
    padding: 10px;
    display: inline-block;
    position: absolute;
    left: -9999px;
}
    #skiplink:focus{
        position: relative;
        left: 0px;
    }

.width-1920{
    max-width: 1920px;
    margin: 0 auto;
}

.width-full{
    max-width: 960px;
    margin: 0 auto;
}

.width-two-thirds{
    width: 66%;
}

.width-one-third{
    width: 30%;
}

.left-col{
    float: left;
}

.right-col{
    float:right;
}


.margin-top-0{
    margin-top: 0;
}
.margin-top-20{
margin-top: 20px;
}
.margin-top-40{
margin-top: 40px;
}
.margin-top-60{
margin-top: 60px;
}
.margin-top-80{
margin-top: 80px;
}


.margin-bottom-0{
    margin-bottom: 0;
}
.margin-bottom-20{
margin-bottom: 20px;
}
.margin-bottom-40{
margin-bottom:40px;
}
.margin-bottom-60{
margin-bottom: 60px;
}
.margin-bottom-80{
margin-bottom: 80px;
}


.padding-top-0{
    padding-top: 0;
}
.padding-top-20{
    padding-top: 20px;
}
.padding-top-40{
    padding-top: 40px;
}
.padding-top-60{
    padding-top: 60px;
}
.padding-top-80{
    padding-top: 80px;
}


.padding-bottom-0{
    padding-bottom: 0;
}
.padding-bottom-20{
    padding-bottom: 20px;
}
.padding-bottom-40{
    padding-bottom:40px;
}
.padding-bottom-60{
    padding-bottom: 60px;
}
.padding-bottom-80{
    padding-bottom: 80px;
}

header{
    padding: 30px 0;
    background-color: #0d3c7c;
}

header .logo{
}

header .logo img{
    float: left;
    margin-right: 10px;
}

header h1{
    height: 98px;
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color:#fff;
    line-height: 32px;
    display: table-cell;
    vertical-align: middle;
}

header nav{
    margin-top: 20px;
}

header nav ul{
}

    header nav li{
        display: inline-block;
    }

        header nav li a {
            display: block;
            padding: 10px;
            color:#fff;
            font-size: 16px;
            text-decoration: none;
        }

        header nav li a:hover,
        header nav li.active a{
            background-color: #fff;
            color: #222;
        }

    #nav-secondary{
        margin-top: 2px;
       display: none; 
    }

#nav-mobile,
#mobile-toggle{
    display: none;
}

#mobile-toggle{
    border:none;
    text-decoration: none;
}

#nav-mobile li{
    display: inline;
}

#site-warnings-banner{
    width: 100%;
    background-color: yellow;
    padding: 10px 0;
    display: none;
}
    #site-warnings-banner a{
        color: #222;
    }







#banner{
    max-width: 1920px;
    height: 360px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.slide{
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 2s linear;
    -moz-transition: opacity 2s linear;
    -o-transition: opacity 2s linear;
    transition: opacity 2s linear;
}

.showMe {
    opacity: 1;
}

#banner-mobile{
    display: none;
    height: 200px;
    position: relative;
    overflow: hidden;
}

    #banner-mobile img {
        height: 100%;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }






#main-wrapper{
    max-width: 1024px;
    margin: 0 auto;
}


#main-content ul,
#main-content ol{
    padding-left: 30px;
    padding-bottom: 30px;
}

#main-content li {
    line-height: 32px;
    font-size: 18px;
}

.news article{
    padding: 20px;
    border: 6px #ddd solid;
    margin-bottom: 60px;
}

#site-warnings article,
#sites-list article{
    padding: 20px;
    margin-bottom: 40px;
    background-color: #f5f4f4;
}

#sites-list article h4{
    margin-bottom: 5px;
}

#sites-list article p{
    margin-bottom: 0;
}

#site-warnings article .status,
#sites-list article .status{
    padding: 5px;
    margin-right: 5px;
    font-size: 11px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

#site-warnings article .status.red,
#sites-list article .status.red{
    background-color: red;
    color:#fff;
}
#site-warnings article .status.amber,
#sites-list article .status.amber{
    background-color: orange;
}
#site-warnings article .status.green,
#sites-list article .status.green{
    background-color: green;
    color:#fff;
}

#site-information .site-map{
    width: 100%;
    display: block;
}

.site-map-button{
    display: none;
}

.important{
    padding: 20px;
    margin-bottom: 30px;
    background-color: #ffdede;
}

#map{
    width: 100%;
    height: 300px;
}

#map-all{
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}

#breadcrumbs{
    font-size: 16px;
    padding-bottom: 30px;
    font-weight: 300;
}

#pagination p{
    font-weight: 300;
}

#pagination span,
#pagination a {
    font-size:18px;
    font-weight: 300;
    padding: 0 2px;
    display: inline-block;
}

.committee-photo{
    width: 23%;
    height: 300px;
    margin:0 2% 2% 0;
    float: left;
    text-align: center;
}

.committee-photo img{
    width:100%;
}    

.committee-photo p{
        margin-bottom: 0;
        font-size: 14px;
        line-height: 20px;
    }

footer{
    padding: 30px 0;
    background-color: #0d3c7c;
}

    footer p,
    footer li,
    footer a{
        color: #fff;
    }


@media screen and (max-width: 1000px) {
    .width-full{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 840px) {
    .width-two-thirds,
    .width-one-third{
        width: 100%;
    }

    .left-col,
    .right-col{
        float:none;
    }

    .right-col{
        padding-top: 30px;
    }

    button:hover,
    button:active,
    .button:hover,
    .button:active{
        text-decoration: none;
        background:#fff;
    }
    
    nav.desktop{
        display: none;
    }

    #mobile-toggle,
    #site-warnings-banner{
        display: block;
    }

    #banner{
        display: none;
        opacity: 0;
    }

    #banner-mobile{
        display: block;
    }

    .site-map-button{
        display: inline-block;
    }
        

}

@media screen and (max-width: 440px) {
    header h1{
        font-size: 20px;
        line-height: 26px;
    }
    .committee-photo{
        width: 31%;
        height: 260px;
    }
}