#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)
    }
}

body#home .alert {
    border-radius: 0;
    background-color: #ffb81d
}

body#home .alert .headline a:hover {
    color: #26396a
}

body .alert {
    border-radius: 0;
    background-color: #ffb81d
}

body .alert .headline a:hover {
    color: #26396a
}

body#home #header {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: transparent
}

body#home .nav-hold {
    position: relative;
    width: 100%
}

body#home #header .right {
    position: absolute;
    right: 0;
    top: 26px
}

body#home #header .right .social-list a {
    font-size: 14px;
    background-color: #fff;
    color: transparent;
    height: 24px;
    width: 24px;
    border-radius: 20px;
    margin-left: 4px;
    display: inline-block;
    color: #7492b4;
    text-align: center;
    padding-top: 3px
}

body#home #header .right .social-list a:hover {
    background-color: #ffb81d
}

#interior-header {
    margin-bottom: 30px;
    position: fixed;
    width: 100%;
    z-index: 300;
    height: 100px;
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, #fff, #000);
    background-image: -moz-linear-gradient(left, #fff, #000);
    background-image: -o-linear-gradient(left, #fff, #000);
    background-image: -ms-linear-gradient(left, #fff, #000);
    background-image: linear-gradient(left, #fff, #000);
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%)
}

#interior-header .container {
    position: relative
}

#interior-header .logo-hold {
    width: 20%;
    display: inline-block;
    position: relative;
    top: -37px
}

@media (max-width:991px) {
    #interior-header .logo-hold {
        width: 270px;
        float: left;
        top: 37px
    }
}

#interior-header .logo-hold img {
    width: 100%
}

#interior-header .nav-hold {
    width: 70%;
    display: inline-block;
    margin-top: 20px
}

@media (max-width:991px) {
    #interior-header .nav-hold {
        width: 200px;
        float: right
    }
}

@media (max-width:535px) {
    #interior-header .nav-hold {
        width: auto;
        margin-right: 20px
    }
}

#interior-header .nav-hold .navbar {
    width: 80%;
    margin-left: 70px
}

@media (max-width:1200px) {
    #interior-header .nav-hold .navbar {
        margin-left: 30px;
        width: 88%
    }
}

@media (max-width:991px) {
    #interior-header .nav-hold .navbar {
        width: 100%
    }
}

#interior-header .nav-hold .navbar li a {
    font-size: 22px
}

@media (max-width:1200px) {
    #interior-header .nav-hold .navbar li a {
        font-size: 19px
    }
}

#interior-header .nav-hold .navbar #search #sitesearch #search-field {
    background-color: transparent;
    width: 600px
}

@media (max-width:1330px) {
    #interior-header .nav-hold .navbar #search #sitesearch #search-field {
        width: 560px
    }
}

@media (max-width:1200px) {
    #interior-header .nav-hold .navbar #search #sitesearch #search-field {
        width: 500px
    }
}

#interior-header .nav-hold .navbar #search.showme {
    width: 640px
}

@media (max-width:1330px) {
    #interior-header .nav-hold .navbar #search.showme {
        width: 600px
    }
}

@media (max-width:1200px) {
    #interior-header .nav-hold .navbar #search.showme {
        width: 540px
    }
}

@media (max-width:535px) {
    #interior-header .nav-hold .navbar .menulabel {
        display: none
    }
}

#interior-header .right {
    position: absolute;
    right: 0;
    top: 40px
}

@media (max-width:991px) {
    #interior-header .right {
        display: none
    }
}

#interior-header .right .social-list a {
    font-size: 14px;
    background-color: #fff;
    height: 24px;
    width: 24px;
    border-radius: 20px;
    margin-left: 4px;
    display: inline-block;
    color: #021d49;
    text-align: center;
    padding-top: 3px
}

#interior-header .right .social-list a:hover {
    background-color: #ffb81d
}

#interior-header.affix-top {
    top: auto;
    -webkit-transition: top .3s ease;
    -moz-transition: top .3s ease;
    -o-transition: top .3s ease;
    transition: top .3s ease
}

#interior-header.affix {
    top: 0;
    -webkit-transition: top .3s ease;
    -moz-transition: top .3s ease;
    -o-transition: top .3s ease;
    transition: top .3s ease
}

body .navbar {
    background-color: transparent;
    width: 74%;
    display: inline-block
}

body .navbar .nav-pills {
    width: 94%;
    float: left;
    margin-top: 10px
}

body .navbar .nav-pills>li a {
    color: #fff;
    font-family: 'Proxima Nova W01';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px
}

body .navbar .nav-pills>li .dropdown-menu {
    background-color: #021d49;
    border: 0
}

body .navbar .nav-pills>li .dropdown-menu li a {
    color: #fff;
    text-transform: none;
    font-weight: 400
}

body .navbar .nav-pills>li .dropdown-menu li a:hover {
    color: #ffb81d
}

body .navbar .nav-pills>li.selected,
body .navbar .nav-pills>li:hover {
    background-color: #021d49
}

body .navbar .nav-pills>li.selected a,
body .navbar .nav-pills>li:hover a {
    color: #ffb81d
}

body .navbar .nav-pills>li.selected:after,
body .navbar .nav-pills>li:hover:after {
    background-color: #021d49;
    content: "";
    width: 100%;
    position: absolute;
    height: 30px;
    top: -30px
}

body .navbar .togglemenu {
    color: #fff;
    font-size: 23px;
    margin-top: 20px;
    display: block
}

body .navbar .srchbuttonmodal {
    color: #fff;
    font-size: 21px;
    position: relative;
    top: 22px;
    margin-right: 8px;
    width: 30px;
    float: left
}

body .navbar .srchbutton {
    position: relative;
    top: 24px;
    height: 70px;
    padding-left: 13px;
    font-size: 17px;
    float: right
}

body .navbar .srchbutton span {
    color: #fff;
    vertical-align: middle;
    display: table-cell
}

body .navbar .srchbutton:hover span {
    color: #ffb81d
}

body .navbar #search {
    float: right;
    width: 0%;
    overflow: hidden;
    -webkit-transition: width .1s;
    transition: width .1s;
    right: 35px;
    height: 45px;
    position: absolute;
    top: 10px;
    display: block
}

body .navbar #search.showme {
    width: 90%;
    height: 45px;
    position: absolute;
    top: 10px;
    -webkit-transition: width .4s;
    transition: width .4s
}

@media (max-width:1330px) {
    body .navbar #search.showme {
        width: 800px
    }
}

@media (max-width:1200px) {
    body .navbar #search.showme {
        width: 650px
    }
}

body .navbar #search #sitesearch {
    float: right;
    width: 100%;
    padding: 0 15px 0;
    height: 100%
}

body .navbar #search #sitesearch #search-field {
    position: absolute;
    left: 0;
    width: 95%;
    border: none;
    height: 100%;
    padding: 5px;
    background-color: rgba(91, 143, 189, .4);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #fff
}

body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
    color: #fff;
    font-size: 18px
}

body .navbar #search #sitesearch #search-field::-moz-placeholder {
    color: #fff;
    font-size: 18px
}

body .navbar #search #sitesearch #search-field:-moz-placeholder {
    color: #fff;
    font-size: 18px
}

body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
    color: #fff;
    font-size: 18px
}

body .navbar #search #sitesearch #search-field:focus {
    outline: 0;
    border: 2px solid #fff
}

@media (max-width:1330px) {
    body .navbar #search #sitesearch #search-field {
        width: 750px
    }
}

@media (max-width:1200px) {
    body .navbar #search #sitesearch #search-field {
        width: 600px
    }
}

body .navbar #search #sitesearch button {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 3px 6px;
    position: absolute;
    height: 100%;
    width: 50px;
    right: -10px;
    font-size: 18px
}

body .navbar #search #sitesearch button .glyphicon {
    top: 4px
}

body .navbar #search #sitesearch button:hover {
    color: #ffb81d
}

body #NavMobileModal .modal-backdrop.in {
    background-color: #021d49
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:last-child {
    border: none;
    text-align: center;
    font-size: 28px
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 25px;
    color: #ffb81d
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li>a:hover {
    color: #fff
}

body #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%
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a {
    color: #fff
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
    color: #ffb81d
}

body#home .navbar .nav-pills>li.selected:after,
body#home .navbar .nav-pills>li:hover:after {
    height: 11px;
    top: -11px
}

#SearchModal .modal-backdrop.in {
    background-color: #021d49
}

#SearchModal button[type=submit] {
    background-color: #ffb81d
}

.no-padding {
    padding: 0
}

.table {
    display: table;
    margin-bottom: 0;
    word-break: break-word
}

.cell {
    display: table-cell;
    vertical-align: middle
}

body#home .banner {
    display: table;
    height: 650px;
    width: 100%;
    background-image: url(/themes/murkowski/images/banner.jpg);
    background-size: cover
}

@media (max-width:600px) {
    body#home .banner {
        height: 580px
    }
}

@media (max-width:515px) {
    body#home .banner {
        height: 540px
    }
}

body#home .banner .home-logo-hold {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    text-align: center
}

body#home .banner .home-logo-hold img {
    width: 60%;
    max-width: 800px
}

@media (max-width:767px) {
    body#home .banner .home-logo-hold img {
        width: 95%
    }
}

@media (max-width:479px) {
    body#home .banner .home-logo-hold img {
        width: 117%;
        margin-left: -8%
    }
}

.action-bar {
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, #fff, #000);
    background-image: -moz-linear-gradient(left, #fff, #000);
    background-image: -o-linear-gradient(left, #fff, #000);
    background-image: -ms-linear-gradient(left, #fff, #000);
    background-image: linear-gradient(left, #fff, #000);
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%);
    border-top: 10px solid #f2f2f2;
    border-bottom: 10px solid #f2f2f2;
    display: inline-block;
    width: 100%;
    border-bottom: 3px solid #f2f2f2
}

.action-bar .featured-button {
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, #fff, #000);
    background-image: -moz-linear-gradient(left, #fff, #000);
    background-image: -o-linear-gradient(left, #fff, #000);
    background-image: -ms-linear-gradient(left, #fff, #000);
    background-image: linear-gradient(left, #fff, #000);
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%);
    display: table;
    color: #fff;
    font-family: 'Proxima Nova W01';
    font-size: 24px;
    text-transform: uppercase;
    float: left;
    width: 20%;
    height: 150px;
    text-align: center;
    padding: 15px
}

@media (max-width:1036px) {
    .action-bar .featured-button {
        width: 20%;
        font-size: 18px
    }
}

@media (max-width:800px) {
    .action-bar .featured-button {
        width: 19%;
        font-size: 18px
    }
}

@media (max-width:676px) {
    .action-bar .featured-button {
        width: 17.5%;
        font-size: 17px
    }
}

@media (max-width:600px) {
    .action-bar .featured-button {
        width: 100%;
        height: auto;
        font-size: 18px
    }
}

.action-bar .featured-button:hover {
    background: #021d49;
    color: #ffb81d
}

.action-bar .featured-button+.featured-button {
    border-left: 1px solid #526386
}

.press-con {
    margin: 50px 0;
    display: inline-block
}

.child {
    height: 300px;
    overflow: hidden
}

.child:nth-of-type(even) .tile {
    background-color: #021d49;
    color: #fff
}

.child:nth-of-type(even) .tile.with-img {
    background-color: rgba(2, 29, 73, .5);
    color: #fff;
    z-index: 0;
    position: relative;
}

.child:nth-of-type(even) .tile.with-img .press-image {
    background-size: cover;
    background-repeat: no-repeat
}

.child:nth-of-type(even) .tile.with-img:hover {
    background-color: rgba(255, 184, 29, .5)
}

.child:nth-of-type(even) .tile.with-img:hover .press-image {
    transform: scale(1.2)
}

.child:nth-of-type(odd) .tile {
    color: #021d49;
    background-color: #fafafa
}

.child:nth-of-type(odd) .tile.with-img {
    color: #021d49;
 
    z-index: 0;
    position: relative;
}

.child:nth-of-type(odd) .tile.with-img:hover {
    background-color: rgba(255, 184, 29, .5)
}

.child:nth-of-type(odd) .tile.with-img:hover .press-image {
    transform: scale(1.2)
}

@media (max-width:767px) {
    .press-child {
        height: 200px
    }

    .press-child .tile {
        height: 200px;
        padding: 0 80px
    }
}

@media (max-width:515px) {
    .press-child .tile {
        padding: 0 35px
    }
}

@media (max-width:600px) {
    .issue-child {
        width: 100%;
        height: auto
    }

    .issue-child .tile {
        border-top: 10px solid #f2f2f2;
        height: auto
    }
}

.tile {
    height: 300px;
    text-align: center;
    font-family: 'Proxima Nova W01';
    font-weight: 700;
    font-size: 28px;
    transition: all ease .5s;
    overflow: hidden;
    position: relative
}

@media (max-width:991px) {
    .tile {
        font-size: 24px
    }
}

.tile.all-text:hover {
    background-color: #ffb81d;
    color: #fff
}

.tile .press-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: absolute;
    z-index: -1;
    transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -ms-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in
}

.tile .press-image:hover {
    background-size: 140%
}

.tile .cell {
    padding: 25px
}

@media (max-width:600px) {
    .tile .cell h2 {
        font-size: 24px
    }
}

.video-box {
    border-top: 10px solid #f2f2f2;
    border-bottom: 10px solid #f2f2f2;
    text-align: center;
    width: 100%;
    background-color: #021d49
}

.video-image {
    display: table;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    position: relative;
    background-position: center center;
    height: 750px
}

@media (max-width:1200px) {
    .video-image {
        width: 991px
    }
}

@media (max-width:991px) {
    .video-image {
        width: 100%
    }
}

.video-image .caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    padding: 15px 30px;
    text-align: center;
    width: 400px
}

@media (max-width:600px) {
    .video-image .caption {
        width: 100%;
        left: 0
    }
}

.video-image .caption .video-header {
    font-family: 'Superclarendon W00';
    font-size: 26px
}

.video-image .caption .video-title {
    font-size: 20px
}

.video-image .caption .video-link {
    text-transform: uppercase;
    color: #ffb81d;
    margin-top: 10px;
    display: inline-block
}

.video-image .caption .video-link:hover {
    color: #fff
}

.video-image .caption .video-link span {
    font-size: 10px
}

.facebook,
.twitter {
    background-color: #fff
}

.carousel {
    background-color: #fff
}

.carousel .item {
    padding: 0;
    height: 350px;
    padding: 0 150px;
    line-height: 1.4em;
    text-align: center
}

@media (max-width:991px) {
    .carousel .item {
        padding: 0 100px
    }
}

.carousel .item .table {
    height: 96%
}

.carousel .item .table .cell {
    color: #464646;
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 300
}

@media (max-width:991px) {
    .carousel .item .table .cell {
        font-size: 19px
    }
}

.carousel .item .table .cell a {
    color: #26396a;
    font-size: 22px;
    font-weight: 300
}

@media (max-width:991px) {
    .carousel .item .table .cell a {
        font-size: 19px
    }
}

.carousel .item .table .cell a:hover {
    color: #ffb81d
}

.carousel .item .table .cell h3 {
    font-weight: 300
}

.carousel .item .table .cell h3 a {
    color: #464646
}

.carousel .item .table .cell a.cell:hover {
    color: #526386
}

.carousel .carousel-control img {
    position: relative;
    top: 80px
}

.carousel .left,
.carousel .right {
    background-image: none
}

.carousel .left img,
.carousel .right img {
    top: 140px;
    left: 15px
}

.social-row {
    border-bottom: 40px solid #26396a;
    margin-top: -6px
}

.social-row .icons {
    margin-bottom: 40px;
    text-align: center;
    background-color: #26396a;
    height: 40px
}

.social-row .icon {
    margin: 0 auto;
    text-align: center;
    border-width: 1px;
    border-radius: 30px;
    font-size: 30px;
    color: #fff;
    background-color: #26396a;
    position: relative;
    top: 10px;
    padding-top: 14px;
    width: 61px;
    display: block;
    height: 60px
}

.social-row .icon:hover {
    color: #ffb81d
}

.instagram.icon {
    margin: 0 auto;
    text-align: center;
    border-width: 1px;
    border-radius: 30px;
    font-size: 30px;
    color: #fff;
    background-color: #26396a;
    position: relative;
    top: -32px;
    padding-top: 11px;
    width: 61px;
    display: block;
    height: 60px
}

.instagram.icon:hover {
    color: #ffb81d
}

.instagram-icons {
    background-color: #fff;
    padding-bottom: 60px
}

.instagram {
    margin-left: 5px;
    width: 90%;
    margin: 0 auto;
    background-color: #fff
}




.instagram #instamedia a .instaimage {
    margin: 15px;
    position: relative;
    padding-top: 80%;
    overflow: hidden;
}

.instagram #instamedia a .instaimage .insta {
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}



.instagram #instamedia a .instaimage:after {
    background-color: rgba(2, 29, 73, .5);
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -ms-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in
}

@-moz-document url-prefix() {
    .instagram #instamedia a .instaimage:after {
        left: 0
    }
}

.instagram #instamedia a .instaimage:hover:after {
    background-color: rgba(2, 29, 73, 0)
}

.instagram #instamedia a:hover.instaimage:after {
    background-color: rgba(2, 29, 73, 0)
}



#circle {
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 29px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #fff;
    color: #26396a;
    text-align: center;
    font-size: 29px;
    position: relative;
    font-weight: 700;
    left: 14px;
    cursor: pointer
}

#circle.open {
    vertical-align: bottom;
    line-height: 8px
}

.map .circle {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #ffb81d;
    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 .circle-active {
    height: 25px;
    width: 25px;
    position: relative;
    display: block;
    border: 2px solid #fff;
    background-color: #ffb81d;
    border-radius: 25px;
    -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 .location {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0
}

.map .location#circle_anchorage {
    top: 276px;
    left: 648px
}

.map .location#circle_fairbanks {
    top: 181px;
    left: 666px
}

.map .location#circle_juneau {
    top: 309px;
    left: 832px
}

.map .location#circle_matsu {
    top: 264px;
    left: 643px
}

.map .location#circle_kenai {
    top: 295px;
    left: 630px
}

.map .location#circle_ketchikan {
    top: 368px;
    left: 893px
}

.map .location#circle_dc {
    display: none
}

.map .location.hover .map-point,
.map .location:hover .map-point {
    border: 2px solid #fff;
    background-color: #ffb81d;
    height: 35px;
    width: 35px;
    position: relative;
    top: -8px;
    left: -8px
}

.office-locations {
    background-color: #021d49;
    position: relative;
    margin-top: 50px
}

.office-locations .blue-line,
.office-locations .other-blue-line {
    background-color: #26396a;
    height: 55px;
    padding: 15px;
    position: relative;
    z-index: 2
}

.office-locations .blue-line h3,
.office-locations .other-blue-line h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    width: 20%;
    display: inline;
    margin-left: 30px
}

.office-locations .office-location-container {
    margin: auto;
    left: 0;
    right: 0;
    bottom: -601px;
    z-index: 1
}

.office-locations .office-location-container.hidden {
    height: 0
}

.office-locations .office-loc {
    background-color: #021d49;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 20px
}

.office-locations .location-links {
    color: #fff;
    margin-top: 55px
}

.office-locations .location-links h4 {
    text-transform: uppercase
}

.office-locations .location-links h4:hover {
    color: #ffb81d;
    cursor: pointer
}

.office-locations .addresses {
    margin-top: 45px;
    color: #fff
}

.office-locations .addresses h4 {
    text-transform: uppercase
}

.office-locations .addresses #map {
    color: #ffb81d;
    text-transform: uppercase
}

.office-locations .addresses #map:hover {
    color: #ffb81d
}

.office-locations .addresses #map span {
    font-size: 10px
}

.office-locations .addresses .address p {
    line-height: 22px;
    font-size: 16px
}

.office-locations #location-image {
    width: 570px;
    margin-top: 40px;
    position: absolute;
    z-index: 2;
    margin-left: 40px
}

.office-locations .map {
    position: relative;
    z-index: 10;
    padding-left: 140px;
    padding-top: 30px;
    margin-bottom: 110px
}

.office-locations .map img {
    width: 100%
}

.outline {
    position: relative;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #a9a9a9
}

.outline img {
    width: 100%
}

.outline.home {
    height: 586px
}

#myModal .modal-header {
    background-color: #021d49
}

#myModal .modal-header a {
    color: #fff
}

#myModal .modal-header a:hover {
    color: #ffb81d
}

#myModal .close {
    color: #fff;
    opacity: 1
}

#myModal .close:hover {
    color: #ffb81d
}

#myModal .modal-body {
    padding: 0
}

#myModal .modal-body iframe {
    width: 100%;
    height: 500px
}

body#home .office-locations {
    margin-top: 0
}

body#home {
    background-color: #f2f2f2
}

#content {
    padding-top: 100px !important
}

.modal-backdrop {
    z-index: 1
}

.modal-dialog {
    z-index: 5
}

li.previous {
    margin-right: 10px
}

#form_thomas_search .col-xs-9 {
    padding-right: 0
}

#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: auto;
    font-size: 16px
}

#filterbuttons a {
    background-color: transparent;
    color: #021d49
}

#search-issues-page {
    display: none
}

#breadcrumb a {
    color: #cecece;
    text-transform: uppercase;
    font-weight: 700
}

#breadcrumb a:hover {
    color: #ffb81d
}

aside {
    margin-top: 0
}

#form_thomas_search h3 {
    margin-top: 0
}

a.anchor {
    display: block;
    position: relative;
    top: -120px;
    visibility: hidden
}

body#press-landing a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden
}

#listblocks {
    margin-top: 40px
}

#listblocks .block {
    display: table;
    height: 110px
}

#listblocks .block a {
    display: table-cell;
    vertical-align: middle;
    background-color: #26396a;
    font-weight: 700
}

#listblocks .block a .media-heading {
    top: 2px
}

#listblocks .block a:hover {
    background-color: #ffb81d
}

@media (max-width:479px) {
    img.banner {
        width: 250%;
        max-width: none
    }
}

#newscontent #press {
    padding-top: 40px
}

#newscontent #press .title {
    margin-top: 5px
}

.article #press p {
    line-height: 30px;
    margin-bottom: 40px
}

.faq {
    margin-bottom: 40px
}

p {
    line-height: 30px;
    margin-bottom: 25px
}

#browser_table thead tr th {
    width: 90px
}

body#issue #interior-header {
    margin-bottom: 0
}

body#issue #main_container {
    padding-top: 0
}

body#issue #content.hasbanner {
    padding-top: 100px
}

body#about #main_column {
    margin-top: 20px
}

@media (max-width:585px) {
    body#about .col-xs-8 {
        width: 100%
    }
}

body#about .blue-col {
    background-color: #edeff1;
    width: 100%;
    position: relative
}

body#about .height {
    min-height: 500px;
    width: 100%
}

body#about .white-col {
    background-color: #fff
}

body#about #main_container {
    padding-top: 0
}

body#about #content.hasbanner {
    padding-top: 100px
}

body#about #interior-header {
    margin-bottom: 0
}

body#about .page-title {
    position: absolute;
    font-size: 72px;
    font-weight: 700;
    top: -160px;
    color: #fff
}

body#about .banner-container {
    position: relative;
    width: 100%
}

body#about .newsscrollnav {
    padding: 25px 25px;
    width: 100%;
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, #fff, #000);
    background-image: -moz-linear-gradient(left, #fff, #000);
    background-image: -o-linear-gradient(left, #fff, #000);
    background-image: -ms-linear-gradient(left, #fff, #000);
    background-image: linear-gradient(left, #fff, #000);
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%)
}

@media (max-width:1330px) {
    body#about .newsscrollnav {
        padding: 15px
    }
}

body#about .newsscrollnav li.active a {
    text-decoration: underline
}

body#about .newsscrollnav h4 {
    color: #ffb81d;
    text-transform: uppercase;
    font-size: 24px
}

body#about .newsscrollnav a {
    color: #fff;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 13px;
    padding: 0
}

body#about .newsscrollnav a:hover {
    color: #ffb81d
}

body#about .newsscrollnav.affix {
    top: 160px;
    width: 24.6%
}

body#about #about {
    text-transform: uppercase
}

@media (max-width:991px) {
    body#about #about {
        margin-top: 0
    }
}

body#about #welcome {
    padding-right: 43px
}

@media (max-width:585px) {
    body#about #welcome {
        width: 100%
    }
}

body#about #welcome .caption {
    font-size: 13px
}

@media (max-width:585px) {
    body#about #portrait {
        width: 75%;
        margin: 40px 12.5% 0
    }
}

body#about .portrait {
    max-width: none;
    width: 100%
}

body#about .portrait-btn {
    text-transform: uppercase;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 10px 10px;
    color: #ffb81d
}

@media (max-width:767px) {
    body#about .portrait-btn {
        font-size: 18px
    }
}

body#about .portrait-btn em,
body#about .portrait-btn i {
    color: #fff
}

body#about .portrait-btn:hover {
    color: #fff
}

body#about #biography {
    margin-bottom: 50px;
    padding: 15px
}

@media (max-width:991px) {
    body#about #biography {
        padding-top: 35px
    }
}

body#about #biography h4 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px
}

body#about .about-lisa {
    width: 100%
}

body#about .about-quick {
    height: 650px
}

@media (max-width:1330px) {
    body#about .about-quick {
        height: 710px
    }
}

@media (max-width:991px) {
    body#about .about-quick {
        height: 500px
    }
}

@media (max-width:600px) {
    body#about .about-quick {
        height: 600px
    }
}

@media (max-width:479px) {
    body#about .about-quick {
        height: 700px
    }
}

body#about .about-quick .image {
    height: 100%;
    background-size: cover
}

@media (max-width:1330px) {
    body#about .quick-facts {
        font-size: 17px
    }
}

body#about .quick-assign {
    background-color: #021d49;
    color: #fff;
    padding: 15px 25px;
    font-size: 17px;
    height: 100%
}

body#about .quick-assign h3 {
    color: #ffb81d;
    font-size: 24px;
    margin-top: 0
}

body#about .quick-assign #committee {
    font-size: 24px;
}

body#about .quick-assign .panel-faq {
    border: 0;
    background-color: transparent;
}

body#about .quick-assign .panel-faq .panel-heading {
    border: 0;
    background-color: transparent;
}

body#about .committee {
    margin-bottom: 10px
}

@media (max-width:1330px) {
    body#about .committee {
        margin-bottom: 10px
    }
}

body#about .table-column {
    margin-top: -8px;
    display: table;
    background-color: #edeff1
}

body#about .table-column .cell-column {
    display: table-cell;
    padding: 50px 10px 50px
}

body#about .table-column .cell-column h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 0
}

body#about .table-column .cell-column h4 {
    font-size: 28px;
    margin-bottom: 20px
}

body#about .table-column .cell-column.blue {
    background-color: #edeff1;
    text-align: center
}

body#about .table-column .cell-column.blue h4 {
    font-size: 28px;
    text-align: left;
    margin-left: 10px;
    margin-bottom: 0
}

body#about .table-column .cell-column.blue img {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 190px
}

body#about .table-column .cell-column.alaska-cell {
    padding-right: 30px;
    background-color: #e1e4e8
}

body#about h5 {
    font-size: 24px;
    margin-top: 60px;
    width: 100%;
    display: inline-block
}

body#about .office-locations {
    margin-top: 0
}

body#newsroom .modal select {
    height: auto
}

body#newsroom p img {
    vertical-align: middle;
    max-width: 500px;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto
}

body#newsroom div iframe {
    width: 100%;
    display: block;
    margin: 0 auto
}

@media (max-width:479px) {
    body#newsroom div iframe {
        height: 300px
    }
}

body#newsroom #media-player iframe {
    margin: 0
}

body#assitance {
    background-color: #fff
}

body#assitance #sam-main {
    margin-bottom: 50px
}

body#assitance .block-link {
    display: block
}

body#assitance .helpnode {
    margin-bottom: 20px
}

body#assitance .table {
    display: table;
    width: 100%;
    margin-bottom: 0
}

body#assitance .cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle
}

body#assitance .block {
    background-color: #021d49;
    color: #fff;
    text-transform: uppercase;
    height: 120px;
    font-size: 30px;
    padding: 10px 30px
}

body#assitance .block:hover {
    background-color: #26396a
}

body#assitance .block h4 {
    font-size: 26px;
    line-height: 32px
}

body#assitance .dropdown-block {
    max-height: 0;
    position: absolute;
    overflow: hidden;
    background-color: #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    display: inline-block;
    z-index: 1;
    width: 92.5%;
    transition: all .5s ease
}

body#assitance .dropdown-block .block-link {
    padding: 0 15px
}

body#assitance .dropdown-block .subnode {
    height: 60px;
    border-bottom: 1px solid #ddd
}

body#assitance .dropdown-block .close-dropdown {
    text-align: center;
    background-color: #ddd;
    color: #a3a3a3;
    padding: 10px;
    cursor: pointer
}

body#assitance .dropdown-block .close-dropdown h4 {
    margin: 0;
    text-transform: uppercase
}

body#assitance .dropdown-block .close-dropdown:hover {
    color: #26396a
}

body#assitance .dropdown-block.open {
    max-height: 500px;
    transition: all .5s ease
}

body#newsroom .date {
    width: 90px
}

#browser_table {
    word-break: normal
}

body#about #main_container,
body#press-landing #main_container {
    padding-top: 0
}

body#about #content.hasbanner,
body#press-landing #content.hasbanner {
    padding-top: 100px
}

body#about #breadcrumb,
body#press-landing #breadcrumb {
    display: none
}

body#about #interior-header,
body#press-landing #interior-header {
    margin-bottom: 0
}

body#about .office-locations,
body#press-landing .office-locations {
    margin-top: -8px
}

body#about .main_page_title,
body#press-landing .main_page_title {
    position: absolute;
    font-size: 72px;
    font-weight: 700;
    top: -110px;
    color: #fff
}

body#about #blue-row,
body#press-landing #blue-row {
    background-color: #d9dce1;
    display: inline-block
}

body#about #nav-col,
body#press-landing #nav-col {
    padding: 0
}

body#about .sidenav,
body#press-landing .sidenav {
    margin-top: 50px
}

body#about .sidenav .newsscrollnav,
body#press-landing .sidenav .newsscrollnav {
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, #fff, #000);
    background-image: -moz-linear-gradient(left, #fff, #000);
    background-image: -o-linear-gradient(left, #fff, #000);
    background-image: -ms-linear-gradient(left, #fff, #000);
    background-image: linear-gradient(left, #fff, #000);
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%);
    width: 100%;
    padding: 25px
}

body#about .sidenav .newsscrollnav ul,
body#press-landing .sidenav .newsscrollnav ul {
    padding-left: 0;
    list-style: none
}

body#about .sidenav .newsscrollnav ul li,
body#press-landing .sidenav .newsscrollnav ul li {
    margin-bottom: 15px
}

body#about .sidenav .newsscrollnav li.active,
body#press-landing .sidenav .newsscrollnav li.active {
    background-color: transparent
}

body#about .sidenav .newsscrollnav li.active a,
body#press-landing .sidenav .newsscrollnav li.active a {
    text-decoration: underline;
    background-color: transparent
}

body#about .sidenav .newsscrollnav a,
body#press-landing .sidenav .newsscrollnav a {
    color: #fff;
    font-size: 22px;
    display: block
}

body#about .sidenav .newsscrollnav a:hover,
body#press-landing .sidenav .newsscrollnav a:hover {
    color: #ffb81d
}

body#about .sidenav .newsscrollnav.affix,
body#press-landing .sidenav .newsscrollnav.affix {
    width: 24.6%;
    top: 160px
}

body#about .newsletters,
body#press-landing .newsletters {
    padding: 50px 20px;
    transition: opacity ease .5s
}

body#about .newsletters .newsletter-link,
body#press-landing .newsletters .newsletter-link {
    display: block;
    margin: 1px 0
}

body#about .newsletters h3,
body#press-landing .newsletters h3 {
    display: inline-block;
    width: 100%;
    margin-top: 50px
}

body#about .press-section,
body#press-landing .press-section {
    padding-top: 40px;
    padding-bottom: 60px;
    padding-right: 100px;
    padding-left: 50px;
    background-color: #f2f2f2
}

body#about .press-section.gray,
body#press-landing .press-section.gray {
    background-color: #ebebed
}

body#about .press-section .clearfix,
body#press-landing .press-section .clearfix {
    padding-top: 30px
}

body#about .press-section h2,
body#press-landing .press-section h2 {
    margin-top: 0
}

@media (max-width:767px) {

    body#about .press-section,
    body#press-landing .press-section {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px
    }
}

body#about h2.title,
body#press-landing h2.title {
    margin-bottom: 3px;
    margin-top: 20px
}

body#about .video-col,
body#press-landing .video-col {
    padding-left: 0
}

body#about .video-col .title,
body#press-landing .video-col .title {
    margin-bottom: 30px;
    font-size: 18px
}

@media (max-width:767px) {

    body#about .video-col .title,
    body#press-landing .video-col .title {
        font-size: 26px;
        margin-bottom: 30px
    }
}

body#about .video-col .videoiframe,
body#about .video-col iframe,
body#press-landing .video-col .videoiframe,
body#press-landing .video-col iframe {
    margin-bottom: -3px;
    height: auto
}

body#about .video-col .video-col,
body#press-landing .video-col .video-col {
    padding-left: 0
}

body#about .date,
body#press-landing .date {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 3px
}

.clearfix {
    display:block;
}

.stupidclearfix {
    width: 100%;
    height: 40px;
    margin-top: 40px;
    display: inline-block
}

body#offices .office-locations {
    display: none
}

body#offices footer {
    margin-top: 80px
}

#dreamers {
    overflow: hidden;
    transition: all .3s ease-in-out
}

#dreamers .itm {
    width: 100%;
    height: auto;
    clear: both;
    transition: left 150ms ease-in-out
}

#dreamers .itm .person {
    float: left;
    width: 210px;
    height: 225px;
    margin: 10px;
    cursor: pointer;
    transition: all .3s ease-in-out
}

#dreamers .itm .person .img {
    width: 200px;
    height: 200px;
    border: 3px solid #26396a;
    background-position: center center;
    background-size: cover;
    transition: width height .3s ease-in-out
}

#dreamers .itm .person .img:hover {
    border: 3px solid #ffb81d
}

#dreamers .itm .person .title {
    font-size: 15px;
    text-align: center;
    transition: all .3s ease-in-out
}

#dreamers .itm .person .txt {
    width: 0;
    height: :0;
    opacity: 0
}

#dreamers .nav {
    height: 45px;
    display: none;
    background-color: #021d49
}

#dreamers .nav #grid {
    margin: 6px;
    border: none;
    cursor: pointer
}

#dreamers .nav #grid,
#dreamers .nav .pages,
#dreamers .nav .pages_nav {
    float: left
}

#dreamers .nav .pages_nav {
    float: right
}

#dreamers .nav .pages_nav .arrw {
    margin: 5px;
    cursor: pointer
}

#dreamers.detail {
    position: relative;
    overflow: hidden;
    height: 1000px
}

#dreamers.detail .itm {
    position: absolute;
    top: 45px;
    height: auto
}

#dreamers.detail .itm .person {
    margin: 0;
    opacity: 0;
    cursor: auto
}

#dreamers.detail .itm .person .img {
    float: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 500px;
    width: 400px;
    margin: 15px
}

#dreamers.detail .itm .person .title {
    text-align: left;
    margin: 15px 0 0 0;
    font-size: 26px;
    height: 35px
}

#dreamers.detail .itm .person .txt {
    width: 560px;
    height: auto;
    text-align: left;
    float: left;
    opacity: 100
}

#dreamers.detail .itm .person.on {
    opacity: 1
}

#dreamers.detail .nav {
    display: block
}

#whip #press .date {
    border-bottom: 1px solid #cecece;
    margin: 0 0 25px 0;
    padding: 10px;
    cursor: pointer
}

#whip #press .date span {
    color: #021d49
}

#whip #press .date.on {
    margin: 0
}

#whip #press .date.on span {
    color: #021d49;
    display: none
}

#whip #press .whip {
    display: none;
    padding: 5px
}

#whip #press .whip ul {
    margin: 0;
    padding: 0;
    list-style-type: square
}

#whip #press .whip ul li {
    margin: 0 0 15px 25px
}

#whip #press .whip.on {
    display: block;
    border-bottom: 1px solid #cecece;
    margin: 0 0 35px 0
}

.interntable {
    margin: 30px 0
}

.interntable tr th {
    font-size: 16px
}

.interntable tr td {
    font-size: 16px;
    font-weight: 400
}

.interntable tr td p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400 !important
}

.interntable tr td p+p {
    padding-top: 10px
}

body#about #main_container,
body#press-landing #main_container {
    width: 100%
}

body#about img.banner,
body#press-landing img.banner {
    max-height: 450px
}

body#about .portrait,
body#press-landing .portrait {
    max-width: 300px
}

body#about .portrait-btn,
body#press-landing .portrait-btn {
    max-width: 300px
}

body#about #sam-bio,
body#press-landing #sam-bio {
    padding: 15px
}

body#about #sam-bio h4,
body#press-landing #sam-bio h4 {
    font-size: 26px
}

body#about .office-locations {
    margin-top: -17px
}

.contact-addresses .contact-address {
    min-height: 560px
}

.contact-addresses .office-image {
    width: 100%;
    margin-bottom: 20px
}

.contact-addresses #map span {
    font-size: 14px
}
/*
body#students-landing #listblocks li:nth-child(7) {
    width: 50%
}

body#students-landing #listblocks li:nth-child(8) {
    width: 50%
} */

body#staff strong {
    display: inline-block;
    margin-top: 30px
}

body#staff h2 {
    margin-top: 40px
}

body#staff h3 {
    color: #ffb81d
}

body#staff .alaska strong {
    margin-top: 3px
}

body#staff .alaska .alaska-office {
    min-height: 275px
}

body#about .sidenav {
    margin-top: 0
}

body#about .blue-col {
    margin-top: 25px
}

body#about .scroll {
    background-color: #fff
}

body#about .inline {
    display: inline-block;
    width: 100%
}

body#about #delegation {
    top: 0
}

body#contact-page #listblocks li:nth-child(4) {
    width: 50%
}

body#contact-page #listblocks li:nth-child(5) {
    width: 50%
}

body#staff .toparea .officetitle {
    margin-top: 2em;
    margin-bottom: 1em
}

body#staff .toparea .officetitle h1 {
    font-size: 30px
}

body#staff .toparea .person {
    padding: 5px 0;
    display: block;
    vertical-align: middle;
    position: relative;
    min-height: 130px;
    margin-bottom: 5px
}

body#staff .toparea .person .person-name {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 5px
}

body#staff .toparea .person .person-title {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 18px;
    color: #26396a
}

body#staff .toparea .person .organization {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px
}

body#staff .toparea .person .buttonsbio a {
    margin-top: 10px;
    font-size: 12px
}

body#staff .bottomarea h2 {
    margin-top: 0
}

body#staff .bottomarea .officetitle {
    margin-top: 2em;
    margin-bottom: 1em
}

body#staff .bottomarea .officetitle h1 {
    font-size: 30px
}

body#staff .bottomarea .office {
    color: #ffb81d
}

body#staff .bottomarea .person {
    padding: 5px 0;
    margin-bottom: 5px;
    display: block;
    min-height: 130px;
    vertical-align: middle;
    position: relative
}

body#staff .bottomarea .person .person-name {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 5px
}

body#staff .bottomarea .person .person-title {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 18px;
    color: #26396a
}

body#staff .bottomarea .person .organization {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px
}

body#staff .bottomarea .person .buttonsbio a {
    margin-top: 10px;
    font-size: 12px
}

body#staff .modal .modal-dialog .modal-content .modal-header {
    border-bottom: none;
    padding: 10px
}

body#staff .modal .modal-dialog .modal-content .modal-header .close {
    font-size: 30px;
    color: #000;
    position: relative;
    z-index: 100000
}

body#staff .modal .modal-dialog .modal-content .modal-body {
    font-size: 20px
}

body#staff .modal .modal-dialog .modal-content .modal-body .image-thumbnail {
    height: 350px;
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover
}

body#staff .modal .modal-dialog .modal-content .modal-body h2 {
    text-align: center
}

body#about #sam-portrait .portrait {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    min-height: 310px
}

body#about #sam-portrait .portrait-btn {
    margin-bottom: 15px
}

#video-content #media-player iframe {
    min-height: 400px
}

@media (max-width:600px) {
    #video-content #media-player iframe {
        min-height: 300px
    }
}

@media (max-width:500px) {
    #video-content #media-player iframe {
        min-height: 220px
    }
}

#share-buttons #share-copy-link {
    cursor: pointer
}

#share-buttons #share-link-container {
    width: 572px
}

@media (max-width:1330px) {
    #share-buttons #share-link-container {
        width: 486px
    }
}

@media (max-width:1200px) {
    #share-buttons #share-link-container {
        width: 355px
    }
}

@media (max-width:991px) {
    #share-buttons #share-link-container {
        width: 460px
    }
}

#multimedia-browser {
    margin-top: 30px
}

#multimedia-browser ul.nav-tabs {
    display: none
}

#multimedia-browser .loading div#search-results-header {
    display: none
}

#multimedia-browser .status {
    background-color: #ffb81d;
    color: #464646
}

#multimedia-browser .pagination {
    background-color: #021d49
}

body footer {
    padding: 50px 0 30px;
    text-align: center;
    background-color: #021d49
}

body footer .footernav {
    display: inline-block
}

body footer .footernav li {
    padding: 0 30px
}

body footer .footernav li a {
    color: #fff;
    font-family: 'Proxima Nova W01';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px
}

body footer .footernav li a:hover {
    color: #ffb81d
}

body footer .right {
    display: inline-block;
    position: relative;
    top: -3px
}

body footer .social-list {
    display: inline-block
}

body footer .social-list a {
    font-size: 13px;
    background-color: #fff;
    color: #021d49;
    height: 26px;
    width: 26px;
    border-radius: 20px;
    margin-left: 4px;
    display: inline-block;
    text-align: center;
    padding-top: 4px
}

body footer .social-list a:hover {
    background-color: #ffb81d
}

.office-locations {
    border-bottom: 1px solid #26396a
}

.hide-on-submit {
    display: none !important
}

.proxima {
    font-family: 'Proxima Nova W01'
}

.super {
    font-family: 'Superclarendon W00'
}

.gradient {
    background: #293b6d;
    background: -moz-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: -webkit-linear-gradient(top, #293b6d 0, #051f4b 100%);
    background: linear-gradient(to bottom, #293b6d 0, #051f4b 100%)
}

.gray-borders,
.grey-borders {
    border-top: 10px solid #f2f2f2;
    border-bottom: 10px solid #f2f2f2
}

.serif {
    font-family: 'Superclarendon W00'
}

.sans {
    font-family: 'Proxima Nova W01'
}

body {
    font-family: 'Proxima Nova W01';
    font-size: 18px;
    font-weight: 300
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Proxima Nova W01'
}

a {
    color: #26396a;
    font-weight: 400
}

a:hover {
    text-decoration: none;
    color: #ffb81d
}

a:focus,
a:link,
a:visited {
    text-decoration: none
}

#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: #021d49;
    font-family: 'Proxima Nova W01';
    color: #fff;
    font-weight: 700
}

#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: #ffb81d;
    color: #fff
}

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
}

#session_select,
#sponsored,
.modal select {
    height: 40px
}

@media (max-width:1330px) {
    .map .location#circle_anchorage {
        top: 244px;
        left: 587px
    }

    .map .location#circle_fairbanks {
        top: 161px;
        left: 605px
    }

    .map .location#circle_juneau {
        top: 275px;
        left: 741px
    }

    .map .location#circle_matsu {
        top: 232px;
        left: 577px
    }

    .map .location#circle_kenai {
        top: 258px;
        left: 570px
    }

    .map .location#circle_ketchikan {
        top: 324px;
        left: 797px
    }

    .map .location#circle_dc {
        display: none
    }

    .office-locations #location-image {
        width: 479px
    }
}

@media (max-width:1200px) {
    .office-locations .location-links {
        margin-top: 33px
    }

    .office-locations .map {
        padding-left: 0;
        padding-top: 129px
    }

    .map {
        padding-left: 0;
        padding-top: 109px
    }

    .map .location#circle_anchorage {
        top: 343px;
        left: 437px
    }

    .map .location#circle_fairbanks {
        top: 262px;
        left: 454px
    }

    .map .location#circle_juneau {
        top: 372px;
        left: 596px
    }

    .map .location#circle_matsu {
        top: 328px;
        left: 427px
    }

    .map .location#circle_kenai {
        top: 360px;
        left: 423px
    }

    .map .location#circle_ketchikan {
        top: 421px;
        left: 646px
    }

    .map .location#circle_dc {
        display: none
    }

    .office-locations #location-image {
        width: 419px;
        margin-top: 103px
    }
}

@media (max-width:991px) {
    .office-locations {
        display: none
    }

    .address p {
        font-size: 16px;
        line-height: 21px
    }

    .map {
        padding-left: 0;
        padding-top: 109px
    }

    .map #map {
        width: 580px
    }

    .map .location#circle_anchorage {
        top: 307px;
        left: 378px
    }

    .map .location#circle_fairbanks {
        top: 227px;
        left: 383px
    }

    .map .location#circle_juneau {
        top: 335px;
        left: 506px
    }

    .map .location#circle_matsu {
        top: 288px;
        left: 387px
    }

    .map .location#circle_kenai {
        top: 319px;
        left: 367px
    }

    .map .location#circle_ketchikan {
        top: 380px;
        left: 556px
    }

    .map .location#circle_dc {
        display: none
    }
}

@media (max-width:767px) {
    .office-locations .location-links {
        margin-top: 38px
    }

    #multimedia-browser .row .media-thumbnail {
        display: block;
        float: none !important;
        margin: 1em 0;
        width: 100%
    }

    body#students-landing #listblocks li:nth-child(7) {
        width: 100%
    }

    body#students-landing #listblocks li:nth-child(8) {
        width: 100%
    }

    body#contact-page #listblocks li:nth-child(4) {
        width: 100%
    }

    body#contact-page #listblocks li:nth-child(5) {
        width: 100%
    }
}

.ieold .ieoldonly {
    display: block !important
}

.ie .ieonly {
    display: block !important
}

.ie .media-list .media .col-xs-3 {
    display: inline
}

.ie .media-list .media .col-xs-3 a img {
    max-width: auto;
    width: 100%
}

.ie aside form select {
    min-height: 42px
}

.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
}

@media print {
    html #interior-header {
        display: none
    }

    html #breadcrumb,
    html #logo,
    html #toolbar,
    html .footer,
    html .logohold,
    html .navbar,
    html footer {
        display: none
    }

    html .container {
        margin-top: 0
    }
}


#newscontent.video {
    padding: 0;
  }
  body#multimedia-new #video-content {
    background-color: #181818;
    padding: 40px 80px;
  }
  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: white;
   
    font-size: 32px;
    margin-top: 20px;
  }
  @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: white;
  }
  body#multimedia-new #video-content #featured-details-description {
    color: white;
  }
  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: #feb81d !important;
    font-size: 56px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
  }
 body#multimedia-new #share-buttons {
    float: right;
    padding: 18px;
  }
 body#multimedia-new #share-buttons #share-youtube a {
    color: white;
  }
 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: white;
  }
  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: 15px 80px;
  }
  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 #255ba4;
    border-bottom: 0px;
    display: none;
  }
  body#multimedia-new #multimedia-browser ul.nav-tabs li a {
    font-family: 'Proxima N W01 X Cd Bold', sans-serif;
    color: #eba300 !important;
    font-size: 52px;
    text-transform: uppercase;
  }
  body#multimedia-new #multimedia-browser ul.nav-tabs li a:hover {
    background: #eba300;
  }
  body#multimedia-new #multimedia-browser ul.nav-tabs li.active {
    background-color: white;
  }
  body#multimedia-new #multimedia-browser ul.nav-tabs li.active a {
    background: transparent;
  }
  body#multimedia-new #multimedia-browser ul.nav-tabs li.active a:hover {
    background: transparent;
  }
  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: #eba300;
    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: #1f3363;
    text-transform: uppercase;
  }
  body#multimedia-new #multimedia-browser .multimedia-tools select {
    color: #bcbaba;
   
    text-transform: uppercase;
    font-size: 13px;
  }
  body#multimedia-new #multimedia-browser .multimedia-tools input[type="text"] {
    color: #bcbaba;
   
    text-transform: uppercase;
    font-size: 13px;
  }
  body#multimedia-new #multimedia-browser .pagination {
    background-color: white;
    color: #000;
  }
  body#multimedia-new #multimedia-browser .pagination .listing-increment a {
    color: #000;
  }
  body#multimedia-new #multimedia-browser .pagination .listing-increment a:hover {
    color: #6cb2fd;
  }
  body#multimedia-new #multimedia-browser .pagination .listing-increment a.selected {
    color: #6cb2fd;
  }
  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: #000;
    height: 165px;
    overflow: hidden;
   
    display: inline-block;
  }
  body#multimedia-new #multimedia-browser .media-thumbnail .image a:hover {
    color: #255ba4;
  }
  body#multimedia-new #multimedia-browser .media-thumbnail a {
    color: #000;
   
    height: 96px;
    overflow: hidden;
    display: inline-block;
  }
  body#multimedia-new #multimedia-browser .media-thumbnail a:hover {
    color: #255ba4;
  }
  body#multimedia-new #multimedia-browser .media-thumbnail:hover a {
    color: #255ba4;
  }
  @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) {
    #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) {
    #share-buttons {
      padding: 0;
    }
    body#multimedia-new #multimedia-browser {
      padding: 50px 70px;
    }
    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%;
    }
  }

  .dropboxhold {
    border-radius: 10px;
    display: block;
    overflow: hidden;
  }

  .dropboxhold img{
      display: block;
      width: 100%;
  }

  .dropboxhold:hover img{
    filter: brightness(1.35);
  }


  tr.divider{
    color: #ffb81d;
    background-color: #26396a!important;
    font-weight: bold;
  }

  @media (max-width: 767px) {
    table.staff tr td{
        display: block!important;
        width: 100%!important;
        white-space: normal!important;
    }
  }

/*# sourceMappingURL=common.css.map */