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: 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: #0068bf;
    border-bottom: 2px solid #0068bf;
    padding-bottom: 10px;
    font-size: 20px;
}

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

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


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


banner h1 {
    color: #000;
    font-size: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 10px;
}

banner p {
    color: #000;
    font-size: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 10px;
    padding: 10px;
}

.lightBlue {
    background-color: #6cb1e1;
}

banner form {
    height: 20px; 
    width: 100px;
    z-index: 2;
}

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

h3 {
    color: #0068bf;
    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: #0068bf;
}

banner {
    min-height: 300px;
}

banner .stripe {
    padding-top: 70px;
}

.stripe {
    width: 100%;
    padding: 1px 10px 30px 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 #0068bf;
    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 #0068bf;
    display: flex;
    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;
    text-align: center;
}

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

input:optional {
    background-color: white;
}

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

input[type="submit"]:hover {
    background-color: #0068bf;
}
.error {
    color: #FF0000;
}
.darkBlue {
    background-color: #2b4b69
}

.success {
    color: #00aa55;
}

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

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

.fiftyPercentWide {
    width: 50%;
    padding: 15px 10px;
}

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


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

.backgroundColor {
    background-color: #eee;
}

.homeBlogPosts {
    padding: 10px;
}

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: #0068bf;
    width: 180px;
}

footer {
    margin-top: 50px;
    background-color: #2d4068;
    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: 1150px) {
    .headerText {
        font-size: 15px;
    }
    banner h1 {
    color: #000;
    font-size: 27px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 10px;
}

banner p {
    color: #000;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 10px;
    padding: 10px;
}
}

@media screen and (max-width: 930px) {
    .logo {
        background-image: url('img/logoSmall.gif');
    }
    .headerText {
        display: none;
    }
     .sixtySixPercentWide {
        width: 50%;
        padding: 5px 5px;
    }

    .thirtyThreePercentWide {
        width: 50%;
        padding: 5px 5px;
    }

}

@media screen and (max-width: 750px) {
    .logo {
        background-image: url('img/emblemSmall.gif');
        width: 42px;
        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: 20px 10px 10px 10px;
    }*/
    .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: 0px;
    }
.stripe {
    padding-bottom: 100px;
}
    h1 {
        color: #000;
        text-align: center;
        font-size: 22px;
        padding: 20px 0px 20px 0px;
    }

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

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

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

    h3 {
        color: #0068bf;
        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;
    }
}