<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.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
==============================================
*/
.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
==============================================
*/
.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
==============================================
*/
.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
==============================================
*/
.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(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.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(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.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.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.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(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.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(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.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(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.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(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.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(0deg) scaleY(0.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(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.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(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.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(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.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(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.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
==============================================
*/
.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
==============================================
*/
.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(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.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(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.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(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.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(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
body {
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
body#library .modal #search-pod-field {
  width: 400px;
  height: 40px;
  padding-left: 5px;
}
body#library .modal .btn {
  color: #fff;
  background-color: #5D6D53;
}
body#library .modal .btn:hover {
  color: #fff;
  background-color: #777F4C;
}
body#home #live-banner {
  display: none;
}
#live-banner {
  height: 120px;
  position: relative;
  z-index: 10;
  background: #45513e;
}
#live-banner .container {
  background-image: url('/themes/budget/images/livehearingbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 400px;
  width: 100%;
}
#live-banner .livetitle {
  text-align: center;
  width: 100%;
  height: 120px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  line-height: 16px;
}
#live-banner .livetitle .live-hearing {
  margin-bottom: -10px;
  font-size: 40px;
  color: #fff;
}
#live-banner .livetitle .live-hearing .live {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-left: 10px;
}
#live-banner .livetitle .live-hearing .hearing {
  font-family: 'ProximaNW01-AltLightReg';
}
#live-banner .livetitle .live-hearing .watch {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  margin: 10px;
  color: #fff;
}
#live-banner .livetitle .live-hearing .glyphicon {
  background: #fff;
  border-radius: 25px;
  color: #45513e;
  padding: 5px 5px 6px 7px;
  font-size: 20px;
  top: -3px;
}
#SearchModal .modal-backdrop.in,
#ContactModal .modal-backdrop.in {
  background-color: #5D6D53 !important;
}
#SearchModal .modal-dialog .modal-content .modal-header,
#ContactModal .modal-dialog .modal-content .modal-header {
  width: 95%;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  height: 50px;
  font-size: 24px;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #777F4C;
  height: 50px;
  font-size: 20px;
}
body {
  background-color: #fcfbf8;
}
body #header {
  height: auto;
  width: 100%;
  position: relative;
  background-color: #5D6D53;
}
body #header a.logo-hold {
  margin-top: -61px;
  position: absolute;
  margin-left: 100px;
  width: 215px;
  left: 1px;
}
body #header a.logo-hold img {
  z-index: 1;
  width: 100%;
  position: absolute;
}
body #header .nav-hold {
  display: inline-block;
  float: left;
  width: 68%;
  margin-left: 320px;
}
#search-sections-container {
  margin-top: 10px;
}
#advanced-search-link {
  position: absolute;
  right: 38px;
  font-size: 15px;
  text-align: center;
  color: white;
  line-height: 15px;
  top: 12px;
  display: none;
}
#advanced-search-link.show {
  display: block;
}
#advanced-search-btn {
  background-color: #777F4C;
  width: 175px;
  display: block;
  margin: 0 auto;
}
#advanced-search-btn:hover {
  background-color: #414431 !important;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #414431 !important;
}
body .nav-justified &gt; li {
  width: auto;
  float: none;
}
body .navbar {
  background-color: #5D6D53;
  height: 60px;
}
body .navbar .nav-pills {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
body .navbar .nav-pills &gt; li {
  padding-left: 5px;
  padding-right: 5px;
}
body .navbar .nav-pills &gt; li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
body .navbar .nav-pills &gt; li:last-child .dropdown-menu {
  right: 0;
}
body .navbar .nav-pills &gt; li .dropdown-menu {
  background-color: #5D6D53;
  border: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 1px 0 0;
  margin-left: -5px;
  font-size: 14px;
  text-align: left;
  list-style: none;
}
body .navbar .nav-pills &gt; li .dropdown-menu li a {
  font-size: 20px;
  color: #fff;
  text-transform: none;
}
body .navbar .nav-pills &gt; li .dropdown-menu li a:hover {
  color: #5D6D53;
}
body .navbar .nav-pills &gt; li:hover,
body .navbar .nav-pills &gt; li.selected {
  background-color: #45513e;
}
body .navbar .nav-pills &gt; li:hover:before,
body .navbar .nav-pills &gt; li.selected:before {
  content: '';
  width: 0;
  position: absolute;
  bottom: -4px;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #5d6d53;
  left: 36%;
}
body .navbar .togglemenu {
  float: right;
  color: #fff;
  font-size: 26px;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body .navbar .togglemenu .glyphicon {
  top: 4px;
}
body .navbar .srchbutton {
  display: block;
  right: 0;
  float: right;
  top: 18px;
  color: #fff;
  font-size: 15px;
  position: absolute;
}
body .navbar .srchbutton span {
  margin-top: 2px;
}
body .navbar #search {
  float: right;
  width: 0%;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  right: 60px;
  height: 40px;
  position: absolute;
  top: 6px;
  display: block;
}
body .navbar #search.showme {
  width: 83%;
  height: 40px;
  position: absolute;
  top: 6px;
  left: 1px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search #sitesearch {
  float: right;
  width: 100%;
  padding: 0px 15px 0px;
  position: relative;
  height: 100%;
  border: 1px solid #5D6D53;
}
body .navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 100%;
  padding: 5px;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}
body .navbar #search #sitesearch button {
  position: absolute;
  background-color: #777F4C;
  color: #fcfbf8;
  right: 0px;
  width: 50px;
  height: 100%;
  border: none;
}
body .navbar #search #sitesearch button .glyphicon {
  top: 4px;
  color: #fcfbf8;
}
body #NavMobileModal .modal-backdrop {
  background-color: #5D6D53;
  opacity: 1;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  opacity: 1;
  margin-right: 20px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav {
  list-style: none;
  position: relative;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav &gt; li {
  font-size: 30px;
  position: relative;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav &gt; li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav &gt; li &gt; a {
  padding: 10px 20px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav &gt; li .dropdown-menu {
  float: none!important;
  position: relative!important;
  display: block;
  left: 0;
  z-index: 1;
  float: left;
  min-width: 160px;
  padding: 0px 0;
  margin: 0px 0 0;
  font-size: 18px;
  text-align: left;
  list-style: none;
  background-color: transparent;
  -webkit-background-clip: none;
  background-clip: none;
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body#home .banner-container {
  height: 630px;
}
body#home .banner-container img {
  width: 100%;
}
body#home .banner-container #featured {
  height: 100%;
}
body#home .banner-container #featured .tab-content {
  height: 100%;
}
body#home .banner-container #featured .tab-content #featuredchairslide {
  height: 100%;
  background-image: url("/themes/budget/images/lgrahambg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 630px;
}
body#home .banner-container #featured .tab-content #featuredchairslide .inset {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
  max-height: 630px;
  width: 50%;
}
body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
  font-size: 20px;
  color: #fcfbf8;
  position: absolute;
  top: 160px;
  left: 70px;
  padding-right: 35px;
}
body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
  margin-bottom: 20px;
}
body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist a {
  color: #fcfbf8;
}
body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist .more {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist .list li {
  margin-bottom: 10px;
}
body#home .banner-container #featured .tab-content #featuredrankingslide {
  height: 100%;
  background-image: url("/themes/budget/images/merkleynewbg.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  max-height: 630px;
}
body#home .banner-container #featured .tab-content #featuredrankingslide .inset {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
  max-height: 630px;
  width: 50%;
}
body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
  font-size: 22px;
  color: #fcfbf8;
  position: absolute;
  top: 160px;
  left: 70px;
  padding-right: 35px;
}
body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
  margin-bottom: 20px;
}
body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist a {
  color: #fcfbf8;
}
body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist .more {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist .list li {
  margin-bottom: 10px;
}
body#home .banner-container #featured .tab-content #featuredhearingslide {
  height: 100%;
  background-image: url("/themes/budget/images/homebg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
body#home .banner-container #featured .tab-content #featuredhearingslide .streaminghearing {
  height: 465px;
  margin-top: 96px;
  border: 30px solid #37545b;
  width: 99%;
}
body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
  position: absolute;
  background-color: rgba(60, 90, 98, 0.45);
  height: 100%;
  max-height: 630px;
  width: 33.3%;
  right: 0px;
}

@media(max-width:767px){
  body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
    background-color: rgba(60, 90, 98, 0.8);
  }
}
body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle {
  text-align: center;
  font-size: 22px;
  color: #fcfbf8;
  float: right;
  right: 0px;
  top: 130px;
  padding-left: 15px;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle .type {
  font-size: 22px;
  text-transform: uppercase;
  display: block;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle .date {
  display: block;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle a {
  color: #fcfbf8;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
  text-align: center;
  font-size: 22px;
  color: #fcfbf8;
  float: right;
  right: 0px;
  top: 150px;
  padding-left: 15px;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .type {
  font-size: 22px;
  text-transform: uppercase;
  display: block;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .date {
  display: block;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .time {
  display: block;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle h1 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle a {
  color: #fcfbf8;
}
body#home #top #topbuttons {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  border-top: 5px solid rgba(0, 0, 0, 0.19);
  margin-top: -5px;
  width: 100%;
}
body#home #top #topbuttons a {
  color: #fcfbf8;
  display: block;
}
body#home #top #topbuttons .chairmannews {
  background-color: #777F4C;
  padding: 18px;
}
body#home #top #topbuttons .chairmannews:hover {
  position: relative;
  background: #8b945f;
}
body#home #top #topbuttons .chairmannews:hover:after,
body#home #top #topbuttons .chairmannews:hover:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #8b945f;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .chairmannews:hover:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .chairmannews:focus:after,
body#home #top #topbuttons .chairmannews:focus:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #8b945f;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .chairmannews:focus:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .chairmannews:focus:after {
  border-bottom-color: #777F4C;
}
body#home #top #topbuttons .chairmannews:focus:hover:after {
  border-bottom-color: #8b945f;
}
body#home #top #topbuttons .rankingnews {
  background-color: #5D6D53;
  padding: 18px;
}
body#home #top #topbuttons .rankingnews:hover {
  position: relative;
  background: #6d7d63;
}
body#home #top #topbuttons .rankingnews:hover:after,
body#home #top #topbuttons .rankingnews:hover:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #6d7d63;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .rankingnews:hover:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .rankingnews:focus:after,
body#home #top #topbuttons .rankingnews:focus:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #6d7d63;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .rankingnews:focus:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .rankingnews:focus:after {
  border-bottom-color: #5D6D53;
}
body#home #top #topbuttons .rankingnews:focus:hover:after {
  border-bottom-color: #6d7d63;
}
body#home #top #topbuttons .featuredhearingbutton {
  background-color: #37545b;
  padding: 18px;
}
body#home #top #topbuttons .featuredhearingbutton:hover {
  position: relative;
  background: #4f6d75;
}
body#home #top #topbuttons .featuredhearingbutton:hover:after,
body#home #top #topbuttons .featuredhearingbutton:hover:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #4f6d75;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .featuredhearingbutton:hover:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .featuredhearingbutton:focus:after,
body#home #top #topbuttons .featuredhearingbutton:focus:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #4f6d75;
  border-width: 20px;
  margin-left: -20px;
}
body#home #top #topbuttons .featuredhearingbutton:focus:before {
  border-bottom: 22px solid rgba(0, 0, 0, 0.19);
  margin-left: -20px;
  top: -47px;
}
body#home #top #topbuttons .featuredhearingbutton:focus:after {
  border-bottom-color: #37545b;
}
body#home #top #topbuttons .featuredhearingbutton:focus:hover:after {
  border-bottom-color: #4f6d75;
}
body#home #middle {
  position: relative;
  background-color: #fcfbf8;
}
body#home #middle #hearingshome .hearingslist {
  margin-top: 25px;
}
body#home #middle #hearingshome .hearingslist .hearingstart {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #5D6D53;
  margin-bottom: 20px;
}
body#home #middle #hearingshome .hearingslist .homehearings {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin-top: 30px;
}
body#home #middle #hearingshome .hearingslist .homehearings .btn {
  display: none;
}
body#home #middle #hearingshome .hearingslist .homehearings .indihearing {
  margin-bottom: 45px;
}
body#home #middle #hearingshome .hearingslist .homehearings .indihearing .headline {
  color: #777F4C;
}
body#home #middle #hearingshome .hearingslist .homehearings .indihearing .date {
  float: left;
  width: 115px;
  color: #37545b;
}
body#home #middle #rankingtwitter #rankingtwitterwidget {
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: scroll;
  overflow-x: auto;
  overflow-y: auto;
  background: #f2f3f0;
}
body#home #middle #rankingtwitter #rankingtwitterwidget img {
  display: none;
}
body#home #middle #rankingtwitter #rankingtwitterwidget .home-twitter-feed {
  padding: 20px;
  padding-right: 50px;
  max-height: 530px;
}
body#home #middle #rankingtwitter #rankingtwitterwidget .home-twitter-feed .tweet {
  font-size: 16px;
  word-break: break-all;
}
body#home #middle #rankingtwitter #rankingtwitterwidget .home-twitter-feed .twittertitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #464646;
  margin-left: 10px;
}
body#home #middle #rankingtwitter #rankingtwitterwidget .home-twitter-feed .twittertitle .xlogo {
  background: url("/themes/budget/images/xlogo.png");
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
}
body#home #middle #rankingtwitter #rankingtwitterwidget .home-twitter-feed #twitter-ranking .list-unstyled {
  margin-top: 15px;
}
body#home #middle #majoritytwitter #majoritytwitterwidget {
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: scroll;
  overflow-x: auto;
  overflow-y: auto;
  background: #f2f3f0;
}
body#home #middle #majoritytwitter #majoritytwitterwidget img {
  display: none;
}
body#home #middle #majoritytwitter #majoritytwitterwidget .home-twitter-feed {
  padding: 20px;
  padding-right: 50px;
  max-height: 530px;
}
body#home #middle #majoritytwitter #majoritytwitterwidget .home-twitter-feed .tweet {
  font-size: 16px;
  word-break: break-all;
}
body#home #middle #majoritytwitter #majoritytwitterwidget .home-twitter-feed .twittertitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #464646;
  text-decoration: none;
  margin-left: 10px;
}
body#home #middle #majoritytwitter #majoritytwitterwidget .home-twitter-feed .twittertitle .xlogo {
  background: url("/themes/budget/images/xlogo.png");
  display: block;
  float: left;
  position: relative;
  height: 25px;
  width: 25px;
  background-size: cover;
  background-repeat: no-repeat;
}
body#home #middle #majoritytwitter #majoritytwitterwidget .home-twitter-feed #twitter-chair .list-unstyled {
  margin-top: 15px;
}
body#home #bottom {
  background-color: #fcfbf8;
  padding-bottom: 65px;
}
body#home #bottom #chairman {
  height: 280px;
  background: -webkit-linear-gradient(left, #3c5a61 50%, #37545b 50%);
  background: linear-gradient(to right, #3c5a61 50%, #37545b 50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c5a61', endColorstr='#37545b', gradientType='1')";
  
}
body#home #bottom #chairman .chairimage {
  background-image: url('/themes/budget/images/grahammembershipnew.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 280px;
  width: 50%;
}
body#home #bottom #chairman #chairtitle {
  margin-top: 90px;
  text-align: center;
  color: #fcfbf8;
}
body#home #bottom #chairman #chairtitle h1 {
  font-size: 38px;
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#home #bottom #chairman #chairtitle .chairname {
  font-size: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fcfbf8;
}
body#home #bottom #chairman #membership {
  margin-left: 40px;
  padding: 10px;
}
body#home #bottom #chairman #membership .party {
  color: #fcfbf8;
  font-size: 22px;
  margin: 10px 0px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body#home #bottom #chairman #membership .memberlist &gt; li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 50%;
  cursor: pointer;
  font-size: 18px;
}
body#home #bottom #chairman #membership .memberlist &gt; li:first-child {
  display: none;
}
body#home #bottom #chairman #membership .memberlist &gt; li a {
  color: #fcfbf8;
  float: left;
  width: 100%;
  display: block;
  line-height: 32px;
}
body#home #bottom #chairman #membership .memberlist &gt; li a:hover {
  color: #fcfbf8;
}
body#home #bottom #chairman #membership .memberlist &gt; li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #37545b;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
body#home #bottom #ranking-member {
  height: 280px;
  background: -webkit-linear-gradient(left, #777F4C 50%, #5D6D53 50%);
  background: linear-gradient(to right, #777F4C 50%, #5D6D53 50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#777F4C', endColorstr='#5D6D53', gradientType='1')";
}
body#home #bottom #ranking-member .rankingimage {
  background-image: url('/themes/budget/images/merkleymembership.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 280px;
  width: 50%;
}
body#home #bottom #ranking-member #rankingtitle {
  margin-top: 90px;
  text-align: center;
  color: #fcfbf8;
}
body#home #bottom #ranking-member #rankingtitle .rankingname {
  font-size: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fcfbf8;
}
body#home #bottom #ranking-member #rankingtitle h1 {
  font-size: 38px;
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#home #bottom #ranking-member #membership {
  padding: 10px;
  margin-left: 40px;
}
body#home #bottom #ranking-member #membership .party {
  color: #fcfbf8;
  font-size: 22px;
  margin: 10px 0px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body#home #bottom #ranking-member #membership .memberlist &gt; li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 50%;
  cursor: pointer;
  font-size: 18px;
}
body#home #bottom #ranking-member #membership .memberlist &gt; li:first-child {
  display: none;
}
body#home #bottom #ranking-member #membership .memberlist &gt; li a {
  color: #fcfbf8;
  float: left;
  width: 100%;
  display: block;
  line-height: 32px;
}
body#home #bottom #ranking-member #membership .memberlist &gt; li a:hover {
  color: #fcfbf8;
}
body#home #bottom #ranking-member #membership .memberlist &gt; li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #37545b;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
/*
default interior styles

commonly made fixes / tweaks
*/
body {
  max-width: 1329px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
}
body #content {
  background-color: #fcfbf8;
  padding-bottom: 50px;
}
body.hearingvideo iframe {
  height: 100%;
  width: 100%;
}
.user a {
  color: black;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.user a:hover {
  text-decoration: none;
}
.user a span[data-scribe='element:screen_name'] {
  position: relative;
  top: -5px;
}
.tweet a {
  color: black;
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
body#default .modal select,
#hearings .modal select,
#newsroom .modal select,
#membership .modal select,
#library .modal select,
#hearing .modal select,
#background .modal select {
  padding: 0px;
  padding-left: 10px;
}
body#default #blankbar,
#hearings #blankbar,
#newsroom #blankbar,
#membership #blankbar,
#library #blankbar,
#hearing #blankbar,
#background #blankbar {
  height: 110px;
  background-color: #F6F4EC;
}
select {
  padding: 0px!important;
}
#hearingcontent .main_page_title {
  border-bottom: 1px solid lightgrey;
}
#hearingcontent .people &gt; li {
  line-height: 30px;
}
#hearingcontent .hearing-type {
  color: #5D6D53;
  font-size: 20px;
}
.budgetbulletinlogo {
  opacity: 0.1;
  position: fixed;
  max-width: 550px!important;
  top: 36%;
  z-index: 0.1;
  left: 50%;
  margin-top: -115px;
  margin-left: -275px;
}
body#hearings {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
}
body#hearings .main_page_title {
  border-bottom: 1px solid lightgrey;
}
body#hearings .vevent td {
  padding: 15px 8px;
  border-top: 1px solid #ddd;
}
body#hearings .vevent td .calendaradd {
  color: #37545b;
  font-size: 18px;
  position: relative;
  top: 10px;
}
body#hearings h4 {
  font-size: 22px;
}
body#hearings td {
  border-top: none;
}
body#hearings #toggleCalendar {
  float: right;
  margin: -43px 0px;
}
body#hearings #toggleCalendar a {
  background-color: #fcfbf8;
  color: #5D6D53;
}
body#hearings #toggleCalendar a:hover {
  text-decoration: underline;
}
body#hearings #toggleCalendar .jump {
  background-color: #5D6D53;
  color: white;
  margin-top: -5px;
}
body#hearings #toggleCalendar .jump .glyphicon {
  color: #fcfbf8;
}
body#hearings .datepicker-dropdown,
body#hearings .dropdown-menu {
  display: block;
  top: 219px;
  left: 1270px!important;
  z-index: 10;
  width: 200px;
}
body#hearings time {
  color: #37545b;
}
body#hearings #calendar .fc-state-disabled {
  color: #fff!important;
  background: #777F4C !important;
}
body#hearings #calendar .fc-toolbar {
  background-color: #f2f3f0;
}
body#hearings #calendar .fc-toolbar .fc-right .fc-button-group button {
  color: #fff;
  background: #5D6D53;
}
body#hearings #calendar .fc-toolbar .fc-right .fc-button-group .fc-state-active {
  background: #777F4C !important;
}
body#hearings #calendar .fc-toolbar .fc-left button.fc-today-button {
  background: #5D6D53 !important;
}
body#hearings #calendar .fc-toolbar .fc-center h2 {
  color: #5D6D53;
}
body#hearings #calendar th {
  background-color: #5D6D53;
  color: white;
}
body#hearings #calendar .fc-widget-content .fc-day-grid .fc-row .fc-today {
  background-color: #5D6D53;
  color: #fff;
}
body#hearings #calendar .fc-widget-content .fc-day-grid .fc-row .fc-state-highlight {
  background-color: #5D6D53;
}
body#hearings .calendarFooter .row .col .today {
  color: #5D6D53;
}
body#hearings .calendarFooter .row .col .full {
  color: #777F4C;
}
body#newsroom .main_page_title,
#library .main_page_title {
  border-bottom: 1px solid lightgrey;
}
body#newsroom #newscontent,
#library #newscontent {
  margin-top: 20px;
}
body#newsroom #filterbuttons,
#library #filterbuttons {
  float: right;
  margin-top: -43px;
}
body#newsroom #filterbuttons #launchfilter,
#library #filterbuttons #launchfilter {
  margin-right: 10px;
}
body#newsroom #filterbuttons a,
#library #filterbuttons a {
  font-size: 18px;
  color: #5D6D53;
}
body#newsroom #filterbuttons .glyphicon,
#library #filterbuttons .glyphicon {
  top: 2px;
}
body#background .btn {
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
body#background #rulesbutton {
  background-color: #5D6D53;
  color: #fff;
}
body#background #rulesbutton:hover {
  color: #fff;
  text-decoration: underline;
  background-color: #6d7d63;
}
body#background #poobutton {
  background-color: #5D6D53;
  color: #fff;
}
body#background #poobutton:hover {
  color: #fff;
  text-decoration: underline;
  background-color: #6d7d63;
}
body#newsroom-landing #content {
  padding-bottom: 0px;
}
body#newsroom-landing #content #main_container {
  width: 100%;
}
body#newsroom-landing #content #main_container #main_column {
  padding-bottom: 50px;
}
body#newsroom-landing #asides {
  padding-top: 35px;
  padding-bottom: 50px;
  margin-top: 0px;
  min-height: 590px;
  background: #f2f3f0;
}
body#newsroom-landing #asides #socialpod {
  margin-top: 0px;
}
body#newsroom-landing #asides #socialpod .twitter-feed {
  max-height: 530px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}
body#newsroom-landing #asides #socialpod .twitter-feed .tweet {
  font-size: 16px;
  word-break: break-all;
}
body#newsroom-landing #asides #socialpod .twitter-feed img {
  display: none;
}
body#newsroom-landing #asides #socialpod .twitter-feed .twittertitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #464646;
  margin-left: 10px;
}
body#newsroom-landing #asides #socialpod .twitter-feed .twittertitle .xlogo {
  background: url("/themes/budget/images/xlogo.png");
  display: block;
  float: left;
  position: relative;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
body#newsroom-landing #asides #socialpod .twitter-feed li {
  margin-bottom: 10px;
}
body#newsroom-landing #asides #socialpod .twitter-feed #twitter .list-unstyled {
  margin-top: 15px;
}
body#newsroom-landing #asides #featuredvideo {
  padding-left: 10px;
  padding-right: 10px;
}
body#newsroom-landing #asides #featuredvideo #videosection {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #5D6D53;
}
body#newsroom-landing #asides #featuredvideo iframe {
  width: 100%;
  height: 240px;
  margin-bottom: 15px;
}
body#newsroom-landing #asides #featuredvideo .title {
  display: none;
}
body#newsroom-landing #newscontent {
  padding-top: 12px;
  padding-left: 15px;
  padding-right: 35px;
}
body#newsroom-landing #newscontent #press {
  margin-bottom: 70px;
}
body#newsroom-landing #newscontent #press .sectionhead {
  margin-bottom: 33px;
}
body#newsroom-landing #newscontent #press .sectionhead .newsroomtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid black;
}
body#newsroom-landing #newscontent #press .sectionhead a {
  float: right;
  margin-top: 0px;
  color: #464646;
}
body#newsroom-landing #newscontent #press .list {
  font-size: 22px;
}
body#newsroom-landing #newscontent #press .list li {
  display: flex;
  margin-bottom: 33px;
}
body#newsroom-landing #newscontent #press .list .date {
  color: #627a7f;
  padding-right: 15px;
  float: left;
}
body#newsroom-landing #newscontent #press .list a {
  color: #5D6D53;
  word-wrap: none;
}
body#newsroom-landing .article .main_page_title {
  font-size: 28px;
}
body#newsroom-landing #senatorname {
  position: absolute;
  top: -160px;
  left: 28px;
}


body#newsroom-landing #senatorname .title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 28px;
  float: left;
  color: #fff;
  margin-left: 3px;
}
body#newsroom-landing #senatorname .socialbuttons {
  float: left;
  margin-left: 15px;
}
body#newsroom-landing #senatorname .socialbuttons .twittericon {
  color: #fff;
  background-color: #000000;
  margin-right: 6px;
  font-size: 18px;
  padding: 3px 3px 3px 6px;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 21px;
  margin-top: 4px;
}
body#newsroom-landing #senatorname .socialbuttons .twittericon:hover {
  color: #000000;
  background-color: #fcfbf8;
}
body#newsroom-landing #senatorname .socialbuttons .youtubeicon {
  background-color: #f64320;
  color: #fff;
  margin-right: 6px;
  font-size: 18px;
  padding: 2px 2px 0px 5px;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 21px;
  margin-top: 4px;
}
body#newsroom-landing #senatorname .socialbuttons .youtubeicon:hover {
  color: #f64320;
  background-color: #fcfbf8;
}

body#newsroom-landing #senatorname .name {
  font-size: 70px;
  margin-top: 0px;
  color: #fcfbf8;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

body#issue #content {
  padding-bottom: 0px;
}

body#newsroom-landing.darktext #senatorname .title {
  color: #000;
}


body#newsroom-landing.darktext #senatorname .name {
color: #000;
}

body#issue .two_column.row{
  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

body#issue #content #main_container {
  width: 100%;

}
body#issue #content #main_container #main_column {
  padding-bottom: 50px;
  height: 100%!important;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  position: relative;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;

}

@media(min-width: 1199px) {
  body#issue #content #main_container #main_column {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media(max-width:1199px){
  #typenav{
    display: none;
}

}

#typenav{
  position: relative!important;
  z-index: 1;
}

#typenav.affix{
  position: fixed!important;
  top: 0rem;
  width: 413px;
}



#typenav.affix-bottom{
  position: absolute !important;
  width: 413px;
}

@media(max-width:1330px){
  #typenav.affix{
 
    width: 30%;
    top: 5rem;
  }
  
  #typenav.affix-bottom{
    position: absolute !important;
    width: 92%;
  }
}

body#issue table.revenue thead tr th{
  font-size: 12px;
}

body#issue table.revenue tbody tr td{
  font-size: 11px
}

body#issue #asides {
  padding-top: 35px;
  padding-bottom: 50px;
  margin-top: 0px;
  min-height: 590px;
  background: #f2f3f0;
  position: relative;
  display: block;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media(min-width: 1199px) {
  body#issue #asides {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
/*
body#issue #asides:after {
  position: absolute;
  height: 100000%;
  width: 100%;
  content: '';
  top: 100%;
  left: 0;
  z-index: 0;
  background: #f2f3f0;
  display: block;
}
*/

body#issue #asides #socialpod {
  margin-top: 0px;
}

body#issue #asides #socialpod .twitter-feed {
  max-height: 530px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

body#issue #asides #socialpod .twitter-feed .tweet {
  font-size: 16px;
  word-break: break-all;
}
body#issue #asides #socialpod .twitter-feed img {
  display: none;
}
body#issue #asides #socialpod .twitter-feed .twittertitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #464646;
  margin-left: 10px;
}
body#issue #asides #socialpod .twitter-feed .twittertitle .xlogo {
  background: url("/themes/budget/images/xlogo.png");
  display: block;
  float: left;
  position: relative;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
body#issue #asides #socialpod .twitter-feed li {
  margin-bottom: 10px;
}
body#issue #asides #socialpod .twitter-feed #twitter .list-unstyled {
  margin-top: 15px;
}

body#issue #asides #featuredvideo #videosection {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #5D6D53;
}
body#issue #asides #featuredvideo iframe {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
}



body#issue #asides #featuredvideo .title {
  display: none;
}


body#issue .snippetitem {
  margin-bottom: 70px;
  display: table;
  width: 100%;
}


@media(max-width:991px){
    
  body#issue .snippetitem {
    display: block;
  }

}
body#issue .snippetitem .sectionhead {
  margin-bottom: 33px;
}
body#issue .snippetitem .sectionhead .newsroomtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid black;
}

body#issue .snippetitem .sectionhead a {
  float: right;
  margin-top: 0px;
  color: #464646;
}

body#issue .snippetitem table .billnumber{
white-space: nowrap;
}

body#issue .snippetitem table .firstitem{
  white-space: nowrap;

}

body#issue .snippetitem .tab-content{
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

body#issue .snippetitem .tab-content .tab-pane .firsttabitem{
padding: 1.5rem;
}

body#issue .snippetitem .tab-content .tab-pane .lasttabitem{
  padding: 0.5rem 1.5rem;
  }

body#issue .snippetitem table .middle{
  width: 20%;
}

body#issue .snippetitem table .datepassed{
 width: 15%;
  }
  
  
  

  body#issue .snippetitem .table-striped&gt;tbody&gt;tr:nth-of-type(odd) {
    background-color: #f2f3f0;
  }



  body#issue .snippetitem tbody tr.finalrow{
    font-weight: bold;
  }

body#issue #newscontent #press {
  margin-bottom: 70px;
}
body#issue #newscontent #press .sectionhead {
  margin-bottom: 33px;
}
body#issue #newscontent #press .sectionhead .newsroomtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid black;
}
body#issue #newscontent #press .sectionhead a {
  float: right;
  margin-top: 0px;
  color: #464646;
}
body#issue #newscontent #press .list {
  font-size: 22px;
}
body#issue #newscontent #press .list li {
  margin-bottom: 33px;
}
body#issue #newscontent #press .list .date {
  color: #627a7f;
  padding-right: 15px;
  float: left;
}
body#issue #newscontent #press .list a {
  color: #5D6D53;
  word-wrap: none;
}

body#issue #navitems{
  display: table;
  width: 100%;
}

@media(max-width:767px){
  .nav-tabs{
    border-bottom: 1px solid #ddd;
    padding-bottom: 4rem;
  }
  .nav-tabs&gt;li&gt;a{
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 5px;
  }

  .nav-tabs&gt;li.active&gt;a, .nav-tabs&gt;li.active&gt;a:focus, .nav-tabs&gt;li.active&gt;a:hover{
    color: #fcfbf7;
    cursor: default;
    background-color: #77804c;
    border: 1px solid #ddd;
    border-radius: 5px;
    border-bottom-color: #ddd;
  }

  .table-responsive&gt;.table&gt;tbody&gt;tr&gt;td, .table-responsive&gt;.table&gt;tbody&gt;tr&gt;th, .table-responsive&gt;.table&gt;tfoot&gt;tr&gt;td, .table-responsive&gt;.table&gt;tfoot&gt;tr&gt;th, .table-responsive&gt;.table&gt;thead&gt;tr&gt;td, .table-responsive&gt;.table&gt;thead&gt;tr&gt;th{
    white-space: normal;
  }
}

body#issue #navitems #typenav .nav li a{
  display: flex;
    width: 100%;
    vertical-align: middle;
    align-items: center;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}



body#issue #navitems #typenav .budgetbtn{
  justify-content: center;
  display: flex;
  width: 100%;
  vertical-align: middle;
  align-items: center;
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #3d5961;
  border-radius: 5px;
}

body#issue #navitems #typenav h2 {
text-align: center;
}

body#issue #navitems #typenav .nav li a .iconitem{
display: table;
background-color: #5c6d52;
border-radius: 100%;
padding: 4px;
height: 45px;
font-size: 26px;
width: 45px;
text-align: center;
top: 0;
position: relative;
margin-right: 2rem;
}

body#issue #navitems #typenav .nav li a .iconitem .fa{
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  vertical-align: middle;
  display: table-cell;
  color: white;
}

body#issue #navitems #typenav .nav li.active a{
  color: #fff;
background-color: #3d5961;
border-radius: 5px;
}

body#issue #navitems #typenav .nav li.active a .iconitem{
background-color: #fff;
}

body#issue #navitems #typenav .nav li.active a .fa{
color: #3d5961;
}



body#issue #navitems #typenav .nav li:hover a{
  color: #fff;
background-color: #3d5961;
border-radius: 5px;
}

body#issue #navitems #typenav .nav li:hover a .iconitem{

background-color: #fff;
}

body#issue #navitems #typenav .nav li:hover a .fa{
color: #3d5961;
}

body#issue #senatorname {
  position: absolute;
  top: -160px;
  left: 28px;
}

@media(max-width: 767px){
  body#issue #senatorname {
    position: relative;
    top: 0;
    left: 0;
    padding:  1rem 0;
    background-color: #5c6e52;
  }
  body#issue #senatorname:before {
    background-color: #5c6e52;
    display: block;
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';

  }
  body#issue #senatorname:after {
    background-color: #5c6e52;
    display: block;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    
  }
}
body#issue #senatorname .title {
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 28px;
  float: left;
  color: #fff;
  margin-left: 3px;
}
body#issue #senatorname .socialbuttons {
  float: left;
  margin-left: 15px;
}
body#issue #senatorname .socialbuttons .twittericon {
  color: #fff;
  background-color: #000000;
  margin-right: 6px;
  font-size: 18px;
  padding: 3px 3px 3px 6px;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 21px;
  margin-top: 4px;
}
body#issue #senatorname .socialbuttons .twittericon:hover {
  color: #000000;
  background-color: #fff;
}
body#issue #senatorname .socialbuttons .youtubeicon {
  background-color: #f64320;
  color: #fff;
  margin-right: 6px;
  font-size: 18px;
  padding: 2px 2px 0px 5px;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 21px;
  margin-top: 4px;
}
body#issue #senatorname .socialbuttons .youtubeicon:hover {
  color: #f64320;
  background-color: #fcfbf8;
}
body#issue #senatorname .name {
  font-size: 70px;
  margin-top: 0px;
  color: #fcfbf8;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

#newscontent.article #press .date {
  font-size: 22px;
}
#newscontent.article #press h1 {
  font-size: 30px;
}
#newscontent.article #press h2 {
  font-size: 22px;
}
#newscontent.article #press p {
  font-size: 18px;
}
#newscontent.article #pagetools .btn {
  font-size: 12px;
}
#newscontent.article .prevarticle {
  display: none;
}
#newscontent.article .nextarticle {
  display: none;
}
body#bio #content {
  padding-bottom: 0px;
  background-size: cover;
}
body#bio #content #main_container {
  padding-right: 0px;
  padding-left: 0px;
}
body#bio #content #main_column {
  padding-top: 35px;
  padding-bottom: 50px;
  padding-left: 30px;
}
body#bio #content .main_page_title {
  position: absolute;
  text-transform: uppercase;
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
  top: -180px;
  left: 30px;
  width: 230px;
  font-size: 28px;
  color: #fff;
}
body#bio #content .main_page_title .history {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: 70px;
  float: left;
  color: #fff;
  margin-left: -2px;
}
body#bio #asides {
  right: 0px;
  margin-top: 0px;
  padding-top: 35px;
  padding-bottom: 50px;
  min-height: 590px;
  background: #f2f3f0;
}
body#bio #asides #socialpod {
  margin-top: 0px;
}
body#bio #asides #socialpod .twitter-feed {
  margin-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  word-break: break-word;
  overflow: scroll;
  overflow-x: auto;
  overflow-y: auto;
}
body#bio #asides #socialpod .twitter-feed .tweet {
  font-size: 16px;
}
body#bio #asides #socialpod .twitter-feed img {
  display: none;
}
body#bio #asides #socialpod .twitter-feed .twittertitle {
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #464646;
  margin-left: 30px;
}
body#bio #asides #socialpod .twitter-feed .twittertitle .xlogo {
  background: url("/themes/budget/images/xlogo.png");
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
body#bio #asides #socialpod .twitter-feed li {
  margin-bottom: 10px;
}
body#bio #asides #socialpod .twitter-feed #twitter .list-unstyled {
  margin-top: 15px;
}
body#membership #ranking-member {
  height: 280px;
  background-color: #3c5a61;
}
body#membership #ranking-member .rankingimage {
  background-image: url('/themes/budget/images/merkleymembership.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 280px;
  width: 100%;
}
body#membership #ranking-member #rankingtitle {
  margin-top: 90px;
  text-align: center;
  color: #fcfbf8;
}
body#membership #ranking-member #rankingtitle .rankingname {
  font-size: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fcfbf8;
}
body#membership #ranking-member #rankingtitle h1 {
  font-size: 38px;
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#membership #ranking-member #membership {
  padding: 10px;
  margin-left: 40px;
}
body#membership #ranking-member #membership .party {
  color: #fcfbf8;
  font-size: 22px;
  margin: 10px 0px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body#membership #ranking-member #membership .memberlist &gt; li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 50%;
  cursor: pointer;
  font-size: 20px;
}
body#membership #ranking-member #membership .memberlist &gt; li:first-child {
  display: none;
}
body#membership #ranking-member #membership .memberlist &gt; li a {
  color: #fcfbf8;
  float: left;
  width: 100%;
  display: block;
  line-height: 32px;
}
body#membership #ranking-member #membership .memberlist &gt; li a:hover {
  color: #fcfbf8;
}
body#membership #ranking-member #membership .memberlist &gt; li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #37545b;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
body#membership #chairman {
  height: 280px;
  background-color: #777F4C;
}
body#membership #chairman .chairimage {

  background-image: url('/themes/budget/images/grahammembershipnew.png');
  background-repeat: no-repeat;
  position: absolute;
  height: 280px;
  width: 100%;
}
body#membership #chairman #chairtitle {
  margin-top: 90px;
  text-align: center;
  color: #fcfbf8;
}
body#membership #chairman #chairtitle h1 {
  font-size: 38px;
  font-family: 'IBM Plex Serif', serif;
  font-weight: normal;
}
body#membership #chairman #chairtitle .chairname {
  font-size: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fcfbf8;
}
body#membership #chairman #membership {
  margin-left: 40px;
  padding: 10px;
}
body#membership #chairman #membership .party {
  color: #fcfbf8;
  font-size: 22px;
  margin: 10px 0px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body#membership #chairman #membership .memberlist &gt; li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 50%;
  cursor: pointer;
  font-size: 20px;
}
body#membership #chairman #membership .memberlist &gt; li:first-child {
  display: none;
}
body#membership #chairman #membership .memberlist &gt; li a {
  color: #fcfbf8;
  float: left;
  width: 100%;
  display: block;
  line-height: 32px;
}
body#membership #chairman #membership .memberlist &gt; li a:hover {
  color: #fcfbf8;
}
body#membership #chairman #membership .memberlist &gt; li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #37545b;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
body#membership .sectionhead h2 {
  text-transform: uppercase;
}
body#membership .members .name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-top: 30px;
  font-size: 20px;
}
body#membership .party {
  font-size: 20px;
}
body#membership .link {
  font-size: 20px;
}
body#membership .members .col-xs-8 {
  text-align: center;
  padding-right: 121px;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
body footer {
  background-color: #5D6D53;
  min-height: 110px;
  height: 100%;
  position: relative;
  display: table;
  width: 100%;
}
body footer .footernav {
  margin-top: 40px;
}
body footer .footernav li {
  margin-right: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
body footer .footernav li a {
  color: #fcfbf8;
  text-transform: uppercase;
  font-size: 20px;
}
body footer .contactinfo {
  text-align: right;
  color: #fff;
  margin-top: -66px;
  font-size: 16px;
}
body footer .subfooter {
  font-size: 14px;
  float: left;
  margin-top: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  /*li{
			&amp;:nth-child(2){
			&amp;:before{
				content: "/";
				position: relative;
				display: inline-block;
				font-size: 14px;
				right: 5px;
				color: @light-beige;
			}
		}
			}*/
}
body footer .subfooter a {
  color: #fcfbf8;
  text-transform: uppercase;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*

ffont-family:'Freight Text W01 Semibold';
font-family:'Freight Text W01 Semibold It';
font-family:'ProximaNW01-AltThinReg';
font-family:'ProximaNW01-AltThinIt';
font-family:'ProximaNW01-AltLightReg';
font-family:'ProximaNW01-AltLightIt';
font-family:'Proxima N W01 At Reg';
font-family:'Proxima N W01 At Reg It';
font-family:'Proxima N W01 At Smbd';
font-family:'ProximaNW01-AltSmbdIt';
font-family:'Proxima N W01 At Bold';
font-family:'ProximaNW01-AltBoldIt';
font-family:'Proxima N W01 At Xbold';
font-family:'ProximaNW01-AltXboldIt';
font-family:'Proxima N W01 At Black';
font-family:'ProximaNW01-AltBlackIt';
font-family:'ProximaNW01-AltCdThin';
font-family:'ProximaNW01-AltCdThinIt';
font-family:'ProximaNW01-AltCdLight';
font-family:'ProximaNW01-AltCdLightI';
font-family:'Proxima N W01 At Cd Reg';
font-family:'ProximaNW01-AltCdRegIt';
font-family:'ProximaNW01-AltCdSmbd';
font-family:'ProximaNW01-AltCdSmbdIt';
font-family:'ProximaNW01-AltCdBold';
font-family:'ProximaNW01-AltCdBoldIt';
font-family:'ProximaNW01-AltCdXbold';
font-family:'ProximaNW01-AltCdXboldI';
font-family:'ProximaNW01-AltCdBlack';
font-family:'ProximaNW01-AltCdBlackI';
font-family:'ProximaNW01-AltXCdThin';
font-family:'ProximaNW01-AltXCdThinI';
font-family:'ProximaNW01-AltXCdLight1132321';
font-family:'ProximaNW01-AltXCdLight1132324';
font-family:'ProximaNW01-AltXCdReg';
font-family:'ProximaNW01-AltXCdRegIt';
font-family:'ProximaNW01-AltXCdSmbd';
font-family:'ProximaNW01-AltXCdSmbdI';
font-family:'ProximaNW01-AltXCdBold';
font-family:'ProximaNW01-AltXCdBoldI';
font-family:'ProximaNW01-AltXCdXbold1132369';
font-family:'ProximaNW01-AltXCdXbold1132372';
font-family:'ProximaNW01-AltXCdBlack1132381';
font-family:'ProximaNW01-AltXCdBlack1132384';
font-family: 'IBM Plex Serif', serif;
font-weight: normal;
font-family:'NewCenturySchoolW01-It';
font-family:'NewCenturySchoolW01-Bd';
font-family:'NewCenturySchoolW01-BdI';
font-family:'NewCenturySchlbkLTW10-R';
font-family:'NewCenturySchlbkkLTW10-';
font-family:'NewCenturySchlbkLTW10-B_827735';
font-family:'NewCenturySchlbkLTW10-B_827738';
font-family:'NCentSchlbkW95-Fraction1170637';
font-family:'NCentSchlbkW95-Fraction1170640';
font-family:'NewCenturySchlbkW15-Upr';
font-family:'NewCenturySchlbkW15-Ic';
font-family:'NewCenturySchlbkW15-Bol';



paste available font families here
*/
/*define site colors here

  naming conventions
  if we have multiple shades of one color
  number each shade from 1 - n
  with 1 being the lightest and n being the darkest

  @sitecolor:#fff; //example

  @colorshade1 :#examplehex;
  @colorshade2 :#examplehex;
  @colorshade3 :#examplehex;

*/
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #464646;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
/*anchor stlyes*/
a {
  cursor: pointer;
  color: #777F4C;
}
a:hover {
  text-decoration: underline;
  color: #5D6D53;
}
a:hover cursor {
  cursor: pointer;
}
select {
  background: #fcfbf8;
  width: 55px;
  height: 28px;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
.modal select {
  height: 40px;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #5D6D53;
  color: white;
  font-size: 20px;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #777F4C;
}
.nopadding {
  padding: 0px!important;
  margin: 0px!important;
}
/*interior page content default styles */
@media (max-width: 1330px) {
  body#bio .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  body#bio #content #main_container {
    width: 100%;
  }
  #featured .tab-content #featuredhearingslide #livehearingtitle {
    position: absolute;
    right: 0px!important;
    top: 230px!important;
  }
}
@media (max-width: 1200px) {
  #header .logo-hold {
    margin-left: 20px!important;
  }
  #header .nav-hold {
    margin-left: 240px!important;
    width: 70%!important;
  }
  body#home .banner-container {
    height: 60vh!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide .inset {
    max-height: 60vh!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    top: 170px!important;
    font-size: 18px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
    font-size: 30px;
    margin-bottom: 10px!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist .list li {
    margin-bottom: 5px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide .inset {
    max-height: 60vh!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    top: 170px!important;
    font-size: 18px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
    font-size: 30px;
    margin-bottom: 10px!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist .list li {
    margin-bottom: 5px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
    max-height: 60vh!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .streaminghearing {
    height: 365px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    right: -75px;
    top: 150px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle {
    right: 0px!important;
    padding-left: 15px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1 {
    font-size: 30px;
  }
  body#newsroom-landing #newscontent #press .list li {
	display: flex;
    margin-bottom: 40px;
  }
  body#newsroom-landing #newscontent #press .list .date {
    margin: 0px 0 40px;
  }
  footer .container {
    width: 100%!important;
  }
  footer .container .footernav li {
    margin-right: 20px!important;
  }
}
@media (max-width: 1199px) {
  #header .nav-hold {
    margin-left: 190px!important;
    width: 82%!important;
  }
  body#membership #chairman {
    height: 200px;
  }
  body#membership #chairman #chairtitle {
    margin-top: 50px;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 28px;
  }
  body#membership #chairman #chairtitle a {
    font-size: 22px;
  }
  body#membership #chairman .chairimage {
    height: 200px;
    background-size: cover;
    width: 75%;
  }
  body#membership #ranking-member {
    height: 200px;
  }
  body#membership #ranking-member #rankingtitle {
    margin-top: 50px;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 28px;
  }
  body#membership #ranking-member #rankingtitle a {
    font-size: 22px;
  }
  body#membership #ranking-member .rankingimage {
    height: 200px;
    background-size: cover;
    width: 75%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 40px;
  }
  body#membership .members li {
    margin-top: 20px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
  }
}
@media (max-width: 1090px) {
  body#home .banner-container #featured #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured #featuredhearingslide #livehearingtitle h1 {
    font-size: 28px;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist {
    font-size: 16px!important;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist h1 {
    font-size: 28px;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist {
    font-size: 16px!important;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist h1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  body#newsroom-landing #newscontent #press .list {
    font-size: 22px;
  }
  body#newsroom-landing #newscontent #press .list .date {
    margin: 0px 0 10px;
  }
  body#newsroom-landing #content {
    background: #fff;
  }
  body#newsroom-landing .two_column {
    background: #fcfbf8;
  }
  body#newsroom-landing .container {
    width: 100%;
  }
  body#newsroom-landing #asides {
    background-color: #f2f3f0;
    right: 0px;
  }
  body#newsroom-landing #asides #socialpod .twitter-feed {
    padding-left: 10px;
  }
  body#membership #chairman #chairtitle {
    margin-top: 50px;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 28px;
  }
  body#membership #chairman #chairtitle .chairname {
    font-size: 20px;
  }
  body#membership #ranking-member {
    height: 200px;
  }
  body#membership #ranking-member #rankingtitle {
    margin-top: 20px;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 28px;
  }
  body#membership #ranking-member #rankingtitle .rankingname {
    font-size: 20px;
  }
  body#membership #ranking-member .rankingimage {
    height: 200px;
    background-size: cover;
    width: 75%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
  }
  body#membership .members li {
    margin-top: 0px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
    margin-top: 0px;
  }
  body#membership .members li .party {
    font-size: 16px;
  }
  body#membership .members li .link {
    font-size: 16px;
  }
  body#bio #content {
    background: #fcfbf8;
  }
  body#bio .container {
    width: 100%;
  }
  body#bio #asides {
    background-color: #f2f3f0;
    padding-left: 30px;
    min-height: 0;
  }
  body#bio #asides #socialpod .twitter-feed {
    padding-left: 0px;
  }
  #header .nav-hold {
    margin-left: auto!important;
    width: 100%!important;
  }
  #hearingshome .hearingslist .homehearings .indihearing {
    margin-bottom: 30px!important;
  }
  #hearingshome .hearingslist .homehearings .indihearing .date {
    margin: 0 0 0px;
    width: 95px!important;
  }
  body#home #live-banner {
    display: block!important;
  }
  body#home .banner-container {
    height: 400px!important;
  }
  body#home .banner-container #featured {
    position: relative;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide .inset {
    width: 100%!important;
    position: relative;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    text-align: center;
    position: absolute;
    width: 100%;
    left: auto!important;
    top: 180px!important;
    padding-right: 15px!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist li {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    position: absolute;
    text-align: center;
    width: 100%;
    left: auto!important;
    top: 180px!important;
    padding-right: 15px!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist li {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .col-sm-8 {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .streaminghearing {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle {
    float: none;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 200px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    float: none;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 150px!important;
  }
  #top .featuredhearingbutton:hover:before,
  #top .featuredhearingbutton:focus:before {
    display: none;
  }
  #top .rankingnews:hover:before,
  #top .rankingnews:focus:before {
    display: none;
  }
  #home #middle #majoritytwitter #majoritytwitterwidget {
    position: relative!important;
  }
  #home #middle #rankingtwitter #rankingtwitterwidget {
    position: relative!important;
  }
  #home #middle {
    background: #fcfbf8 !important;
  }
  #home #middle #majoritytwitter #majoritytwitterwidget {
    background-color: #f2f3f0;
  }
  #home #middle #rankingtwitter #rankingtwitterwidget {
    background-color: #f2f3f0;
  }
  #home #bottom #ranking-member {
    background-image: none!important;
    background: #37545b !important;
  }
  #home #bottom #ranking-member .rankingimage {
    display: none;
  }
  #home #bottom #ranking-member #rankingtitle {
    display: none;
  }
  #home #bottom #ranking-member #membership .memberlist &gt; li:first-child {
    display: block!important;
  }
  #home #bottom #chairman {
    background-image: none!important;
    background: #5D6D53 !important;
  }
  #home #bottom #chairman #chairtitle {
    display: none;
  }
  #home #bottom #chairman .chairimage {
    display: none;
  }
  #home #bottom #chairman #membership .memberlist &gt; li:first-child {
    display: block!important;
  }
  footer .container {
    width: 100%;
  }
  footer .container .footernav {
    width: 50%;
    margin-top: 30px!important;
    margin-left: 0px!important;
  }
  footer .container .footernav li {
    margin-right: 18px!important;
  }
  footer .container .contactinfo {
    margin-top: -80px;
  }
  footer .container .subfooter {
    font-size: 12px!important;
    padding-left: 5px;
  }
  .navbar .srchbuttonmodal .glyphicon {
    position: absolute;
    right: 125px;
    top: 17px;
    color: #fff;
    font-size: 21px;
  }
}
@media (max-width: 930px) {
  footer .container {
    width: 100%;
  }
  footer .container .footernav {
    margin-top: 20px!important;
    margin-left: 0px!important;
  }
  footer .container .footernav li {
    margin-right: 18px!important;
  }
  footer .container .subfooter {
    font-size: 12px!important;
  }
}
@media (max-width: 908px) {
  footer .container .contactinfo {
    margin-top: -100px;
  }
}
@media (max-width: 768px) {
  #header .logo-hold {
    margin-left: 20px!important;
    margin-top: -60px;
    width: 200px!important;
  }
  #header .nav-hold .navbar {
    height: 50px;
  }
  body#bio #content .main_page_title {
    top: -150px;
  }
  body#membership #chairman {
    height: 200px;
  }
  body#membership #chairman #chairtitle {
    margin-top: 30px;
    width: 65%;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 40px;
  }
  body#membership #chairman #chairtitle .chairname {
    font-size: 30px;
  }
  body#membership #chairman .chairimage {
    height: 200px;
    background-size: cover;
    width: 40%;
  }
  body#membership #ranking-member {
    height: 200px;
  }
  body#membership #ranking-member #rankingtitle {
    margin-top: 30px;
    width: 65%;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 40px;
  }
  body#membership #ranking-member #rankingtitle .rankingname {
    font-size: 30px;
  }
  body#membership #ranking-member .rankingimage {
    height: 200px;
    background-size: cover;
    width: 40%;
  }
  body#membership .leader {
    min-height: 100%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 30px;
  }
  body#membership .members li {
    margin-top: 0px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
    margin-top: 0px;
    font-size: 30px;
  }
  body#newsroom-landing #senatorname {
    top: -125px;
  }
  body#newsroom-landing #senatorname .title {
    font-size: 24px;
  }
  body#newsroom-landing #senatorname .socialbuttons {
    margin-top: 0px;
  }
  body#newsroom-landing #senatorname .socialbuttons .twittericon {
    font-size: 14px;
    padding: 3px 3px 3px 6px;
    height: 30px;
    width: 30px;
  }
  body#newsroom-landing #senatorname .socialbuttons .youtubeicon {
    font-size: 14px;
    padding: 2px 2px 0px 5px;
    height: 30px;
    width: 30px;
  }
  body#newsroom-landing #senatorname .name {
    font-size: 60px;
  }
  body#hearings .table-holder .table .faux-col {
    width: 100%!important;
  }
  body#home .banner-container {
    height: 350px!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    top: 120px!important;
    left: auto!important;
    padding-right: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
    font-size: 30px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist li {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    top: 120px!important;
    left: auto!important;
    padding-right: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
    font-size: 30px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist li {
    display: none;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    top: 120px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle h1 {
    font-size: 30px;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  body footer .container .footernav {
    width: 100%;
    display: table;
    text-align: center;

  }
  body footer .newsletter__row{
    padding: 0;
    display: table;
    width: 100%;
  }
body footer .contactinfo{
  margin: 0 1rem!important;
  display: block;
  position: relative;
  float: none!important;
  text-align: left;
}


}
@media (max-width: 690px) {
  body#bio #content .main_page_title {
    position: absolute;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    top: -85px;
    width: 100%;
    font-size: 40px;
    color: #fff;
  }
  body#bio #content .main_page_title .history {
    float: none;
    text-transform: none;
    font-size: 40px;
    color: #fff;
    margin-left: 10px;
  }
  body#membership .leader {
    min-height: 100%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 30px;
  }
  body#membership .members li {
    margin-top: 0px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
    margin-top: 0px;
    font-size: 26px;
  }
  body#home .banner-container #featured #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured #featuredhearingslide #livehearingtitle h1 {
    font-size: 28px;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist {
    top: 120px!important;
    left: auto!important;
    padding-right: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist h1 {
    font-size: 28px;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist {
    top: 120px!important;
    left: auto!important;
    padding-right: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist h1 {
    font-size: 28px;
  }
}
@media (max-width: 611px) {
  body#default #blankbar,
  #hearings #blankbar,
  #newsroom #blankbar,
  #membership #blankbar,
  #library #blankbar,
  #hearing #blankbar,
  #background #blankbar {
    height: 100px;
  }
  body#default #filterbuttons,
  #hearings #filterbuttons,
  #newsroom #filterbuttons,
  #membership #filterbuttons,
  #library #filterbuttons,
  #hearing #filterbuttons,
  #background #filterbuttons {
    float: none!important;
    margin-top: 0px!important;
  }
  footer .container .contactinfo {
    display: none;
  }
  footer .container .footernav {
    width: 100%;
    display: table;
    text-align: center;

  }
  body#membership #chairman {
    height: 200px;
  }
  body#membership #chairman #chairtitle {
    margin-top: 30px;
    width: 65%;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 32px;
  }
  body#membership #chairman #chairtitle .chairname {
    font-size: 24px;
  }
  body#membership #chairman .chairimage {
    height: 200px;
    background-size: cover;
    width: 60%;
  }
  body#membership #ranking-member {
    height: 200px;
  }
  body#membership #ranking-member #rankingtitle {
    margin-top: 30px;
    width: 65%;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 32px;
  }
  body#membership #ranking-member #rankingtitle .rankingname {
    font-size: 24px;
  }
  body#membership #ranking-member .rankingimage {
    height: 200px;
    background-size: cover;
    width: 51%;
  }
  body#membership .leader {
    min-height: 100%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 30px;
  }
  body#membership .members li {
    margin-top: 0px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
    margin-top: 0px;
    font-size: 24px;
  }
  body#newsroom-landing #newscontent #press .list {
    font-size: 18px;
  }
  body#newsroom-landing #newscontent #press .list .date {
    margin: 0px 0px 0px 0px;
  }
  body#newsroom-landing #senatorname {
    top: -85px;
  }
  body#newsroom-landing #senatorname .title {
    font-size: 18px;
  }
  body#newsroom-landing #senatorname .socialbuttons {
    display: none;
  }
  body#newsroom-landing #senatorname .name {
    font-size: 41px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide {
    background-position: -85px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    top: 140px!important;
    left: 0px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist .more {
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide {
    background-position: -100px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    top: 140px!important;
    left: 0px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist .more {
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    top: 140px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle h1 {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  #header .logo-hold {
    margin-left: 20px!important;
    margin-top: -50px !important;
  }
  #header .logo-hold img {
    width: 150px!important;
  }
  #header .nav-hold .navbar {
    height: 50px;
  }
  #header .nav-hold .navbar .srchbuttonmodal .glyphicon {
    position: absolute;
    right: 100px;
    top: 15px;
    color: #fff;
    font-size: 18px;
  }
  #header .nav-hold .navbar .togglemenu {
    font-size: 20px;
  }
  body#membership #chairman {
    height: 150px;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 28px;
  }
  body#membership #chairman #chairtitle .chairname {
    font-size: 20px;
  }
  body#membership #chairman .chairimage {
    height: 150px;
    background-size: cover;
    width: 50%;
  }
  body#membership #ranking-member {
    height: 150px;
  }
  body#membership #ranking-member #rankingtitle {
    margin-top: 30px;
    width: 65%;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 28px;
  }
  body#membership #ranking-member #rankingtitle .rankingname {
    font-size: 20px;
  }
  body#membership #ranking-member .rankingimage {
    height: 150px;
    background-size: cover;
    width: 50%;
  }
  body#membership .leader {
    min-height: 100%;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 30px;
  }
  body#membership .members li {
    margin-top: 0px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    width: 100%;
    margin-top: 0px;
    font-size: 18px;
  }
  body#newsroom #filterbuttons {
    float: none;
    margin-top: 0px;
  }
  body#home .banner-container {
    height: 300px!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide {
    background-position: -150px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    top: 60px!important;
    left: 0px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist .more {
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide {
    background-position: -120px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    top: 60px!important;
    left: 0px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist .more {
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide .inset {
    width: 100%!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle {
    position: absolute;
    top: 60px!important;
    left: 0px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    width: 100%;
    text-align: center;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle .type {
    font-size: 18px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle .date {
    font-size: 18px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    top: 60px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle h1 {
    font-size: 26px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .type {
    font-size: 18px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .date {
    font-size: 18px;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle .time {
    font-size: 18px;
  }
  #hearingshome .hearingslist .homehearings {
    font-size: 20px!important;
  }
  #hearingshome .hearingslist .homehearings .indihearing .date {
    margin: 0 0 0px;
    width: 80px!important;
  }
  body#newsroom-landing #newscontent #press .list {
    font-size: 18px;
  }
  body#newsroom-landing #newscontent #press .list .date {
    margin: 0px 0px 0px 0px;
  }
  body#newsroom-landing #senatorname {
    top: -70px;
  }
  #home .banner-container #featured #featuredhearingslide #featuredhearingtitle h1,
  #home .banner-container #featured #featuredhearingslide #livehearingtitle h1 {
    font-size: 24px;
  }
  #home .banner-container #featured #featuredchairslide #chairpresslist h1 {
    font-size: 24px;
  }
  #home .banner-container #featured #featuredrankingslide #rankingpresslist h1 {
    font-size: 24px;
  }
  #home #bottom #ranking-member {
    background-image: none!important;
  }
  #home #bottom #ranking-member #rankingtitle {
    display: none;
  }
  #home #bottom #ranking-member #membership {
    padding-right: 15px!important;
    padding-left: 15px!important;
    margin-left: 0px!important;
  }
  #home #bottom #ranking-member #membership .memberlist &gt; li {
    font-size: 16px!important;
  }
  #home #bottom #ranking-member #membership .memberlist &gt; li:first-child {
    display: block!important;
  }
  #home #bottom #chairman {
    background-image: none!important;
  }
  #home #bottom #chairman #chairtitle {
    display: none;
  }
  #home #bottom #chairman #membership {
    padding-right: 15px!important;
    padding-left: 15px!important;
    margin-left: 0px!important;
  }
  #home #bottom #chairman #membership .memberlist &gt; li {
    font-size: 16px!important;
  }
  #home #bottom #chairman #membership .memberlist &gt; li:first-child {
    display: block!important;
  }
  footer .container {
    width: 100%;
  }
  footer .container .footernav {
    margin-top: 20px!important;
    margin-left: 0px!important;
    margin-bottom: 0px!important;
  }
  footer .container .footernav li {
    margin-right: 18px!important;
  }
  footer .container .subfooter {
    font-size: 12px!important;
  }
  body#default #blankbar,
  #hearings #blankbar,
  #newsroom #blankbar,
  #membership #blankbar,
  #library #blankbar,
  #hearing #blankbar,
  #background #blankbar {
    height: 60px;
  }
}
@media (max-width: 430px) {
  body#home .banner-container #featured #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured #featuredhearingslide #livehearingtitle h1 {
    font-size: 24px;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist h1 {
    font-size: 24px;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist h1 {
    font-size: 24px;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 24px;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 24px;
  }
  body#membership .members .col-xs-8 {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 10px;
  }
  body#default #blankbar,
  #hearings #blankbar,
  #newsroom #blankbar,
  #membership #blankbar,
  #library #blankbar,
  #hearing #blankbar,
  #background #blankbar {
    height: 70px !important;
  }
}
@media (max-width: 400px) {
  #live-banner .livetitle {
    width: 80%;
  }
  #live-banner .livetitle .live-hearing {
    font-size: 30px;
  }
  #live-banner .livetitle .live-hearing .watch {
    font-size: 20px;
  }
  #live-banner .livetitle .live-hearing .glyphicon {
    font-size: 16px;
  }
  body#home .banner-container #featured #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured #featuredhearingslide #livehearingtitle h1 {
    font-size: 24px!important;
  }
  body#home .banner-container #featured #featuredchairslide #chairpresslist h1 {
    font-size: 24px!important;
  }
  body#home .banner-container #featured #featuredrankingslide #rankingpresslist h1 {
    font-size: 24px!important;
  }
}
@media (max-width: 330px) {
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle {
    top: 75px!important;
  }
  body#home .banner-container #featured .tab-content #featuredhearingslide #featuredhearingtitle h1,
  body#home .banner-container #featured .tab-content #featuredhearingslide #livehearingtitle h1 {
    font-size: 24px;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist {
    top: 75px!important;
  }
  body#home .banner-container #featured .tab-content #featuredchairslide #chairpresslist h1 {
    font-size: 24px;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist {
    top: 75px!important;
  }
  body#home .banner-container #featured .tab-content #featuredrankingslide #rankingpresslist h1 {
    font-size: 24px;
  }
  body#home #bottom #chairman #membership .memberlist li {
    font-size: 13px!important;
  }
  body#home #bottom #ranking-member #membership .memberlist li {
    font-size: 13px!important;
  }
  body#bio #content .main_page_title {
    top: -65px;
    font-size: 30px;
  }
  body#bio #content .main_page_title .history {
    font-size: 30px;
  }
  body#newsroom-landing #senatorname {
    top: -53px;
  }
  body#newsroom-landing #senatorname .title {
    font-size: 16px;
  }
  body#newsroom-landing #senatorname .name {
    font-size: 32px;
  }
  #live-banner .livetitle {
    width: 100%;
  }
  #live-banner .livetitle .live-hearing {
    font-size: 30px;
  }
  #live-banner .livetitle .live-hearing .watch {
    font-size: 20px;
  }
  #live-banner .livetitle .live-hearing .glyphicon {
    font-size: 16px;
  }
  body#membership .sectionhead {
    text-align: center;
  }
  body#membership .sectionhead h2 {
    font-size: 24px;
  }
  body#membership #chairman #chairtitle {
    width: 100% !important;
  }
  body#membership #chairman #chairtitle h1 {
    font-size: 28px;
  }
  body#membership #chairman #chairtitle .chairname {
    font-size: 24px;
  }
  body#membership #chairman .chairimage {
    display: none;
  }
  body#membership #ranking-member #rankingtitle {
    width: 100% !important;
  }
  body#membership #ranking-member #rankingtitle h1 {
    font-size: 28px;
  }
  body#membership #ranking-member #rankingtitle .rankingname {
    font-size: 24px;
  }
  body#membership #ranking-member .rankingimage {
    display: none;
  }
  body#membership .leader {
    height: 150px;
  }
  body#membership .members .col-xs-4 {
    display: none;
  }
  body#membership .members .col-xs-8 {
    width: 100%;
  }
  body#membership .members li {
    margin-top: 20px;
  }
  body#membership .members li .name,
  body#membership .members li .party,
  body#membership .members li .link {
    display: block;
    width: 100%;
    clear: both;
    float: none;
    margin-top: 0;
  }
  body#membership .members li .link {
    font-size: 15px;
  }
}
.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.scorekeeping #asides{
  margin-top: 75px;
}

body.scorekeeping #asides .boxes{
  padding: 2rem;
  background-color: #1f3864;
  color: #fff;
  margin-bottom: 2rem;
}

body.scorekeeping #asides .boxes a{
  color: white;
}

body.scorekeeping #asides .boxes a{
  color: white;
}

.tooltiptext{
  display: none;
  position: absolute;

}
</pre></body></html>