﻿/** ==========================================================================
    APPI Website Styles
    Based on Bootstrap v3.3
*** ========================================================================== */

body {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #545454;
    background-color: #a0cbf5;
    overflow-x: hidden; /* this allows blue band on home page to extend to browser edge without scrollbar */
}

::selection {background-color: #3a6f8f; color:#fff;}
::-moz-selection {background-color: #3a6f8f; color:#fff}

/*  Typography
*/
.med-bold {
    font-weight: 500;
}

main p {
    margin-bottom: 16px;
}

main a {
	color: #5386a8;
    font-weight: 300;
}
main a:hover {
    color:#39913C;
}

main ul {
    list-style-type: none;
    margin-left: 15px;
    padding-left: 0;
}
main ul li {
    background-image: url('../img/square-green-bullet-4x4.png');
    background-repeat: no-repeat;
    background-position: left 9px;
    padding-left: 15px;
    margin-bottom: 10px;
}
main ol li {
    margin-bottom: 10px;
}

hr {
    border-top-color: #e2e2e2;
}
/*  Headings
*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    letter-spacing: 0.1em;
    font-weight: 300;
    line-height: 1.4;
}
h1, h2,
.h1, .h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}
h3, h4,
.h3, .h4 {
    margin-top: 24px;
    margin-bottom: 12px;
}

main h1, main .h1 {
    font-size: 28px;
    color: #396D90;
}
main h2, 
main section h1,
main .h2 {
    font-size: 24px;
    color: #5386a8;
}
main h3, main .h3 {
    font-size: 18px;
    color: #5386a8;
}
main h4, main .h4 {
    font-size: 17px;
    color: #545454;
}

.gray {
    color: #737373;
}
/*main article h1, main article .h1,
main section h1, main section .h1,*/
main > article h2:first-child,
main h1.underline, main .h1.underline,
main h2.underline, main .h2.underline,
main h3.underline, main .h3.underline {
/*    padding-bottom: 5px;*/
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 16px;
}

main h1 a, main .h1 a,
main h2 a, main .h2 a,
main h3 a, main .h3 a {
    color: inherit;
}
main h1 a:hover, main .h1 a:hover,
main h2 a:hover, main .h2 a:hover,
main h3 a:hover, main .h3 a:hover {
    text-decoration: none;
}

caption {
    color: #545454;
}

/*
    Effects
*/
a {
    -webkit-transition: color 200ms ease-in-out;
       -moz-transition: color 200ms ease-in-out;
        -ms-transition: color 200ms ease-in-out;
         -o-transition: color 200ms ease-in-out;
            transition: color 200ms ease-in-out;
}
a.no-transitions {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: color 0 ease-in;
            transition: none;
}
/*
    Forms
*/
.form-group label {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.1em;
}
label.required:after {
    content: "*";
    font-weight: bold;
    color: #a94442;
}

.form-control {
    border-radius: 0;
    height: 40px;
    font-size: 16px;
}
.form-control:hover {
    border-color: #a8a8a8;
}
.form-control:focus {
    border-color: #3a6f8f;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.form-control:required ~ label {
    color: red;
}

.field-validation-error {
    float: right;
    font-size: 14px;
    padding-top: 3px;
}

/*  Circled ordered list
*/
ol.circled-numbers {
    counter-reset: li;
    list-style: none;
    margin-left: 0;
    padding-left: 0px;
}
ol.circled-numbers > li {
    margin-left: 0px;
    padding-left: 54px;
}
ol.circled-numbers > li:before {
    content: counter(li);
    counter-increment: li;
    display: inline-block;
    position: absolute;
    left: 15px;
    /*float: left;*/
    width: 30px;
    height: 30px;
    padding: 3px;
    /*margin-right: 12px;*/
    margin-bottom: 0px;
    border-radius: 50%;
    background-color: #458f42;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}


/*  Default button
*/
.btn {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}
.btn-default {
    min-width: 200px;
    font-size: 20px;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-default.btn-full-width {
    width: 100%;
}

.btn-default .btn-left-block {
    display: inline-block;
    float: left;
    height: 40px;
    width: calc(100% - 40px);
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: left;
    background-color: #3a6f8f;
    color: #fff;
}

.btn-default.btn-lowercase .btn-left-block{
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: normal;
    padding-top: 8px;
}


.btn-default .btn-right-block {
    display: inline-block;
    float: left;
    padding-top: 12px;
    padding-bottom: 12px;
    height: 40px;
    width: 40px;
    font-size: 14px;
    background-color: #39913c;
    color: #fff;
}
.btn-default:not([disabled]):hover .btn-left-block {
    background-color: #39913c;
}

/*  Secondary button - blue
*/

.btn-secondary {
  color: #fff;
  background-color: #3a6f8f;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  padding: 6px 12px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #39913c;
  border-color: transparent;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #39913c;
  border-color: transparent;
}
.btn-secondary:active,
.btn-secondary.active,
.open > .dropdown-toggle.btn-secondary {
  color: #fff;
  background-color: #39913c;
  border-color: transparent;
}
.btn-secondary:active:hover,
.btn-secondary.active:hover,
.open > .dropdown-toggle.btn-secondary:hover,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.open > .dropdown-toggle.btn-secondary:focus,
.btn-secondary:active.focus,
.btn-secondary.active.focus,
.open > .dropdown-toggle.btn-secondary.focus {
  color: #fff;
  background-color: #39913c;
  border-color: transparent;
}
.btn-secondary:active,
.btn-secondary.active,
.open > .dropdown-toggle.btn-secondary {
  background-image: none;
}
.btn-secondary.disabled:hover,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-secondary:hover,
.btn-secondary.disabled:focus,
.btn-secondary[disabled]:focus,
fieldset[disabled] .btn-secondary:focus,
.btn-secondary.disabled.focus,
.btn-secondary[disabled].focus,
fieldset[disabled] .btn-secondary.focus {
  background-color: #39913c;
  border-color: transparent;
}


/*  Link button
*/
main .btn-link {
	color: #39913c;
    font-size: 18px;
    font-weight: 300;
}
main .btn-link::after {
    content: "\203A\203A";
    padding-left: 0.4em;
}
main .btn-link:hover {
    color: #006600;
    text-decoration: none;
}

/*
    Tables
*/
.table > tfoot > tr:first-child > th,
.table > tfoot > tr:first-child > td  {
  border-top: 2px solid #ddd;
}
.table > tfoot > tr:last-child > th,
.table > tfoot > tr:last-child > td  {
  border-bottom: 2px solid #ddd;
}

.table caption {
    color: #5386a8;
}

/*
    Panels
*/
.panel {
    border-radius: 0;
}
.panel-body {
    padding: 20px;
}
.panel-body > :first-child {
    margin-top: 0;
}
.panel-body > :last-child {
    margin-bottom: 0;
}

.panel-shaded {
    border: none;
}

.panel-shaded > .panel-body {
    background-color: #F0F5FA;
}

.panel-dark {
    border: none;
}
.panel-dark > .panel-body {
    background-color: #5b8fb2;
}

/*
    Video container
    Use to wrap an embedded YouTube video to make it responsive.
*/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; 
    overflow: hidden;
    margin-bottom: 20px;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
    Charts container
*/
.chart-container {
     min-height: 400px; 
     position: relative;
}
.loading-overlay {
    background-color: #f0f5fa;
    /*position: absolute;*/
    padding: 20px;
    width: 100%;
    height: 150px;
}

/** ==========================================================================
    Helpers and Resets
*** ========================================================================== */

.no-margins {
    margin: 0px !important;
}

/** ==========================================================================
    Custom Bootstrap extension for a simple 5-column grid system.
*** ========================================================================== */
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.col-xs-1-5 {
    float: left;
    width: 20%;
}
@media (min-width: 768px) {
    .col-sm-1-5 {
        float: left;
        width: 20%;
    }
}
@media (min-width: 992px) {
    .col-md-1-5 {
        float: left;
        width: 20%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1-5 {
        float: left;
        width: 20%;
    }
}

/** ==========================================================================
    Page header and navigation bar
*** ========================================================================== */

.navbar {
    border: 0;
    padding-top: 15px;
    margin-bottom: 0px;
}
.navbar-default {
    background-color: #fff;
}
.navbar-header {
    padding-top: 15px; /* return to 15px for std logo */
    height: 90px; /* return to 90px for std logo */
}

/* 
    Logo area.
*/
.navbar-brand {
    padding: 0;
    width: 100px;
    display: block;
}
.navbar .navbar-brand {
    margin-left: 29px; /* return to 29px for std logo */
    margin-right: auto;
}

.navbar-brand > img {
    width: 100%;
}

/* 
    Navigation toggle button.
*/
.navbar-toggle {
    border-radius: 0;
    margin-right: 29px;
}
.navbar-toggle .icon-bar {
    height: 4px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}
.navbar-default .navbar-toggle:hover .icon-bar {
  background-color: #396d90;
}

/*
    Green bar with phone number.
*/
.navbar-phone {
    background: #458f42;
    font-size: 13px;
    font-weight: 600;
    height: 35px;
    padding-top: 10px;
    text-align: center;
	letter-spacing:2px; 
}
.navbar-phone a {
    color: white;
    font-weight: 600;
}
.navbar-phone a:hover,
.navbar-phone a:active
 {
    color: white;
    text-decoration: none;
}

@media (min-width: 768px) {
    .navbar {
        padding-top: 20px; /*uncomment for std logo*/
        margin-left: 10px;
        margin-right: 10px;
        float: left;
        border-radius: 0;
        width: 260px;
    }
    .navbar > .container {
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-header {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 25px; /* return to 25px for std logo */
        height: auto;
        float: none;
    }
    .navbar-brand {
        height: auto;
        width: 140px; /* return to 140px for std logo */
        float: none;
    }
    .navbar-phone {
        margin: 0 0;
    }
}

/* 
    Navigation menu
*/
.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}
.navbar-nav, .dropdown-menu {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
    /*font-weight: 300;*/
    letter-spacing: 2px;
    text-transform: uppercase;
}
.navbar-nav > li {
    border-bottom: 1px solid #f7f1f1;
}
.navbar-nav .dropdown-menu > li {
    border-bottom:1px solid #5b8fb2;
}

.navbar-nav > li a,
.navbar-nav .open .dropdown-menu > li a {
    font-weight: inherit;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 25px;
    padding-right: 25px;
}
/** For dropdown caret **/
.navbar-nav > li.dropdown > a {
    display: inline-block;
}
.navbar-nav > li.dropdown > a {
    width: calc(100% - 50px);
}
.navbar-nav > li > a.dropdown-toggle {
    float: right;
    width: 50px;
    z-index: 10;
}

@media (min-width: 768px) {
    .navbar-nav > li.dropdown > a {
        display: block;
        width: auto;
    }
}

.navbar-default .navbar-nav > li > a:hover,
/*.navbar-default .navbar-nav > li > a:focus,*/
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover /*,
.navbar-default .navbar-nav > .active > a:focus */{
    background-color: #f7f1f1;
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #2c5e7c;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: #f7f1f1;
    color: #2c5e7c;
}
.navbar-default .navbar-nav .dropdown-menu > li > a,
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    background-color: #6799be;
    color: #fff;
}
.navbar-default .navbar-nav .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .dropdown-menu > li > a:focus,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    background-color: #f7f1f1;
    color: #666;
}

.navbar-nav > li > .dropdown-menu {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


@media (min-width: 768px) {
    #wrapper {
        position: relative;
        padding-top: 15px;
        padding-bottom: 20px;
    }
    .navbar {
        position: absolute;
        float: left;
        top: 0;
        bottom: 0;
    }
    .navbar-nav {
        width: 100%;
    }
    .navbar-nav > li {
        float: none;
    }
    
    .navbar-default .navbar-nav > li:hover, 
    .navbar-default .navbar-nav > li.active,
    .navbar-default .navbar-nav .dropdown-menu > li:hover,
    .navbar-default .navbar-nav .dropdown-menu > li.active
     {
        border-right: 4px solid #3a6f8f;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 0px;
        left: 260px;
        min-width: 260px;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none;
    }
}

/*
    Social media buttons
*/
ul.social-buttons {
    margin: 0 25px;
    padding: 0;
    font-size: 0; /* remove space between buttons */
    list-style-type: none;
}
ul.social-buttons li {
    display: inline;
    margin-left: 12px;
}
ul.social-buttons li:first-child {
    margin-left: 0;
}

.btn-social {
    width: 36px;
    height: 36px;
    padding: 8px 0;
    color: #2c5e7c;
    background-color: #f7f1f1;
    vertical-align: middle;
}
.btn-social:hover,
.btn-social:focus {
    color: #39913c;
}

.facebook {
    background-image: url("../img/fb-big.png");
}

/*  
    Announcement banner: This shows at the top of the page.
*/

.alert-banner {
    background-color: #f7f1f1;
    font-weight: 500;
    margin-top: 0px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;

    /* Use to vertically align icon with content, but not needed. */
    /*
    display: flex;
    align-items: center;
    */
}

    .alert-banner.beige {
        background-color: #f7f1f1;
    }
    .alert-banner.green {
        background-color: #458f42;
        color: #fff;
    }

    .alert-banner.orange {
        background-color: #f5841f;
        color: #fff;
    }

    .alert-banner > .icon {
        margin-right: 16px;
    }

    .alert-banner p {
        margin-bottom: 8px;
    }

    .alert-banner > * {
        display: table;
        margin-top: auto;
        margin-bottom: auto;
    }

.alert-banner .message > :last-child {
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    .alert-banner {
        margin-bottom: 15px;
        border-radius: 8px;
    }
}

/** ==========================================================================
    Main content area
*** ========================================================================== */

    /*
    Breadcrumbs area.
*/
    #page-top {
        padding-top: 30px;
        padding-bottom: 5px;
    }

    .breadcrumb {
        background-color: transparent;
        border-radius: 0;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    ul.breadcrumb {
        margin: 0;
        padding: 0;
    }

    main .breadcrumb li,
    main .breadcrumb a {
        color: #386c8b;
        /* undo default main li bullet settings */
        background-image: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        main .breadcrumb a:hover {
            color: #fff;
            text-decoration: none;
        }

    /*change breadcrumb separator to raquo symbol*/
    .breadcrumb > li + li:before {
        content: "\003E";
        color: inherit;
    }

    /*
    Page header area.
*/
    main header {
        background-color: #3a6f8f;
        color: #fff;
        margin-left: -15px;
        margin-right: -15px;
    }

        main header h1 {
            color: #fff;
            font-size: 26px;
            line-height: 1.4;
            font-weight: 100;
            text-align: center;
            margin-top: 0;
            margin-bottom: 0;
            padding-top: 16px;
            padding-bottom: 16px;
        }

        main header .banner img {
            max-width: 100%;
        }

    /*
    Main content area.
*/
    #content-wrapper {
        background-color: #fff;
        /*border-bottom: 4px solid #3a6f8f;*/
        position: relative;
        min-height: 500px;
        /*    padding-top: 35px;
    padding-bottom: 35px;*/
    }

    .row.wide-gutter > [class*="col-"] {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row.narrow-gutter > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .main-content {
        padding-top: 35px;
        padding-bottom: 35px;
    }

        .main-content > :first-child,
        .main-content > section:first-child :first-child {
            margin-top: 0 !important;
        }

    /*
    Sidebar
*/
    #content-wrapper .sidebar {
        background-color: #f9fbfd;
        border-top: 1px solid #c7c7c7;
        /*    padding-top: 35px;
    padding-bottom: 20px;*/
    }

    .sidebar {
        padding-top: 35px;
        padding-bottom: 35px;
    }

        .sidebar section {
            padding-bottom: 20px;
        }

            .sidebar > :first-child,
            .sidebar section > :first-child {
                margin-top: 0 !important;
            }

    .sidebar {
        font-size: 14px;
        /*font-weight: 400;*/
    }

        .sidebar p {
            margin-bottom: 12px;
        }

    main .sidebar h1, main .sidebar .h1 {
        font-size: 24px;
        color: #5386a8;
        margin-bottom: 12px;
    }

    main .sidebar h2, main .sidebar .h2,
    main .sidebar section h1 {
        font-size: 18px;
        color: #5386a8;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    main .sidebar section h2 {
        font-size: 17px;
        color: #5386a8;
        margin-top: 18px;
    }

    main .sidebar h3, main .sidebar .h3 {
        font-size: 17px;
        color: #545454;
    }

    .sidebar .testimonial-openquote {
        display: inline-block;
        vertical-align: top;
        position: relative;
        left: 0px;
        top: -22px;
        width: 26px;
        font-size: 70px;
        color: #b9b9b9;
    }

    .sidebar .testimonial {
        display: inline-block;
        line-height: 1.6;
        padding-left: 0px;
        padding-right: 30px;
        width: calc(100% - 30px);
    }

        .sidebar .testimonial *:first-child:before {
            content: none; /* removes opening quote that is normally added to testimonials. */
        }
        /*
.sidebar .testimonial *:first-child:before {
    display: block;
    content: none; /* removes opening quote that is normally added to testimonials.
    position: absolute;
    left: 20px;
    top: 6px;
    font-size: 70px;
    color: #b9b9b9;
}*/
        .sidebar .testimonial *:last-child:after {
            font-size: 70px;
            vertical-align: -35px;
            line-height: 0;
            padding-left: 4px;
            color: #b9b9b9;
        }

    .sidebar .byline {
        padding-left: 40px;
        padding-right: 20px;
        font-size: 12px;
        font-style: normal;
        text-align: right;
    }


    @media (min-width: 768px) {
        main {
            margin-left: 285px;
            margin-right: 15px;
            max-width: 960px;
        }

            main header h1 {
                padding-left: 35px;
                padding-right: 35px;
                font-size: 32px;
                text-align: left;
            }

            main header .banner {
                overflow: hidden;
            }

                main header .banner img {
                    max-width: none;
                }

        #content-wrapper {
            border-bottom: 4px solid #3a6f8f;
        }
    }

    @media (min-width: 992px) {
        /* Absolute positioning forces column to extend all the down to the bottom of the container. Wrapper must be positioned relative. */
        #content-wrapper {
            min-height: 780px;
        }

            #content-wrapper .sidebar {
                border-top: none;
                position: absolute;
                top: 0;
                bottom: 0;
                right: 0;
            }
    }

    /** ==========================================================================
    Footer area
*** ========================================================================== */

    #footer-wrapper {
        background-color: #f7f1f1;
        font-size: 14px;
    }

        #footer-wrapper .footer-left {
            padding: 40px 22px;
            width: 100%;
            background-color: #458f42;
        }

    .footer-left {
        color: #fff;
        /*    text-align: center;*/
    }

        .footer-left .contact {
            text-align: center;
            /*    width: 216px;
    margin-left: auto;
    margin-right: auto;*/
        }

    /*.footer-left .copyright {
    width: 216px;
    margin-left: auto;
    margin-right: auto;
}*/
    .copyright {
        text-align: center;
        font-size: 10px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .footer-left a {
        color: #fff;
        font-weight: normal;
    }

    #footer-wrapper .footer-main {
        padding: 40px 22px 0 22px;
    }

    .footer-main {
        color: #768288;
    }

        .footer-main a {
            color: #768288;
        }

            .footer-main a:hover {
                color: #458f42;
                text-decoration: none;
            }

        .footer-main ul {
            padding-left: 0;
        }

        .footer-main h2 {
            text-align: center;
        }

            .footer-main h2 a {
                color: #3a6f8f;
            }

    #footer-wrapper h2, #footer-wrapper .h2 {
        font-size: 14px;
        font-weight: 100;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 0;
    }

    @media (min-width: 768px) {
        #footer-wrapper {
            padding-left: 10px;
            padding-right: 15px;
            height: 286px;
        }

            #footer-wrapper .footer-left {
                width: 260px;
                line-height: 20px;
            }

            #footer-wrapper .footer-main {
                /*margin-left: 260px;*/
                width: calc(100% - 260px);
                max-width: 975px;
                float: left;
            }

        .footer-main ul {
            list-style-type: none;
        }

        .footer-main li {
            margin-bottom: 8px;
        }
    }

    @media (min-width: 1200px) {
        .footer-main h2 {
            text-align: left;
        }
    }

    /** ==========================================================================
    News and Press Releases
*** ========================================================================== */

    main .article-list article h1 {
        font-size: 24px;
        margin-top: 0;
    }
    /*main section .article-list article h1 {
    font-size: 18px;
    margin-top: 0;
}*/
    main .article-list-item {
        margin-bottom: 45px;
    }

    .pub-info {
        background-color: #ebe5e5;
        padding: 5px 10px;
        margin-bottom: 15px;
        font-size: 13px;
        color: #7f7f7f;
        letter-spacing: 0.1em;
    }

    .lead {
        font-size: 18px;
    }

    @media (min-width: 768px) {
        .lead {
            font-size: 20px;
        }
    }

    /*
    Leadership page
*/
    .leader-position {
        color: #5386a8;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.1em;
        margin-top: -10px;
        margin-bottom: 15px;
    }

    img.headshot {
        margin-right: 15px;
        margin-bottom: 10px;
    }

    /*
    Our Customers - Testimonials page
*/
    .testimonial *:first-child:before {
        content: "\201c";
    }

    .testimonial *:last-child:after {
        content: "\201d";
    }

    .byline {
        font-size: 14px;
        font-style: italic;
    }

        .byline:before {
            content: "\2014 ";
        }

    /*
    Contact Us
*/
    .offices hr {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .offices h2 {
        margin-top: 12px !important;
    }

    .offices table {
        width: 100%;
    }

    .offices td {
        width: 50%;
        padding-bottom: 6px;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.1em;
        color: #838383;
    }


    /** ==========================================================================
    Home Page
*** ========================================================================== */
    #home {
    }

        #home .middle-band {
            background-color: #5385a7;
            margin-top: 0px;
            padding-top: 0px;
            padding-bottom: 20px;
            margin-bottom: -20px;
            margin-left: -1000px;
            padding-left: 1000px;
            margin-right: -1000px;
            padding-right: 1000px;
        }

            #home .middle-band p {
                color: #fff;
                /*font-weight: 200;*/
            }

            #home .middle-band a {
                color: #bddcf1;
            }

                #home .middle-band a:hover {
                    color: #fff;
                    text-decoration: none;
                }

            #home .middle-band h2,
            #home .middle-band .sidebar h2 {
                font-size: 24px;
                color: #fff;
                font-weight: 100;
                text-transform: uppercase;
                margin-bottom: 16px;
                border-bottom: none;
            }

            #home .middle-band h3 {
                color: #fff;
            }

        #home .sidebar {
            border-top: 1px solid #a8d1ec;
            font-weight: inherit;
        }

        #home .article-list-item {
            margin-bottom: 24px;
        }

            #home .article-list-item .thumbnail {
                float: left;
                border: none;
                border-radius: 0;
                padding-top: 12px;
                padding-bottom: 12px;
                height: 40px;
                width: 40px;
                font-size: 14px;
                background-color: #39913c;
                color: #fff;
                text-align: center;
            }

            #home .article-list-item .item-body {
                margin-left: 55px;
            }

            #home .article-list-item h3 {
                margin-top: 0;
            }

    @media (min-width: 768px) {
        #home .middle-band {
            margin-top: 20px;
        }

        #home .sidebar {
            border-top: none;
        }
    }

    /*
    Carousel
*/
    #home-carousel .carousel-caption {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
        padding-bottom: 45px;
        background-color: #fff;
        color: #545454;
        text-shadow: none;
        text-align: left;
    }

    #home-carousel .carousel-indicators {
        bottom: 0px;
    }

        #home-carousel .carousel-indicators li {
            border-color: #3a6f8f;
            margin-left: 3px;
            margin-right: 3px;
        }

            #home-carousel .carousel-indicators li.active {
                background-color: #3a6f8f;
            }

    #home-carousel .carousel-caption p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    #home-carousel .carousel-caption h2 {
        color: #5386a8;
        margin-top: 0px;
        ;
        margin-bottom: 12px;
    }

    @media (min-width: 768px) {
        #home-carousel {
            border-bottom: 5px solid #3a6f8f;
        }

            #home-carousel .carousel-caption {
                position: absolute;
                right: 30px;
                top: 40px;
                width: 360px;
                padding-bottom: 30px;
                background-color: rgba(255, 255, 255, 0.8);
            }

                #home-carousel .carousel-caption.left {
                    left: 30px;
                    right: auto
                }

            #home-carousel .carousel-indicators {
                width: auto;
                left: auto;
                right: 20px;
                margin-left: 0;
            }

                #home-carousel .carousel-indicators li {
                    border-color: #3a6f8f;
                    background-color: #3a6f8f;
                }

                    #home-carousel .carousel-indicators li.active {
                        border-color: #fff;
                        background-color: #fff;
                    }
    }


    /** ==========================================================================
    Price Finder
*** ========================================================================== */
    #supplier-prices .term-col {
        text-align: center;
    }

    .low-price {
        color: #458f42;
        font-weight: 500;
        letter-spacing: 1px;
    }

        .low-price span {
            padding: 2px 8px 1px 8px;
            border: 2px solid #ddd;
        }

    .featured-price-box {
        padding: 12px 20px 20px 20px;
        margin-bottom: 20px;
        border: 1px solid #d6d6d6;
    }

        .featured-price-box p {
            margin-bottom: 8px;
        }

    .featured-price {
        font-size: 24px;
        font-weight: 600;
        color: #458f42;
    }

    /*
    Logo slider/carousel.
*/
    .slider-card {
        background-color: #F0F5FA;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .slider-card__textblock {
        margin-left: 20px;
        margin-right: 20px;
    }

    .logo-slider {
        background-color: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
        display: none;
    }

        .logo-slider.slick-initalized {
            display: block;
        }

    /* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */