#RoundedCornerExample {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px
}

#ShadowExample {
    -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, .3);
    -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, .3);
    box-shadow: 5px 5px 6px rgba(0, 0, 0, .3)
}

#TransitionExample {
    -webkit-transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -ms-transition: all .5s ease-in;
    transition: all .5s ease-in
}

#TransitionExample:hover {
    opacity: 0
}

#GradientExample {
    background-color: #633;
    background-image: -webkit-linear-gradient(left, #633, #333);
    background-image: -moz-linear-gradient(left, #633, #333);
    background-image: -o-linear-gradient(left, #633, #333);
    background-image: -ms-linear-gradient(left, #633, #333);
    background-image: linear-gradient(left, #633, #333)
}

#QuickGradientExample {
    background-color: #bada55;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2))
}

.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%)
    }

    50% {
        transform: translateY(8%)
    }

    65% {
        transform: translateY(-4%)
    }

    80% {
        transform: translateY(4%)
    }

    95% {
        transform: translateY(-2%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%)
    }

    50% {
        -webkit-transform: translateY(8%)
    }

    65% {
        -webkit-transform: translateY(-4%)
    }

    80% {
        -webkit-transform: translateY(4%)
    }

    95% {
        -webkit-transform: translateY(-2%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes slideUp {
    0% {
        transform: translateY(100%)
    }

    50% {
        transform: translateY(-8%)
    }

    65% {
        transform: translateY(4%)
    }

    80% {
        transform: translateY(-4%)
    }

    95% {
        transform: translateY(2%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%)
    }

    50% {
        -webkit-transform: translateY(-8%)
    }

    65% {
        -webkit-transform: translateY(4%)
    }

    80% {
        -webkit-transform: translateY(-4%)
    }

    95% {
        -webkit-transform: translateY(2%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.slideLeft {
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes slideLeft {
    0% {
        transform: translateX(150%)
    }

    50% {
        transform: translateX(-8%)
    }

    65% {
        transform: translateX(4%)
    }

    80% {
        transform: translateX(-4%)
    }

    95% {
        transform: translateX(2%)
    }

    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%)
    }

    50% {
        -webkit-transform: translateX(-8%)
    }

    65% {
        -webkit-transform: translateX(4%)
    }

    80% {
        -webkit-transform: translateX(-4%)
    }

    95% {
        -webkit-transform: translateX(2%)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

.slideRight {
    animation-name: slideRight;
    -webkit-animation-name: slideRight;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes slideRight {
    0% {
        transform: translateX(-150%)
    }

    50% {
        transform: translateX(8%)
    }

    65% {
        transform: translateX(-4%)
    }

    80% {
        transform: translateX(4%)
    }

    95% {
        transform: translateX(-2%)
    }

    100% {
        transform: translateX(0)
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%)
    }

    50% {
        -webkit-transform: translateX(8%)
    }

    65% {
        -webkit-transform: translateX(-4%)
    }

    80% {
        -webkit-transform: translateX(4%)
    }

    95% {
        -webkit-transform: translateX(-2%)
    }

    100% {
        -webkit-transform: translateX(0)
    }
}

.slideExpandUp {
    animation-name: slideExpandUp;
    -webkit-animation-name: slideExpandUp;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease -out;
    visibility: visible !important
}

@keyframes slideExpandUp {
    0% {
        transform: translateY(100%) scaleX(.5)
    }

    30% {
        transform: translateY(-8%) scaleX(.5)
    }

    40% {
        transform: translateY(2%) scaleX(.5)
    }

    50% {
        transform: translateY(0) scaleX(1.1)
    }

    60% {
        transform: translateY(0) scaleX(.9)
    }

    70% {
        transform: translateY(0) scaleX(1.05)
    }

    80% {
        transform: translateY(0) scaleX(.95)
    }

    90% {
        transform: translateY(0) scaleX(1.02)
    }

    100% {
        transform: translateY(0) scaleX(1)
    }
}

@-webkit-keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(.5)
    }

    30% {
        -webkit-transform: translateY(-8%) scaleX(.5)
    }

    40% {
        -webkit-transform: translateY(2%) scaleX(.5)
    }

    50% {
        -webkit-transform: translateY(0) scaleX(1.1)
    }

    60% {
        -webkit-transform: translateY(0) scaleX(.9)
    }

    70% {
        -webkit-transform: translateY(0) scaleX(1.05)
    }

    80% {
        -webkit-transform: translateY(0) scaleX(.95)
    }

    90% {
        -webkit-transform: translateY(0) scaleX(1.02)
    }

    100% {
        -webkit-transform: translateY(0) scaleX(1)
    }
}

.expandUp {
    animation-name: expandUp;
    -webkit-animation-name: expandUp;
    animation-duration: .7s;
    -webkit-animation-duration: .7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important
}

@keyframes expandUp {
    0% {
        transform: translateY(100%) scale(.6) scaleY(.5)
    }

    60% {
        transform: translateY(-7%) scaleY(1.12)
    }

    75% {
        transform: translateY(3%)
    }

    100% {
        transform: translateY(0) scale(1) scaleY(1)
    }
}

@-webkit-keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(.6) scaleY(.5)
    }

    60% {
        -webkit-transform: translateY(-7%) scaleY(1.12)
    }

    75% {
        -webkit-transform: translateY(3%)
    }

    100% {
        -webkit-transform: translateY(0) scale(1) scaleY(1)
    }
}

.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important
}

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0
    }

    60% {
        transform: scale(1.1)
    }

    80% {
        transform: scale(.9);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0
    }

    60% {
        -webkit-transform: scale(1.1)
    }

    80% {
        -webkit-transform: scale(.9);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

.expandOpen {
    animation-name: expandOpen;
    -webkit-animation-name: expandOpen;
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important
}

@keyframes expandOpen {
    0% {
        transform: scale(1.8)
    }

    50% {
        transform: scale(.95)
    }

    80% {
        transform: scale(1.05)
    }

    90% {
        transform: scale(.98)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8)
    }

    50% {
        -webkit-transform: scale(.95)
    }

    80% {
        -webkit-transform: scale(1.05)
    }

    90% {
        -webkit-transform: scale(.98)
    }

    100% {
        -webkit-transform: scale(1)
    }
}

.bigEntrance {
    animation-name: bigEntrance;
    -webkit-animation-name: bigEntrance;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important
}

@keyframes bigEntrance {
    0% {
        transform: scale(.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: .2
    }

    30% {
        transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1
    }

    45% {
        transform: scale(.98) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    60% {
        transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0);
        opacity: 1
    }

    75% {
        transform: scale(.99) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    90% {
        transform: scale(1.01) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }

    100% {
        transform: scale(1) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: .2
    }

    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1
    }

    45% {
        -webkit-transform: scale(.98) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0);
        opacity: 1
    }

    75% {
        -webkit-transform: scale(.99) rotate(1deg) translateX(0) translateY(0);
        opacity: 1
    }

    90% {
        -webkit-transform: scale(1.01) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1) rotate(0) translateX(0) translateY(0);
        opacity: 1
    }
}

.hatch {
    animation-name: hatch;
    -webkit-animation-name: hatch;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    visibility: visible !important
}

@keyframes hatch {
    0% {
        transform: rotate(0) scaleY(.6)
    }

    20% {
        transform: rotate(-2deg) scaleY(1.05)
    }

    35% {
        transform: rotate(2deg) scaleY(1)
    }

    50% {
        transform: rotate(-2deg)
    }

    65% {
        transform: rotate(1deg)
    }

    80% {
        transform: rotate(-1deg)
    }

    100% {
        transform: rotate(0)
    }
}

@-webkit-keyframes hatch {
    0% {
        -webkit-transform: rotate(0) scaleY(.6)
    }

    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05)
    }

    35% {
        -webkit-transform: rotate(2deg) scaleY(1)
    }

    50% {
        -webkit-transform: rotate(-2deg)
    }

    65% {
        -webkit-transform: rotate(1deg)
    }

    80% {
        -webkit-transform: rotate(-1deg)
    }

    100% {
        -webkit-transform: rotate(0)
    }
}

.bounce {
    animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

@keyframes bounce {
    0% {
        transform: translateY(0) scaleY(.6)
    }

    60% {
        transform: translateY(-100%) scaleY(1.1)
    }

    70% {
        transform: translateY(0) scaleY(.95) scaleX(1.05)
    }

    80% {
        transform: translateY(0) scaleY(1.05) scaleX(1)
    }

    90% {
        transform: translateY(0) scaleY(.95) scaleX(1)
    }

    100% {
        transform: translateY(0) scaleY(1) scaleX(1)
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0) scaleY(.6)
    }

    60% {
        -webkit-transform: translateY(-100%) scaleY(1.1)
    }

    70% {
        -webkit-transform: translateY(0) scaleY(.95) scaleX(1.05)
    }

    80% {
        -webkit-transform: translateY(0) scaleY(1.05) scaleX(1)
    }

    90% {
        -webkit-transform: translateY(0) scaleY(.95) scaleX(1)
    }

    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1)
    }
}

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: .7
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(.9);
        opacity: .7
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.95);
        opacity: .7
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.95);
        opacity: .7
    }
}

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes floating {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(8%)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

.tossing {
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@keyframes tossing {
    0% {
        transform: rotate(-4deg)
    }

    50% {
        transform: rotate(4deg)
    }

    100% {
        transform: rotate(-4deg)
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg)
    }

    50% {
        -webkit-transform: rotate(4deg)
    }

    100% {
        -webkit-transform: rotate(-4deg)
    }
}

.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

@keyframes pullUp {
    0% {
        transform: scaleY(.1)
    }

    40% {
        transform: scaleY(1.02)
    }

    60% {
        transform: scaleY(.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(1)
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(.1)
    }

    40% {
        -webkit-transform: scaleY(1.02)
    }

    60% {
        -webkit-transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(1)
    }
}

.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0
}

@keyframes pullDown {
    0% {
        transform: scaleY(.1)
    }

    40% {
        transform: scaleY(1.02)
    }

    60% {
        transform: scaleY(.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(.98)
    }

    80% {
        transform: scaleY(1.01)
    }

    100% {
        transform: scaleY(1)
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(.1)
    }

    40% {
        -webkit-transform: scaleY(1.02)
    }

    60% {
        -webkit-transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.01)
    }

    100% {
        -webkit-transform: scaleY(1)
    }
}

.stretchLeft {
    animation-name: stretchLeft;
    -webkit-animation-name: stretchLeft;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0
}

@keyframes stretchLeft {
    0% {
        transform: scaleX(.3)
    }

    40% {
        transform: scaleX(1.02)
    }

    60% {
        transform: scaleX(.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(.3)
    }

    40% {
        -webkit-transform: scaleX(1.02)
    }

    60% {
        -webkit-transform: scaleX(.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(1)
    }
}

.stretchRight {
    animation-name: stretchRight;
    -webkit-animation-name: stretchRight;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0
}

@keyframes stretchRight {
    0% {
        transform: scaleX(.3)
    }

    40% {
        transform: scaleX(1.02)
    }

    60% {
        transform: scaleX(.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(.98)
    }

    80% {
        transform: scaleX(1.01)
    }

    100% {
        transform: scaleX(1)
    }
}

@-webkit-keyframes stretchRight {
    0% {
        -webkit-transform: scaleX(.3)
    }

    40% {
        -webkit-transform: scaleX(1.02)
    }

    60% {
        -webkit-transform: scaleX(.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(.98)
    }

    80% {
        -webkit-transform: scaleX(1.01)
    }

    100% {
        -webkit-transform: scaleX(1)
    }
}

#breadcrumb {
    height: 25px
}

body.option1 {
    overflow-y: hidden
}

body.option1 label {
    display: none
}

body.option1 .controls input {
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    border: 0;
    padding: 0 10px;
    font-size: 20px
}

body.option1 .controls input[type=submit] {
    background-color: #fca102;
    color: #003776;
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'Helvetica LT W01 Black';
    top: 40px;
    position: relative
}

body.option1 .controls select {
    height: 60px !important;
    background: #fff;
    width: 100%;
    height: auto;
    color: #333;
    border: 1px solid gray;
    cursor: pointer;
    outline: 0;
    position: relative;
    border-radius: 0;
    margin: 15 auto;
    padding: 10px 10px 10px 30px;
    vertical-align: bottom;
    font-size: 20px
}

#newsletterModal {
    background-image: url(/themes/manchin/images/newsletterbackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%
}

#newsletterModal .modal-backdrop.in {
    background-color: rgba(6, 38, 83, .8) !important;
    background-position: center center;
    background-size: cover;
    opacity: 1
}

#newsletterModal .modal-dialog {
    background: 0 0;
    border: 0;
    width: 85%;
    margin: 5% auto !important
}

#newsletterModal .modal-dialog .modal-content {
    box-shadow: none;
    background-color: transparent !important;
    border: 0
}

#newsletterModal .modal-dialog .modal-content .modal-header {
    border: 0;
    border-bottom: none !important;
    padding: 0 30px !important
}

#newsletterModal .modal-dialog .modal-content .modal-header .close {
    color: #fff !important;
    opacity: 1;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    font-family: 'Helvetica LT W01 Light', sans-serif
}

#newsletterModal .modal-dialog .modal-content .modal-header .close .fa-times {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-color: #fff;
    color: #003776;
    margin-left: 7px;
    font-size: 22px;
    display: inline-block
}

#newsletterModal .modal-dialog .modal-content .modal-body {
    background: 0 0;
    margin-top: 3%
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container {
    max-width: 620px;
    margin: 0 auto
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container h2 {
    color: #fff;
    font-family: 'Helvetica LT W01 Black';
    text-transform: capitalize;
    font-size: 56px;
    margin-bottom: 50px;
    text-align: center
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container h2 .toptext {
    font-size: 34px;
    display: block;
    margin-bottom: 10px
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container .newsletterimage {
    margin-bottom: 30px
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container .newsletterimage img {
    width: auto
}

#newsletterModal .modal-dialog .modal-content .modal-body .newsletter-container input {
    font-family: 'Helvetica LT W01 Roman', sans-serif !important
}

#newsletterModal .modal-dialog .modal-content .modal-body iframe {
    border: 0;
    width: 100%;
    overflow-y: hidden;
    height: 450px
}

#newsletterModal .modal-dialog .modal-content .modal-body iframe html {
    overflow-y: hidden
}

#newsletterModal .modal-dialog .modal-content .modal-body iframe input {
    width: 100%;
    font-family: 'Helvetica LT W01 Roman', sans-serif !important
}

.alert {
    padding: 0
}

.alert .alertIcn {
    margin-right: 8px
}

.alert .alertIcn .glyphicon {
    top: 4px
}

.alert a {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    background-color: #fca102;
    color: #fff;
    margin-top: -1px;
    margin-bottom: -1px
}

.alert a:hover {
    background-color: #d59017;
    color: #fff
}

#ContactModal .fade.in,
#NavMobileModal .fade.in,
#SearchModal .fade.in {
    background-color: #003776
}

#ContactModal .modal-dialog .modal-content .modal-body a,
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a {
    color: #fff
}

#ContactModal .modal-dialog .modal-content .modal-body a:hover,
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover {
    text-decoration: underline
}

#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button,
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
    background-color: #fca102
}

#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
    background-color: #976001
}

body#home #header {
    height: 55px;
    background-color: #fff
}

body#home #header .right .social-list {
    padding: 13px 0
}

body#home #header .right .social-list li .newsletter {
    color: #252525;
    border: 1px solid #252525
}

body#home #header .right .social-list li .newsletter:hover {
    background-color: #252525;
    color: #fff;
    cursor: pointer
}

body#home #header .right .social-list li a {
    font-size: 16px;
    color: #252525
}

body#home #header .right .social-list li a .fa {
    background-color: #252525;
    height: 28px;
    width: 28px;
    padding: 5px;
    color: #fff;
    border-radius: 15px;
    border: 1px solid #252525
}

body#home #header .right .social-list li a .fa-facebook {
    padding-left: 7px
}

body#home #header .right .social-list li a:hover .fa {
    cursor: pointer;
    background-color: #fff;
    color: #252525;
    border: 1px solid #252525
}

body#home #header .right .social-list li:first-child {
    padding-right: 15px
}

body #header {
    height: 70px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #003776
}

body #header a.logo-hold {
    width: 330px;
    position: relative;
    display: block;
    float: left;
    padding: 17px 0;
    margin-right: 50px
}

@media (max-width:1030px) {
    body #header a.logo-hold {
        margin-right: 10px
    }
}

body #header a.logo-hold img {
    width: 100%
}

body #header .nav-hold {
    margin-left: 0;
    height: 55px
}

body #header .right {
    float: right
}

body #header .right .social-list {
    padding: 20px 0;
    margin-bottom: 0;
    margin-left: 0
}

@media (max-width:636px) {
    body #header .right .social-list {
        display: none
    }
}

body #header .right .social-list li {
    padding-left: 0;
    padding-right: 0
}

body #header .right .social-list li .newsletter {
    color: #fff;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px
}

body #header .right .social-list li .newsletter:hover {
    background-color: #fff;
    color: #252525;
    cursor: pointer
}

body #header .right .social-list li a {
    font-size: 16px;
    color: #003776
}

body #header .right .social-list li a .fa {
    border: 1px solid #fff;
    background-color: #fff;
    height: 28px;
    width: 28px;
    padding: 5px;
    border-radius: 15px
}

body #header .right .social-list li a .fa-facebook {
    padding-left: 7px
}

body #header .right .social-list li a:hover .fa {
    cursor: pointer;
    background-color: #003776;
    color: #fff
}

body #header .right .social-list li:first-child {
    padding-right: 15px
}

@media (max-width:991px) {
    body:not(#home) .nav-hold {
        float: right;
        margin-top: 18px;
        margin-left: 30px
    }
}

@media (max-width:410px) {
    body:not(#home) .nav-hold {
        margin-left: 0
    }
}

@media (max-width:497px) {
    body:not(#home) a.logo-hold {
        width: 230px
    }
}

@media (max-width:410px) {
    body:not(#home) a.logo-hold {
        width: 190px
    }
}

@media (max-width:320px) {
    body:not(#home) a.logo-hold {
        width: 175px
    }
}

li.visible-lg-inline-block {
    display: inline-block !important
}

@media (max-width:1280px) {
    li.visible-lg-inline-block {
        display: none !important
    }
}

li.hidden-lg {
    display: none
}

@media (max-width:1280px) {
    li.hidden-lg {
        display: inline-block !important
    }
}

body .navbar {
    background-color: transparent;
    display: inline-block;
    border: none
}

body .navbar .nav-pills {
    display: inline-block;
    width: auto
}

body .navbar .nav-pills>li {
    border: none;
    width: auto
}

body .navbar .nav-pills>li a {
    color: #252525;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    padding: 24px 15px
}

body .navbar .nav-pills>li .dropdown-menu {
    background-color: #fff
}

body .navbar .nav-pills>li .dropdown-menu li {
    padding: 5px 15px
}

body .navbar .nav-pills>li .dropdown-menu li a {
    color: #252525;
    text-transform: uppercase
}

body .navbar .nav-pills>li .dropdown-menu li a:hover {
    background-color: transparent
}

body .navbar .nav-pills>li .dropdown-menu li:hover {
    background-color: #003776;
    color: #000
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
    color: #fff;
    background-color: transparent
}

body .navbar .nav-pills>li.selected,
body .navbar .nav-pills>li:hover {
    background-color: #062653
}

body .navbar .nav-pills>li.selected a,
body .navbar .nav-pills>li:hover a {
    color: #fca102
}

body .navbar .togglemenu {
    color: #fff;
    font-size: 23px
}

body .navbar .togglemenu .menulabel {
    display: none
}

body .navbar .srchbuttonmodal {
    color: #fff;
    font-size: 21px;
    position: relative
}

body .navbar .srchbutton {
    color: #252525
}

body#home .nav-hold {
    float: left
}

body#home .nav-hold .navbar .nav-pills>li a {
    color: #252525;
    font-size: 22px;
    padding: 12px 15px
}

body#home .nav-hold .navbar .nav-pills>li .dropdown-menu li a:hover {
    background-color: transparent
}

body#home .nav-hold .navbar .srchbutton {
    color: #252525;
    font-size: 18px;
    top: 15px;
    right: -15px
}

#NavMobileModal .modal-dialog {
    margin-top: 40px
}

#NavMobileModal .modal-dialog .modal-content .modal-header {
    border-bottom: 0 !important
}

#NavMobileModal .modal-dialog .modal-content .close {
    color: #fca102 !important;
    opacity: 1 !important
}

#NavMobileModal .modal-dialog .modal-content .modal-body {
    padding: 30px
}

#NavMobileModal .modal-dialog .modal-content .modal-body a {
    color: #000;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li {
    text-align: center
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:last-child {
    border: none
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a {
    color: #fff;
    font-size: 45px
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a:hover {
    text-decoration: underline
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu {
    margin: 0 0 20px 0;
    padding: 0;
    position: relative;
    text-align: center;
    display: block !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    font-size: 18px;
    width: 100%
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a {
    color: #fff
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
    text-decoration: underline
}

#header .nav-hold {
    float: left
}

#header .nav-hold .navbar .nav-pills>li a {
    color: #fff
}

#header .nav-hold .navbar .nav-pills>li .dropdown-menu {
    background-color: #062653;
    border: none;
    top: 100%
}

#header .nav-hold .navbar .nav-pills>li .dropdown-menu li a {
    color: #fff;
    padding: 5px 15px
}

#header .nav-hold .navbar .nav-pills>li .dropdown-menu li:hover {
    background-color: #fca102
}

#header .nav-hold .navbar .nav-pills>li .dropdown-menu li:hover a {
    color: #fff
}

#header .nav-hold .navbar .nav-pills>li:hover a {
    color: #fca102
}

#header .nav-hold .navbar .nav-pills>li.selected a {
    color: #fca102
}

#header .nav-hold .navbar .srchbutton {
    color: #fff;
    top: 25px;
    z-index: 2;
    font-size: 14px
}

#header .nav-hold.right-search-modal .navbar,
#header .nav-hold.right-slide-search .navbar {
    width: auto
}

#header .nav-hold.right-search-modal .nav-pills,
#header .nav-hold.right-slide-search .nav-pills {
    right: 15px;
    position: relative
}

#header .nav-hold.right-search-modal .srchbutton,
#header .nav-hold.right-slide-search .srchbutton {
    right: -2px;
    position: absolute;
    z-index: 2;
}

#header .nav-hold.right-search-modal .togglemenu,
#header .nav-hold.right-slide-search .togglemenu {
    margin-left: 13px
}

#header .nav-hold.right-search-modal #search,
#header .nav-hold.right-slide-search #search {
    width: 0%;
    overflow: hidden;
    position: absolute;
    right: 30px;
    top: 0;
    transition: .3s width ease-in
}

#header .nav-hold.right-search-modal #search.showme,
#header .nav-hold.right-slide-search #search.showme {
    width: 93%
}

#header .nav-hold.right-search-modal #search #sitesearch,
#header .nav-hold.right-slide-search #search #sitesearch {
    padding: 12px 0
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field,
#header .nav-hold.right-slide-search #search #sitesearch #search-field {
    position: absolute;
    width: 100%;
    border: none;
    background-color: #003776;
    color: #fff;
    border-bottom: 3px solid #fff
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder {
    color: #fff
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder {
    color: #fff
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder {
    color: #fff
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder {
    color: #fff
}

#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus,
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus {
    outline: 0
}

#header .nav-hold.right-search-modal #search #sitesearch button,
#header .nav-hold.right-slide-search #search #sitesearch button {
    background-color: #003776;
    color: #fff;
    border: none;
    padding: 3px 6px;
    margin-left: -5px;
    position: absolute;
    right: 0;
    font-size: 13px
}

#header .nav-hold.right-search-modal .srchbutton {
    display: none !important
}

#header .nav-hold.right-search-modal #search {
    display: none
}

#header .nav-hold.right-search-modal .srchbuttonmodal {
    display: inline-block !important;
    font-size: inherit;
    top: -14px
}

#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
    float: right
}

#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
    display: inline-block !important;
    margin-left: 13px;
    margin-top: 1px
}

#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
    display: inline-block !important
}

#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
    display: none !important
}

#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
    display: none
}

#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
    display: none
}

#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
    display: none
}

#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
    float: left
}

#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
    float: left;
    margin-left: 0;
    margin-right: 13px
}

#header .nav-hold.hamburger-only .srchbuttonmodal {
    display: none !important
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field {
    background-color: #fff;
    color: #252525;
    border-bottom: 3px solid #252525
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder {
    color: #252525
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder {
    color: #252525
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder {
    color: #252525
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder {
    color: #252525
}

body#home #header .nav-hold.right-slide-search #search #sitesearch #search-field:focus {
    outline: 0
}

body#home #header .nav-hold.right-search-modal #search #sitesearch button,
body#home #header .nav-hold.right-slide-search #search #sitesearch button {
    background-color: #fff
}

body#home .navbar .togglemenu {
    color: #252525;
    float: left;
    margin-top: 8px;
    font-size: 28px;
    margin-left: 0 !important
}

body#home .navbar .srchbuttonmodal {
    font-size: 24px;
    top: 9px;
    color: #252525;
    left: 18px
}

#home {
    background-color: #cecece
}

#home .banner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background-image: url(/themes/manchin/images/homebackground.jpg);
    background-size: cover;
    background-attachment: scroll;
    background-color: transparent;
    position: relative;
    background-repeat: no-repeat;
    height: 630px;
    display: table
}

@media (max-width:479px) {
    #home .banner {
        height: 520px
    }
}

#home .banner .backgroundfilter {
    background-color: rgba(6, 38, 83, .8);
    height: 100%
}

#home .banner .backgroundfilter .logo {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 9em auto;
    text-align: center;
    position: relative
}

#home .pressarea {
    padding: 30px 15px;
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: table;
    background-color: #fff
}

#home .pressarea #press .wrap {
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    background-color: #003776;
    min-height: 390px;
    display: table;
    vertical-align: middle;
    width: 100%;
    position: relative
}

@media (max-width:767px) {
    #home .pressarea #press .wrap {
        min-height: auto;
        margin-bottom: 35px
    }
}

#home .pressarea #press .wrap:hover {
    background-color: #000710
}

#home .pressarea #press .wrap .press-title {
    color: #fff;
    margin: 0 auto;
    vertical-align: middle;
    position: relative;
    display: table-cell;
    padding: 35px;
    font-size: 32px
}

@media (max-width:1200px) {
    #home .pressarea #press .wrap .press-title {
        font-size: 26px
    }
}

@media (max-width:991px) {
    #home .pressarea #press .wrap .press-title {
        font-size: 24px
    }
}

@media (max-width:479px) {
    #home .pressarea #press .wrap .press-title {
        font-size: 22px
    }
}

#home .pressarea #press .wrap.with-img {
    background-color: #252525
}

#home .pressarea #press .wrap.with-img .press-title {
    padding: 35px;
    left: 0;
    font-size: 24px;
    position: absolute;
    bottom: 0
}

#home .pressarea #press .wrap.with-img .press-image {
    height: 390px;
    opacity: .2
}

#home .pressarea #press .wrap.with-img:hover {
    cursor: pointer;
    background-color: #0c0c0c
}

#home .pressarea #press .wrap:hover {
    cursor: pointer;
    background-color: #001f43
}

#home #twitterarea {
    display: table;
    background-color: #fff;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    padding: 30px 50px 80px 50px;
    height: 450px
}

@media (max-width:570px) {
    #home #twitterarea {
        padding: 30px 30px 80px 30px;
        height: 390px
    }
}

#home #twitterarea .twitterimage {
    display: table-cell;
    overflow: hidden;
    position: relative;
    vertical-align: middle
}

#home #twitterarea .twitterimage img {
    width: 200px;
    height: 200px;
    display: block;
    padding: 5px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 120px;
    border: 1px solid #252525
}

@media (max-width:1200px) {
    #home #twitterarea .twitterimage img {
        margin: 0
    }
}

@media (max-width:800px) {
    #home #twitterarea .twitterimage img {
        width: 150px;
        height: 150px
    }
}

@media (max-width:479px) {
    #home #twitterarea .twitterimage img {
        width: 120px;
        height: 120px
    }
}

@media (max-width:320px) {
    #home #twitterarea .twitterimage img {
        width: 100px;
        height: 100px
    }
}

#home #twitterarea #twitter {
    display: table-cell;
    width: 70%;
    vertical-align: middle;
    position: relative
}

@media (max-width:991px) {
    #home #twitterarea #twitter {
        width: 63%
    }
}

@media (max-width:800px) {
    #home #twitterarea #twitter {
        width: 66%
    }
}

@media (max-width:650px) {
    #home #twitterarea #twitter {
        width: 59%
    }
}

#home #twitterarea #twitter:before {
    content: "";
    position: absolute;
    top: 8.5em;
    bottom: auto;
    left: -50px;
    border-width: 30px 50px 30px 0;
    border-color: rgba(255, 0, 0, 0) #fca102;
    border-style: solid;
    display: block;
    width: 0
}

@media (max-width:800px) {
    #home #twitterarea #twitter:before {
        border-width: 20px 35px 20px 0;
        left: -35px
    }
}

@media (max-width:479px) {
    #home #twitterarea #twitter:before {
        border-width: 12px 20px 12px 0;
        top: 7.5em;
        left: -20px
    }
}

#home #twitterarea #twitter:after {
    top: 8.5em;
    bottom: auto;
    left: -48px;
    border-width: 30px 50px 30px 0;
    border-color: transparent #fff;
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0
}

@media (max-width:800px) {
    #home #twitterarea #twitter:after {
        border-width: 20px 35px 20px 0;
        left: -33px
    }
}

@media (max-width:479px) {
    #home #twitterarea #twitter:after {
        border-width: 12px 20px 12px 0;
        top: 7.5em;
        left: -18px
    }
}

#home #twitterarea #twitter .item {
    padding-top: 35px;
    border: 1px solid #fca102;
    border-radius: 35px;
    background: #003776;
    overflow: hidden;
    display: inline-block;
    position: relative;
    width: 100%
}

@media (max-width:479px) {
    #home #twitterarea #twitter .item {
        padding-top: 19px
    }
}

@media (max-width:440px) {
    #home #twitterarea #twitter .item {
        padding-top: 10px
    }
}

@media (max-width:320px) {
    #home #twitterarea #twitter .item {
        padding-top: 0
    }
}

#home #twitterarea #twitter .item .tweet {
    background-color: #fff;
    padding: 30px 40px;
    height: 240px;
    margin-bottom: 0;
    line-height: inherit
}

@media (max-width:676px) {
    #home #twitterarea #twitter .item .tweet {
        padding: 25px 27px;
        height: 215px
    }
}

@media (max-width:479px) {
    #home #twitterarea #twitter .item .tweet {
        padding: 10px 20px
    }
}

@media (max-width:320px) {
    #home #twitterarea #twitter .item .tweet {
        font-size: 14px;
        padding: 10px 16px
    }
}

#home #twitterarea #twitter .item .tweet a {
    font-size: 30px;
    font-family: 'Helvetica LT W01 Roman', sans-serif;
    color: #252525
}

@media (max-width:991px) {
    #home #twitterarea #twitter .item .tweet a {
        font-size: 24px
    }
}

@media (max-width:800px) {
    #home #twitterarea #twitter .item .tweet a {
        font-size: 20px
    }
}

@media (max-width:650px) {
    #home #twitterarea #twitter .item .tweet a {
        font-size: 18px
    }
}

@media (max-width:440px) {
    #home #twitterarea #twitter .item .tweet a {
        font-size: 16px
    }
}

@media (max-width:320px) {
    #home #twitterarea #twitter .item .tweet a {
        font-size: 15px
    }
}

#home #twitterarea #twitter .item .tweet a:hover {
    text-decoration: underline
}

#home #twitterarea #twitter .item .twitterhandle {
    float: left;
    margin-right: 25px;
    color: #fff;
    margin-left: 40px;
    margin-top: -15px;
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    cursor: pointer
}

@media (max-width:800px) {
    #home #twitterarea #twitter .item .twitterhandle {
        font-size: 16px;
        margin-left: 30px
    }
}

@media (max-width:676px) {
    #home #twitterarea #twitter .item .twitterhandle {
        margin-left: 15px
    }
}

@media (max-width:479px) {
    #home #twitterarea #twitter .item .twitterhandle {
        position: relative;
        top: 13px
    }
}

@media (max-width:440px) {
    #home #twitterarea #twitter .item .twitterhandle {
        top: 20px;
        font-size: 14px
    }
}

@media (max-width:320px) {
    #home #twitterarea #twitter .item .twitterhandle {
        font-size: 10px;
        text-align: center;
        margin-left: 27px;
        margin-right: 18px
    }
}

#home #twitterarea #twitter .item .twitterhandle .fa-twitter {
    color: #0fb8f6
}

@media (max-width:320px) {
    #home #twitterarea #twitter .item .twitterhandle .fa-twitter {
        font-size: 26px
    }
}

#home #twitterarea #twitter .item .twitterhandle:hover {
    text-decoration: underline
}

#home #twitterarea #twitter .item .twitterhandle:hover .dot {
    text-decoration: none !important
}

#home #twitterarea #twitter .item .twitterhandle .dot {
    text-decoration: none !important;
    margin-left: 15px;
    display: inline-block
}

@media (max-width:767px) {
    #home #twitterarea #twitter .item .twitterhandle .dot {
        margin-left: 5px
    }
}

@media (max-width:650px) {
    #home #twitterarea #twitter .item .twitterhandle .dot {
        opacity: 0
    }
}

#home #twitterarea #twitter .item .timePosted {
    line-height: inherit;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    top: -15px;
    margin-left: -5px
}

@media (max-width:800px) {
    #home #twitterarea #twitter .item .timePosted {
        font-size: 16px;
        top: -19px
    }
}

@media (max-width:676px) {
    #home #twitterarea #twitter .item .timePosted {
        font-size: 13px
    }
}

@media (max-width:650px) {
    #home #twitterarea #twitter .item .timePosted {
        visibility: none;
        color: transparent;
        opacity: 0
    }
}

#home #twitterarea #twitter .item .timePosted a {
    color: #fff;
    font-family: 'Helvetica LT W01 Bold', sans-serif
}

#home #twitterarea #twitter .item .timePosted a:hover {
    text-decoration: underline
}

#home .youtube {
    display: table;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    padding: 40px 15px;
    background-color: #252525
}

#home .youtube .innervideo .video-iframe iframe {
    width: 100%;
    height: 340px
}

@media (max-width:600px) {
    #home .youtube .innervideo .video-iframe iframe {
        height: 280px
    }
}

@media (max-width:489px) {
    #home .youtube .innervideo .video-iframe iframe {
        height: 180px
    }
}

#home .youtube .innervideo .video-title .txt .videohighlights {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    color: #fca102;
    text-transform: uppercase;
    font-size: 36px
}

@media (max-width:600px) {
    #home .youtube .innervideo .video-title .txt .videohighlights {
        font-size: 32px
    }
}

@media (max-width:489px) {
    #home .youtube .innervideo .video-title .txt .videohighlights {
        font-size: 26px
    }
}

@media (max-width:489px) {
    #home .youtube .innervideo .video-title .txt h1 {
        font-size: 26px
    }
}

#home .youtube .innervideo .video-title .txt h1 a {
    color: #fff;
    font-family: 'Helvetica LT W01 Bold', sans-serif
}

#home .youtube .innervideo .video-title .txt .watch {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    color: #fca102;
    text-transform: uppercase;
    font-size: 16px
}

#home .aroundwv {
    display: table;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 400px;
    background-color: #003776
}

#home .aroundwv .mainmap {
    height: 100%;
    background: url(/themes/manchin/images/wvmap.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative
}

#home .aroundwv .mainmap .bluefilter {
    background-color: rgba(0, 55, 118, .94);
    height: 100%;
    display: table;
    width: 100%
}

#home .aroundwv .mainmap #logoarea {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 30px
}

#home .aroundwv .mainmap #logoarea a {
    cursor: pointer
}

#home .aroundwv .mainmap #logoarea a img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto
}

.officelocations {
    display: table;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 40px
}

.officelocations .locationstitle {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.officelocations .office {
    text-align: center;
    line-height: 1.6;
    font-family: 'Helvetica LT W01 Light', sans-serif;
    margin-bottom: 20px
}

@media (max-width:991px) {
    .officelocations .office {
        margin-bottom: 50px
    }
}

.officelocations .office .officeicon {
    margin: 25px auto
}

.officelocations .office .officeicon img {
    width: 150px;
    height: 150px;
    display: block;
    padding: 5px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 120px;
    border: 1px solid #252525
}

.officelocations .office .title {
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    margin-bottom: 5px
}

.officelocations .office .address {
    display: block
}

@media (max-width:1270px) {
    .officelocations .office .address {
        font-size: 17px
    }
}

@media (max-width:1200px) {
    .officelocations .office .address {
        font-size: 16px
    }
}

.officelocations .office .phone {
    display: block
}

@media (max-width:1270px) {
    .officelocations .office .phone {
        font-size: 17px
    }
}

@media (max-width:1200px) {
    .officelocations .office .phone {
        font-size: 16px
    }
}

.officelocations .office .directions {
    margin-top: 10px;
    display: block;
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    font-size: 12px;
    text-transform: uppercase
}

.officelocations .office .directions .fa {
    font-size: 10px;
    margin-left: 5px
}

.officelocations .office .directions:hover {
    text-decoration: underline;
    color: #003776
}

.container {
    width: 100% !important;
    max-width: 1300px !important;
    padding-left: 80px;
    padding-right: 80px
}

@media (max-width:1200px) {
    .container {
        padding-left: 30px;
        padding-right: 30px
    }
}

body:not(#home) #main_container {
    padding-bottom: 50px
}

.modal-backdrop {
    z-index: 1
}

.modal-dialog {
    z-index: 5
}

#main_container #main_container {
    padding: 0
}

input#search-pod-field {
    height: 52px;
    margin-bottom: 20px;
    padding: 20px;
    width: 80%;
    margin-top: 20px
}

#newscontent .subtitle {
    margin-bottom: 34px;
    font-family: 'Helvetica LT W01 ', sans-serif;
    text-transform: capitalize;
    font-family: 20px;
    font-size: 22px
}

#libsearch legend {
    display: none
}

#libsearch .modal-body .btn {
    height: 52px;
    margin-top: 20px
}

.table-display {
    display: table
}

.cell {
    display: table-cell;
    vertical-align: middle
}

.background-image {
    background-repeat: no-repeat;
    background-size: cover
}

.background-image .with-height {
    width: 100%;
    height: 100%;
    display: inline-block
}

body.no-breadcrumbs #breadcrumb a {
    display: none
}

.btn-block {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    padding: 20px 15px;
    margin-bottom: 30px;
    white-space: normal
}

li.previous {
    margin-right: 10px
}

.fancybox-title-float-wrap .child {
    white-space: pre-line !important
}

.btn-block.hover,
.toggle-btn.active {
    background-color: #fca102 !important
}

#breadcrumb a {
    color: #c6c5c5;
    text-transform: uppercase;
    font-family: 'Helvetica LT W01 Bold Cond'
}

#breadcrumb a:hover {
    color: #003776
}

#form_thomas_search .col-xs-9 {
    padding-right: 0
}

#search-thomas-pod {
    margin-top: 90px
}

#search-thomas-pod h1 {
    font-size: 21px
}

#search-thomas-pod .btn {
    padding: 3px !important;
    font-size: 18px !important;
    margin-top: 0 !important
}

body#voting_record aside.list h1 {
    font-size: 21px
}

body#voting_record #browser_table thead tr th {
    font-family: 'Helvetica LT W01 Condensed';
    text-transform: uppercase;
    font-size: 17px;
    border-bottom: 2px solid #f0a53b
}

#filter-legislation {
    margin: 0
}

#filter-legislation h3 {
    margin-top: 0
}

#filter-legislation aside form select {
    font-size: 16px
}

#filter-legislation #session_select,
#filter-legislation #sponsored {
    height: 33px;
    font-size: 16px
}

#filterbuttons {
    float: right;
    position: relative;
    top: -53px;
    text-transform: uppercase;
    font-family: 'Helvetica LT W01 Bold Cond'
}

@media (max-width:550px) {
    #filterbuttons {
        top: 0
    }
}

#filterbuttons a {
    background-color: transparent;
    color: #003776;
    padding-left: 0;
    padding-right: 20px;
    text-align: center;
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #003776
}

#filterbuttons a:hover {
    color: #000710
}

body.fact #filterbuttons {
    float: right;
    position: relative;
    top: -53px;
    text-transform: uppercase;
    font-family: 'Helvetica LT W01 Bold Cond'
}

@media (max-width:800px) {
    body.fact #filterbuttons {
        top: 0;
        margin-bottom: 30px;
        float: none;
        margin-left: -10px
    }
}

body.fact #filterbuttons a {
    background-color: transparent;
    color: #003776;
    padding-left: 0;
    padding-right: 20px;
    text-align: center;
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #003776
}

body.fact #filterbuttons a:hover {
    color: #000710
}

#listblocks {
    margin-top: 40px
}

#listblocks .block {
    display: table;
    height: 110px
}

#listblocks .block a {
    display: table-cell;
    vertical-align: middle;
    background-color: #003776;
    font-weight: 700;
    color: #fff;
    transition: .3s background-color ease-in
}

#listblocks .block a .media-heading {
    top: 2px
}

#listblocks .block a:hover {
    background-color: #fca102
}

body.no-title .main_page_title {
    display: none!important;
}

body#about .main_page_title {
    border-bottom: 2px solid #fca102;
    position: relative;
    width: 60%;
    padding-bottom: 10px;
    margin-bottom: 30px
}

body#about #sam-main {
    font-size: 18px
}

body#about .shape {
    position: relative;
    top: 0;
    shape-outside: url(/themes/manchin/images/manchinbio.png);
    shape-margin: 1em;
    right: -40px;
    max-height: 1220px
}

@media (max-width:1200px) {
    body#about .shape {
        right: 0
    }
}

@media (max-width:1100px) {
    body#about .shape {
        width: 400px;
        shape-outside: url(/themes/manchin/images/manchinbio-med.png)
    }
}

@media (max-width:767px) {
    body#about .shape {
        shape-margin: 66px
    }
}

@media (max-width:672px) {
    body#about .shape {
        width: 300px;
        shape-outside: url(/themes/manchin/images/manchinbio-small.png);
        shape-margin: 10px
    }
}

@media (max-width:550px) {
    body#about .shape {
        width: 260px
    }
}

@media (max-width:493px) {
    body#about .shape {
        right: -100px;
        width: 127px;
        shape-margin: 0
    }
}

@media (max-width:400px) {
    body#about .shape {
        top: 0
    }
}

body#about .shape img {
    width: 650px;
    position: relative;
    right: -40px
}

@media (max-width:1190px) {
    body#about .shape img {
        padding-left: 10px
    }
}

@media (max-width:1100px) {
    body#about .shape img {
        max-width: 400px
    }
}

@media (max-width:672px) {
    body#about .shape img {
        padding-left: 25px;
        margin-left: 15px;
        max-width: 300px
    }
}

@media (max-width:550px) {
    body#about .shape img {
        border: 0;
        padding-left: 25px;
        margin-left: 15px;
        max-width: 200px;
        shape-margin: 50px
    }
}

body#about .shape .figure-caption .aboutlinks {
    position: relative;
    right: -40px
}

body#about .shape .figure-caption .aboutlinks a {
    padding: 25px 20px;
    position: relative;
    background: #fca102;
    color: #fff;
    top: -75px;
    font-size: 22px;
    display: inline-block
}

@media (max-width:1100px) {
    body#about .shape .figure-caption .aboutlinks a {
        text-align: center;
        width: 50%;
        font-size: 18px;
        padding: 15px 20px;
        top: -90px
    }
}

@media (max-width:672px) {
    body#about .shape .figure-caption .aboutlinks a {
        font-size: 15px
    }
}

@media (max-width:550px) {
    body#about .shape .figure-caption .aboutlinks a {
        width: 200px;
        top: -25px
    }
}

body#about .shape .figure-caption .aboutlinks a:hover {
    text-decoration: underline
}

body#about .shape .figure-caption .aboutlinks .voting {
    padding: 25px 20px 25px 90px
}

@media (max-width:1100px) {
    body#about .shape .figure-caption .aboutlinks .voting {
        padding: 15px 20px
    }
}

body#about .shape .figure-caption .aboutlinks .voting:after {
    content: "/";
    color: #252525;
    position: absolute;
    right: -.2em;
    font-size: 24px;
    display: inline-block
}

@media (max-width:1100px) {
    body#about .shape .figure-caption .aboutlinks .voting:after {
        right: 0
    }
}

@media (max-width:550px) {
    body#about .shape .figure-caption .aboutlinks .voting:after {
        right: 0;
        content: '';
        width: 36px;
        height: 1px;
        background-color: orange;
        left: 82px;
        top: 0
    }
}

body#about .shape .figure-caption .aboutlinks .committee:after {
    content: "/";
    color: #252525;
    position: absolute;
    right: -.2em;
    font-size: 24px;
    display: inline-block
}

@media (max-width:1100px) {
    body#about .shape .figure-caption .aboutlinks .committee:after {
        right: 0
    }
}

@media (max-width:550px) {
    body#about .shape .figure-caption .aboutlinks .committee:after {
        right: 0;
        content: '';
        width: 36px;
        height: 1px;
        background-color: orange;
        left: 82px;
        top: 0
    }
}

body#about .bottombio {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: #003776;
    display: flex
}

body#about .bottombio .leftimage {
    display: inline-block;
    background-image: url(/themes/manchin/images/bottombioimage.jpg);
    background-size: cover;
    min-width: 600px;
    background-position: center;
    width: 50%
}

@media (max-width:1200px) {
    body#about .bottombio .leftimage {
        min-width: 500px
    }
}

@media (max-width:1000px) {
    body#about .bottombio .leftimage {
        min-width: 400px
    }
}

@media (max-width:850px) {
    body#about .bottombio .leftimage {
        min-width: 350px
    }
}

@media (max-width:767px) {
    body#about .bottombio .leftimage {
        display: none
    }
}

body#about .bottombio .righttext {
    display: inline-block;
    padding: 50px
}

body#about .bottombio .righttext .keyhighlights {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    color: #fca102;
    font-size: 26px;
    width: 100%;
    text-align: left;
    border-bottom: 2px solid #fca102;
    padding-bottom: 10px;
    margin-bottom: 2em
}

body#about .bottombio .righttext #sam-bottombio {
    color: #fff;
    font-size: 20px
}

@media (max-width:1200px) {
    body#about .bottombio .righttext #sam-bottombio {
        font-size: 17px
    }
}

@media (max-width:1200px) {
    body#about .bottombio .righttext #sam-bottombio p {
        line-height: 27px
    }
}

.modal-backdrop.in {
    background-color: #003776 !important
}

.modal-dialog {
    margin: 10% auto !important
}

.modal-content {
    background-color: #fff !important
}

.modal-header {
    padding: 16px 30px !important;
    border-bottom: 2px solid #fca102 !important
}

.modal-header .close {
    color: #252525 !important;
    opacity: 1
}

.modal-body {
    padding: 20px 30px !important
}

.modal-body label {
    display: none
}

.modal-body .btn {
    background-color: #fca102;
    text-transform: uppercase;
    font-family: 'Helvetica LT W01 Bold', sans-serif
}

#typenav li a {
    color: #252525
}

#typenav li.active a {
    color: #fff;
    background-color: #fca102
}

#typenav.affix {
    top: 0
}

.listing-increment,
.listing-jump {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 40px;
    color: #939393 !important
}

.listing-increment a,
.listing-jump a {
    color: #939393 !important
}

body.newsroom .main_page_title {
    border-bottom: 2px solid #fca102;
    padding-bottom: 10px
}

body.newsroom #newscontent .summary {
    font-family: 'Helvetica LT W01 Light', sans-serif
}

body.newsroom #newscontent .summary a {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    font-size: 15px
}

body.newsroom td.acrobat {
    width: 89%
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: 0;
    border-bottom: 1px solid #ddd
}

#newsroom #newscontent.article .main_page_title {
    margin-bottom: 40px;
    margin-top: 10px
}

#newsroom #newscontent.article p {
    font-family: 'Helvetica LT W01 Light', sans-serif
}

#newsroom tr.divider td {
    font-size: 16px !important;
    text-transform: uppercase
}

.search-congress {
    position: absolute;
    right: 0;
    top: 27px
}

@media (max-width:550px) {
    .search-congress {
        position: relative;
        margin-left: -15px;
        margin-right: -15px
    }
}

.search-congress aside {
    margin-top: 0
}

.search-congress #search-thomas-pod {
    margin-top: 0
}

body.newsroom_landing {
    height: 100%
}

body.newsroom_landing #breadcrumb {
    margin: 0;
    height: 0
}

body.newsroom_landing #main_container {
    padding-bottom: 0 !important
}

body.newsroom_landing #main_column,
body.newsroom_landing #main_column>.row,
body.newsroom_landing #main_container,
body.newsroom_landing .one_column {
    height: 100%
}

body.newsroom_landing #header {
    border-bottom: 0 !important
}

body.newsroom_landing .main_page_title {
    color: #fff;
    position: relative
}

body.newsroom_landing footer {
    margin-top: 0 !important
}

body.newsroom_landing #fact,
body.newsroom_landing #news,
body.newsroom_landing #opeds,
body.newsroom_landing #videos {
    padding: 30px 0
}

body.newsroom_landing .more {
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    text-transform: uppercase
}

body.newsroom_landing #contact,
body.newsroom_landing #newsletter {
    margin-top: 60px
}

body.newsroom_landing #contact .contact-table,
body.newsroom_landing #contact .newsletters,
body.newsroom_landing #newsletter .contact-table,
body.newsroom_landing #newsletter .newsletters {
    margin-top: 50px
}

body.newsroom_landing #contact .contact-table,
body.newsroom_landing #newsletter .contact-table {
    margin-top: 80px
}

body.newsroom_landing #newsletter {
    padding-bottom: 60px
}

body.newsroom_landing .col-sm-3 {
    position: inherit;
    margin-top: -20px;
    height: 100%;
    padding-top: 47px;
    margin-left: -20px;
    padding-left: 36px
}

body.newsroom_landing .col-sm-3:before {
    background-color: #252525;
    height: calc(100% + 20px);
    width: calc(25% + 50px);
    position: absolute;
    top: -10px;
    left: -65px;
    content: '';
    display: inline-block
}

body.newsroom_landing .col-sm-3 #typenav .nav-pills {
    margin-top: 30px
}

body.newsroom_landing .col-sm-3 #typenav a {
    color: #fff;
    padding: 10px 0;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif
}

body.newsroom_landing .col-sm-3 #typenav li.active a {
    background-color: #252525;
    color: #fca102
}

body.newsroom_landing .col-sm-9 {
    padding-bottom: 50px;
    padding-left: 60px;
    padding-top: 30px
}

@media (max-width:767px) {
    body.newsroom_landing .col-sm-9 {
        padding-left: 30px
    }
}

body.newsroom_landing .col-sm-9 .main_page_title {
    display: none !important
}

body.newsroom_landing .section-header a {
    color: #252525;
    display: block;
    margin-bottom: 40px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 2px solid #fca102
}

body.newsroom_landing .section-header a:hover {
    color: #fca102
}

.fact-sheets,
.newsletters {
    margin-bottom: 60px;
    width: 100%
}

.fact-sheets td,
.newsletters td {
    padding: 17px 20px
}

.fact-sheets td border-top:1px solid #dddbdb a,
.newsletters td border-top:1px solid #dddbdb a {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif
}

.fact-sheets tr:first-child td,
.newsletters tr:first-child td {
    border: 0
}

.fact-sheets tr:nth-child(odd),
.newsletters tr:nth-child(odd) {
    background-color: #f6f7f8
}

.fact-sheets tr td:last-child,
.newsletters tr td:last-child {
    width: 94%
}

.contact-table {
    margin-bottom: 150px
}

.contact-table .bold-con {
    text-transform: uppercase;
    font-size: 15px
}

.contact-table td {
    padding: 10px 41px 10px 0
}

.contact-table .contact-info {
    font-size: 17px;
    background-color: #f6f7f8;
    padding: 15px 30px 20px
}

.contact-table .contact-info .contact-header {
    margin-bottom: -18px;
    display: block;
    margin-top: 5px
}

.contact-table .contact-info a {
    color: #252525
}

.contact-table .contact-info a:hover {
    color: #fca102
}

.contact-table .contact-info em,
.contact-table .contact-info i {
    margin-right: 20px;
    color: #fca102
}

.contact-table .contact-info p {
    margin-bottom: 10px
}

body#priorities .ih-item.circle,
body#priorities .mobile {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    margin-bottom: 30px;
    cursor: pointer
}

body#priorities .ih-item.circle .img,
body#priorities .mobile .img {
    width: 100%;
    height: 370px;
    border-radius: 0;
    background-repeat: no-repeat;
    background-size: cover
}

body#priorities .ih-item.circle .img:before,
body#priorities .mobile .img:before {
    border-radius: 0;
    box-shadow: inset 0 0 0 12em rgba(0, 0, 0, .41)
}

body#priorities .ih-item.circle .img .filter h2,
body#priorities .mobile .img .filter h2 {
    margin: 140px auto;
    text-align: center;
    position: absolute;
    display: block;
    padding: 5px;
    width: 100%;
    color: #fff;
    font-size: 36px;
    text-transform: uppercase
}

@media (max-width:1199px) {

    body#priorities .ih-item.circle .img .filter h2,
    body#priorities .mobile .img .filter h2 {
        font-size: 32px
    }
}

@media (max-width:991px) {

    body#priorities .ih-item.circle .img .filter h2,
    body#priorities .mobile .img .filter h2 {
        font-size: 36px
    }
}

body#priorities .ih-item.circle a,
body#priorities .mobile a {
    cursor: pointer
}

body#priorities .ih-item.circle .info,
body#priorities .mobile .info {
    border-radius: 0
}

body#priorities .ih-item.circle .info h3,
body#priorities .mobile .info h3 {
    height: auto;
    font-size: 32px;
    padding: 0 18px;
    padding-top: 20px;
    margin: 0 auto
}

body#priorities .ih-item.circle .info .info-back,
body#priorities .mobile .info .info-back {
    border-radius: 0;
    background: #003776;
    text-align: left
}

@media (max-width:1199px) {

    body#priorities .ih-item.circle .info .info-back h3,
    body#priorities .mobile .info .info-back h3 {
        font-size: 28px
    }
}

@media (max-width:991px) {

    body#priorities .ih-item.circle .info .info-back h3,
    body#priorities .mobile .info .info-back h3 {
        font-size: 32px
    }
}

body#priorities .ih-item.circle .info .info-back p,
body#priorities .mobile .info .info-back p {
    margin: 0 10px;
    line-height: 24px;
    font-style: normal;
    color: #fff;
    font-size: 16px;
    border-top: none
}

@media (max-width:1199px) {

    body#priorities .ih-item.circle .info .info-back p,
    body#priorities .mobile .info .info-back p {
        font-size: 14px;
        line-height: 20px
    }
}

@media (max-width:991px) {

    body#priorities .ih-item.circle .info .info-back p,
    body#priorities .mobile .info .info-back p {
        font-size: 16px;
        line-height: 24px
    }
}

body#priorities .mobile {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    margin-bottom: 30px;
    cursor: pointer
}

body#priorities .mobile .img {
    width: 100%;
    height: 300px;
    border-radius: 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

body#priorities .mobile .img:before {
    border-radius: 0;
    box-shadow: inset 0 0 0 12em rgba(0, 0, 0, .41);
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute
}

@media (max-width:320px) {

    body#priorities .mobile .img .filter h2,
    body#priorities .mobile body#priorities .mobile .img .filter h2 {
        font-size: 28px
    }
}

.wyd {
    text-align: center;
    margin-bottom: 50px
}

.feedback-block .cell {
    background-color: #003776;
    height: 300px;
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
    display: table;
    width: 100%
}

@media (max-width:479px) {
    .feedback-block .cell {
        height: 200px
    }
}

.feedback-block .cell h1 {
    color: #fff;
    display: table-cell;
    vertical-align: middle
}

@media (max-width:479px) {
    .feedback-block .cell h1 {
        font-size: 25px
    }
}

.feedback-block .cell:hover {
    background-color: #fca102
}

.feedback-form {
    display: none;
    margin-top: 95px
}

#veteran-table tbody>tr:nth-of-type(even) {
    background-color: #cae5fe
}

body#travels #main_container {
    background-color: #f6f6f6;
    padding-top: 60px
}

body#travels #main_container .one_column {
    overflow-x: hidden
}

body#travels .main_page_title {
    display: none
}

body#travels .travels-top {
    display: block;
    height: 28px;
    position: relative;
    z-index: 1
}

@media (max-width:802px) {
    body#travels .travels-top {
        height: 200px
    }
}

body#travels .travels-top .travels-logo {
    position: absolute;
    right: 0;
    max-width: 400px;
    width: 100%;
    top: 0
}

body#travels #map-restrictor {
    margin-bottom: 50px;
    text-align: center
}

@media (max-width:767px) {
    body#travels #map-restrictor {
        margin-top: 50px
    }
}

body#travels #map-restrictor #map-year {
    width: 130px;
    height: 48px;
    vertical-align: baseline;
    text-align: center
}

body#travels #map-restrictor input {
    height: 48px;
    text-align: center;
    width: 130px
}

body#travels #map-restrictor button {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px;
    margin-top: 0;
    float: none;
    margin-left: 15px
}

@media (max-width:870px) {
    body#travels #map-restrictor button {
        margin-top: 20px
    }
}

body#travels #map-restrictor label {
    font-weight: 400
}

@media (max-width:767px) {
    body#travels #map-restrictor label {
        min-width: 130px
    }
}

body#travels .car-track {
    width: 40px;
    position: relative;
    background-image: url(/themes/manchin/images/zoom.png);
    background-position: left;
    display: inline-block;
    top: 65px;
    height: 40px;
    left: -130px;
    -webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
    transition: all .6s cubic-bezier(.785, .135, .15, .86)
}

body#travels .car-track.active {
    width: 100%;
    z-index: 1;
    left: auto
}

body#travels .car-track .car {
    position: absolute;
    right: 0
}

body#travels .car-track.done {
    position: absolute;
    right: 0;
    width: 1px
}

body#travels .map-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 70px 50px;
    background-color: rgba(226, 223, 222, .6);
    display: none
}

body#travels .map-popup .close-button {
    position: relative;
    top: -42px;
    border: none;
    background-color: transparent;
    text-transform: uppercase
}

body#travels .map-popup .close-button:hover {
    color: #ccc7c5
}

.popover-date {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    color: #fca102;
    position: relative;
    top: -8px
}

body#travels .popover .desc iframe {
    width: 100%;
    height: 210px;
    margin-top: 20px
}

#travel-map-container {
    position: relative;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 376px
}

@media (min-width:768px) {
    #travel-map-container {
        padding: 0;
        height: 603px
    }
}

@media (min-width:992px) {
    #travel-map-container {
        height: 620px
    }
}

@media (min-width:1200px) {
    #travel-map-container {
        height: 740px
    }
}

#travel-map-container #travel-map {
    display: block;
    position: absolute;
    background-image: url(/themes/manchin/images/map.jpg);
    background-size: 100% 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 300px;
    height: 272px
}

@media (min-width:479px) {
    #travel-map-container #travel-map {
        width: 400px;
        height: 363px
    }
}

@media (min-width:767px) {
    #travel-map-container #travel-map {
        width: 600px;
        height: 544px
    }
}

@media (min-width:991px) {
    #travel-map-container #travel-map {
        width: 620px;
        height: 562px
    }
}

@media (min-width:1200px) {
    #travel-map-container #travel-map {
        width: 725px;
        height: 658px
    }
}

#travel-map-container #travel-map .circle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #003776;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.circle-icon:after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #fff;
    position: absolute;
    border-radius: 50%
}

#travel-map-container #travel-map .circle-icon:hover {
    background: #fca102
}

.popover {
    position: absolute !important;
    max-width: 700px;
    width: 100%;
    padding: 0 10px;
    background-color: #003776;
    color: #fff;
    border-radius: 0;
    z-index: 900
}

.popover p {
    line-height: 21px
}

.popover .close {
    color: #fff;
    font-size: 30px;
    background-color: transparent !important;
    opacity: 1
}

.popover .popover-title {
    margin-top: 15px;
    background-color: #003776;
    border-bottom: 0;
    color: #fff;
    width: calc(100% - 192px);
    float: right;
    text-transform: none;
    font-size: 20px
}

@media (max-width:540px) {
    .popover .popover-title {
        float: none;
        width: 100%
    }
}

.popover.fade.in {
    background-color: #003776;
    box-shadow: 0 0 0
}

.popover .close {
    background-color: #fff;
    border: 0;
    float: right
}

.popover .popover-img {
    width: 155px;
    height: 155px;
    margin-top: 15px;
    background-size: cover;
    float: left;
    padding: 15px;
    padding-left: 0;
    margin-bottom: 25px
}

@media (max-width:540px) {
    .popover .popover-img {
        margin: 15px;
        margin-left: 0
    }
}

.popover .popover-img img {
    width: 100%
}

.popover.bottom>.arrow:after {
    border-bottom-color: #003776 !important
}

.popover-content .desc img {
    width: 100%;
    height: auto
}

.popover-content .desc {
    width: calc(100% - 175px);
    float: right
}

@media (max-width:540px) {
    .popover-content .desc {
        width: 100%;
        float: none
    }
}


body#travelswv .travels-top{
    display: table;
    height: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem 0;
}

body#travelswv .car-track {
    width: 40px;
    position: relative;
    background-image: url(/themes/manchin/images/zoom.png);
    background-position: left;
    display: inline-block;
    top: 65px;
    height: 40px;
    left: -50rem;
    -webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
    transition: all .6s cubic-bezier(.785, .135, .15, .86)
}

body#travelswv .car-track.active {
    width: 100%;
    z-index: 1;
    left: auto;
    position: absolute;
}

body#travelswv .car-track .car {
    position: absolute;
    right: 0;
    
}

body#travelswv .car-track.done {
    position: absolute;
    right: 0px;
    width: 1px;
}

body#travelswv #map{
    display: block;
    width: 100%;
    position: relative;
    min-height: 750px;
    outline: none;
}

body#travelswv #map .leaflet-popup-content-wrapper{

box-shadow: 0;
background-color:  #003776;

}



body#travelswv #map .leaflet-popup-tip-container .leaflet-popup-tip{
border-top: 10px solid #003776;
}

body#travelswv #map .leaflet-popup-content{
padding: 2rem;
display: table;
}

body#travelswv #map .leaflet-popup-content .map-popup--image-box{
width: 140px;
height: 140px;
display: inline-block;
position: relative;
float: left;
}

body#travelswv #map .leaflet-popup-content .map-popup--image-box .marker-image {
display: block;
width: 100%;
height: 100%;  
}

body#travelswv #map .leaflet-popup-content .map-popup--has-image{
width: calc(100% - 150px);
float: right;
color: white;
}


body#travelswv #map .leaflet-popup-content .map-popup--no-image{
color: white;
}

body#travelswv #map .leaflet-popup-content .map-popup .marker-title{
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    font-size: 18px;
}

body#travelswv #map .leaflet-popup-content .map-popup .marker-city{
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    font-size: 16px;
}

body#travelswv #map .leaflet-popup-content .map-popup .marker-date{
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    color: #fca102;
    font-size: 16px;
}
body#travelswv #filter-events #reset{
    margin-top: 3rem;
}



.working-around {
font-size: 40px;
max-width: 600px;
margin: 0 auto;
width: 100%
}

.popover-content .desc iframe {
    width: 100%;
    height: 280px
}

.no-image .popover-title {
    float: left
}

.no-image .popover-content .desc {
    width: 100%
}

input#copyTarget {
    position: absolute;
    z-index: -1;
    width: 50px !important;
    height: 9px !important
}

#copyButton {
    top: -3px;
    position: relative
}

body#media-view #content {
    color: #fff
}

body#media-view #featured-details-header {
    color: #252525;
    font-size: 32px;
    margin-top: 20px
}

@media (max-width:550px) {
    body#media-view #featured-details-header {
        font-size: 26px
    }
}

body#media-view #featured-details-header a {
    color: #252525
}

body#media-view #featured-details-header a:hover {
    color: #fca102
}

body#media-view #featured-details-description {
    color: #252525
}

body#media-view #featured-details-description .main_page_title {
    color: #252525
}

body#media-view #featured-details-description p {
    line-height: 25px
}

body#media-view #share-footer {
    display: none
}

body#media-view #share-footer a {
    color: #fca102
}

body#media-view #share-footer a:hover {
    color: #fca102
}

#share-buttons li {
    float: right
}

#share-buttons #share-copy-link {
    cursor: pointer
}

#multimedia-browser ul.nav-tabs {
    border-bottom: 3px solid #003776
}

#multimedia-browser ul.nav-tabs li a:hover {
    background: #fca102
}

#multimedia-browser ul.nav-tabs li.active {
    background-color: #003776
}

#multimedia-browser ul.nav-tabs li.active a {
    background: 0 0
}

#multimedia-browser ul.nav-tabs li.active a:hover {
    background: 0 0
}

#multimedia-browser .loading div#search-results-header {
    display: none
}

#multimedia-browser .status {
    background-color: #fca102;
    color: #fff
}

#multimedia-browser .pagination {
    background-color: #003776
}

#multimedia-browser .row .media-thumbnail a {
    color: #252525
}

#multimedia-browser .row .media-thumbnail a:hover {
    color: #003776
}

body#multimedia.new #newscontent.video {
    padding: 0
}

body#multimedia.new #breadcrumb {
    display: none
}

body#multimedia.new #video-content {
    background-color: #252525;
    padding: 40px 0;
    position: relative
}

body#multimedia.new #video-content:after {
    content: '';
    background-color: #252525;
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 100%;
    right: -80px;
    top: 0
}

body#multimedia.new #video-content:before {
    content: '';
    background-color: #252525;
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 100%;
    left: -80px;
    top: 0
}

body#multimedia.new #video-content input#copyTarget {
    position: absolute;
    z-index: -1
}

body#multimedia.new #video-content #media-player iframe {
    height: 500px
}

@media (max-width:767px) {
    body#multimedia.new #video-content #media-player iframe {
        height: 340px
    }
}

@media (max-width:550px) {
    body#multimedia.new #video-content #media-player iframe {
        height: 220px;
        min-height: 220px
    }
}

body#multimedia.new #video-content #featured-details-header {
    color: #fff;
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    font-size: 32px;
    margin-top: 20px;
    text-transform: capitalize !important
}

@media (max-width:550px) {
    body#multimedia.new #video-content #featured-details-header {
        font-size: 26px
    }
}

body#multimedia.new #video-content #featured-details-header a {
    color: #fff
}

body#multimedia.new #video-content #featured-details-header a:hover {
    text-decoration: underline
}

body#multimedia.new #video-content #featured-details-description {
    color: #fff
}

body#multimedia.new #video-content #featured-details-description p {
    line-height: 25px
}

body#multimedia.new #video-content #social-container .btn-xs {
    border-radius: 4px;
    padding: 0 5px;
    height: 20px;
    width: 65px;
    overflow: hidden
}

body#multimedia.new .media-header {
    color: #fca102 !important;
    font-size: 56px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0
}

body#multimedia.new #share-buttons {
    float: right;
    padding: 18px
}

body#multimedia.new #share-buttons #share-youtube a {
    color: #fff
}

body#multimedia.new #share-buttons #share-copy-link {
    cursor: pointer
}

body#multimedia.new #share-buttons #share-link-button-container {
    display: grid
}

body#multimedia.new #share-footer #social-container .btn-xs {
    border-radius: 4px;
    padding: 0 5px;
    height: 20px;
    width: 65px;
    overflow: hidden
}

body#multimedia.new #share-footer #share-buttons {
    float: right;
    padding: 18px
}

body#multimedia.new #share-footer #share-buttons #share-youtube a {
    color: #fff
}

body#multimedia.new #share-footer #share-buttons #share-copy-link {
    cursor: pointer
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container {
    display: grid
}

body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
    position: absolute;
    z-index: -1
}

body#multimedia.new #multimedia-browser {
    padding: 50px 0
}

body#multimedia.new #multimedia-browser .multimedia-content {
    margin-left: -15px;
    margin-right: -15px
}

body#multimedia.new #multimedia-browser ul.nav-tabs {
    border-bottom: 3px solid #003776;
    border-bottom: 0;
    display: none
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a {
    color: #003776 !important;
    font-size: 52px;
    text-transform: uppercase
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
    background: #fca102
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
    background-color: #fff
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
    background: 0 0
}

body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
    background: 0 0
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
    display: none !important;
    width: 0;
    overflow: hidden;
    padding: 0
}

body#multimedia.new #multimedia-browser legend {
    display: none
}

body#multimedia.new #multimedia-browser .loading div#search-results-header {
    display: none
}

body#multimedia.new #multimedia-browser .status {
    background-color: #fca102;
    color: #fff;
    padding: 0 13px;
    margin-top: -18px
}

body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
    text-transform: uppercase;
    font-size: 13px
}

body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
    background-color: #003776;
    text-transform: uppercase
}

body#multimedia.new #multimedia-browser .multimedia-tools select {
    color: #6c6b70;
    text-transform: uppercase;
    font-size: 13px
}

body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
    color: #6c6b6b;
    text-transform: uppercase;
    font-size: 13px
}

body#multimedia.new #multimedia-browser .pagination {
    background-color: #fff;
    color: #252525
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a {
    color: #252525
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
    color: #fca102
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
    color: #fca102
}

body#multimedia.new #multimedia-browser .pagination.first-one {
    display: none !important
}

body#multimedia.new #multimedia-browser .media-thumbnail {
    height: 185px;
    width: 25%;
    margin: 0;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-right: 20px;
    padding-left: 20px
}

body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -32px;
    width: 100%
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    color: #252525;
    height: 165px;
    overflow: hidden;
    font-family: 'Helvetica LT W01 Bold', sans-serif;
    display: inline-block
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
    color: #003776
}

body#multimedia.new #multimedia-browser .media-thumbnail a {
    color: #252525;
    font-family: 'Helvetica LT W01 Light', sans-serif;
    font-size: 16px;
    height: 96px;
    overflow: hidden;
    display: inline-block
}

body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
    color: #003776
}

body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
    color: #003776
}

@media (max-width:1300px) {
    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 33.33333%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 190px
    }
}

@media (max-width:1230px) {
    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 33.33333%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 176px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 83%
    }
}

@media (max-width:990px) {
    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 157px
    }
}

@media (max-width:900px) {
    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 50%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 176px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools select {
        width: 39%
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 80%
    }
}

@media (max-width:768px) {
    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 100%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 240px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail img {
        margin-top: -50px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail a {
        height: 50px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 84%
    }
}

@media (max-width:560px) {
    body#multimedia.new #share-buttons {
        padding: 0
    }

    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 100%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail .image a {
        height: 160px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail img {
        margin-top: -50px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail a {
        height: 50px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 78%
    }
}

@media (max-width:480px) {
    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 100%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail img {
        margin-top: -50px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail a {
        height: 50px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 78%
    }
}

@media (max-width:430px) {
    body#multimedia.new #share-buttons {
        padding: 0
    }

    body#multimedia.new #multimedia-browser {
        padding: 50px 20px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail {
        width: 100%
    }

    body#multimedia.new #multimedia-browser .media-thumbnail img {
        margin-top: -50px
    }

    body#multimedia.new #multimedia-browser .media-thumbnail a {
        height: 50px
    }

    body#multimedia.new #multimedia-browser .multimedia-tools input[type=text] {
        width: 78%
    }
}

@media (max-width:320px) {
    body#multimedia.new #multimedia-browser {
        padding: 50px 0
    }
}

body footer {
    background-color: #252525;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: block;
    min-height: 150px
}

@media (max-width:890px) {
    body footer {
        text-align: center
    }
}

body footer .footer-ul.footernav {
    margin-left: 0;
    padding: 30px 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    float: left;
    margin-right: 30px;
    position: relative;
    right: 10px
}

@media (max-width:991px) {
    body footer .footer-ul.footernav {
        right: 0
    }
}

@media (max-width:890px) {
    body footer .footer-ul.footernav {
        float: none;
        display: block;
        text-align: center
    }
}

@media (max-width:430px) {
    body footer .footer-ul.footernav {
        padding-bottom: 30px
    }
}

body footer .footer-ul.footernav li {
    padding: 30px 10px 30px;
    text-align: center
}

@media (max-width:430px) {
    body footer .footer-ul.footernav li {
        padding-bottom: 00px
    }
}

body footer .footer-ul.footernav li a {
    color: #fff;
    font-size: 20px;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase
}

body footer .footer-ul.footernav li a:hover {
    text-decoration: underline
}

@media (max-width:991px) {
    body footer .footer-ul.footernav li a {
        font-size: 18px
    }
}

body footer .footer-ul.footernav:after {
    content: "|";
    position: relative;
    right: -1em;
    color: #fff;
    font-size: 22px
}

@media (max-width:890px) {
    body footer .footer-ul.footernav:after {
        display: none
    }
}

body footer .subfooternav {
    vertical-align: middle;
    display: inline-block;
    float: left;
    background-color: #252525
}

@media (max-width:890px) {
    body footer .subfooternav {
        float: none
    }
}

body footer .subfooternav .footer-ul {
    margin-bottom: 0;
    margin-left: 0;
    padding: 30px 20px;
    vertical-align: middle;
    display: inline-block
}

@media (max-width:991px) {
    body footer .subfooternav .footer-ul {
        padding: 30px 0
    }
}

@media (max-width:890px) {
    body footer .subfooternav .footer-ul {
        padding-top: 0
    }
}

body footer .subfooternav a {
    color: #fff;
    font-family: 'Helvetica LT W01 Light', sans-serif;
    font-size: 14px
}

body footer .subfooternav a:hover {
    text-decoration: underline
}

@media (max-width:991px) {
    body footer .subfooternav a {
        font-size: 12px
    }
}

body footer .subfooternav li {
    padding: 30px 10px 30px
}

@media (max-width:890px) {
    body footer .subfooternav li {
        padding-top: 0
    }
}

body footer .footer-social {
    display: inline-block;
    vertical-align: middle;
    float: right
}

@media (max-width:890px) {
    body footer .footer-social {
        float: none
    }
}

body footer .footer-social .social-list {
    padding: 30px 0;
    margin-bottom: 0;
    margin-left: 0;
    text-align: center
}

@media (max-width:890px) {
    body footer .footer-social .social-list {
        padding-top: 0
    }
}

body footer .footer-social .social-list li {
    padding: 30px 5px
}

@media (max-width:890px) {
    body footer .footer-social .social-list li {
        padding-top: 0
    }
}

body footer .footer-social .social-list li a {
    font-size: 16px;
    color: #fff
}

body footer .footer-social .social-list li a .fa {
    background-color: #fff;
    color: #252525;
    height: 28px;
    width: 28px;
    padding: 5px;
    border-radius: 15px;
    border: 1px solid #fff
}

body footer .footer-social .social-list li a .fa-facebook {
    padding-left: 7px
}

body footer .footer-social .social-list li a:hover .fa {
    cursor: pointer;
    border: 1px solid #fff;
    background-color: #252525;
    color: #fff
}

body .centered-nav .footer-ul {
    text-align: center
}

body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
    text-align: left
}

body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
    padding-left: 0
}

body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
    text-align: right
}

body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
    padding-right: 0
}

body:not(#home) footer {
    margin-top: 0
}

#flagForm #flag-options .head {
    background-color: #003776;
    color: #fff
}

.hide-on-submit {
    display: none !important
}

.serif {
    font-family: 'Helvetica LT W01 Roman', sans-serif
}

.sans {
    font-family: 'Helvetica LT W01 Light', sans-serif
}

.light {
    font-family: 'Helvetica LT W01 Light', sans-serif
}

.bold {
    font-family: 'Helvetica LT W01 Bold', sans-serif
}

.bold-con,
.sans-bold {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif
}

.black-bold {
    font-family: 'Helvetica LT W01 Black'
}

body {
    font-size: 18px;
    font-family: 'Helvetica LT W01 Roman', sans-serif;
    background-color: #cecece
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    color: #252525
}

.light-bg-link,
a {
    color: #003776
}

.light-bg-link:hover,
a:hover {
    text-decoration: none;
    color: #fca102
}

.dark-bg-link {
    color: #fff
}

.dark-bg-link:hover {
    text-decoration: underline
}

select {
    background: #fff;
    width: 55px;
    height: auto;
    color: #000;
    border: 1px solid silver;
    cursor: pointer;
    outline: 0;
    position: relative;
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    vertical-align: bottom;
    font-size: 16px
}

p {
    margin-bottom: 30px;
    line-height: 30px
}

#press .date,
.blog-entry .date,
.video .date {
    text-transform: uppercase;
    font-size: 14px
}

h2.title {
    margin-top: 7px
}

#main_column form .btn,
.btn,
.btn-default:focus,
.btn-defualt,
.btn-defualt:visited,
.btn:visited,
.pager li .btn,
.search-media-btn,
btn:focus {
    background-color: #003776;
    color: #fff
}

#main_column form .btn:hover,
.btn-default:focus:hover,
.btn-defualt:hover,
.btn-defualt:visited:hover,
.btn:hover,
.btn:visited:hover,
.pager li .btn:hover,
.search-media-btn:hover,
btn:focus:hover {
    background-color: #fca102;
    color: #fff
}

#content #main_container {
    background-color: #fff
}

@media (max-width:767px) {
    #multimedia-browser .row .media-thumbnail {
        display: block;
        float: none !important;
        margin: 1em 0;
        width: 100%
    }
}

.ieold .ieoldonly {
    display: block !important
}

.ie .ieonly {
    display: block !important
}

.ie .notie {
    display: none !important
}

.ie .figure-caption .aboutlinks {
    position: relative;
    right: -40px
}

.ie .figure-caption .aboutlinks a {
    padding: 25px 20px;
    position: relative;
    background: #fca102;
    color: #fff;
    top: -75px;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    width: 50%;
    font-size: 16px !important;
    padding: 15px 10px !important;
    top: -90px
}

.ie .figure-caption .aboutlinks a:nth-child(3):after {
    display: none !important;
    content: '' !important
}

.ie .figure-caption .aboutlinks .committee:last-child:after {
    content: ''
}

.ie .shape {
    position: relative;
    top: 0;
    shape-outside: url(/themes/manchin/images/manchinbio.png);
    shape-margin: 1em;
    right: -40px;
    max-height: 1220px;
    right: 0;
    width: 400px;
    shape-outside: url(/themes/manchin/images/manchinbio-med.png)
}

.ie .shape img {
    width: 650px;
    position: relative;
    right: -40px;
    padding-left: 10px;
    max-width: 400px
}

.ie11 .ieonly {
    display: block !important
}

.ie11 .notie {
    display: none !important
}

.ie10 .ieonly {
    display: block !important
}

.ie10 .notie {
    display: none !important
}

.ie9 .ieonly {
    display: block !important
}

.ie9 .notie {
    display: none !important
}

.ie8 .ieonly {
    display: block !important
}

.ie8 .notie {
    display: none !important
}

.ie7 .ieonly {
    display: block !important
}

.ie7 .notie {
    display: none !important
}

.ie6 .ie7only {
    display: block !important
}

.ie6 .navbar-toggle {
    display: block !important
}

@media print {

    body#about .banner,
    body#about .right-side {
        display: none !important
    }

    body#about .banner .right-side {
        display: none !important
    }
}

.faqsection{
    border-top: 10px solid #ebf6ff;
    border-bottom: 10px solid #ebf6ff;
    display: table;
    width: 100%;
    padding: 1rem 0rem;
    margin-bottom: 2rem;

  }
  
  @media (max-width:767px){
.faqsection{
      display: table;
      width: 100%;
      padding: 0px;
    }
  }
  
.faqsection .faqheader{
  
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 34px;
    font-weight: bold;
    color: #363636;
  
  }
  
.faqsection .panel{
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  
  
.faqsection .panel-heading{
    color: #363636;
    background-color: transparent;
    border-color: #003776;
    border-radius: 0px;
    border: 0;
    border-bottom: 5px solid #003776;
  }
.faqsection .panel-title{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    color: #fca102;
  }
  
.faqsection .panel-heading a{
  
    text-decoration: none;
    display: block;
  
  }
  
.faqsection .panel-heading a:hover .panel-title{
    color: #fca102;
  }
  
.faqsection .panel-heading .panel-title{
    color:  #363636;
  }
  
.faqsection .panel-heading .panel-title .pull-right .fa{
    color: #363636;
  }
  
.faqsection .panel-collapse .panel-body{
    border-bottom: 5px solid #f8f8f9;
  }
  
.faqsection .panel-collapse .panel-body ul{
  margin-top: 10px;
  }
  
  
.faqsection .panel-collapse .panel-body p{
    margin-bottom: 10px;
  }
.storyholder .storyheader{
    border-bottom: 3px solid #fca103;
    margin-bottom: 4rem;
}

.storyholder .stories .storyblock {
    min-height: 430px;
    margin-bottom: 2rem;
}

.storyholder .stories .storyblock .storybox{
    display: block;
    width: 100%;
    
}

.storyholder .stories .storyblock .storybox .imageholder{
    display: table;
    width: 100%;
    height: 275px;
    position: relative;
    overflow: hidden;
}


.storyholder .stories .storyblock .storybox .imageholder .image{

    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    transition: all .2s ease-in-out;

}

.storyholder .stories .storyblock .storybox:hover .imageholder .image{
    transform: scale(1.1);
}

.storyholder .stories .storyblock .storybox .textholder {
    padding: 1rem 0;
}

.storyholder .stories .storyblock .storybox .textholder .title{
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    color: #003776;
    font-size: 24px;
}

.storyholder .stories .storyblock .storybox:hover .textholder .title{
    color: #fca102;
}


.storyholder .stories .storyblock .storybox .textholder .subtitle{
    font-size: 18px;
    color: #333;
}
.storyholder .stories .storyblock .storybox:hover .textholder .subtitle{
    color: #333;
} 

body#story .wvstrong h1{
    border-bottom: 3px solid #fca103;
    margin-bottom: 3rem;
    padding: 1rem 0;
    color: #003776;
}
body#story .wvstrong .imageholder{
    display: table;
    width: 100%;
    min-height: 390px;
    position: relative;
}

body#story .wvstrong .imageholder .image{
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background-position: center;
}

body#story .wvstrong .summary{
    color: #5a5a5a;
    font-family: 'Helvetica LT W01 Bold Cond', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
}

aside.links ul li{
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: .5rem;
}

.fc-tbx ul.error-list li:nth-child(2){
display: none;
}


#newscontent #press img{
    display: block;
    width: 100%!important;
    height: auto;
}


img.banner{
    width: 100%;
    display: block;
    max-width: 1300px;
    margin: 0 auto;
}

.fancybox-title-outside-wrap{
    text-align: center;
    
}

.downloadimage{

    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 10px;

}

/*# sourceMappingURL=common.css.map */