#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)
    }
}


.alert {
    background: #B41026;
    color: #fff !important;
    padding: 10px;
    border-radius: 0;
    font-size: 20px;
    display: table;
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
  .alert .alertIcn{
    display: table-cell;
    vertical-align: middle;
    float: none!important;
  }
  
  .alert .alertIcn .glyphicon {
    color: #fff !important;
    font-size: 32px;
  }
  
  .alert .headline{
    display: table-cell;
    vertical-align: middle;
  }
  
  .alert .headline a {
    color: #fff;
    padding-bottom:1px;
    cursor: pointer;
  
  }
  
  .alert .headline a:hover {
    color: #fff;
    text-decoration: underline;
  
  }

#ContactModal .modal-dialog .modal-content .modal-header .close,
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close {
    color: #000
}

#ContactModal .modal-dialog .modal-content .modal-body #sitesearch,
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch {
    padding: 25px 15px
}

#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: #007dc3
}

body .social-nav {
    float: right;
    color: #fff;
    text-align: center
}

body .social-nav .fa {
    color: #fff;
    vertical-align: bottom
}

body .social-nav a {
   font-family: 'PT Serif', serif;
   font-weight: 400;;
    color: #363636;
    font-size: 18px;
    vertical-align: middle
}

body .social-nav .social-icon {
    height: 30px;
    width: 30px;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

body .social-nav .social-icon.facebook {
    background-color: #4d68a6
}

body .social-nav .social-icon.twitter {
    background-color: #25a7df
}

body .social-nav .social-icon.youtube {
    background-color: #cd2127;
    margin: 0
}

body .social-nav .social-icon.instagram {
    background-color: #696a6a;
    margin: 0
}

body .social-nav .social-icon.flickr {
    background-image: url(/themes/lankford/images/flickr.png);
    background-repeat: no-repeat;
    vertical-align: bottom;
    background-position: center center;
    border: 1px solid #696a6a;
    position: relative;
    top: 0px;
}


body .social-nav .social-icon.rumble {
    background-image: url(/themes/lankford/images/rumbleicon.png);
    background-repeat: no-repeat;
    vertical-align: bottom;
    background-position: center center;
    border: 1px solid #696a6a
}


body .social-nav .social-icon.gettr {
    background-image: url(/themes/lankford/images/gettricon.png);
    background-repeat: no-repeat;
    vertical-align: bottom;
    background-position: center center;
    border: 1px solid #696a6a
}

body .social-nav .social-icon.truth {
    background-image: url(/themes/lankford/images/truthsocial.png);
    background-repeat: no-repeat;
    vertical-align: bottom;
    background-position: center center;
    border: 1px solid #696a6a
}

body .social-nav .social-icon:hover {
    background-color: #fff
}

body .social-nav .social-icon:hover.facebook {
    background-color: #fff
}

body .social-nav .social-icon:hover.facebook span {
    color: #4d68a6
}

body .social-nav .social-icon:hover.twitter {
    background-color: #fff
}

body .social-nav .social-icon:hover.twitter span {
    color: #25a7df
}

body .social-nav .social-icon:hover.youtube {
    background-color: #fff
}

body .social-nav .social-icon:hover.youtube span {
    color: #cd2127
}

body .social-nav .social-icon:hover.instagram {
    background-color: #fff;
    margin: 0
}

body .social-nav .social-icon:hover.instagram span {
    color: #696a6a
}

body .social-nav .social-icon:hover.flickr {
    border: 1px solid #fff
}

body .social-nav .social-icon:hover.gettr {
    border: 1px solid #fff
}

body .social-nav .social-icon:hover.truth {
    border: 1px solid #fff
}

body .social-nav .social-icon:hover.rumble {
    border: 1px solid #fff
}

body .social-nav .newsletter {
    margin-left: 5px
}

body #header {
    background-color: #fff;
    border-top: 5px solid #007dc3;
    padding-top: 10px
}

body .navbar {
    background: 0 0;
    position: relative;
    height: 0
}

body .navbar .nav-pills {
    width: 95%;
    float: left;
    margin-top: 40px;
    text-align: right
}

body .navbar .nav-pills>li {
    display: inline-block;
    width: auto
}

body .navbar .nav-pills>li a {
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 18px;
    color: #363636;
    text-transform: uppercase;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
}

body .navbar .nav-pills>li .dropdown-menu {
    background-color: #007dc3
}

body .navbar .nav-pills>li .dropdown-menu li a {
    color: #fff
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
    background-color: #005e92
}

body .navbar .nav-pills>li:hover a {
    color: #007dc3
}

body .navbar .nav-pills>li.selected a {
    color: #007dc3
}

body .navbar .srchbutton {
    float: right;
    padding: 13px 0;
    color: #363636;
    margin-top: 55px
}

body .navbar .srchbutton span {
    font-size: 17px;
    right: 0;
    position: absolute;
    margin-top: 82px
}

body .navbar .srchbutton:hover {
    color: #6598af
}

body .navbar #search {
    float: left;
    width: 0;
    margin-top: 77px;
    position: absolute;
    right: 47px;
    overflow: hidden;
    -webkit-transition: width .3s;
    transition: width .3s
}

body .navbar #search.showme {
    width: 83%;
    -webkit-transition: width .3s;
    transition: width .3s
}

body .navbar #search #sitesearch {
    width: 100%;
    float: left;
    padding: 0 15px 0;
    position: relative;
    height: 40px;
    border: 1px solid #007dc3
}

body .navbar #search #sitesearch #search-field {
    position: absolute;
    left: 0;
    width: 95%;
    border: none;
    height: 38px;
    padding: 5px
}

body .navbar #search #sitesearch #search-field:focus {
    outline: 0;
    border: none;
    filter: none
}

body .navbar #search #sitesearch button {
    position: absolute;
    background-color: #007dc3;
    color: #fff;
    right: 0;
    width: 42px;
    height: 40px;
    border: none
}

body .navbar #search #sitesearch button:hover {
    background-color: #005e92
}

body #NavMobileModal .modal-dialog .modal-content .close {
    margin-right: 30px
}

body #NavMobileModal .modal-dialog .modal-content .modal-header .close {
    color: #000
}

body #NavMobileModal .modal-dialog .modal-content .modal-body a {
    color: #007dc3;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
    background-color: #fff
}

body #NavMobileModal .modal-dialog .modal-content .modal-body a:hover {
    color: #000
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:last-child {
    border: none
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu {
    position: relative;
    display: block;
    border: none;
    box-shadow: none;
    padding-left: 36px;
    padding-bottom: 25px;
    width: 100%
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a {
    padding: 6px 0;
    font-size: 14px;
    color: #000;
    width: 80%;
    white-space: normal
}

.top {
    z-index: 0;
    width: 100%
}

.top #featured {
    position: relative;
    width: 100%;
    margin-bottom: 0
}

.top #featured #featuredCarousel {
    width: 100%;
    float: none;
    margin: 0 auto;
    position: relative;
    height: 562px;
    overflow: hidden
}

.top #featured #featuredCarousel .item {
    width: 100%;
    height: 586px;
    min-height: 450px;
    max-height: 586px;
    overflow: hidden;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top
}

.top #featured #featuredCarousel .item img {
    height: 562px
}

.top #featured #featuredCarousel .item .featured-press {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top
}

.top .carousel-control {
    width: 8%;
    font-size: 14px
}

.top .carousel-indicators {
    bottom: -6px
}

.rollover {
    padding: 8px;
    position: absolute;
    width: 209px;
    height: 230px;
    background-color: #fff;
    z-index: 100;
    bottom: 42px;
    margin: 0 auto;
    display: none
}

.rollover .preview {
    background-position: center center;
    background-size: cover;
    height: 140px;
    width: 100%
}

.rollover:after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 89px;
    border-width: 16px 16px 0;
    border-style: solid;
    border-color: #fff transparent;
    display: block;
    width: 0
}

.rollover img {
    width: 100%
}

.rollover .description {
    display: block;
    margin-top: 7px
}

.item {
    width: 100%;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    position: relative
}

.item .featured-press {
    position: relative;
    height: 632px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top
}

.item img {
    width: 100%;
    position: absolute
}

.item a {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 125, 195, .9);
    padding: 25px 35px
}

.item a h2 {
    color: #fff;
    font-family: 'PT Serif', serif;
    font-weight: 700;;
    font-size: 42px;
    margin: 0
}

.item a:hover {
    text-decoration: none
}

.press {
    position: relative;
    margin: 0
}

.press .table-div {
    display: table;
    height: 200px;
    overflow: hidden;
    padding: 0
}

.press .table-div .cell {
    display: table-cell;
    vertical-align: top;
    padding: 38px 0 0;
    font-size: 24px;
    padding-right: 25px
}

.press .table-div .cell .news-block {
    color: #363636
}

.press .table-div .cell .news-block p {
   font-family: 'PT Serif', serif;
   font-weight: 400;
}

.press .table-div .cell:hover a {
    color: #007dc3;
    text-decoration: none
}

.press .table-div:last-child .cell {
    padding-right: 0
}

.press .table-div .cut-tape {
    display: block;
    margin-top: 12px;
    margin-bottom: 12px;
    width: 100%
}

.press .table-div .cut-tape img {
    width: 100%
}

.press .latest {
    color: #363636;
    font-size: 18px;
    font-style: normal;
    position: absolute;
    top: 19px;
    left: 0;
    font-family: 'PT Serif', serif;
    font-weight: 700;
}

.blue-line {
    border-top: 5px solid #007dc3;
    margin-bottom: 60px
}

#twitter {
    border: 1px solid #b3b0a7;
    text-align: center
}

#twitter .cell {
    word-break: break-word;
    padding: 20px 0 10px;
    margin-right: 22px;
    margin-left: 22px
}

#twitter .cell.header {
    border-bottom: 1px solid #b3b0a7;
    padding: 12px 22px;
    margin: 0;
    font-family: 'PT Serif', serif;
    font-weight: 700;;
    font-size: 18px;
    background-image: url(/themes/lankford/images/pattern.png)
}

#twitter .cell.header:hover span {
    color: #25a7df
}

#twitter .cell h4 {
    margin: 0
}

#twitter .cell a {
    color: #363636;
   font-family: 'PT Serif', serif;
   font-weight: 400;
}

#twitter .cell a:hover {
    color: #007dc3
}

#twitter .cell .tweet {
   font-family: 'PT Serif', serif;
   font-weight: 400;;
    margin-top: 10px
}

#twitter .cell+.cell {
    border-bottom: 1px solid #b3b0a7
}

#twitter .cell:last-child {
    border: none
}

.youtube {
    margin-left: 10px
}

.youtube iframe {
    width: 100%;
    height: 420px
}

.instagram {
    margin-left: 10px
}

.instagram #instamedia {
    text-align: center
}

.instagram #instamedia img {
    margin-top: 20px;
    width: 234px
}

.instagram #instamedia a {
    position: relative;
    display: inline-block
}

.instagram #instamedia a:after {
    position: absolute;
    bottom: -5px;
    right: 0;
    content: url(/themes/lankford/images/insta.jpg)
}

.instagram #instamedia a:hover:after {
    content: url(/themes/lankford/images/instaro.jpg)
}

.instagram #instamedia a:first-child {
    float: left
}

.instagram #instamedia a:last-child {
    float: right
}

.instagram #instamedia:after {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.office-locations {
    margin-top: 65px;
    margin-bottom: 50px;
    margin-left: 0
}

.office-locations .location {
    background-size: cover;
    background-color: #007dc3;
    height: 200px;
    text-align: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #fff
}

.office-locations .location h3 {
   font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 31px;
    display: block;
    color: #fff;
    padding: 64px 0 0 0;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 0;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.office-locations .location .blue-filter {
    height: 200px;
    background-color: rgba(0, 125, 195, .7)
}

.office-locations .location .blue-filter.dark {
    height: 200px;
    background-color: rgba(4, 77, 114, .8)
}

.office-locations .location .reveal {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
    opacity: 0;
    position: absolute;
    top: 0;
    display: block;
    background-color: #007dc3;
    height: 200px;
    padding: 32px !important;
    color: #fff;
    width: 100%;
    font-size: 15px;
    text-align: left;
    padding: 15px;
    box-sizing: border-box;
    font-family: Helvetica;
}

.office-locations .location .reveal .adr {
    margin: 0;
    padding: 0;
    line-height: 23px
}

.office-locations .location .reveal .adr strong {
   font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    display: block;
    float: left
}

.office-locations .location .reveal .adr a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding-left: 7px;
    bottom: -3px;
    position: relative;
   font-family: 'Poppins', sans-serif;
}

.office-locations .location .reveal .adr a:hover {
    text-decoration: underline
}

.office-locations .location .reveal .tel {
    margin: 0;
    padding: 0
}

.office-locations .location .reveal .tel dd,
.office-locations .location .reveal .tel dt {
    float: left
}

.office-locations .location .reveal .tel dd {
    margin-right: 5px
}

.office-locations .location .reveal.dark {
    background-color: #005e92
}

.office-locations .location:hover .reveal {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
    opacity: 1
}

.office-locations .location:nth-child(1) {
    background-image: url(/themes/lankford/images/washington.jpg)
}

.office-locations .location:nth-child(2) h3 {
    padding: 48px 0 0
}

body #press {
    padding-top: 10px
}

#multimedia-browser .status {
    background-color: #007dc3
}

.social.col-md-4.meet-social-aside {
    max-width: 390px
}

.marquee {
    border: 4px solid #007dc3;
    width: auto;
    border-right: none;
    border-left: none;
    margin-bottom: 40px
}

p.about {
    color: #007dc3;
    font-size: 1.9em;
    font-weight: 500;
    margin: 15px 0 15px 0
}

.headshot {
    width: 100%
}

img#issue-banner {
    width: 1140px;
    height: auto;
    margin: auto;
    -webkit-filter: contrast(72%);
    filter: contrast(72%)
}

.cell.header {
    text-align: center
}

.col-md-4.twitter.aside-twitter {
    max-width: 390px;
    width: 360px;
    padding: 0 0
}

p.main_page_title_banner.scheduling_request {
    bottom: 425px
}

p.main_page_title_banner {
    display: block;
    position: relative;
    margin: auto;
    color: #fff;
    font-size: 100px;
    font-weight: 900;
    text-align: center;
    bottom: 345px;
    height: 0;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

p.main_page_title_marquee {
    display: block;
    position: relative;
    margin: auto;
    color: #fff;
    font-size: 100px;
    font-weight: 900;
    text-align: center;
    bottom: 425px;
    height: 0;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

p.main_page_title_banner.about-james {
    left: 198px
}

.modal-dialog {
    z-index: 1050
}

div#filterbuttons {
    right: 12px;
    margin-bottom: 10px
}

div#asides {
    position: relative;
    display: block;
    bottom: 24px
}

a.btn.btn-lg.btn-block.portrait-press {
    margin: 20px 0
}

.col-lg-3.col-md-4.col-sm-6.placeholder {
    width: 33%
}

p.office-image-container {
    background-color: #ededed
}

img#tulsa_city_office_img {
    height: 178px;
    width: 356px
}

aside.list {
    max-width: 300px;
    display: block;
    position: relative;
    bottom: 18px
}

#listblocks .block {
    background-color: #007dc3
}

#listblocks .block a {
    background-color: #007dc3
}

#listblocks .block a:hover {
    height: auto;
    min-height: 95px;
    border: 10px solid #005e92;
    padding: 5px 0 5px 0
}

#listblocks .block:hover {
    background-color: #007dc3
}

#listblocks .block:hover a {
    background-color: #007dc3
}

#breadcrumb {
    position: relative;
    right: 2000px
}

#issue .breakout #issueFeed>li iframe {
    width: 60%;
    height: 420px
}

img.panorama {
    height: 175px;
    width: 250px
}

#typenav .nav-pills>li.active a {
    white-space: nowrap
}

#typenav.affix {
    top: 0
}

.nobreadcrumbs #breadcrumb {
    display: none
}

fieldset.search-container label {
    display: none
}

.left.carousel-control span,
.right.carousel-control span {
    font-size: 60px
}

#multimedia-browser .pagination {
    background-color: #007dc3
}

#flagForm #flag-options .head {
    background-color: #007dc3;
    color: #fff
}

#filter-legislation {
    margin-top: 23px
}

#search-thomas-pod #side-search-btn {
    margin: 0
}

#filterbuttons .btn {
    background-color: #fff;
    color: #007dc3
}

.pull-down {
    display: inline-block;
    width: 49%
}

.pull-down:last-child {
    position: absolute;
    top: 220px;
    right: 0
}

.videoiframe {
    width: 100%;
    max-height: 377px
}

#share-buttons #share-copy-link {
    cursor: pointer
}

#multimedia-browser .loading div#search-results-header {
    display: none
}

#multimedia-browser .multimedia-tools input[type=text] {
    width: 85%
}

@media (max-width:990px) {
    #multimedia-browser .multimedia-tools fieldset {
        width: 47.45%
    }

    #multimedia-browser .multimedia-tools input[type=text] {
        width: 79%
    }

    #multimedia-browser .multimedia-tools select {
        width: 40%
    }
}

@media (max-width:769px) {
    #multimedia-browser .multimedia-tools fieldset {
        width: 100%
    }
}

body footer .footernav {
    text-align: center
}

body footer .footernav li a {
    color: #fff;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
    text-transform: uppercase
}

body footer .footernav li a:hover {
    text-decoration: underline
}

body .footer {
    margin-top: 50px;
    background-color: #363636
}

body .footer .footernav li {
    margin: 35px 10px 20px
}

body .footer .footernav li a {
    color: #fff;
    font-size: 18px;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
    text-transform: uppercase
}

body .footer .footernav li a:hover {
    text-decoration: underline
}

body .subfooter {
    padding-bottom: 10px;
    background-color: #007dc3
}

body .subfooter .subfooternav {
    text-align: center
}

body .subfooter .subfooternav li {
    padding-right: 21px;
    margin-top: 10px
}

body .subfooter .subfooternav li a {
    color: #fff;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
    font-size: 13px;
    text-transform: uppercase
}

body .subfooter .subfooternav li a:hover {
    text-decoration: underline
}

body .subfooter .subfooternav li:last-child {
    border-left: 1px solid #fff;
    padding-left: 8px;
    text-transform: uppercase
}

body .subfooter .subfooternav li:last-child a {
    text-transform: uppercase;
    padding-left: 14px
}

.pull-down {
    display: inline-block;
    background-color: #007dc3;
    width: 45%;
    margin: 15px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    white-space: normal;
    text-transform: uppercase;
    text-align: center
}

.pull-down a {
    color: #fff
}

.pull-down a:hover {
    color: #fff
}

.pull-down:hover {
    background-color: #005e92
}

.pull-down-2 {
    display: inline-block;
    margin-top: 15px;
    background-color: #007dc3;
    top: 175px;
    right: 15px;
    width: 45%;
    margin: 15px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    white-space: normal;
    text-transform: uppercase;
    text-align: center
}

.pull-down-2 a {
    color: #fff
}

.pull-down-2 a:hover {
    color: #fff
}

.pull-down-2:hover {
    background-color: #005e92;
    color: #fff
}

@font-face {
    font-family: socicon;
    src: url(/themes/lankford/fonts/social/socicon.eot);
    src: url(/themes/lankford/fonts/social/socicon.eot?#iefix) format('embedded-opentype'), url(/themes/lankford/fonts/social/socicon.woff) format('woff'), url(/themes/lankford/fonts/social/socicon.woff2) format('woff2'), url(/themes/lankford/fonts/social/socicon.ttf) format('truetype'), url(/themes/lankford/fonts/social/socicon.svg#sociconregular) format('svg');
    font-weight: 400;
    font-style: normal;
    text-transform: initial
}

.socicon {
    font-family: socicon !important
}

.socicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: socicon;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased
}

.socicon:empty {
    width: 1em
}

.socicon-twitter:before {
    content: "a"
}

.socicon-facebook:before {
    content: "b"
}

.socicon-google:before {
    content: "c"
}

.socicon-youtube:before {
    content: "r"
}

.socicon-instagram:before {
    content: "x"
}

.cambria {
   font-family: 'PT Serif', serif;
   font-weight: 400;
}

.cambria-bold {
    font-family: 'PT Serif', serif;
    font-weight: 700;
}

.avenir-book {
  font-family: 'Poppins', sans-serif;
}

.avenir-black {
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
}

.avenir {
   font-family: 'Poppins', sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
    font-weight: 700
}

body {
   font-family: 'PT Serif', serif;
   font-weight: 400;
}

a:hover {
    color: #007dc3;
    text-decoration: none
}

.btn-lrg {
    height: 70px;
    line-height: 70px;
    font-size: 21px;
    padding: 0 39px;
    margin: 0 auto;
    width: 345px
}

.btn-lrg:hover {
    color: #fff
}

#main_column form .btn,
#side-search-btn,
.btn,
.btn-default:focus,
.btn-defualt,
.btn-defualt:visited,
.btn:visited,
.pager li .btn,
.search-media-btn,
btn:focus {
    background-color: #007dc3;
    white-space: normal;
    color: #fff;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
    text-transform: uppercase
}

#main_column form .btn:hover,
#side-search-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: #005e92;
    color: #fff
}

.container {
    width: 1170px
}

#content {
    font-size: 18px
}

@media (max-width:1200px) {
    .container {
        width: 970px
    }

    .instagram #instamedia img {
        width: 198px
    }

    #twitter .cell {
        padding: 11px 0 2px;
        margin-left: 10px;
        margin-right: 10px
    }

    #twitter .cell.header {
        font-size: 16px
    }

    #twitter .cell h4 {
        font-size: 16px
    }

    .logo img {
        width: 111%
    }

    body .navbar .nav-pills>li a {
        font-size: 17px
    }

    body .navbar .nav-pills {
        margin-top: 25px
    }

    body .navbar .srchbutton span {
        margin-top: 68px
    }

    body .navbar #search {
        margin-top: 56px
    }

    .item a h2 {
        font-size: 37px
    }

    .blue-line {
        margin-top: 0;
        margin-bottom: 45px
    }

    .youtube iframe {
        height: 473px
    }

    p.main_page_title_banner {
        font-size: 85px
    }

    p.main_page_title_marquee {
        font-size: 85px;
        bottom: 400px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 410px
    }
}

@media (max-width:991px) {

    .pull-down,
    .pull-down-2 {
        font-size: 18px
    }

    .container {
        width: 750px
    }

    .logo img {
        width: 74%
    }

    .srchbuttonmodal {
        float: right;
        right: 0;
        position: absolute;
        margin-top: 69px;
        color: #000;
        right: 70px
    }

    .togglemenu {
        float: right;
        color: #000;
        margin-top: 40px
    }

    .item a h2 {
        font-size: 24px
    }

    .item .featured-press {
        position: relative;
        height: 500px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center top
    }

    .press .table-div .cell {
        font-size: 16px
    }

    .press .table-div .cut-tape {
        margin-top: 32px
    }

    .col-md-4.twitter {
        margin-bottom: 40px
    }

    .instagram,
    .youtube {
        margin-left: 0
    }

    .left.carousel-control span,
    .right.carousel-control span {
        font-size: 40px
    }

    .office-locations .location .reveal {
        padding: 18px !important
    }

    #twitter .cell {
        margin-left: 20px
    }

    p.main_page_title_banner {
        font-size: 68px;
        bottom: 275px
    }

    p.main_page_title_marquee {
        font-size: 68px;
        bottom: 350px
    }

    p.main_page_title_banner.about-james {
        left: 0
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 355px
    }

    #multimedia-browser .multimedia-tools select {
        width: 39%
    }

    .menulabel {
        vertical-align: text-bottom
    }
}

@media (max-width:768px) {
    #multimedia-browser .row .media-thumbnail {
        display: block;
        float: none !important;
        margin: 1em 0;
        width: 100%
    }

    .placeholder {
        width: 100% !important
    }

    .placeholder img {
        width: 60% !important;
        height: auto !important
    }
}

@media (max-width:767px) {
    .container {
        width: 100%
    }

    body .social-nav .social-icon {
        height: 25px;
        width: 25px;
        font-size: 13px
    }

    body .social-nav a {
        font-size: 16px
    }

    .togglemenu {
        position: absolute;
        margin-top: 53px;
        right: 0
    }

    .srchbuttonmodal {
        margin-top: 56px
    }

    .logo img {
        width: 225px
    }

    .item .featured-press {
        height: 445px
    }

    .press .table-div {
        width: 33%;
        float: left
    }

    .office-locations .location .blue-filter,
    .office-locations .location .blue-filter.dark {
        height: 0
    }

    .office-locations .location h3 {
        display: none
    }

    .office-locations .location .reveal {
        opacity: 1;
        position: relative;
        background-color: rgba(3, 128, 208, .7)
    }

    .office-locations .location .reveal dl dd {
        color: #fff
    }

    .office-locations .location .reveal.dark {
        background-color: rgba(0, 94, 146, .7)
    }

    p.main_page_title_banner {
        bottom: 245px
    }

    p.main_page_title_marquee {
        bottom: 300px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 307px
    }

    .fancybox-title-float-wrap .child {
        white-space: normal !important
    }
}

@media (max-width:656px) {
    body .social-nav {
        display: none
    }

    .togglemenu {
        font-size: 22px
    }

    .srchbuttonmodal {
        right: 108px;
        font-size: 22px
    }

    .instagram #instamedia img {
        width: 165px
    }

    .instagram #instamedia a:after {
        position: absolute;
        bottom: -8px;
        right: -4px;
        transform: scale(.8)
    }

    .youtube iframe {
        height: 312px
    }

    .office-locations {
        margin-top: 45px
    }

    p.main_page_title_banner {
        bottom: 206px;
        font-size: 50px
    }

    p.main_page_title_marquee {
        bottom: 250px;
        font-size: 50px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 250px
    }

    body .footer .footernav li {
        margin: 35px 2px 20px
    }

    body .footer .footernav li a {
        font-size: 15px
    }

    .placeholder {
        width: 100% !important
    }

    .placeholder img {
        width: 80% !important;
        height: auto !important
    }

    .pull-down,
    .pull-down-2 {
        width: 100%;
        margin: 0
    }

    .pull-down-2 {
        margin-top: 15px
    }
}

@media (max-width:555px) {
    .instagram #instamedia img {
        width: 130px
    }

    .press .table-div {
        width: 50%
    }

    .press .table-div:last-child {
        width: 100%
    }

    .blue-line {
        display: none
    }

    .press {
        margin-bottom: 50px
    }

    p.main_page_title_banner {
        bottom: 180px
    }

    p.main_page_title_marquee {
        bottom: 240px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 235px
    }

    .press .table-div {
        display: table;
        height: 150px
    }

    #listblocks .block.noimg a {
        padding: 0;
        min-height: 95px;
        line-height: 64px
    }

    .aside-twitter {
        width: 100% !important
    }

    .meet-social-aside {
        margin: 0 auto !important
    }

    p.about {
        font-size: 18px
    }

    #ContactModal .modal-dialog,
    #NavMobileModal .modal-dialog,
    #SearchModal .modal-dialog {
        margin: 3% auto;
        width: 100%;
        max-width: 600px
    }
}

@media (max-width:479px) {

    input[type=color],
    input[type=date],
    input[type=datetime-local],
    input[type=datetime],
    input[type=email],
    input[type=month],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    input[type=time],
    input[type=url],
    input[type=week],
    select,
    textarea {
        font-size: 16px
    }

    .logo img {
        width: 180px
    }

    .instagram #instamedia img {
        width: 105px
    }

    body .footer .footernav li a {
        font-size: 13px
    }

    body .subfooter .subfooternav li a {
        font-size: 10px
    }

    body .footer .footernav li {
        margin: 4px 0 3px
    }

    body footer .footernav {
        text-align: center;
        margin-top: 28px
    }

    .togglemenu {
        font-size: 18px
    }

    .srchbuttonmodal {
        font-size: 18px;
        right: 86px
    }

    p.main_page_title_marquee {
        font-size: 36px;
        bottom: 220px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 220px
    }

    .item .featured-press {
        height: 300px
    }

    .item a h2 {
        font-size: 19px
    }

    .placeholder {
        width: 100% !important
    }

    .placeholder img {
        width: 100% !important;
        height: auto !important
    }

    .btn-lrg {
        width: 100%
    }

    body #press {
        padding-top: 10px
    }

    body#youth p.main_page_title_marquee {
        font-size: 25px;
        bottom: 157px
    }

    body#youth p.main_page_title_banner {
        font-size: 25px;
        bottom: 137px
    }

    #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
        width: 16%;
        background-color: #007dc3
    }

    #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search],
    #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search],
    #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search] {
        width: 83%
    }

    .rollover {
        display: none !important
    }
}

@media (max-width:421px) {
    body .footer .footernav li:last-child {
        margin: 0 2px 20px
    }

    p.main_page_title_banner {
        font-size: 31px;
        bottom: 146px
    }

    p.main_page_title_marquee {
        font-size: 31px;
        bottom: 180px
    }

    p.main_page_title_banner.scheduling_request {
        bottom: 112px
    }

    .nextarticle,
    .prevarticle {
        width: 100%;
        margin-top: 10px;
        float: none !important
    }
}

@media (max-width:330px) {
    .logo img {
        width: 150px
    }

    .item a h2 {
        font-size: 19px
    }

    .instagram #instamedia img {
        width: 81px
    }

    #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
        width: 22%;
        background-color: #007dc3
    }

    #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search],
    #NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search],
    #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search] {
        width: 78%
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

    input:focus,
    select:focus,
    textarea:focus {
        font-size: 16px !important;
        background: #eee
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
        background: #eee
    }
}

.ieold .ieoldonly {
    display: block !important
}

.ie .ieonly {
    display: block !important
}

.ie .notie {
    display: none !important
}

.ie7 .ie7only {
    display: block !important
}

.ie7 .navbar-toggle {
    display: block !important
}


body#coronavirus .faqsection{
    border-top: 10px solid rgba(0, 0, 0, 0.05);
    border-bottom: 10px solid rgba(0, 0, 0, 0.05);
    display: table;
    width: 100%;
    padding: 1rem 2rem;
    margin-bottom: 5rem;
    margin-top: 5rem;

  }
  
  @media (max-width:767px){
    body#coronavirus .faqsection{
      display: table;
      width: 100%;
      padding: 0px;
    }
  }
  
  body#coronavirus .faqsection .faqheader{
  
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 34px;
    font-weight: bold;
    color: #363636;
  
  }
  
  body#coronavirus .faqsection .panel{
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  
  
  body#coronavirus .faqsection .panel-heading{
    color: #363636;
    background-color: transparent;
    border-color: #cc3e32;
    border-radius: 0;
    border: 0;
    border-bottom: 5px solid #cc3e32;
  }
  body#coronavirus .faqsection .panel-title{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
    color: #cc3e32;
  }
  
  body#coronavirus .faqsection .panel-heading a{
  
    text-decoration: none;
    display: block;
  
  }
  
  body#coronavirus .faqsection .panel-heading a:hover .panel-title{
    color: #363636;
  }
  
  body#coronavirus .faqsection .panel-heading .panel-title{
    color:#cc3e32;
  }
  
  body#coronavirus .faqsection .panel-heading .panel-title .pull-right .fa{
    color: #363636;
  }
  
  body#coronavirus .faqsection .panel-collapse .panel-body{
    border-bottom: 5px solid #f8f8f9;
  }
  
  body#coronavirus .faqsection .panel-collapse .panel-body ul{
  margin-top: 10px;
  }
  
  
  body#coronavirus .faqsection .panel-collapse .panel-body p{
    margin-bottom: 10px;
  }
  


/*# sourceMappingURL=common.css.map */