/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 55px;
}

.footer {
    padding-bottom: 20px;
}

/* Breadcrumbs Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

    /* Display list items side by side */
    ul.breadcrumb li {
        display: inline;
        font-size: 18px;
    }

        /* Add a slash symbol (/) before/behind each list item */
        ul.breadcrumb li + li:before {
            padding: 8px;
            color: black;
            content: "/\00a0";
        }

    /* Add a color to all links inside the list */
    ul.breadcrumb li {
        font-weight: bold
    }

        /* Add a color to all links inside the list */
        ul.breadcrumb li a {
            color: #0275d8;
            text-decoration: none;
        }

            /* Add a color on mouse-over */
            ul.breadcrumb li a:hover {
                color: #01447e;
                text-decoration: underline;
            }


/* Google Custom Search */
.gsc-control-cse .gsc-table-result {
    font-family: inherit;
}

.gsc-control-cse .gsc-input-box {
    height: inherit;
}

input.gsc-input,
.gsc-input-box,
.gsc-input-box-hover,
.gsc-input-box-focus,
.gsc-search-button, input.gsc-search-button-v2 {
    box-sizing: content-box;
    line-height: normal;
    margin-top: 0px;
}


/* When columns stack on small screens, add vertical space between */
@media (max-width: 768px) {

    [class*="col-"] {
        margin-bottom: 5px;
    }
}

/* FAQs */
.faq {
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D6EAF8;
}

    .faq .q {
        font-weight: bold;
        color: navy;
        font-size: 110%;
    }

    .faq .a {
        padding-top: 5px;
    }

/* Anchors # - Take fixed size header into account when jumping to an anchort */
:target:before {
    content: "";
    display: block;
    height: 60px; /* fixed header height*/
    margin: -60px 0 0; /* negative fixed header height */
}


/* Resize videos based on screen size */
@media (max-width: 767px) {

    [class="vid"] {
        width: 330px;
        height: 215px;
    }
}
@media (min-width: 768px) {

    [class="vid"] {
        width: 640px;
        height: 360px;
    }
}