.floating,
.pulse {
    animation-iteration-count: infinite
}

#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
}

.slideLeft,
.slideUp {
    animation-duration: 1s;
    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;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease
}

@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;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out
}

@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
}

.expandOpen,
.slideExpandUp {
    animation-timing-function: ease-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;
    -webkit-animation-timing-function: ease -out
}

@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
}

.fadeIn,
.pulse {
    animation-duration: 1.5s
}

@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;
    -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;
    -webkit-animation-timing-function: ease-out
}

.bigEntrance,
.pullUp {
    animation-timing-function: ease-out
}

@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;
    -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;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite
}

.floating,
.stretchLeft {
    animation-duration: 1.5s
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(.9);
        opacity: .7
    }

    50% {
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes pulse {

    0%,
    100% {
        -webkit-transform: scale(.95);
        opacity: .7
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8%)
    }
}

@-webkit-keyframes floating {

    0%,
    100% {
        -webkit-transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(8%)
    }
}

.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%,
    100% {
        transform: rotate(-4deg)
    }

    50% {
        transform: rotate(4deg)
    }
}

@-webkit-keyframes tossing {

    0%,
    100% {
        -webkit-transform: rotate(-4deg)
    }

    50% {
        -webkit-transform: rotate(4deg)
    }
}

.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

.pullDown,
.stretchLeft {
    animation-timing-function: ease-out
}

@keyframes pullUp {
    0% {
        transform: scaleY(.1)
    }

    40% {
        transform: scaleY(1.02)
    }

    60% {
        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(1)
    }
}

.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    -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(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(1)
    }
}

.stretchLeft {
    animation-name: stretchLeft;
    -webkit-animation-name: stretchLeft;
    -webkit-animation-duration: 1.5s;
    -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(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(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(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(1)
    }
}

#breadcrumb,
body .home-banner,
label[for=search-field] {
    display: none
}

body {
    background-color: #f5f5f5
}

body .sub-banner {
    position: relative
}

body .sub-banner img {
    width: 99.96%
}

body .sub-banner .logo {
    height: 100%;
    top: 0
}

body .sub-banner .logo a {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 22px;
    background-color: rgba(1, 1, 1, .4);
    height: 100%;
    transition: all .5s ease
}

body #header {
    background-color: transparent
}

body #header .container {
    background-color: #fff
}

body #header .container .logo {
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

body #header .container .logo a {
    font-family: 'Vollkorn', serif;
    font-style: italic;
    font-weight: 600;;
    font-size: 18px;
    text-transform: none;
    color: #fff;
    text-shadow: 0 3px 11px #000
}

body #header .container .logo a span {
    font-family: 'Jost', sans-serif;
font-weight: 300;
font-style: normal;
    font-size: 70px
}

body #header .container .logo a:hover {
    text-decoration: none;
    background-color: rgba(1, 1, 1, 0)
}

body#home .sub-banner {
    display: none
}

body#home .home-banner {
    position: relative;
    border-bottom: 1px solid #fff;
    display: block
}

body#home .home-banner img {
    width: 100%
}

body#home #header .logo {
    position: absolute;
    top: 408px;
    text-align: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto
}

body .navbar {
    margin-top: -1px;
    box-shadow: 0 6px 12px -4px #ebebeb
}

body .navbar .nav-pills {
    width: 75%;
    float: left;
    height: 54px;
    display: inline-block
}

body .navbar .nav-pills>li {
    
    white-space: nowrap;
    width: auto
}

body .navbar .nav-pills>li.selected {
    background-color: #7f2f30
}

body .navbar .nav-pills>li.selected a {
    color: #fff;
    white-space: nowrap;
    text-decoration: none
}

body .navbar .nav-pills>li a {
    color: #1f1e17;
    font-size: 22px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none
}

.small-col .description a,
.small-col .description h4 {
    font-family: 'Jost', sans-serif;
font-weight: 300;
    color: #fff
}

body .navbar .nav-pills>li .dropdown-menu {
    background-color: #7f2f30;
    border-top: none;
    margin-top: 0px;
    border: 0;
    top: 100%;
}

body .navbar .nav-pills>li .dropdown-menu li a {
    text-transform: none;
    color: #fff;
    text-decoration: none
}

body .navbar .nav-pills>li .dropdown-menu li:hover a {
    background-color: #562020
}

body .navbar .nav-pills>li:hover {
    background-color: #7f2f30
}

body .navbar .nav-pills>li:hover a {
    color: #fff;
    text-decoration: none
}

body .navbar .srchbutton {
    display: none
}

body .navbar #search {
    width: 20%;
    display: inline-block
}

body .navbar #search #sitesearch {
    padding: 0
}

body .navbar #search #sitesearch #search-field {
    border: none;
    background-color: #ebebeb;
    color: #858481;
    height: 55px;
    padding: 5px 20px;
    vertical-align: middle;
    float: right;
    margin-bottom: -9px;
    margin-right: -6px
}

body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
    color: #858481;
    font-style: italic;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
font-weight: 300;
}

body .navbar #search #sitesearch #search-field:-moz-placeholder {
    color: #858481;
    font-style: italic;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
font-weight: 300;
}

body .navbar #search #sitesearch #search-field::-moz-placeholder {
    color: #858481;
    font-style: italic;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
font-weight: 300;
}

body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
    color: #858481;
    font-style: italic;
    font-size: 20px;
    font-family: 'Jost', sans-serif;
font-weight: 300;
}

body .navbar #search #sitesearch button {
    background-color: #7f2f30;
    color: #fff;
    height: 55px;
    border: none;
    width: 60px;
    position: absolute;
    right: -1px
}

body .navbar #search #sitesearch button:hover {
    background-color: #602323
}

body #NavMobileModal .modal-dialog .modal-content .close {
    margin-right: 20px
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:first-child:last-child,
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:nth-child(2):last-child {
    border: none
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:first-child>a,
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:nth-child(2)>a {
    text-transform: uppercase
}

body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:first-child .dropdown-menu,
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav>li:nth-child(2) .dropdown-menu {
    margin-bottom: 10px;
    border: none;
    padding-left: 20px;
    box-shadow: none;
    width: 100%;
    background-color: #7f2f30;
    display: inline-block;
    position: relative
}

.lady .links .table-link:first-child,
.lady .links .table-link:nth-child(2),
.small-col .description {
    border-bottom: 1px solid #fff
}

body #NavMobileModal .fade.in {
    background-color: #7f2f30
}

.no-padding {
    padding: 0
}

.container {
    background-color: #fff
}

.small-col .chairman,
.small-col .chairwoman {
    min-width: 94%;
    max-width: 94%
}

.small-col .description {
    max-width: 94%;
    background-color: #7f2f30;
    padding: 5px 9px 15px 23px
}

.small-col .description h4 {
    text-transform: none;
    font-size: 24px;
    margin-bottom: 7px
}

.small-col .description a {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px
}

.small-col .description .soc-link {
    text-transform: none;
    font-size: 20px;
    float: right;
    margin: -22px 8px 5px
}

.small-col .description .soc-link.youtube img {
    width: 20px;
    vertical-align: baseline
}

.small-col .description .soc-link:hover {
    transform: scale(1.2);
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.large-col {
    padding-right: 30px
}

.more-news {
    float: right;
    margin-top: -43px
}

.headlines h5,
.large-col h5 {
    color: #7f2f30;
    /*font-family: 'Abril Titling W01 Bold';*/
    font-family: 'Faustina', serif;
    font-weight: 700;
    padding: 30px 0 20px;
    margin: 0;
    font-size: 18px
}

.headlines h5.hr,
.large-col h5.hr {
    border-top: 1px solid #1f1e17
}

.headlines .headline,
.large-col .headline {
    font-family: 'Faustina', serif;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px
}

.headlines .date,
.large-col .date {
    font-size: 16px;
    font-family: 'Faustina', serif;
    font-weight: 800;
    margin-bottom: 35px
}

.headlines {
    overflow-y: auto;
    max-width: 94%;
    padding-left: 35px;
    height: 635px;
    padding-right: 66px
}

.headlines h5 {
    padding-top: 20px
}

.headlines .headline {
    font-size: 22px
}

.lady img {
    position: absolute;
    left: -6%;
    min-width: 106%;
    max-width: 106%;
    z-index: 1
}

.lady .links {
    z-index: 20;
    position: absolute
}

.lady .links .table-link {
    display: table
}

.lady .links .table-link .link {
    min-width: 117%;
    max-width: 117%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 211px;
    width: 581px
}

.lady .links .table-link .link:hover {
    text-decoration: none;
    font-style: italic
}

.lady .links .table-link .link a {
    color: #fff;
    text-transform: uppercase;
    width: 80%;
    font-family: 'Jost', sans-serif;
font-weight: 300;
    font-size: 32px
}

.lady .links .table-link .link a:hover {
    text-decoration: none
}

.gavel img {
    width: 100%;
    z-index: 1
}

.gavel .quote {
    width: 50%;
    float: right;
    text-align: center;
    margin-top: -151px;
    z-index: 20;
    position: relative
}

.gavel .quote #quote {
    color: #fff;
    font-family: 'Vollkorn', serif;
    font-style: italic;
    font-weight: 600;;
    width: 82%;
    font-size: 24px;
    margin: 0 auto
}

#live-hearings-banner .container h1,
.gavel .quote #citation,
body.hearings #calendar .fc-toolbar .fc-center h2 {
    font-family: 'Jost', sans-serif;
font-weight: 300;
}

.gavel .quote #citation {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 16px
}

#live-hearings-banner .container {
    padding: 20px 0;
    background-color: #8c5e1c;
    text-align: center
}

#live-hearings-banner .container h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase
}

#live-hearings-banner .container .live-hearing {
    margin-top: 10px
}

#live-hearings-banner .container .live-hearing a {
    line-height: 1;
    color: #fff
}

.no-top-margin {
    margin-top: 0
}

#breadcrumb {
    visibility: hidden
}

#search-issues-page {
    display: none
}

#main_container {
    min-height: 680px;
    padding: 20px 25px 50px
}

.submit-written-testimony {
    text-align: center;
    margin: 30px 0 0
}

.submit-written-testimony p {
    display: inline-block
}

.container.press-photos {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 30px auto
}

.modal-dialog {
    z-index: 1150
}

div#filterbuttons {
    right: 12px;
    margin-bottom: 10px
}

#issue .breakout #issueFeed>li iframe {
    width: 60%;
    height: 420px
}

.pagination-right {
    background-color: #7f2f30;
    height: 30px;
    width: 100%;
    color: #fff;
    padding: 2px 0 0 5px
}

select.span4 {
    background-color: transparent;
    border: none
}

ul.pager {
    float: right;
    margin: 0;
    position: relative;
    top: -30px
}

ul.pager a:focus {
    background: 0 0
}

.hearings #toggleCalendar {
    height: 50px
}

.hearings #toggleCalendar a {
    background-color: #fff;
    color: #7f2f30
}

.hearings #toggleCalendar .jump {
    display: block;
    width: 225px
}

.hearings #toggleCalendar .jump label {
    width: 100%
}

.hearing-meta {
    margin-bottom: 20px
}

.people>li {
    min-height: 300px
}

.people>li .files li {
    float: none;
    margin: 5px 0 0
}

.people > li .title {
    text-transform: none;
}

.members li {
    min-height: 0
}

.agenda {
    float: none
}

.acrobat {
    height: auto !important
}

#filterbuttons .btn-sm {
    background-color: transparent;
    color: #7f2f30
}

body.hearings #toggleCalendar a {
    background-color: #fff;
    color: #7f2f30
}

body.hearings #toggleCalendar .jump {
    background-color: #f5f5f5
}

body.hearings #calendar {
    margin: 20px 0 0
}

body.hearings #calendar .fc-toolbar {
    background: 0 0
}

body.hearings #calendar .fc-toolbar .fc-left .fc-today-button,
body.hearings #calendar .fc-toolbar .fc-right .fc-agendaDay-button,
body.hearings #calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
body.hearings #calendar .fc-toolbar .fc-right .fc-month-button {
    background-color: #7f2f30
}

body.hearings #calendar .fc-toolbar .fc-right .fc-state-active {
    color: #747475;
    background-color: #f5f5f5 !important
}

body.hearings #calendar th {
    background-color: #7f2f30;
    color: #fff
}

body.hearings #calendar th .fc-state-active {
    background-color: #7f2f30
}

body.hearings #calendar .fc-state-disabled {
    background-color: #f5f5f5 !important
}

body.hearings #calendar .fc-today {
    background-color: #f5efef;
    color: #474f58
}

body.hearings #calendar .fc-event {
    background-color: transparent !important;
    border: none !important
}

body.hearings #calendar a.fc-event.full {
    color: #7f2f30
}

body.hearings #calendar a.fc-event.full:before {
    color: #7f2f30;
    background-color: #7f2f30
}

body.hearings #calendar a.fc-event.sub {
    color: #8c5e1c
}

body.hearings #calendar a.fc-event.sub:before {
    color: #8c5e1c;
    background-color: #8c5e1c
}

body.hearings button.fc-month-button.fc-button.fc-state-default.fc-corner-left.fc-state-active {
    background-color: #7f2f30 !important
}

body.hearings .calendarFooter .row {
    padding: 0 10px 10px
}

body.hearings .calendarFooter .row .col {
    width: auto !important;
    padding-right: 20px
}

body.hearings .calendarFooter .row .col .today {
    color: #f5efef
}

body.hearings .calendarFooter .row .col .full {
    color: #7f2f30
}

body.hearings .calendarFooter .row .col .sub {
    color: #8c5e1c
}

body#issue .height {
    display: table;
    background-image: url(/themes/appropriations/images/blue.jpg)
}

body#issue h3 {
    margin-top: 0;
    padding-top: 15px
}

body#issue #main_container {
    padding: 0;
    border-top: 4px solid #858481
}

body#issue .blue {
    padding: 40px;
    height: 100%
}

body#issue .blue h4 {
    font-family: 'Faustina', serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 23px;
    color: #fff
}

body#issue .blue a,
body#issue .leaderblock .ranking {
    font-family: 'Faustina', serif;
    font-weight: 400;
    color: #fff
}

body#issue .blue a {
    margin: 20px 0;
    display: block;
    font-size: 24px;
    line-height: 27px
}

body#issue .blue a.selected {
    text-decoration: underline
}

body#issue .leaderblock {
    width: 49%;
    float: left
}

body#issue .leaderblock img {
    width: 40%;
    float: left
}

body#issue .leaderblock .ranking {
    width: 60%;
    float: left;
    background-color: #292e3b;
    text-align: center;
    padding-bottom: 17px
}

body#issue .leaderblock .ranking h4 {
    font-family: 'Jost', sans-serif;
font-weight: 300;
    font-size: 15px;
    text-transform: uppercase
}

body#issue .leaderblock .ranking a {
    color: #fff;
    font-size: 18px
}

body#issue .leaderblock .social {
    width: 60%;
    float: left;
    padding: 12px 0;
    background-color: #bdbcbc;
    text-align: center;
    min-height: 38px
}

body#issue .long,
body#issue .white {
    min-height: 730px;
    background-color: #fff
}

body#issue .leaderblock .social a {
    color: #292e3b;
    margin: 10px 5px
}

body#issue .leaderblock .social a:hover {
    color: #fff
}

body#issue .leaderblock+.leaderblock {
    margin-left: 10px
}

body#issue .gray {
    background-color: #ecebeb;
    padding-top: 45px
}

body#issue .gray #membership {
    padding: 60px 95px
}

body#issue .gray h1 {
    font-family: 'Faustina', serif;
    font-weight: 400;
    text-align: center;
    margin: 0 45px
}

body#issue .subcommittee h3,
body#issue .subcommittee>li a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    text-transform: uppercase
}

body#issue .subcommittee {
    text-align: center
}

body#issue .subcommittee h3 {
    font-size: 18px
}

body#issue .subcommittee>li {
    float: none;
    display: inline-block;
    margin-bottom: -3px
}

body#issue .subcommittee>li a {
    font-size: 15px;
    background-color: #7f2f30;
    color: #fff
}

body#issue .subcommittee>li.active a {
    color: #7f2f30;
    background-color: #fff
}

body#issue div.member {
    width: 23%;
    vertical-align: top;
    display: inline-block;
    padding: 10px;
    text-align: center
}

body#issue div.member a {
    color: #000;
    font-family: 'Faustina', serif;
    font-weight: 400;
    font-size: 15px
}

body#issue .long {
    padding: 0 13% 30px
}

body#issue .white {
    padding: 0 13% 80px;
    height: 100%
}

body#issue .white h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center
}

body#issue .white tr {
    min-height: 60px
}

body#issue .white tr:nth-child(even) {
    background-color: #ebebeb
}

body#issue .white td {
    padding: 10px
}

body#issue .white td time {
    color: #292e3b
}

body#issue .issuebody {
    height: 85%;
    overflow-y: auto
}

body#issue .view-all {
    margin-top: 20px;
    font-size: 18px
}

#content {
    min-height: 1000px !important
}

body.hearing .main_page_title,
body.hearing .sectionhead h1 {
    font-family: 'Faustina', serif;
    font-weight: 400;
    color: #1f1e17
}

body.hearing .video-container {
    text-align: center
}

body.hearing #watch-live-now {
    background: #7f2f30;
    margin: 0 auto 30px;
    float: none;
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    color: #fff;
    padding: 15px;
    text-align: center
}

body.hearing iframe.streaminghearing {
    border: none;
    height: 660px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%
}

#multimedia-browser .loading div#search-results-header,
body.hearings .pager,
body.no_breadcrumbs #breadcrumb {
    display: none
}

body.hearing .glyphicon-file {
    color: #7f2f30;
    font-size: 16px;
    margin-right: 8px
}

body.hearing h2 {
    /*font-family: 'Abril Titling W01 Bold'*/
    font-family: 'Faustina', serif;
    font-weight: 700;
}

body.hearing .ppeople {
    width: 98%
}

body.hearing .files td {
    padding: .5em
}

body.hearing .files td+td {
    padding-left: 0
}

body.hearing .files .acrobat td {
    vertical-align: top
}

body.hearing .files .acrobat td span {
    margin: 0
}

.header_bill,
.header_date,
.header_title {
    white-space: nowrap
}

.header_bill .glyphicon,
.header_date .glyphicon,
.header_title .glyphicon {
    position: relative;
    left: 2px
}

.header_bill .glyphicon-triangle-top,
.header_date .glyphicon-triangle-top,
.header_title .glyphicon-triangle-top {
    top: 3px
}

.header_bill .glyphicon-triangle-bottom,
.header_date .glyphicon-triangle-bottom,
.header_title .glyphicon-triangle-bottom {
    top: 4px
}

.hearingvideo iframe {
    width: 870px;
    height: 542px
}

.hearing-type {
    color: #7f2f30
}

.vcard .fn,
.vcard .honorific-prefix {
    font-weight: 700
}

.vcard {
    min-height: 187px;
    margin-top: 11px
}

.main_page_title {
    line-height: 57px
}

#share-buttons #share-copy-link {
    cursor: pointer
}

body footer .container {
    text-align: center;
    background-color: #292e3b;
    color: #fff
}

body footer a {
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    text-transform: uppercase
}

body footer a:hover {
    color: #fff
}

body footer li {
    padding: 0 18px !important
}

body footer ul {
    margin: 51px 0 20px
}

body footer .sub-nav {
    font-family: 'Faustina', serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 50px
}

body#home footer {
    margin-top: 0
}

.bambino {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.bambino-light {
font-family: 'Jost', sans-serif;
font-weight: 300;
}

.bambino-italic {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.abril-light {
    font-family: 'Faustina', serif;
    font-weight: 400;
}

.abril {
    /*font-family: 'Abril Titling W01 Bold'*/
    font-family: 'Faustina', serif;
    font-weight: 700;
}

.abril-bold {
    font-family: 'Faustina', serif;
    font-weight: 800;
}

.abril-italic {
    font-family: 'Vollkorn', serif;
    font-style: italic;
    font-weight: 600;
}
/*
.georgia {
    font-family: 'Georgia W99 Regular'
} */

body {
    font-size: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Faustina', serif;
    font-weight: 400;
}

h1 {
font-family: 'Jost', sans-serif;
font-weight: 300;
}

h1,.h1{
    font-size: 40px;
}

a,
a:hover {
    color: #7f2f30
}

.btn,
.btn-default:focus,
.btn-defualt,
.btn-defualt:visited,
.btn:visited,
.pager li .btn,
.search-media-btn,
btn:focus {
    background-color: #7f2f30;
    white-space: normal;
    color: #fff
}

.btn-default:focus:active,
.btn-defualt:active,
.btn-defualt:visited:active,
.btn:active,
.btn:visited:active,
.pager li .btn:active,
.search-media-btn:active,
btn:focus:active {
    color: #fff
}

.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: #602121;
    color: #fff
}

.btn-default:focus:focus,
.btn-default:focus:link,
.btn-default:focus:visited,
.btn-defualt:focus,
.btn-defualt:link,
.btn-defualt:visited,
.btn-defualt:visited:focus,
.btn-defualt:visited:link,
.btn-defualt:visited:visited,
.btn:focus,
.btn:link,
.btn:visited,
.btn:visited:focus,
.btn:visited:link,
.btn:visited:visited,
.pager li .btn:focus,
.pager li .btn:link,
.pager li .btn:visited,
.search-media-btn:focus,
.search-media-btn:link,
.search-media-btn:visited,
btn:focus:focus,
btn:focus:link,
btn:focus:visited {
    color: #fff
}

@media (max-width:1330px) {
    body .navbar .nav-pills>li a {
        font-size: 18px;
        padding: 10px
    }

    body#home #header .logo {
        top: 360px
    }

    .large-col .headline {
        font-size: 22px
    }

    .headlines .headline {
        font-size: 21px
    }

    .headlines {
        height: 572px
    }

    .headlines .date,
    .large-col .date {
        margin-bottom: 25px
    }

    .lady .links .table-link .link {
        height: 190px;
        width: 515px
    }

    .lady .links .table-link .link a {
        font-size: 28px
    }

    body#issue .leaderblock .ranking {
        padding-bottom: 11px
    }

    body#issue .leaderblock .social {
        padding: 7px 0 6px
    }
}

@media (max-width:1200px) {
    body#issue .leaderblock .ranking {
        padding-bottom: 10px
    }

    body#issue .leaderblock .social {
        padding: 7px 0 6px
    }

    body .navbar .nav-pills>li .dropdown-menu {
        margin-top: 0px
    }

    body #header .container .logo a span {
        font-family: 'Jost', sans-serif;
font-weight: 300;
        font-size: 42px
    }

    body #header .container .logo a {
        font-family: 'Vollkorn', serif;
        font-style: italic;
        font-weight: 600;;
        font-size: 15px;
        text-transform: none;
        color: #fff;
        text-shadow: 0 3px 11px #000
    }

    body .navbar .nav-pills {
        width: 81%
    }

    body .navbar .nav-pills>li a {
        font-size: 17px
    }

    body .navbar #search {
        width: 17%
    }

    body .navbar #search #sitesearch #search-field {
        width: 200px;
        height: 50px
    }

    body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
        font-size: 17px
    }

    body .navbar #search #sitesearch #search-field:-moz-placeholder {
        font-size: 17px
    }

    body .navbar #search #sitesearch #search-field::-moz-placeholder {
        font-size: 17px
    }

    body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
        font-size: 17px
    }

    body .navbar #search #sitesearch button {
        width: 50px;
        height: 50px
    }

    body#home #header .logo {
        top: 290px
    }

    body#home #header .logo a span {
        font-size: 52px
    }

    body#home .navbar .nav-pills {
        height: 49px
    }

    body footer a {
        font-size: 15px
    }

    .large-col {
        padding-left: 0
    }

    .large-col h5 {
        padding-top: 15px
    }

    .headlines .date,
    .large-col .date {
        font-size: 12px
    }

    .small-col .description {
        padding: 5px 25px 21px
    }

    .small-col .description h4 {
        font-size: 18px
    }

    .small-col .description a {
        font-size: 14px
    }

    .small-col .description .soc-link {
        font-size: 16px;
        margin: -12px 6px 5px
    }

    .small-col .description .soc-link.youtube img {
        width: 17px
    }

    .headlines h5,
    .large-col h5 {
        padding: 23px 0 8px
    }

    .headlines .headline,
    .large-col .headline {
        font-family: 'Faustina', serif;
        font-weight: 500;
        font-size: 19px
    }

    .headlines .date,
    .large-col .date {
    font-family: 'Faustina', serif;
    font-weight: 800;
        margin-bottom: 19px
    }

    .headlines {
        height: 474px;
        padding-left: 25px
    }

    .lady .links .table-link .link {
        height: 159px;
        width: 430px
    }

    body#issue .leaderblock {
        width: 63%;
        margin: -22px auto !important;
        float: none
    }

    body#issue .leaderblock .social {
        margin-bottom: 21px
    }

    body#issue .leaderblock+.leaderblock {
        margin-top: 15px !important
    }
}

@media (max-width:991px) {

    .headlines,
    .large-col,
    .small-col .description {
        padding-left: 40px;
        padding-right: 40px
    }

    .lady img,
    .small-col .chairman,
    .small-col .chairwoman,
    .small-col .description {
        min-width: 100%;
        max-width: 100%
    }

    body .sub-banner,
    body .sub-banner img {
        height: 100px
    }

    body#issue .leaderblock {
        width: 52%
    }

    .srchbuttonmodal {
        display: none !important
    }

    .togglemenu {
        float: left;
        margin: 12px 25px
    }

    body .navbar {
        height: 50px
    }

    body .navbar #search {
        float: right
    }

    body#home #header .logo {
        top: 213px
    }

    body .navbar #search #sitesearch #search-field {
        margin-right: -1px
    }

    body .navbar #search #sitesearch button {
        right: -1px
    }

    .headlines,
    .large-col {
        padding-bottom: 25px
    }

    .headlines h5.hr,
    .large-col h5.hr {
        border: none
    }

    .lady {
        padding: 0;
        height: 470px;
        overflow: hidden
    }

    .lady img {
        position: relative;
        left: 0
    }

    .lady .links {
        top: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto
    }

    .lady .links .table-link {
        margin: 0 auto
    }

    body footer a {
        font-size: 13px
    }

    body footer li {
        padding: 0 7px !important
    }

    body footer .sub-nav {
        font-size: 12px
    }

    body footer ul {
        margin-top: 30px
    }

    .headlines {
        height: auto;
        overflow-y: visible
    }
}

@media (max-width:767px) {
    body#issue .leaderblock .ranking {
        padding-bottom: 12px
    }

    body#issue .leaderblock .social {
        padding: 7px 0 6px
    }

    body#home .navbar #search #sitesearch button {
        right: -1px
    }

    body#issue .leaderblock {
        width: 87%
    }

    body#issue .leaderblock img {
        width: 117px
    }
}

@media (max-width:700px) {
    body #header .container .logo a {
        font-size: 16px
    }

    body#home #header .logo a span {
        font-size: 40px
    }

    body#home #header .logo {
        top: 53%
    }
}

@media (max-width:556px) {
    body#home .home-banner img {
        width: 875px;
        margin-left: -35%
    }

    body#home #header .logo {
        top: 268px
    }

    body#issue .leaderblock {
        width: 80%
    }

    body#issue .leaderblock img {
        width: 100%;
        margin: 0
    }

    body#issue .leaderblock .ranking,
    body#issue .leaderblock .social {
        width: 100%
    }

    body#issue div.member {
        width: 32%
    }

    .lady .links .table-link .link a {
        font-size: 23px
    }

    .lady .links .table-link .link {
        height: 125px;
        width: 430px
    }

    .lady {
        padding: 0;
        height: 375px;
        overflow: hidden
    }

    body .navbar {
        height: 50px;
        position: fixed;
        top: 0;
        z-index: 500;
        background-color: #fff;
        width: 100%
    }

    body #header {
        padding-top: 50px
    }

    body#home #header,
    body.live-hearing #header {
        padding-top: 0
    }

    body .navbar #search #sitesearch #search-field {
        width: 200px;
        height: 49px
    }

    body.live-hearing #live-hearings-banner {
        margin-top: 50px
    }

    body.live-hearing #live-hearings-banner h1 {
        font-size: 25px
    }

    body.live-hearing #live-hearings-banner a {
        font-size: 17px
    }
}

@media (max-width:475px) {
    body#home .home-banner img {
        margin-left: -42%
    }
}

@media (max-width:415px) {
    body #header .container .logo a span {
        font-family: 'Jost', sans-serif;
font-weight: 300;
        font-size: 32px
    }

    body#home .home-banner img {
        margin-left: -57%
    }
}

@media (max-width:375px) {
    body#home .home-banner img {
        margin-left: -65%
    }

    .nextarticle,
    .prevarticle {
        width: 100%;
        margin: 10px 0
    }
}

@media (max-width:370px) {
    body#home .home-banner img {
        margin-left: -71%
    }

    body#home #header .logo a span {
        font-size: 32px
    }
}

@media (max-width:407px) {
    .lady img {
        height: 100%
    }
}

@media (max-width:320px) {
    body#home .home-banner img {
        margin-left: -86%
    }
}

@media (max-width:479px) {

    body#issue .leaderblock,
    body#issue .leaderblock .ranking,
    body#issue .leaderblock .social {
        width: 100%
    }

    .small-col .description .soc-link {
        margin-top: 2px
    }

    .gavel img,
    footer .list-inline {
        display: none
    }

    body footer .sub-nav {
        font-size: 12px;
        padding: 20px;
        margin-bottom: 20px
    }

    body#issue .leaderblock img {
        width: 100%;
        margin: 0
    }

    body#issue div.member {
        width: 47%
    }

    body#issue .subcommittee>li a {
        font-size: 11px
    }
}

.ieold .ieoldonly {
    display: block !important
}

.ie body#issue .navbar .srchbutton {
    display: none !important
}

.ie .togglemenu {
    display: none
}

.ie .ieonly {
    display: block !important
}

.ie .notie {
    display: none !important
}

.ie7 .ie7only,
.ie7 .navbar-toggle {
    display: block !important
}

@media print {

    html #twitter-widget-0,
    html .lady,
    html .small-col .description .soc-link,
    html iframe {
        display: none
    }

    html .members .headshot {
        height: 150px;
        width: 150px
    }

    html .amend-textarea {
        font-size: 14px !important
    }

    html #main_column {
        width: 66%;
        float: left
    }

    html body#issue #main_column {
        width: 100%
    }

    html body#issue .issuebody {
        overflow-y: inherit
    }

    html #asides {
        width: 33%;
        float: left;
        height: 600px;
        overflow: hidden
    }

    html .tab-content>.tab-pane {
        display: block
    }
}

.earmarktable .dataTables_paginate{
    float: right;
}

.earmarktable .dataTables_info{
    margin: 25px 0;
}

.earmarktable .dataTables_length{
    padding: 3rem 0;
}

.earmarktable .dataTables_filter{
    padding: 3rem 0;
}
.earmarktable .dataTables_filter label{
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 5px;
    font-weight: 700;  
}
.earmarktable .dataTables_filter input[type="search"]{
    padding: 5px 10px;
    width: 100%!important;
    max-width: 450px;
    margin-left: 1rem;
}

.earmarktable table thead th{
    font-size: 11px;
    white-space: nowrap;
    cursor: pointer;
}

.earmarktable table thead th:hover{
    background-color: #e3e3e3;
}


.earmarktable table tbody{
    font-size: 14px;
    
}