/* Reset Styles */
/* WordPress Default Styles */
/* Alignment */
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}

/* Text meant only for screen readers */
.assistive-text {
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

/* Content */
.hentry {
    margin: 0 0 1.5em;
}

.entry-meta {
    clear: both;
}

.byline {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Asides */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}

/* Media */
.site-header img,
.entry-content img,
.comment-content img,
.widget img {
    max-width: 100%;
    /* Fluid images for posts, comments, and widgets */
}

.site-header img,
.entry-content img,
img[class*="align"],
img[class*="wp-image-"] {
    height: auto;
    /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

.site-header img,
.entry-content img,
img.size-full {
    max-width: 100%;
    width: auto;
    /* Prevent stretching of full-size images with height and width attributes in IE8 */
}

.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.wp-caption {
    border: 1px solid #ccc;
    max-width: 100%;
}

.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
    margin-bottom: 1.5em;
}

.wp-caption img {
    display: block;
    margin: 1.2% auto 0;
    max-width: 98%;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

#content .gallery {
    margin-bottom: 1.5em;
}

#content .gallery a img {
    border: none;
    height: auto;
    max-width: 90%;
}

#content .gallery dd {
    margin: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
    max-width: 100%;
}

/* Widgets */
.widget {
    margin: 0 0 1.5em;
}

/* Search widget */
#searchsubmit {
    display: none;
}

/* End WP Styles */
/* Remove for non WP projects */
/* Defaults */
/* Fonts */
/* Colors */
/* Media Queries */
/* Helpers */
/* Box sizing */
/* HTML/Body */
html {
    background-color: #fff;
}

body {
    font-family: "Roboto", sans-serif;
    color: #262626;
}

/* Default Links */
a {
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    transition: all .25s;
}

a:link, a:visited {
    color: #00437c;
    text-decoration: underline;
}

a:hover, a:active {
    text-decoration: none;
    color: #79a5cf;
}

/* Common Text Styles (p, li, blockquote, etc) */
.main-content {
    padding-top: 40px;
    padding-bottom: 50px;
    color: #444;
}

.main-content p,
.main-content li {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 300;
}

@media only screen and (max-width: 767px) {
    .main-content p,
    .main-content li {
        font-size: 14px;
    }
}

/* Default Headings */
.main-content h1 {
    font-size: 33px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #00437c;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #262626;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .main-content h1 {
        font-size: 26px;
    }
}

.main-content h1 a:link,
.main-content h1 a:visited {
    color: #00437c;
    text-decoration: none;
}

.main-content h1 a:hover {
    color: #79a5cf;
}

.main-content article.post h1 {
    margin-bottom: 15px;
}

.main-content article.post .post-date {
    color: #729bd9;
    font-size: 18px;
    margin-bottom: 5px;
}

.main-content article.post .post-photo {
    float: left;
    margin: 0 15px 10px 0;
}

.main-content article.post .entry-meta {
    clear: both;
}

.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #00437c;
}

.main-content .page-header {
    border: none;
}

/* Form Styles */
.btn {
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    transition: all .25s;
}

.btn-default {
    border: 1px solid #bf0000;
    text-transform: uppercase;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #bf0000;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.btn-default:link,
.btn-default:visited {
    color: #fff;
}

.btn-default:hover {
    background-color: #a3151b;
    color: #fff;
    border-color: #a3151b;
}

/* Button Clear */
.btn-clear {
    border: 1px solid #00437c;
    border-style: solid;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 10px 30px;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .btn-clear {
        font-size: 24px;
    }
}

.btn-clear:link,
.btn-clear:visited {
    color: #00437c;
    text-decoration: none;
}

.btn-clear:hover {
    background-color: #00437c;
    color: #fff;
}

/* Gray */
.btn-clear-gray {
    border-color: #444;
}

.btn-clear-gray:link,
.btn-clear-gray:visited {
    color: #444;
    text-decoration: none;
}

.btn-clear-gray:hover {
    background-color: #bf0000;
    color: #fff !important;
    border-color: #bf0000;
}

/* White */
.btn-clear-white {
    border-color: #fff;
}

.btn-clear-white:link,
.btn-clear-white:visited {
    color: #fff;
}

.btn-clear-white:hover {
    background-color: #fff;
    color: #00437c !important;
    border-color: #fff;
}

/* Blue */
.btn-red {
    background-color: #bf0000;
    color: #fff;
    padding-left: 50px;
    padding-right: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-red:hover {
    background-color: #a3151b;
    color: #fff;
}

/* Non-Semantic Helper Classes */
.ir {
    display: block;
    border: 0;
    text-indent: -999em;
    overflow: hidden;
    background-color: transparent;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
    *line-height: 0;
}

.ir br {
    display: none;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear {
    clear: both;
}

/* Site Specific Styles */
/* Nav */
.navwrap {
    background-color: rgba(0, 67, 124, 0.73);
    padding: 10px 0;
}

body.home .navwrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
}

body.home #nav {
    position: relative;
}

@media only screen and (max-width: 1025px) {
    body.home #nav {
        top: 10px;
    }
}

#nav {
    overflow: hidden;
}

@media only screen and (max-width: 1025px) {
    #nav {
        display: none;
        position: absolute;
        z-index: 2000;
        /*background-color: rgba(0, 67, 124, 0.73);*/
        background-color: rgba(0, 67, 124, 1);
        top: 34px;
        left: 0;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 640px) {
    #nav {
        top: 34px;
    }
}

#ft-nav {
    clear: both;
    padding-top: 30px;
}

#nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 1025px) {
    #nav ul {
        float: none;
        width: 100%;
        text-align: center;
    }
}

#ft-nav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

#nav ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 100;
    text-align: center;
    border-left: 1px solid #fff;
}

@media only screen and (max-width: 1025px) {
    #nav ul li {
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
        border: none;
    }
}

#nav ul li:first-child {
    border: none;
}

#ft-nav ul li {
    list-style: none;
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    #ft-nav ul li {
        display: block;
    }
}

#nav ul li a {
    display: inline-block;
    padding: 0 30px;
}

@media only screen and (max-width: 1200px) {
    #nav ul li a {
        padding: 0 20px;
    }
}

#ft-nav ul li a {
    display: inline-block;
    padding: 7px 20px;
}

@media only screen and (max-width: 1200px) {
    #ft-nav ul li a {
        padding: 7px 15px;
    }
}

#nav ul li a:link,
#nav ul li a:visited {
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 1025px) {
    #nav ul li a:link,
    #nav ul li a:visited {
        color: #fff;
    }
}

#ft-nav ul li a:link,
#ft-nav ul li a:visited {
    color: #00437c;
    text-decoration: none;
}

@media only screen and (max-width: 1025px) {
    #ft-nav ul li a:link,
    #ft-nav ul li a:visited {
        color: #00437c;
    }
}

#nav ul li a:hover {
    color: #79a5cf;
}

@media only screen and (max-width: 1025px) {
    #nav ul li a:hover {
        color: #79a5cf;
    }
}

#ft-nav ul li a:hover {
    color: #729bd9;
}

@media only screen and (max-width: 1025px) {
    #ft-nav ul li a:hover {
        color: #729bd9;
    }
}

#nav .donate a {
    background-color: transparent;
    padding: 8px 20px;
    border: 1px solid #fff;
    font-weight: bold;
}

#nav .donate a:hover {
    background-color: #fff;
    color: #bf0000;
}

#ft-nav .donate a {
    background-color: transparent;
    padding: 8px 20px;
    border: 1px solid #00437c;
    font-weight: bold;
}

#ft-nav .donate a:hover {
    color: #fff;
    background-color: #00437c;
}

#nav .facebook,
#nav .twitter,
#nav .youtube {
    vertical-align: middle;
}

#nav .facebook a,
#ft-nav .facebook a {
    display: block;
    background: url("../images/icon-facebook.png") no-repeat center center;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-left: 4px;
}

#nav .twitter a,
#ft-nav .twitter a {
    display: block;
    background: url("../images/icon-twitter.png") no-repeat center center;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-left: 4px;
}

#nav .youtube a,
#ft-nav .youtube a {
    display: block;
    background: url("../images/icon-youtube.png") no-repeat center center;
    width: 38px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-left: 4px;
}

@media only screen and (max-width: 1200px) {
    #nav .facebook a,
    #nav .twitter a,
    #nav .youtube a,
    #ft-nav .facebook a,
    #ft-nav .twitter a,
    #ft-nav .youtube a {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1025px) {
    #nav .facebook a,
    #nav .twitter a,
    #nav .youtube a,
    #ft-nav .facebook a,
    #ft-nav .twitter a,
    #ft-nav .youtube a {
        width: 100%;
        margin-left: 0;
        margin-bottom: 5px;
    }
}

.mobile-menu {
    display: none;
}

@media only screen and (max-width: 1025px) {
    .mobile-menu {
        margin-top: 0;
        display: block;
        padding: 10px;
        float: right;
        font-size: 24px;
        line-height: 24px;
        text-transform: uppercase;
        width: 29px;
        height: 24px;
        background: url("../images/icon-menu.png") no-repeat 0 0;
        background-size: cover;
    }
}

.mobile-menu:link,
.mobile-menu:visited {
    color: #fff;
    text-decoration: none;
}

/* Footer Social Nav */
.ft-social-nav {
    margin-bottom: 20px;
}

.ft-social-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.ft-social-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.ft-social-nav .facebook a {
    display: block;
    background: url("../images/icon-facebook.png") no-repeat center center;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-top: 5px;
    margin-left: 4px;
}

.ft-social-nav .twitter a {
    display: block;
    background: url("../images/icon-twitter.png") no-repeat center center;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-top: 5px;
    margin-left: 4px;
}

.ft-social-nav .instagram a {
    display: block;
    background: url("../images/icon-instagram.png") no-repeat center center;
    width: 29px;
    height: 29px;
    text-indent: 100%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 !important;
    margin-top: 5px;
    margin-left: 8px;
}

/* Modules */
/* Head */
#hd {
    background-color: #fff;
    position: relative;
}

#hd #bg-home-feature {
    display: block;
    width: 100%;
    background: url("../images/bg-feature.jpg") no-repeat 50% 0;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    #hd #bg-home-feature {
        background: url("../images/bg-feature-mobile.jpeg") no-repeat 50% 0;
    }

}

.hd-interior {
    display: block;
    width: 100%;
}

.logowrap {
    background-color: #fff;
    padding: 25px 0;
}

@media only screen and (max-width: 640px) {
    .logowrap {
        padding: 10px 0;
    }
}

/* Interior Head */
.m-interior-head {
    background: url("../images/bg-interior.jpg") no-repeat 50% 0;
    background-size: cover;
    height: 215px;
}

@media only screen and (max-width: 767px) {
    .m-interior-head {
        background: url("../images/bg-home-mobile.jpg") no-repeat 50% 0;
        background-size: cover;
        height: 150px;
    }
}

/* Logo */
#logo {
    max-width: 602px;
    width: 90%;
    height: 70px;
    overflow: hidden;
    background: url("../images/logo.png") no-repeat 50% 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 640px) {
    #logo {
        background-size: contain;
    }
}

#logo a {
    display: block;
    height: 100%;
    text-indent: 110%;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

#logo a:link,
#logo a:visited {
    text-decoration: none;
}

#ft-logo {
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

#logo-white {
    width: 602px;
    height: 70px;
    overflow: hidden;
    background: url("../images/logo-white.png") no-repeat 50% 50%;
    margin-bottom: 175px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 640px) {
    #logo-white {
        width: 100%;
        height: 70px;
        background-position: center;
        background-size: contain;
    }
}

@media only screen and (max-width: 767px) {
    #logo-white {
        margin-bottom: 20px;
    }
}

#logo-white a {
    display: block;
    height: 100%;
    text-indent: 110%;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

/* Slide Content */
.m-slide-content {
    background-color: rgba(0, 67, 124, 0.73);
    position: relative;
}

.m-slide-content .content {
    padding: 30px;
}

.m-slide-content .prev {
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -17px;
    width: 17px;
    height: 36px;
    background: url("../images/icon-arrow-left.png") no-repeat 0 0;
    overflow: hidden;
}

.m-slide-content .next {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -17px;
    width: 17px;
    height: 36px;
    background: url("../images/icon-arrow-right.png") no-repeat 0 0;
    overflow: hidden;
}

/* Jumbotron */
.jumbotron {
    display: none;
}

.home-jumbotron-feature {
    padding-top: 100px;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .home-jumbotron-feature {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.home-jumbotron-feature h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1em;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 2px #000;
}

.home-jumbotron-feature h2 {
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    color: #fff;
    margin-top: 0;
    text-shadow: 1px 1px 1px #000;
}

.home-jumbotron-feature p {
    font-size: 19px;
    line-height: 1.6em;
    font-weight: 100;
    font-style: italic;
    margin: 0;
}

.home-jumbotron-feature a {
    font-weight: bold;
    text-transform: uppercase;
}

.home-jumbotron-feature a:link,
.home-jumbotron-feature a:visited {
    color: #fff;
    text-decoration: none;
}

.home-jumbotron-feature a:hover {
    color: #729bd9;
}

.home-jumbotron-feature img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.home-jumbotron-feature .join-form {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(0, 67, 124, 0.5);
}

.home-jumbotron-feature .join-form input[type="text"] {
    margin-bottom: 10px;
    border-radius: 0;
}

.home-jumbotron-feature .join-form input[type="submit"] {
    font-size: 24px;
    font-weight: normal;
}

/* Footer */
#ft {
    color: #fff;
    position: relative;
    background-color: #45759f;
    border-top: 30px solid #292929;
    padding-bottom: 30px;
}

#ft h5 {
    font-weight: bold;
    font-size: 16px;
}

#ft p {
    font-weight: 100;
    font-size: 14px;
    margin-bottom: 20px;
}

#ft a:link,
#ft a:visited {
    color: #fff;
}

.m-ft-address {
    background: url("../images/ft-div.png") repeat-y 50% 0;
}

.m-ft-address > div:nth-child(1) {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .m-ft-address {
        background: none;
        text-align: center;
    }

    .m-ft-address > div:nth-child(1),
    .m-ft-address > div:nth-child(2) {
        text-align: center;
    }
}




/* Print Styles */
/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    }

    /* Black prints faster: h5bp.com/s */
    a, a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
        content: "";
    }

    /* Don't show links for images, or javascript/internal links */
    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    /* h5bp.com/t */
    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }
}

.cycle-slideshow > div { display: none }
.cycle-slideshow > div.first { display: block }

.full-width {
    width: 100% !important;
    max-width: 100% !important;
}

.full-width-auto-height {
    width: 100% !important;
    height: auto !important;
}

div.post-photo-professional {
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
}

img.post-photo-professional {
    width: 200px;
    height: auto;

}

.no-underline,
.no-underline:hover,
.no-underline:link,
.no-underline:visited,
.no-underline:active {
    text-decoration: none;
}

.no-overflow {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {

}