*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ccd4d6;
    padding: 50px 24px;
}

.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: white;
    border: 12px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.section {
    padding: 16px 24px;
}

.hero-container {
    display: flex;
    height: 140px;
    background-color: #002b36;
    color: white;
}

.hero-photo {
    width: 140px;
    background: url('/images/jgsfebb2.jpg') center center/cover no-repeat;
}

.hero-textbox {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 24px;
}

.hero-textbox h1 {
    font-size: 2em;
    margin: 0;
}

.hero-textbox p {
    font-size: 0.9em;
    margin: 0;
    color: #ccc;
}

.nav-link {
    /* font-weight: bold; */
    color: #dddcdc;
    margin: 0 10px;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #ffffff;
    background-color: #00222b;
}

.site-nav .w3-bar-item {
    float: none;
}

.section {
    padding: 8px 8px;
}

.footer {
    background-color: #002b36;
    color: #ccc;
    text-align: center;
    padding: 16px;
}

@media(max-width: 768px) {
    body {
        padding: 20px 12px;
    }

    .site-container {
        width: 100%;
        margin: 0 auto;
        border-width: 8px;
    }

    .hero-photo {
        width: 100%;
        height: 170px;
    }

    .hero-textbox {
        padding: 12px 16px;
        text-align: center;
    }

    .hero-textbox h1 {
        font-size: 1.7em;
    }

    .hero-textbox p {
        font-size: 0.85em;
    }
}

img,
table {
    max-width: 100%;
}

.compact-table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}

.nolink {
text-decoration: none;
color: inherit;
}

.nolink:visited,
.nolink:hover,
.nolink:active {
text-decoration: none;
color: inherit;
}

.nolink:hover {
    color: red;
}

a
{
color: #0000ee;
font-weight: 500;
}

a:link
{
    text-decoration: none;
}

a:visited
{
    text-decoration: none;
}

a:hover
{
    text-decoration: none;
    color: #ff0000;
}
