body {
 background-color: white;
 font-family: Helvetica, Arial, sans-serif;
 font-size: 18px;
 color: #333;
 margin: 0px;
 min-width: 300px;
}

header {
    height: 90px;  
    position: fixed; 
    background-color: white;
    width: 100%;
    border-bottom: 2px solid #aaa;
    padding-top: 10px;
    box-shadow: 0px 0px 20px 0px #333;
    margin-top: 0px;
    z-index: 9;
}

.logo {
    background-image: url('img/logoSmall.gif');
    border: 0px;
    margin: 0% 0% 15px 12%;
    float: left;
    width: 207px;
    height: 78px;
}

.navigation {
    float: right;
    margin: 10px 12% 0px 0px;
}

.headerText {
    font-size: 20px;
    margin-right: 15px;
}

.navigation ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    display: -webkit-flex;
    margin: 20px 0px 20px 0px;
    float: right;
}

.navigation li a { 
    padding: 0px 15px;
    text-decoration: none;
    color: #555; 
    transition: all 0.5s ease;
    border-bottom: 0px solid #fff;
}

.navigation li a:hover {
    color: #5e7e9b;
    border-bottom: 2px solid #5e7e9b;
    padding-bottom: 10px;
    font-size: 20px;
}

.navigation li active {
    color: #5e7e9b;
    border-bottom: 2px solid #5e7e9b;
    padding-bottom: 10px;
}

.mainContent {
    margin: 75px 10% 0 10%;
}


h1 {
    color: #000;
    text-align: center;
    font-size: 32px;
    padding-top: 35px;
}

.banner h1 {
    color: white;
    font-size: 40px;
}

.banner p {
    color: white;
    font-size: 25px;
}

.banner form {
    height: 20px; 
    width: 100px; 
    position: relative;
    left: 50%;
    z-index: 2;
}

h2 {
    color: #111;
    font-size: 28px;
    padding: 0px 10px 10px 10px;
}

h3 {
    color: #5e7e9b;
    font-size: 25px;
    padding: 0px 10px;
}

h4 {
    color: #333;
    font-size: 23px;
    text-align: center;
}

p {
    padding: 0px 10px;
}

a { 
    text-decoration: none; 
}

a:hover {
    color: #5e7e9b;
}

.banner{
    background-image: url("img/bannerBackground.jpg");
    background-color: #aaa;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 150px;
    text-align: center;
    padding: 180px 50px 80px 50px;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
}

.stripe {
    background-color: #5e7e9b;
    width: 100%;
    padding: 1px 10px 80px 10px;
}

.stripe h2 {
    color: white;
}

.stripe p {
    color: white;
}

.stripe h3 {
    color: #000;
    text-align: center;
}


.sideBySideContent {
    display: -webkit-flex;
}

.tableColumn {
    width: 33.3%;
    padding: 20px;
    text-align: center;
}

input {
    min-width: 200px;
    width: 90%;
    height: 40px;
    background-color: #eee;
    border-radius: 7px;
    margin: 10px 0px;
    border: 1px solid #5e7e9b;
    float: right;
    padding-left: 10px;
    transition: background-color 0.5s ease;
}

textarea {
    min-width: 200px;
    width: 90%;
    height: 100px;
    background-color: #eee;
    border-radius: 7px;
    margin: 10px 0px;
    border: 1px solid #5e7e9b;
    float: right;
    padding: 10px 0px 0px 10px;
    font: inherit;
    font-size: 13px;
    transition: background-color 0.5s ease;
}

:required {
    background-color: #ffaaaa;
}

input:valid {
    background-color: #aaffaa;
}

input[type="submit"] {
    width: 10px;
    height: 40px;
    background-color:#aaa;
    border-radius: 7px;
    font-size: 16px;
    border: none;
    transition: all 0.5s ease;
    color: white;
    margin-right: 15px;
}

:required::-webkit-input-placeholder {
    color: #ff6666;
}

input:optional {
    background-color: white;
}

input[type="submit"] {
    background-color: #aaa;
}

input[type="submit"]:hover {
    background-color: #000;
}

.error {
    color: #FF0000;
}


.success {
    color: #00aa55;
}

.sixtySixPercentWide {
    width: 66%;
    padding: 15px 10px;
}

.thirtyThreePercentWide {
    width: 33%;
    padding: 15px 10px;
}

.seventyFivePercentWide {
    width: 75%;
    padding: 15px 10px;
}

.twentyFivePercentWide {
    width: 25%;
    padding: 45px 0px 45px 30px;
}

.backgroundColor {
    background-color: #eee;
}

.homeBlogPosts {
    padding: 20px 20px 20px 20px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

button {
    width: 150px;
    height: 40px;
    background-color:#aaa;
    border-radius: 7px;
    font-size: 16px;
    border: none;
    transition: all 0.5s ease;
    color: white;
}

button:hover {
    background-color: #5e7e9b;
    width: 180px;
}

footer {
    margin-top: 50px;
    background-color: #5e7e9b;
    padding: 0px 0px 30px 0px;
    min-height: 100px;
    text-align: center;
    vertical-align: middle;
    color: white;
    width: 100%;
}

footer h5 {
    font-size: 22px;
}

@media screen and (max-width: 1065px) {
    .headerText {
        font-size: 15px;
    }
}

@media screen and (max-width: 870px) {
    .logo {
        background-image: url('img/logoSmall.gif');
    }
    .headerText {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .logo {
        background-image: url('img/emblemSmall.gif');
        width: 28px;
        height: 42px;
        margin: 0% 0% 15px 7%;
    }
    .navigation {
        float: right;
        margin: 0px 50px 0px 0px;
    }
     header {
        height: 55px;  
        float: top; 
        background-color: white;
        width: 100%;
        border-bottom: 2px solid #aaa;
        box-shadow: 0px 0px 20px 0px #333;
    }
    .navigation ul {
        font-size: 15px;
        margin: 15px 0px 20px 0px;
    }
    .sideBySideContent {
        display: block;
    }
    .banner{
        min-height: 80px;
        padding: 40px 50px 10px 50px;
    }
    .mainContent {
        margin: 25px 5% 0 5%;
    }
    .tableColumn {
        width: 90%;
        padding: 20px;
        text-align: center;
    }
    .sixtySixPercentWide {
        width: 100%;
        padding: 5px 0px;
    }

    .thirtyThreePercentWide {
        width: 100%;
        padding: 5px 0px;
    }

    .seventyFivePercentWide {
        width: 100%;
        padding: 5px 0px;
    }

    .twentyFivePercentWide {
        width: 100%;
        padding: 5px 0px 5px 3px;
    }
    
    .floatLeft {
        float: none;
    }

    .floatRight {
        float: none;
    }

    form {
        padding-bottom: 70px;
    }
.stripe {
    padding-bottom: 290px;
}
    h1 {
        color: #000;
        text-align: center;
        font-size: 22px;
        padding: 70px 0px 35px 0px;
    }

    .banner h1 {
        color: white;
        font-size: 28px;
    }

    .banner p {
        color: white;
        font-size: 18px;
    }

    h2 {
        color: #111;
        font-size: 22px;
        padding: 10px 10px 10px 10px;
    }

    h3 {
        color: #5e7e9b;
        font-size: 20px;
        padding: 0px 10px;
    }

    h4 {
        color: #333;
        font-size: 17px;
    }

    .homeBlogPosts {
        padding: 0px;
    }
}

@media screen and (max-width: 570px) {
    .navigation {
        float: right;
        margin: 0px 20px 0px 0px;
    }
    header {
        height: 60px;  
        position: fixed; 
        padding-top: 15px;
        margin-top: 0px;
    }
    .navigation li a { 
    padding: 0px 8px;
    }
}