html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Trebuchet MS';
}

body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

header {

    display: flex;
    flex-direction: row;

    .lhs {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .rhs {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .rrhs {
        flex-grow: 1;
        background-image: url('images/header_srch_bg.jpg');
        background-size: 1353px 130px;
    }
}

main {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-basis: 90%;
    width: 100%;

    nav {
        flex-grow: 0;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        background-color: #6192c1;
    }

    .content {
        flex-grow: 1;
        margin: 3em;

        p {
            margin-left: .5em;
        }
    }
}

footer {
    padding: .5em 0;
    background-color: #6192c1;
    text-align: center;
    color: white;
}

h1 {
    font-size: 1.5em;
    font-weight: bold;
}

.section-header {
    width: 100%;
    background-color: #c0d3E7;
    background-image: url("images/subhead_swoosh.gif");
    background-position: right bottom;
    background-repeat: no-repeat;
    padding: .4em 1em;
    font-weight: bold;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 4px;
    margin-bottom: .4em;
}
