#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
}

@media (max-width:375px) {
    #breadcrumb {
        font-size: 14px
    }
}

@media (max-width:320px) {
    #breadcrumb {
        font-size: 14px
    }
}

#ContactModal,
#NavMobileModal,
#SearchModal {
    z-index: 10000000
}

#ContactModal .fade.in,
#NavMobileModal .fade.in,
#SearchModal .fade.in {
    background-color: #2e3a52;
    opacity: 1
}

#ContactModal .modal-dialog .modal-content .modal-body .nav li a,
#NavMobileModal .modal-dialog .modal-content .modal-body .nav li a,
#SearchModal .modal-dialog .modal-content .modal-body .nav li a {
    font-size: 28px !important;
    padding: 0 15px
}

#ContactModal .modal-dialog .modal-content .modal-body .nav li ul li a,
#NavMobileModal .modal-dialog .modal-content .modal-body .nav li ul li a,
#SearchModal .modal-dialog .modal-content .modal-body .nav li ul li a {
    padding: 0 20px;
    font-size: 20px !important
}

#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: #22aee7
}

#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: #106d93
}

#topnavarea {
    height: 46px;
    display: block;
    width: 100%;
    background-color: #22aee7;
    text-align: center;
    padding-top: 3px;
    margin-top: 0 !important;
    text-transform: none;
    margin-top: 3px
}

#topnavarea .clock {
    display: inline-block
}

#topnavarea .clock+.clock {
    padding-left: 20px
}

#topnavarea #debtclock-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 6px
}

@media (max-width:991px) {
    #topnavarea #debtclock-container {
        display: none
    }
}

#topnavarea #debtclock-container #sam-debt-clock {
    color: #fff;
    font-family: DINNextW01-CondensedBol;
    text-transform: uppercase;
    font-size: 22px;
    text-transform: none;
    padding-top: 3px
}

#topnavarea #debtclock-container #debtclock .currency {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    margin-right: 10px
}

#topnavarea #debtclock-container #debtclock .numeral {
    background-color: #fff;
    color: #b3424c;
    padding: 5px 5px 0;
    border: 1px solid #cecece;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    font-size: 24px
}

#topnavarea #debtclock-container #debtclock .comma {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    margin-left: 2px;
    margin-right: 2px
}

#topnavarea #newslettersignup {
    right: 30px;
    position: absolute;
    z-index: 15;
    top: 10px;
    font-family: DINNextW01-CondensedBol;
    text-transform: uppercase
}

@media (max-width:767px) {
    #topnavarea #newslettersignup {
        right: 15px
    }
}

#topnavarea #newslettersignup a {
    color: #fff
}

#topnavarea #newslettersignup a:hover {
    color: #c6d900
}

.logo-text {
    color: #c6d900;
    text-transform: uppercase;
    font-family: DINNextW01-CondensedMed;
    float: left;
    line-height: 35px;
    font-size: 44px;
    margin-top: 8px
}

.logo-text .idahosenator {
    display: none;
    font-size: 16px;
    font-family: 'DIN Next Slab W01 Medium';
    letter-spacing: 4px
}

@media (max-width:991px) {
    .logo-text .idahosenator {
        display: block
    }
}

.logo-text:hover {
    color: #fff
}

.logo-text:focus {
    color: #fff;
    text-decoration: none
}

@media (max-width:991px) {
    .logo-text {
        color: #fff;
        line-height: 20px
    }
}

#header {
    height: 60px
}

#header .navbar .nav-pills>li a {
    font-size: 24px;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase
}

body#home #header {
    height: 60px;
    text-align: center;
    width: 100%;
    position: absolute;
    background-color: rgba(46, 58, 82, .9);
    z-index: 10
}

body#home #header a.logo-hold {
    width: 270px;
    position: absolute;
    display: block;
    margin: 0 auto
}

body#home #header a.logo-hold img {
    width: 100%
}

body#home #header.affix {
    position: relative
}

@media (max-width:991px) {
    body#home #header.affix {
        position: fixed;
        top: 0;
        z-index: 10000
    }
}

body#home #header.affix-top {
    position: relative
}

body #header {
    height: 60px;
    padding-top: 3px;
    width: 100%;
    background-color: #2e3a52
}

body #header a.logo-hold {
    width: 270px;
    position: absolute;
    display: block
}

body #header a.logo-hold img {
    width: 100%
}

body #header.affix {
    position: relative
}

@media (max-width:991px) {
    body #header.affix {
        position: fixed;
        top: 0;
        z-index: 10000
    }
}

body #header.affix-top {
    position: relative
}

body #header .nav-hold.right-slide-search.interior {
    float: none !important;
    display: block;
    margin: 0 auto;
    text-align: center
}

#newsroom .modal-dialog {
    padding: 15px
}

#newsroom .modal-dialog .modal-content .modal-header .close {
    margin-right: 0;
    color: #2d3850;
    text-shadow: 0 0 0 #000
}

#newsroom .modal-dialog .modal-content .modal-body form select {
    padding: 10px
}

body .navbar {
    float: right;
    background-color: transparent;
    left: -17px;
    height: 51px;
    display: inline-block
}

@media (max-width:991px) {
    body .navbar {
        float: left
    }
}

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: #fff;
    white-space: pre
}

body .navbar .nav-pills>li .dropdown-menu {
    background-color: #fff;
    border: none
}

body .navbar .nav-pills>li .dropdown-menu li {
    padding: 5px 15px
}

body .navbar .nav-pills>li .dropdown-menu li a {
    color: #000;
    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: #22aee7;
    color: #000
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
    color: #fff;
    background-color: transparent
}

body .navbar .nav-pills>li.selected a,
body .navbar .nav-pills>li:hover a {
    color: #c6d900
}

body .navbar .togglemenu {
    color: #fff;
    font-size: 46px
}

@media (max-width:991px) {
    body .navbar .togglemenu {
        color: #22aee7
    }
}

body .navbar .togglemenu .menulabel {
    display: none
}

body .navbar .srchbuttonmodal {
    color: #fff;
    font-size: 21px;
    position: relative
}

@media (max-width:991px) {
    body .navbar .srchbuttonmodal {
        font-size: 36px;
        top: -5px;
        color: #22aee7
    }
}

body .navbar .srchbutton {
    color: #fff;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    font-size: 24px
}

body .navbar .srchbutton:after {
    content: 'SEARCH';
    display: inline-block
}

body .navbar .srchbutton:hover {
    color: #c6d900
}

body .navbar .srchbutton.search:after {
    content: 'CLOSE'
}

body#home .navbar {
    float: none
}

@media (max-width:991px) {
    body#home .navbar {
        float: left;
        margin-left: 15px
    }
}

body#home .navbar .nav-pills>li a {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    font-size: 26px;
    padding: 10px 20px
}

body#home .navbar .nav-pills>li .dropdown-menu li a:hover {
    background-color: transparent
}

#SearchModal .modal-dialog .modal-content .modal-header .close {
    padding-right: 28px
}

#NavMobileModal .modal-dialog {
    margin-top: 40px
}

#NavMobileModal .modal-dialog .modal-content .close {
    color: #000;
    padding-right: 15px
}

#NavMobileModal .modal-dialog .modal-content .modal-body {
    padding: 30px
}

#NavMobileModal .modal-dialog .modal-content .modal-body a {
    color: #000
}

#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
}

body#home #header {
    padding-top: 0
}

body#home #header .nav-hold.right-search-modal,
body#home #header .nav-hold.right-slide-search {
    padding: 2px 0
}

body#home #header .nav-hold.right-search-modal .srchbutton,
body#home #header .nav-hold.right-slide-search .srchbutton {
    font-size: 26px;
    right: -70px
}

body#home #header .nav-hold.right-search-modal .nav-pills,
body#home #header .nav-hold.right-slide-search .nav-pills {
    right: 0;
    position: relative
}

body#home #header .nav-hold.right-search-modal .togglemenu .glyphicon,
body#home #header .nav-hold.right-slide-search .togglemenu .glyphicon {
    top: 4px
}

body#home #header .nav-hold.right-search-modal .srchbuttonmodal .glyphicon,
body#home #header .nav-hold.right-slide-search .srchbuttonmodal .glyphicon {
    top: 4px
}

#header .nav-hold.right-search-modal,
#header .nav-hold.right-slide-search {
    padding: 3px 0;
    float: none
}

#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: 70px;
    position: relative
}

#header .nav-hold.right-search-modal .srchbutton,
#header .nav-hold.right-slide-search .srchbutton {
    right: 0;
    position: absolute;
    top: 10px;
    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: 60px;
    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;
    right: 0;
    width: 92%;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    font-size: 20px;
    border: none;
    background-color: #2e3a52;
    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: #2e3a52;
    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
}

#top {
    width: 100%;
    margin: 0 auto;
    background-image: url(/themes/crapo/images/homebg.jpg);
    background-size: cover;
    position: relative;
    background-attachment: scroll;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
   /* height: 520px*/
   height: 450px;
}

#top .content {
    position: absolute;
    text-align: center;
    bottom: 70px;
    width: 100%;
    display: block;
    margin: 0 auto
}

#top .content #main-text .main-logo img {
    width: 100%;
    max-width: 440px;
    margin-bottom: 80px
}

#top .content #main-text h1 {
    width: 80%;
    display: block;
    float: none;
    margin: 0 auto;
    text-shadow: 2px 2px 8px #000
}

#top .content #main-text h1 a {
    color: #fff
}

#top .content #main-text h1 a:hover {
    color: #22aee7
}

#top h5 {
    color: #fff;
    text-align: right;
    font-size: 18px;
    position: absolute;
    bottom: -60px;
    right: 43px;
    text-shadow: 1px 1px 5px #000
}

.meeting-banner {
    background-color: #252f43;
    padding: 15px;
    position: relative;
    display: block;
    cursor: pointer
}

.meeting-banner .meeting-text {
    text-align: center
}

.meeting-banner img {
    position: relative;
    z-index: 2
}

@media (max-width:767px) {
    .meeting-banner img {
        width: 50px
    }
}

.meeting-banner h2 {
    color: #fff;
    font-size: 58px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    z-index: 2
}

.meeting-banner h2 span {
    color: #22aee7
}

@media (max-width:991px) {
    .meeting-banner h2 {
        font-size: 43px
    }
}

@media (max-width:767px) {
    .meeting-banner h2 {
        font-size: 35px
    }
}

.meeting-banner .mediumcon {
    transition: .2s ease-in color
}

.meeting-banner:after {
    content: "";
    background: url(/themes/crapo/images/map-background.jpg);
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    transition: .2s ease-in opacity
}

.meeting-banner.featured:after{
    display: none;
}

.meeting-banner .longbanner-image{
    opacity: .3;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    transition: .2s ease-in opacity;
    background-position: center;
    background-size: cover;
}

.meeting-banner:hover .mediumcon {
    color: #fff
}

.meeting-banner:hover:after {
    opacity: 0
}

.meeting-banner.featured:hover .longbanner-image{
    opacity: 0
}

.meeting-banner.featured:hover .lightcon{
    color: #22aee7;
}

body#home #press {
    border-right: 25px solid #fff;
    background-color: #f5f5f5;
    border-bottom: 25px solid #fff;
    padding: 30px 10px
}

@media (max-width:991px) {
    body#home #press {
        border-right: none
    }
}

body#home #press td {
    padding: 20px 10px;
    vertical-align: top;
    line-height: 30px;
    font-size: 22px
}

body#home #press .section-header {
    font-size: 28px;
    text-align: center;
    margin: 0;
    margin-bottom: 20px
}

body#home #press a {
    color: #000
}

body#home #press a:hover {
    color: #22aee7
}

body#home #press .more-news {
    color: #22aee7;
    margin: 20px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    margin: 30px auto;
    font-size: 24px;
    width: 100%;
    position: absolute;
    bottom: 0
}

body#home #press .more-news:hover {
    color: #2d3850
}

@media (max-width:991px) {
    body#home #press .more-news {
        position: relative
    }
}

#social {
    border-bottom: 25px solid #fff;
    background-color: #f5f5f5;
    padding: 30px 15px 10px
}

#social .section-header {
    font-size: 28px;
    text-align: center;
    margin: 0;
    margin-bottom: 30px
}

#social .icon {
    margin-left: 15px;
    display: inline-block
}

#social .icon:hover {
    color: #2d3850
}

#social .facebook-icon {
    color: #4460a0
}

#social .twitter-icon {
    color: #00aaec
}

#social .youtube-icon {
    color: #ce1312
}

#social .instagram-icon {
    color: #70ca95
}

#social .twitter-handle {
    color: #000
}

#social .twitter-handle a {
    color: #000
}

#social .twitter-handle a:hover {
    color: #22aee7
}

#social #twitter .tweet {
    word-break: break-all
}

#social iframe {
    height: 380px;
    width: 100%
}

#social #instamedia {
    margin-left: -6px;
    margin-right: -6px
}

#social #instamedia a {
    display: inline-block;
    width: 25%;
    border: 6px solid #f5f5f5
}

#social #instamedia a img {
    width: 100%
}

#social #instamedia a:hover {
    opacity: .8
}

#bottom {
    display: inline-block;
    width: 100%
}

#bottom .button {
    display: flex
}

#bottom .button a {
    height: 400px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-family: DINNextW01-CondensedBol
}

@media (max-width:600px) {
    #bottom .button a {
        height: 300px
    }
}

#bottom .button a h3 {
    font-size: 34px;
    position: relative;
    z-index: 1;
    padding-left: 150px;
    padding-right: 150px
}

@media (max-width:1200px) {
    #bottom .button a h3 {
        padding-left: 70px;
        padding-right: 70px
    }
}

#bottom .button .service {
    width: 100%;
    height: 100%
}

#bottom .button.with-image .service {
    width: 100%;
    height: 100%
}

#bottom .button.with-image .service:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: inline-block;
    position: absolute;
    transition: .3s all ease-in
}

#bottom .button.with-image:hover .service:before {
    background-color: rgba(0, 0, 0, .3)
}

#bottom .first-button {
    border-right: 25px solid #fff;
    border-bottom: 25px solid #fff;
    padding: 0
}

#bottom .first-button a {
    background-color: #22aee7
}

#bottom .first-button a:hover {
    background-color: #106d93
}

@media (max-width:767px) {
    #bottom .first-button {
        border-right: none
    }
}

#bottom .second-button {
    padding: 0;
    border-bottom: 25px solid #fff
}

#bottom .second-button h3 {
    padding-left: 250px;
    padding-right: 250px
}

#bottom .third-button {
    border-right: 25px solid #fff;
    padding: 0
}

@media (max-width:767px) {
    #bottom .third-button {
        border-right: none;
        border-bottom: 25px solid #fff
    }
}

#bottom .fourth-button {
    padding: 0
}

#bottom .fourth-button a {
    background-color: #2d3850
}

#bottom .fourth-button a:hover {
    background-color: #1b212f
}

#office-locations {
    display: inline-block;
    width: 100%
}

#office-locations h3.lab {
    font-size: 28px
}

#office-locations .location-links {
    margin-top: 40px
}

#office-locations .map-points {
    margin-top: 20px;
    position: relative
}

@media (max-width:991px) {
    #office-locations .map-points {
        display: none
    }
}

#office-locations .location {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: none
}

#office-locations .location:hover {
    color: #22aee7;
    cursor: pointer
}

@media (max-width:630px) {
    #office-locations .col-xs-6 {
        width: 100%
    }
}

#office-locations .address {
    position: absolute;
    width: 100%;
    font-family: 'DIN Next W01 Regular';
    font-size: 22px;
    line-height: 34px;
    background-color: #fff
}

#office-locations .address h3 {
    margin-bottom: 40px
}

#office-locations .address a {
    font-size: 24px
}

@media (max-width:1200px) {
    #office-locations .address {
        font-size: 20px;
        line-height: 30px
    }
}

@media (max-width:767px) {
    #office-locations .address {
        height: 460px
    }
}

#office-locations .map-point {
    border: 1px solid #afb0b2;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    cursor: pointer
}

#office-locations .map-point#boise {
    top: 266px;
    left: 38px
}

@media (max-width:1200px) {
    #office-locations .map-point#boise {
        top: 215px;
        left: 31px
    }
}

#office-locations .map-point#coeur {
    top: 51px;
    left: 17px
}

@media (max-width:1200px) {
    #office-locations .map-point#coeur {
        top: 42px;
        left: 11px
    }
}

#office-locations .map-point#idaho {
    top: 266px;
    left: 222px
}

@media (max-width:1200px) {
    #office-locations .map-point#idaho {
        top: 215px;
        left: 177px
    }
}

#office-locations .map-point#lewiston {
    top: 132px;
    left: 13px
}

@media (max-width:1200px) {
    #office-locations .map-point#lewiston {
        top: 107px;
        left: 13px
    }
}

#office-locations .map-point#pocatello {
    top: 303px;
    left: 203px
}

@media (max-width:1200px) {
    #office-locations .map-point#pocatello {
        top: 242px;
        left: 158px
    }
}

#office-locations .map-point#twin {
    top: 319px;
    left: 111px
}

@media (max-width:1200px) {
    #office-locations .map-point#twin {
        top: 253px;
        left: 95px
    }
}

#office-locations .map-point:hover {
    background-color: #c6d900
}

#office-locations.boise #boise.location {
    color: #22aee7
}

#office-locations.boise .circle#boise {
    background-color: #c6d900
}

#office-locations.boise .address#boise {
    z-index: 1
}

#office-locations.coeur #coeur.location {
    color: #22aee7
}

#office-locations.coeur .circle#coeur {
    background-color: #c6d900
}

#office-locations.coeur .address#coeur {
    z-index: 1
}

#office-locations.idaho #idaho.location {
    color: #22aee7
}

#office-locations.idaho .circle#idaho {
    background-color: #c6d900
}

#office-locations.idaho .address#idaho {
    z-index: 1
}

#office-locations.lewiston #lewiston.location {
    color: #22aee7
}

#office-locations.lewiston .circle#lewiston {
    background-color: #c6d900
}

#office-locations.lewiston .address#lewiston {
    z-index: 1
}

#office-locations.pocatello #pocatello.location {
    color: #22aee7
}

#office-locations.pocatello .circle#pocatello {
    background-color: #c6d900
}

#office-locations.pocatello .address#pocatello {
    z-index: 1
}

#office-locations.twin #twin.location {
    color: #22aee7
}

#office-locations.twin .circle#twin {
    background-color: #c6d900
}

#office-locations.twin .address#twin {
    z-index: 1
}

#office-locations.washington #washington.location {
    color: #22aee7
}

#office-locations.washington .circle#washington {
    background-color: #c6d900
}

#office-locations.washington .address#washington {
    z-index: 1
}

.modal-backdrop {
    z-index: 1
}

.modal-dialog {
    z-index: 5
}

.table-display {
    display: table
}

body.no-breadcrumbs #breadcrumb {
    display: none
}

.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
}

.small-header {
    font-family: 'DIN Next W01 Bold';
    font-size: 20px;
    color: #2d3850
}

li.previous {
    margin-right: 10px
}

#breadcrumb a {
    color: #bdbdbd;
    text-transform: uppercase;
    font-weight: 700
}

#breadcrumb a:hover {
    color: #2e3a52
}

#typenav li a {
    font-family: DINNextW01-CondensedBol;
    text-transform: uppercase;
    font-size: 22px
}

#newscontent .title a {
    color: #000
}

#newscontent .title a:hover {
    color: #22aee7
}

#newscontent .more {
    font-family: DINNextW01-CondensedBol;
    font-size: 18px;
    text-transform: uppercase
}

#newscontent #instamedia {
    margin-left: -6px;
    margin-right: -6px
}

#newscontent #instamedia a {
    display: inline-block;
    width: 25%;
    border: 6px solid #fff
}

#newscontent #instamedia a img {
    width: 100%
}

#newscontent #instamedia a:hover {
    opacity: .8
}

#accordion .panel-title {
    font-size: 20px;
    text-transform: none;
    font-family: 'DIN Next W06 Medium';
    color: #2d3850
}

#accordion .panel-heading {
    background-color: #fff
}

#accordion .panel-heading:hover {
    background-color: #f5f5f5
}

#accordion .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd;
    background-color: #f5f5f5
}

#search-thomas-pod {
    margin-top: 0
}

#form_thomas_search .col-xs-9 {
    padding-right: 0
}

#filter-legislation {
    margin-top: 90px
}

#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
}

#accordion.famous .panel-title {
    font-size: 15px
}

@media (max-width:767px) {
    #accordion.famous .panel-title {
        font-size: 26px
    }
}

@media (max-width:475px) {
    #accordion.famous .panel-title {
        font-size: 20px
    }
}

#accordion.famous .panel-heading {
    padding: 3px 15px
}

#accordion.famous .panel-default {
    border-color: transparent
}

#accordion.famous .panel-default>.panel-heading+.panel-collapse>.panel-body {
    font-size: 16px
}

@media (max-width:767px) {
    #accordion.famous .panel-default>.panel-heading+.panel-collapse>.panel-body {
        font-size: 24px
    }
}

@media (max-width:475px) {
    #accordion.famous .panel-default>.panel-heading+.panel-collapse>.panel-body {
        font-size: 18px
    }
}

#filterbuttons {
    margin-bottom: 30px
}

#filterbuttons a {
    background-color: transparent;
    color: #2e3a52;
    padding-left: 0;
    padding-right: 20px
}

#filterbuttons a:hover {
    color: #090c11
}

#listblocks {
    margin-top: 40px
}

#listblocks .block {
    display: table;
    height: 110px
}

#listblocks .block a {
    display: table-cell;
    vertical-align: middle;
    background-color: #2e3a52;
    font-weight: 700;
    color: #fff;
    transition: .3s background-color ease-in
}

#listblocks .block a .media-heading {
    top: 2px
}

#listblocks .block a:hover {
    background-color: #090c11
}

body#state #breadcrumb {
    display: none !important
}

body#state .gray-row {
    background-color: #f5f5f5
}

body#state .gray-row .col-md-8 {
    background-color: #fff
}

body#state .gray-row .col-md-4,
body#state .gray-row .col-md-8 {
    padding-top: 10px
}

body#state footer {
    margin-top: 0 !important
}

body#state #sam-headshot img {
    width: 100%
}

body#state #sam-headshot .buddon {
    font-size: 16px;
    text-align: center;
    color: #fff;
    background-color: #2d3850;
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    margin: 15px 0
}

body#state #sam-headshot .mobilebody {
    display: none
}

@media (max-width:500px) {
    body#state #sam-headshot .mobilebody {
        display: block
    }
}

@media (max-width:500px) {
    body#state #sam-headshot .normalbody {
        display: none
    }
}

body#bannerscroll #issuescrollbanner {
    height: 372.5px;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    background-size: cover;
    display: block;
    position: relative
}

body#bannerscroll #issuescrollbanner h5 {
    position: absolute;
    right: 3em;
    font-size: 18px;
    bottom: 0;
    display: block;
    color: #fff;
    text-shadow: 1px 1px 5px #000
}

body#about .banner-extra {
    background: url(/themes/crapo/images/about-mikenew.jpg);
    background-size: cover;
    width: 100%;
    height: 550px;
    margin-bottom: 30px;
    margin-top: -1px;
    background-position: right;
    transition: .4s ease-in height
}

@media (max-width:991px) {
    body#about .banner-extra {
        height: 390px
    }
}

@media (max-width:767px) {
    body#about .banner-extra {
        margin-bottom: 0
    }
}

@media (max-width:530px) {
    body#about .banner-extra {
        height: 280px
    }
}

@media (max-width:460px) {
    body#about .banner-extra {
        height: 230px
    }
}

body#about .banner-extra .overlay {
    background-color: #182338;
    font-family: 'DIN Next W06 Medium';
    float: left;
    max-width: 581px;
    padding: 30px 40px;
    color: #fff;
    margin-top: -1px;
    height: 100%;
    transition: .4s ease-in max-width
}

@media (max-width:1200px) {
    body#about .banner-extra .overlay {
        max-width: 470px
    }
}

@media (max-width:991px) {
    body#about .banner-extra .overlay {
        max-width: 370px;
        padding: 20px 20px
    }
}

@media (max-width:767px) {
    body#about .banner-extra .overlay {
        display: none
    }
}

body#about .banner-extra .overlay li {
    font-size: 16px;
    margin-bottom: 8px
}

@media (max-width:991px) {
    body#about .banner-extra .overlay li {
        font-size: 13px;
        margin-bottom: 0
    }
}

body#about .banner-extra .overlay h2 {
    color: #fff;
    margin-top: 0
}

body#about .banner-extra .overlay #biobuttons {
    font-size: 16px;
    padding: 15px 0
}

@media (max-width:991px) {
    body#about .banner-extra .overlay #biobuttons {
        font-size: 14px;
        padding: 5px 0
    }
}

body#about .banner-extra .overlay #biobuttons a:hover {
    color: #c6d900
}

body#about .banner-extra .overlay #biobuttons .biolink {
    color: #fff;
    padding-left: 20px
}

body#about .banner-extra .overlay #biobuttons .portraitlink {
    color: #fff
}

body#about .mobileglance .overlay {
    background-color: #182338;
    display: none;
    font-family: 'DIN Next W06 Medium';
    float: left;
    width: 100%;
    padding: 30px 40px;
    color: #fff;
    margin-top: -1px;
    height: 100%
}

@media (max-width:767px) {
    body#about .mobileglance .overlay {
        display: block;
        padding: 20px 20px;
        margin-bottom: 30px
    }
}

body#about .mobileglance .overlay li {
    font-size: 16px;
    margin-bottom: 13px
}

@media (max-width:991px) {
    body#about .mobileglance .overlay li {
        font-size: 13px;
        margin-bottom: 0
    }
}

body#about .mobileglance .overlay h2 {
    color: #fff;
    margin-top: 0
}

body#about .mobileglance .overlay #biobuttons {
    font-size: 16px;
    padding: 15px 0
}

@media (max-width:991px) {
    body#about .mobileglance .overlay #biobuttons {
        font-size: 14px;
        padding: 5px 0
    }
}

body#about .mobileglance .overlay #biobuttons a:hover {
    color: #c6d900
}

body#about .mobileglance .overlay #biobuttons .biolink {
    color: #fff
}

body#about .mobileglance .overlay #biobuttons .portraitlink {
    color: #fff
}

body#awards .awards-header {
    background-color: #f5f5f5;
    padding-bottom: 50px
}

body#awards .awards-header h1 {
    font-size: 60px;
    margin-top: 60px
}

body#awards .awards-header #sam-main {
    font-family: 'DIN Next W01 Light';
    font-size: 20px
}

body#awards .awards-header a {
    color: #2d3850;
    font-family: DINNextW01-CondensedMed;
    font-size: 28px;
    display: inline-block;
    margin-bottom: 10px
}

body#awards .awards-header a:hover {
    color: #22aee7
}

body#awards .ih-item a {
    width: 100%;
    height: 360px;
    display: inline-block;
    color: #fff;
    margin-bottom: 20px
}

body#awards .ih-item .img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center
}

body#awards .ih-item .filter {
    display: table;
    width: 100%;
    padding: 20px 50px;
    height: 100%;
    background-color: rgba(34, 174, 231, .8);
    transition: .3s ease-in background-color
}

body#awards .ih-item .filter h2 {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    font-family: DINNextW01-CondensedBol;
    font-size: 38px;
    text-align: center
}

body#awards .ih-item a:hover .filter {
    background-color: rgba(45, 56, 80, .9)
}

body#awards .award-category {
    padding-top: 80px
}

body#awards .award-category .award-section-header {
    font-family: DINNextW01-CondensedMed;
    font-size: 40px;
    text-transform: none
}

body#awards .block-modal .modal-dialog {
    margin: 100px auto;
    width: 700px
}

@media (max-width:991px) {
    body#awards .block-modal .modal-dialog {
        width: 90%
    }
}

body#awards .block-modal .modal-content {
    padding: 30px 40px
}

body#awards .block-modal .modal-content h3 {
    font-size: 38px
}

@media (max-width:375px) {
    body#awards .block-modal .modal-content h3 {
        font-size: 26px
    }
}

@media (max-width:375px) {
    body#awards .block-modal .modal-content .description p {
        line-height: 25px
    }
}

@media (max-width:991px) {
    body#awards .block-modal .modal-content {
        padding: 10px
    }
}

@media (max-width:320px) {
    body#awards .block-modal .modal-content .modal-body img {
        width: 100%
    }
}

body#awards .block-modal .modal-header {
    border: none
}

body#awards .block-modal .modal-header .close {
    opacity: 1;
    color: #2d3850
}

body#awards .block-modal .modal-header .close:hover {
    color: #22aee7
}

body#awards .modal-backdrop.in {
    background-color: transparent;
    opacity: 1
}

body#awards #NavMobileModal .modal-backdrop.in {
    background-color: #2e3a52;
    opacity: 1
}

#typenav li a {
    color: #2d3850
}

#typenav li.active a {
    color: #fff;
    background-color: #2e3a52
}

#typenav.affix {
    top: 0
}

body.newsroom_landing #videos .videoiframe {
    transition: .4s ease-in height
}

@media (max-width:680px) {
    body.newsroom_landing #videos .videoiframe {
        height: 365px
    }
}

@media (max-width:550px) {
    body.newsroom_landing #videos .videoiframe {
        height: 300px
    }
}

@media (max-width:479px) {
    body.newsroom_landing #videos .videoiframe {
        height: 230px
    }
}

@media (max-width:330px) {
    body.newsroom_landing #videos .videoiframe {
        height: 180px
    }
}

@media (max-width:767px) {
    #sam-main img {
        max-width: 100% !important;
        height: auto;
    }
}

body#priorities .ih-item.circle {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    margin-bottom: 30px;
    cursor: pointer
}

body#priorities .ih-item.circle a {
    cursor: pointer
}

body#priorities .ih-item.circle a:hover .img {
    box-shadow: inset 0 0 0 12em rgba(19, 35, 66, .56)
}

body#priorities .ih-item.circle .img {
    width: 100%;
    height: 370px;
    border-radius: 0;
    background-repeat: no-repeat;
    background-size: cover
}

body#priorities .ih-item.circle .img:before {
    border-radius: 0;
    box-shadow: inset 0 0 0 12em rgba(19, 35, 66, .46);
    transition: .2s ease-in all
}

body#priorities .ih-item.circle .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 {
        font-size: 32px
    }
}

@media (max-width:991px) {
    body#priorities .ih-item.circle .img .filter h2 {
        font-size: 36px
    }
}

body#priorities .ih-item.circle .info {
    border-radius: 0
}

body#priorities .ih-item.circle .info h3 {
    height: auto;
    font-size: 32px;
    padding: 0 18px;
    padding-top: 20px;
    margin: 0 auto
}

body#priorities .ih-item.circle .info .info-back {
    border-radius: 0;
    background: #c6d900;
    text-align: left
}

@media (max-width:1199px) {
    body#priorities .ih-item.circle .info .info-back h3 {
        font-size: 28px
    }
}

@media (max-width:991px) {
    body#priorities .ih-item.circle .info .info-back h3 {
        font-size: 32px
    }
}

body#priorities .ih-item.circle .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 {
        font-size: 14px;
        line-height: 20px
    }
}

@media (max-width:991px) {
    body#priorities .ih-item.circle .info .info-back p {
        font-size: 16px;
        line-height: 24px
    }
}

#share-buttons #share-copy-link {
    cursor: pointer
}

#multimedia-browser ul.nav-tabs {
    border-bottom: 3px solid #2e3a52
}

#multimedia-browser ul.nav-tabs li a:hover {
    background: #22aee7
}

#multimedia-browser ul.nav-tabs li.active {
    background-color: #2e3a52
}

#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: #22aee7;
    color: #fff
}

#multimedia-browser .pagination {
    background-color: #2e3a52
}

#multimedia-browser .row .media-thumbnail a {
    color: #000
}

#multimedia-browser .row .media-thumbnail a:hover {
    color: #2e3a52
}

body footer {
    margin-top: 30px;
    background-color: #2e3a52
}

body footer .footer-ul.footernav {
    text-align: center;
    margin-bottom: -10px
}

@media (max-width:991px) {
    body footer .footer-ul.footernav {
        display: none
    }
}

body footer .footer-ul.footernav li {
    padding: 30px 35px 20px;
    text-align: center
}

@media (max-width:991px) {
    body footer .footer-ul.footernav li {
        padding: 30px 17px 20px
    }
}

body footer .footer-ul.footernav li a {
    color: #fff;
    font-size: 24px;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase
}

body footer .footer-ul.footernav li a:hover {
    text-decoration: underline
}

body footer .footer-ul.footernav li a:hover {
    color: #c6d900;
    text-decoration: none
}

body footer .subfooternav {
    text-align: center;
    padding-bottom: 30px;
    background-color: #2d3850
}

@media (max-width:991px) {
    body footer .subfooternav {
        padding-bottom: 0;
        padding: 10px
    }
}

body footer .subfooternav a {
    color: #fff
}

body footer .subfooternav a:hover {
    text-decoration: underline
}

body footer .subfooternav .icon {
    margin-left: 15px;
    display: inline-block;
    font-size: 26px
}

body footer .subfooternav .icon:hover {
    color: #c6d900
}

body footer .subfooternav li {
    padding-top: 3px
}

body footer .subfooternav li+li {
    border-left: 1px solid #fff;
    padding-right: 10px
}

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: 50px
}

#flagForm #flag-options .head {
    background-color: #2e3a52;
    color: #fff
}

.hide-on-submit {
    display: none !important
}

.serif {
    font-family: 'DIN Next W01 Regular'
}

.sans {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase
}

.sans-bold {
    font-family: DINNextW01-CondensedBol;
    text-transform: uppercase
}

.condensed {
    font-family: DINNextW01-CondensedReg
}

.mediumcon {
    font-family: DINNextW01-CondensedMed
}

.boldcon {
    font-family: DINNextW01-CondensedBol
}

.bold {
    font-family: 'DIN Next W01 Bold'
}

.lightcon {
    font-family: DINNextW01-CondensedLig
}

.dinnext,
.regular {
    font-family: 'DIN Next W01 Regular'
}

.medium {
    font-family: 'DIN Next W06 Medium'
}

.uppercase {
    text-transform: uppercase
}

.no-uppercase {
    text-transform: none
}

body {
    font-size: 20px;
    font-family: 'DIN Next W01 Regular'
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase
}

h1,
h2 {
    font-family: DINNextW01-CondensedBol;
    color: #2d3850;
    text-transform: uppercase
}

.section-header {
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase
}

.light-bg-link,
a {
    color: #22aee7
}

.light-bg-link:hover,
a:hover {
    text-decoration: none;
    color: #090c11
}

.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: 10px 10px 10px 30px;
    vertical-align: bottom;
    font-size: 16px
}

p {
    margin-bottom: 30px;
    line-height: 30px
}

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: #2e3a52;
    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: #090c11;
    color: #fff
}

.btn-block:not(#side-search-btn) {
    background-color: #2e3a52;
    color: #fff;
    font-size: 22px;
    padding: 28px
}

.btn-block:not(#side-search-btn):hover {
    background-color: #090c11;
    color: #fff
}

#side-search-btn {
    padding: 1px !important;
    margin-top: 0 !important;
    font-size: 21px
}

#flagForm #side-search-btn {
    padding: 20px 45px 20px 45px !important
}

body#travels #main_container .row {
    margin-right: 0;
    margin-left: 0
}

body#travels #main_container .row .col-md-12 {
    padding-left: 0;
    padding-right: 0
}

#main_column #grayback {
    width: 100%;
    position: absolute;
    height: 850px;
    background-color: #eaebed
}

@media (max-width:991px) {
    #main_column #grayback {
        height: 500px
    }
}

@media (max-width:767px) {
    #main_column #grayback {
        display: none
    }
}

#main_column #travels .map-title {
    position: absolute;
    right: 80px
}

@media (min-width:1200px) {
    #main_column #travels .map-title {
        margin-top: 40px
    }
}

@media (max-width:991px) {
    #main_column #travels .map-title {
        top: 5em;
        right: 20px;
        max-width: 440px
    }
}

@media (max-width:767px) {
    #main_column #travels .map-title {
        top: 0;
        right: 0;
        max-width: 440px;
        margin: 0 auto;
        position: relative;
        padding: 19px 0;
        width: 100%
    }
}

#main_column #travels .row.gray {
    background-color: #d6d8dd;
    position: relative;
    width: 100%;
    top: 0
}

#main_column #travels .row.gray .light-grey {
    background-color: #eaebed
}

@media (max-width:767px) {
    #main_column #travels .row.gray .light-grey {
        height: 170px
    }
}

#main_column #travels #map-container {
    position: relative;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 850px
}

@media (max-width:992px) {
    #main_column #travels #map-container {
        height: 500px
    }
}

@media (max-width:767px) {
    #main_column #travels #map-container {
        display: none
    }
}

#main_column #travels #map-container #map {
    display: none;
    position: absolute;
    background-image: url(/themes/crapo/images/Idaho.png);
    background-size: 100% 100%
}

@media (min-width:767px) {
    #main_column #travels #map-container #map {
        display: none
    }
}

@media (min-width:992px) {
    #main_column #travels #map-container #map {
        display: block;
        left: 0;
        top: 8em;
        width: 400px;
        height: 627px
    }
}

@media (min-width:1200px) {
    #main_column #travels #map-container #map {
        display: block;
        left: 0;
        top: 30px;
        width: 481px;
        height: 754px
    }
}

#main_column #travels #map-container #map .circle-icon {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #c6d900;
    border: 2px solid #fff;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    transition: all .1s ease-in
}

#main_column #travels #map-container #map .circle-icon:hover {
    position: absolute;
    content: "";
    display: block;
    background-color: #c6d900;
    border: 2px solid #fff;
    transform: scale(1.6);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    transition: all .1s ease-in
}

#main_column #travels #map-container #map .circle-icon.town_u {
    background-color: red !important
}

#main_column #travels #map-restrictor {
    height: 850px;
    display: none;
    border: 1px solid #d6d8dd;
    background-color: #d6d8dd;
    padding-top: 30px;
    padding: 50px
}

@media (min-width:320px) {
    #main_column #travels #map-restrictor {
        display: block
    }
}

@media (max-width:992px) {
    #main_column #travels #map-restrictor {
        height: 500px;
        padding: 20px 0
    }
}

#main_column #travels #map-restrictor h3 {
    font-family: DINNextW01-CondensedMed;
    color: #2d3850;
    font-size: 40px;
    font-weight: 500
}

@media (min-width:767px) {
    #main_column #travels #map-restrictor h3 {
        margin: 0 0 20px
    }
}

@media (max-width:767px) {
    #main_column #travels #map-restrictor h3 {
        margin-top: 10px
    }
}

#main_column #travels #map-restrictor .form-inline {
    width: 100%;
    display: inline-block;
    position: relative
}

#main_column #travels #map-restrictor .form-inline .form-group {
    display: block
}

@media (max-width:767px) {
    #main_column #travels #map-restrictor .form-inline .form-group {
        margin-bottom: 0
    }
}

#main_column #travels #map-restrictor .form-inline label {
    color: #6a6a6a;
    font-weight: 200;
    width: 100%;
    margin-top: 15px
}

@media (min-width:767px) {
    #main_column #travels #map-restrictor .form-inline label {
        font-size: 16px
    }
}

@media (min-width:992px) {
    #main_column #travels #map-restrictor .form-inline label {
        font-size: 18px
    }
}

#main_column #travels #map-restrictor .form-inline input[type=email],
#main_column #travels #map-restrictor .form-inline input[type=text],
#main_column #travels #map-restrictor .form-inline select,
#main_column #travels #map-restrictor .form-inline textarea {
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: none;
    height: 42px;
    text-align-last: center;
    text-align: center;
    width: 100%;
    padding: 10px;
    vertical-align: baseline;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

#main_column #travels #map-restrictor .form-inline select {
    font-size: 18px
}

#main_column #travels #map-restrictor .form-inline .btn {
    position: relative;
    margin: 0 0 0 1em;
    padding: 0;
    background-color: transparent;
    line-height: 1;
    width: 100%;
    color: #2d3850;
    text-transform: uppercase;
    letter-spacing: 0;
    height: 42px;
    float: none !important;
    font-weight: 700;
    font-family: 'DIN Next W01 Bold';
    width: 200px
}

@media (min-width:767px) {
    #main_column #travels #map-restrictor .form-inline .btn {
        font-size: 16px
    }
}

@media (min-width:992px) {
    #main_column #travels #map-restrictor .form-inline .btn {
        font-size: 17px
    }
}

#main_column #travels #map-restrictor .form-inline .btn:hover {
    background-color: #c6d900;
    color: #fff
}

#main_column #travels #map-restrictor .form-inline #map-reset {
    margin: 0;
    padding: 0 20px;
    width: 100%
}

#main_column #travels #map-restrictor .form-inline .btn-primary {
    margin: 0 0 0 1em;
    padding: .5em 1em;
    background-color: #22aee7;
    color: #fff;
    border: 0;
    font-family: 'DIN Next W01 Bold';
    margin-top: 42px;
    width: 100%;
    margin-left: 0
}

#main_column #travels #map-listing .map-entry {
    padding: 25px 0;
    font-size: 15px
}

@media (min-width:767px) {
    #main_column #travels #map-listing .map-entry {
        padding: 25px
    }
}

@media (min-width:992px) {
    #main_column #travels #map-listing .map-entry {
        padding: 25px 60px
    }
}

#main_column #travels #map-listing .map-entry h3 {
    margin: 0 0 .1em 0;
    font-family: 'DIN Next W01 Bold';
    color: #2d3850
}

#main_column #travels #map-listing .map-entry h4 {
    margin: 0 0 .2em 0;
    font-size: 18px;
    font-family: 'DIN Next W01 Regular'
}

#main_column #travels #map-listing .map-entry .address-entry,
#main_column #travels #map-listing .map-entry .desc-entry {
    margin-top: 1em
}

#main_column #travels #map-listing .map-entry .address-entry a,
#main_column #travels #map-listing .map-entry .desc-entry a {
    font-size: 13px;
    font-weight: 700
}

#main_column #travels #map-listing .map-entry .address-entry .map-entry-link,
#main_column #travels #map-listing .map-entry .desc-entry .map-entry-link {
    display: none
}

@media (min-width:767px) {

    #main_column #travels #map-listing .map-entry .address-entry .map-entry-link,
    #main_column #travels #map-listing .map-entry .desc-entry .map-entry-link {
        display: block
    }
}

#main_column #travels #map-listing .map-entry+.map-entry {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #dadada
}

@media (min-width:767px) {
    #main_column #travels #map-listing .visible {
        display: block
    }

    #main_column #travels #map-listing .map-entry+.visible {
        border-top: none
    }
}

@media (min-width:767px) {
    #main_column #travels .visible {
        display: block
    }

    #main_column #travels .map-entry+.visible {
        border-top: none
    }
}

.map-title {
    margin-top: 50px;
    margin-bottom: 40px
}

@media (min-width:1200px) {
    .map-title {
        margin-top: 80px
    }
}

.popover,
.popover-map {
    width: 250px;
    font-size: 12px;
    z-index: 999999 !important;
    background-color: #fff !important;
    border: 8px solid #fff;
    color: #2d3850
}

.popover-map.top,
.popover.top {
    margin-top: -20px
}

.popover-map.top>.arrow,
.popover.top>.arrow {
    bottom: -50px;
    margin-left: -20px;
    border-top-color: rgba(0, 0, 0, .1);
    border-width: 21px
}

.popover-map.top>.arrow:after,
.popover.top>.arrow:after {
    border-width: 20px;
    bottom: -19px;
    margin-left: -21px
}

.popover .fade.in,
.popover-map .fade.in {
    background-color: #22aee7
}

.popover .popover-title,
.popover-map .popover-title {
    margin: 0;
    padding: 18px 14px 7px 14px;
    background: 0 0;
    font-size: 22px;
    line-height: 1;
    border: none;
    color: #2d3850;
    text-align: center
}

.popover .close,
.popover-map .close {
    margin-right: 7px;
    color: #22aee7
}

.popover .popover-content,
.popover-map .popover-content {
    font-size: 12px;
    line-height: 1.3em;
    color: #2d3850
}

.popover .popover-content .popover-date,
.popover-map .popover-content .popover-date {
    position: relative;
    top: -5px;
    text-align: center
}

.popover .popover-content a,
.popover-map .popover-content a {
    color: #c6d900;
    font-weight: 700;
    width: 100%;
    text-align: center;
    display: inline-block
}

.popover .popover-content a:hover,
.popover-map .popover-content a:hover {
    color: #c6d900
}

.popover .popover-content p,
.popover-map .popover-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.3em
}

.popover .popover-content p+p,
.popover-map .popover-content p+p {
    margin-top: 1em
}

.popover .popover-content .popover-img,
.popover-map .popover-content .popover-img {
    margin: 0 1em 0 0;
    height: 115px;
    text-align: center;
    overflow: hidden
}

.popover .popover-content .popover-img img,
.popover-map .popover-content .popover-img img {
    width: 100%
}

#map-key {
    margin-top: 50px
}

#map-key .circle-icon-key {
    display: inline-block;
    position: relative;
    top: 3px;
    width: 20px;
    height: 20px;
    background-color: #c6d900;
    border: 2px solid #fff;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    transition: all .1s ease-in
}

#map-key .circle-icon-key.town_u-key {
    background-color: red !important
}

#mapbox #map {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    min-height: 1000px;
    margin-top: 40px
}

@media (max-width:991px) {
    #mapbox #map {
        position: absolute;
        z-index: 0;
        opacity: 0
    }
}

#mapbox>.container-fluid {
    background-color: #eaebed;
    padding-bottom: 50px
}

#mapbox #filter-events {
    background-color: #d6d8dd;
    padding: 0 25px 25px 25px;
    margin-top: 40px;
    height: 1000px
}

@media (max-width:991px) {
    #mapbox #filter-events {
        height: auto
    }
}

@media (max-width:767px) {
    #mapbox #filter-events {
        padding-top: 5px
    }
}

#mapbox #filter-events .filter-group {
    background-color: rgba(66, 180, 230, .1);
    padding: 5px 25px;
    margin-bottom: 10px
}

#mapbox #filter-events .filter-group .filter-input {
    font-size: 18px;
    height: 45px;
    padding: 0 5px;
    font-style: italic;
    border: none;
    box-shadow: none
}

#mapbox #filter-events #reset {
    width: 100%;
    font-size: 27px;
    padding: 10px
}

#mapbox .map-popup {
    width: 500px;
    font-size: 14px
}

#mapbox .map-popup--image-box {
    display: inline-block;
    width: 35%;
    vertical-align: top
}

#mapbox .map-popup--has-image {
    display: inline-block;
    width: 65%;
    vertical-align: top;
    padding-left: 20px
}

#mapbox .map-popup--no-image {
    text-align: center
}

#mapbox .map-popup .marker-title {
    font-size: 20px
}

#mapbox .map-popup .marker-date {
    color: #22aee7
}

#mapbox .map-title {
    margin-top: 40px;
    margin-bottom: 50px
}

#mapbox #coordinates {
    margin-top: 70px;
    text-align: center
}

#mapbox #coordinates p {
    margin: 0
}

#mapbox #coordinates .marker-title {
    margin-bottom: 0;
    font-family: 'DIN Next W01 Bold'
}

#mapbox #coordinates .marker-date {
    margin-bottom: 15px
}

#mapbox .checkbox {
    margin-left: 20px
}

#mapbox .circle-icon-key {
    display: inline-block;
    position: relative;
    top: 3px;
    width: 20px;
    height: 20px;
    background-color: #c6d900;
    border: 2px solid #fff;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    transition: all .1s ease-in
}

#mapbox .circle-icon-key.town_u-key {
    background-color: red !important
}

#mapbox .see-more {
    font-size: 40px;
    left: 49%;
    top: 30px
}

@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
}

.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
}


.alert {
    padding: 5px;
    padding-left: 10px;
    border-radius: 0px;
    color: #fff;
    background-color: #9a0000;
  }

  .alert .alertholder{
      display: table;
      width: 100%;
      max-width: 1300px;
      padding: 0 1.5rem;
      margin: 0 auto;
  }

  .alert .alertIcn {
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    width: 5%;
  }

  .alert .alertIcn span{
      display: block;
  }

  .alert .headline{
    display: table-cell;
    vertical-align: middle;
  }
  .alert a {
    color: #fff;
    font-family: DINNextW01-CondensedMed;
    text-transform: uppercase;
    font-size: 26px;
  }
  .alert a:hover {
    color: #fff;
  }

/*# sourceMappingURL=common.css.map */