/* 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;
  }
  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;
  }
  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);
  }
}
#breadcrumb > ol li:first-child {
  display: none;
}
#SearchModal .modal-backdrop.in {
  background-color: #125605;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #f1f2e9;
  color: #125605;
}
body .live-hearing {
  background-color: #35281a;
  padding-left: 130px;
}
body .live-hearing a {
  color: white;
}
body #header {
  background-color: transparent;
  z-index: 30;
  position: relative;
}
body .interior-header {
  z-index: 21;
  display: block;
  background-color: #f1f2e9;
  text-align: center;
  width: 100%;
  z-index: 100;
}
body .interior-header .logo-hold {
  padding: 14px;
  z-index: 21;
}
body .interior-header .united {
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 7px;
  color: black;
}
body .interior-header .ag {
  color: black;
  font-family: 'ITC Garamond W01 Book Cond';
  font-size: 40px;
  line-height: 41px;
  text-transform: uppercase;
}
body .interior-header .ag .and {
  color: black;
  font-family: 'ITCGaramondW01-LightCnI';
  vertical-align: text-bottom;
  font-size: 50px;
  letter-spacing: -7px;
}
body .interior-header:hover {
  text-decoration: none;
}
body .interior-header:hover .united,
body .interior-header:hover .ag,
body .interior-header:hover .and {
  color: #3d8209;
}
body#home .live-hearing {
  display: none;
}
body#home .interior-header {
  display: none;
}
body#home #header {
  background-color: rgba(16, 86, 5, 0.8);
  top: 0;
  width: 100%;
  z-index: 100;
}
body#home #header.fixedup {
  position: fixed;
}
@media (max-width: 700px) {
  body#home #header.fixedup .interior-header {
    display: none;
  }
}
body .container {
  max-width: 1170px;
}
body .nav-hold {
  background-color: rgba(16, 86, 5, 0.8);
}
body .navbar {
  height: 50px;
  text-align: center;
  z-index: 20;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  width: auto;
}
body .navbar .nav-pills > li a {
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 10px;
  font-size: 20px;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding-left: 10px;
  padding-right: 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  font-family: 'Ek Mukta', sans-serif;
  text-transform: none;
  color: black;
  font-size: 18px;
  text-align: left;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #f1f2e9;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #125605;
  font-size: 18px;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #35281a;
}
body .navbar .nav-pills li + li a {
  padding: 10px 15px;
}
body .navbar .srchbutton {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 13px;
  right: 60px;
  display: block;
  z-index: 20;
}
body .navbar .srchbutton span {
  padding-left: 15px;
}
body .navbar #search {
  width: 0px;
  overflow: hidden;
  float: right;
  position: absolute;
  right: 30px;
  top: 0px;
  transition: all 0.1s ease-out;
}
body .navbar #search.showme {
  width: 100%;
  background-color: #3F7737;
}
body .navbar #search #sitesearch {
  padding: 0px;
  padding-top: 12px;
  padding-bottom: 10px;
}
body .navbar #search #sitesearch #search-field {
  width: 85%;
  color: white;
  text-transform: uppercase;
  background-color: #3F7737;
  border: none;
  border-bottom: 2px solid white;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: white;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: white;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
  font-size: 18px;
}
body .navbar #search #sitesearch button {
  border: none;
  background-color: transparent;
  color: white;
}
body #NavMobileModal .modal-backdrop.in {
  background-color: #125605;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
  width: 100%;
  font-family: 'Avenir Next Cyr W00 Demi';
  font-size: 26px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  font-family: 'Avenir Next Cyr W00 Demi';
  font-size: 28px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  width: 100%;
  box-shadow: none;
  display: inline-block;
  position: relative;
  background-color: #125605;
  border: none;
  padding-left: 20px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  display: block;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  font-family: 'Avenir Next Cyr W00 Regular';
  font-size: 22px;
}
body#home .navbar {
  background-color: transparent;
}
body#home .navbar #search.showme {
  background-color: #175B0E;
}
body#home .navbar #search.showme #search-field {
  background-color: #175B0E;
}
.livelogo {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  position: absolute;
  top: 80px;
}
.livelogo .live-logo-hold {
  width: 530px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 0px;
}
@media (max-width: 1199px) {
  .livelogo .live-logo-hold {
    width: 400px;
  }
}
.livelogo.display {
  top: 120px;
}
@media (max-width: 991px) {
  .livelogo.display {
    top: 115px;
  }
}
.black {
  padding: 75px 0px 90px;
  background-color: black;
}
.black .united {
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 11px;
  font-weight: 600px;
}
.black .com {
  font-family: 'ITC Garamond W01 Book';
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 3px;
  display: block;
  margin-bottom: -8px;
}
.black .ag {
  font-family: 'ITCGaramondW01-BookCn';
  font-size: 56px;
  line-height: 54px;
  text-transform: uppercase;
}
.black .ag .and {
  font-family: 'ITCGaramondW01-LightCnI';
  color: #3d8209;
  font-size: 73px;
  letter-spacing: -7px;
}
.black .video-container {
  padding: 0 60px;
  margin-top: 247px;
}
@media (max-width: 1199px) {
  .black .video-container {
    margin-top: 140px;
  }
}
.black .live-hearing-title {
  margin-top: 15px;
  color: white;
  padding-left: 60px;
  display: block;
}
.black .live-hearing-title h4 {
  font-size: 20px;
}
.black .live-hearing-title:hover {
  text-decoration: underline;
}

.alert{
  padding: 8px;
  border: none;
  border-radius: 0px;
  position: relative;
  background-color: #B41026;
  display: table;
  width: 100%;
  vertical-align: middle;
}


.alert .alertIcn{
display: table-cell;
vertical-align: middle;
font-size: 26px;
color: white;
}

.alert .headline{
  display: table-cell;
  vertical-align: middle;
  color: white;

}

.alert .headline a{

  font-family: 'Avenir Next Cyr W00 Demi';
  color: white;
  font-size: 24px;

}



.homealert {
  position: relative;
  width: 100%;
  background-color: #c5a42e;
  display: block;
}
.homealert .alertarea {
  width: 100%;
  max-width: 1140px;
  position: relative;
  display: table;
}
.homealert .alertarea .pattern {
  width: 100%;
  display: table-cell;
  position: relative;
  text-align: center;
  padding: 13px;
  color: #fff;
  background-image: none;
  font-size: 28px;
  font-family: 'Avenir Next Cyr W00 Demi';
}
@media (max-width: 991px) {
  .homealert .alertarea .pattern {
    padding: 10px;
  }
}
.homealert .alertarea .pattern .headline {
  display: inline-block;
  vertical-align: middle;
}
.homealert .alertarea .pattern .headline h5 {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 2px;
  font-size: 16px;
}
.homealert .alertarea .pattern .headline a {
  color: #fff;
  position: relative;
  vertical-align: middle;
  top: -1px;
}
.homealert .alertarea .pattern .headline a:hover {
  text-decoration: underline;
  transition: all 0.2s ease-in;
}
.homealert .alertarea .pattern .headline a:hover .headline {
  cursor: pointer;
}
.homealert .alertarea .pattern .headline .learn {
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
  color: white;
  padding: 5px;
  font-size: 10px;
  text-align: center;
  background-color: #3d8209;
  font-family: 'Avenir LT W01_95 Black1475556';
  margin-left: 2em;
}
.homealert .alertarea .pattern .headline .learn:hover {
  background-color: #50aa0d;
  text-decoration: none;
}
#banner-image {
  width: 100%;
  max-height: 750px;
  overflow: hidden;
  background-color: #f1f2e9;
  text-align: center;
}
#banner-image img {
  width: 100%;
}
#banner-image .logo {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  position: absolute;
  top: 250px;
}
#banner-image .logo .logo-hold {
  width: 530px;
  margin: 0px auto;
  text-align: center;
  padding: 28px 0px;
}
@media (max-width: 991px) {
  #banner-image .logo .logo-hold {
    width: 570px;
  }
}
#banner-image .logo .logo-hold .united {
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 11px;
  font-weight: 600px;
}
#banner-image .logo .logo-hold .com {
  font-family: 'ITC Garamond W01 Book';
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 3px;
  display: block;
  margin-bottom: -8px;
}
#banner-image .logo .logo-hold .ag {
  font-family: 'ITC Garamond W01 Book Cond';
  font-size: 56px;
  line-height: 54px;
  text-transform: uppercase;
}
#banner-image .logo .logo-hold .ag .and {
  font-family: 'ITCGaramondW01-LightCnI';
  color: #3d8209;
  font-size: 73px;
  letter-spacing: -7px;
}
.grey {
  height: 425px;
  background-color: #f1f2e9;
}
.grey .block {
  background-color: white;
  border: 1px solid #e0e1d4;
  margin-top: -65px;
  position: absolute;
  height: 450px;
  padding: 15px 20px;
  width: 95%;
}
.grey .block h5 {
  margin: 0px;
  text-transform: uppercase;
  font-family: 'Avenir Next Cyr W00 Regular';
}
.grey .block h3 {
  margin-top: 10px;
}
.grey .block .info {
  margin-bottom: 25px;
  font-size: 18px;
}
.grey .block p {
  font-size: 18px;
}
.grey .block .block-link {
  width: 100%;
  padding: 10px;
  text-align: center;
  color: white;
  display: block;
  position: absolute;
  bottom: 17px;
  width: 89%;
  font-size: 18px;
  font-family: 'Avenir LT W01_65 Medium1475532';
}
.grey .block.upcoming h3,
.grey .block.past h3 {
  color: #35281a;
}
.grey .block.upcoming .block-link,
.grey .block.past .block-link {
  background-color: #35281a;
}
.grey .block.upcoming:hover h3,
.grey .block.past:hover h3 {
  color: #6c5236;
}
.grey .block.upcoming:hover .block-link,
.grey .block.past:hover .block-link {
  background-color: #6c5236;
  text-decoration: none;
}
.grey .block.current h3 {
  color: #3d8209;
}
.grey .block.current .block-link {
  background-color: #3d8209;
}
.grey .block.current:hover h3 {
  color: #50aa0d;
}
.grey .block.current:hover .block-link {
  background-color: #50aa0d;
  text-decoration: none;
}
.grey .desc {
  overflow-y: auto;
  height: 195px;
}
.news {
  margin: 50px auto;
}
.chairman,
.ranking {
  word-wrap: break-word;
}
.chairman img,
.ranking img {
  width: 100%;
}
.chairman #chairman,
.ranking #chairman,
.chairman #ranking,
.ranking #ranking {
  background-color: #f1f2e9;
  border-bottom: 5px solid #35281a;
  padding: 19px;
  word-wrap: break-word;
}
.chairman #chairman h4,
.ranking #chairman h4,
.chairman #ranking h4,
.ranking #ranking h4 {
  margin-top: 0px;
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'Avenir LT W01_95 Black1475556';
}
.chairman #chairman h6,
.ranking #chairman h6,
.chairman #ranking h6,
.ranking #ranking h6 {
  color: #4099ff;
}
.chairman #chairman h6 span,
.ranking #chairman h6 span,
.chairman #ranking h6 span,
.ranking #ranking h6 span {
  font-size: 18px;
}
.chairman #chairman h6 a,
.ranking #chairman h6 a,
.chairman #ranking h6 a,
.ranking #ranking h6 a {
  font-size: 17px;
  color: black;
}
.chairman #chairman h6 a:hover,
.ranking #chairman h6 a:hover,
.chairman #ranking h6 a:hover,
.ranking #ranking h6 a:hover {
  color: #4099ff;
}
.chairman #chairman .tweet,
.ranking #chairman .tweet,
.chairman #ranking .tweet,
.ranking #ranking .tweet {
  font-family: 'Avenir LT W01_65 Medium1475532';
  font-size: 18px;
  word-break: break-word;
}
.chairman #chairman .tweet img,
.ranking #chairman .tweet img,
.chairman #ranking .tweet img,
.ranking #ranking .tweet img {
  width: 30px !important;
}
.chairman #chairman .tweet a,
.ranking #chairman .tweet a,
.chairman #ranking .tweet a,
.ranking #ranking .tweet a {
  color: #35281a;
}
.chairman #chairman .tweet a:hover,
.ranking #chairman .tweet a:hover,
.chairman #ranking .tweet a:hover,
.ranking #ranking .tweet a:hover {
  color: #50aa0d;
  text-decoration: none;
}
.chairman #chairman .timePosted,
.ranking #chairman .timePosted,
.chairman #ranking .timePosted,
.ranking #ranking .timePosted {
  margin: 0px;
  text-transform: lowercase;
  font-size: 12px;
}
.hearings {
  padding-top: 30px;
}
.hearings h4 {
  width: 50%;
  float: left;
  font-family: 'Avenir LT W01_65 Medium1475532';
  text-transform: uppercase;
  margin-top: 0px;
  font-weight: 600;
}
.hearings .hearing {
  width: 100%;
  font-size: 22px;
  font-family: 'Avenir LT W01_65 Medium1475532';
}
.hearings .hearing .date {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Avenir Next Cyr W00 Regular';
}
.hearings .hearing a {
  color: #35281a;
}
.hearings .hearing a:hover {
  color: #50aa0d;
  text-decoration: none;
}
.hearings .more {
  color: #125605;
  text-transform: uppercase;
  font-family: 'Avenir Next Cyr W00 Demi';
  margin: 10px 0px;
  display: block;
}
.hearings .social-list {
  float: right;
  color: white;
  text-align: center;
}
.hearings .social-list .socicon {
  color: white;
  vertical-align: bottom;
}
.hearings .social-list .social-icon {
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 15px;
}
.hearings .social-list .social-icon.facebook {
  background-color: #537bbd;
}
.hearings .social-list .social-icon.twitter {
  background-color: #4099ff;
}
.hearings .social-list .social-icon.youtube {
  background-color: #e9654b;
  margin: 0;
}
.hearings .social-list .social-icon.flickr {
  background-image: url('/themes/agriculture/images/flickr.png');
  background-repeat: no-repeat;
  vertical-align: bottom;
  background-position: center center;
  border: 1px solid gray;
}
.hearings .social-list .social-icon:hover {
  background-color: white;
}
.hearings .social-list .social-icon:hover.facebook {
  background-color: white;
}
.hearings .social-list .social-icon:hover.facebook span {
  color: #537bbd;
}
.hearings .social-list .social-icon:hover.twitter {
  background-color: white;
}
.hearings .social-list .social-icon:hover.twitter span {
  color: #4099ff;
}
.hearings .social-list .social-icon:hover.youtube {
  background-color: white;
}
.hearings .social-list .social-icon:hover.youtube span {
  color: #e9654b;
}
.hearings .social-list .social-icon:hover.flickr {
  border: 1px solid white;
}
.hearings .social-list .newsletter {
  margin-left: 5px;
}
img {
  width: 100%;
  z-index: 3;
}
.relative {
  position: relative;
  max-width: 1300px;
  margin: 5em auto;
  height: 500px;
  overflow: hidden;
}
.relative .spotlightimage {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.relative .spotlightimage .pattern {
  z-index: 40;
  background-image: url('/themes/agriculture/images/pattern.png');
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
}
.relative .spotlightimage .spotlight {
  position: absolute;
  color: white;
  width: 50%;
  padding: 30px 40px;
  top: 1em;
  left: 1em;
  z-index: 45;
}
@media (max-width: 991px) {
  .relative .spotlightimage .spotlight {
    width: 75%;
  }
}
@media (max-width: 600px) {
  .relative .spotlightimage .spotlight {
    width: 100%;
  }
}
.relative .spotlightimage .spotlight h5 {
  font-family: 'Avenir LT W01_95 Black1475556';
  text-transform: uppercase;
}
.relative .spotlightimage .spotlight h2 {
  font-family: 'Avenir LT W01_65 Medium1475532';
  font-size: 36px;
}
.relative .spotlightimage .spotlight p {
  font-family: 'Avenir LT W01_65 Medium1475532';
  font-size: 18px;
}
.relative .spotlightimage .spotlight p a {
  color: white;
  text-decoration: underline;
}
.relative .spotlightimage .spotlight .learn {
  display: block;
  text-transform: uppercase;
  color: white;
  padding: 10px;
  width: 130px;
  text-align: center;
  background-color: #3d8209;
  font-family: 'Avenir LT W01_95 Black1475556';
}
.relative .spotlightimage .spotlight .learn:hover {
  background-color: #50aa0d;
  text-decoration: none;
}
body.homealerthere {
  padding-top: 50px;
}
@media (max-width: 700px) {
  body.homealerthere {
    padding-top: 190px;
  }
}
.hearings .social-list .social-icon:hover.instagram {
  background-color: white;
}
.hearings .social-list .social-icon:hover.instagram span {
  color: #bb2a8d;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
#voting_record .page .row {
  /* ----- */
}
#newscontent #press .date {
  padding: 0px;
  background-color: transparent;
}
#newscontent #press p img {
  width: auto;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
#typenav .nav-pills > li.active a {
  background-color: #125605;
}
/*
hearing styles */
.acrobat .filetype {
  margin: 3px 6px auto auto;
}
.members .headshot {
  padding: 15px;
}
.members .title {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
  font-weight: bold;
}
.members .name {
  font-weight: bold;
  margin-top: 15px;
}
.members .sectionhead h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Ek Mukta', sans-serif;
  padding-left: 15px;
}
.members .leader .headshot {
  padding: 0px;
}
/*newsroom*/
.banner {
  width: 100%;
  display: block;
  margin-top: -41px;
  z-index: 1;
}
.newsroom {
  padding: 20px 0px 30px;
  background-color: #f1f2e9;
  display: inline-block;
  border-bottom: 5px solid #E2E3DA;
  width: 100%;
}
.newsroom .chairman #chairman,
.newsroom .ranking #ranking {
  border: none;
}
.newsroom .social-list {
  float: left;
  color: white;
  text-align: center;
  margin-top: 20px;
}
.newsroom .social-list .socicon {
  color: white;
  vertical-align: bottom;
}
.newsroom .social-list .social-icon {
  height: 70px;
  width: 70px;
  display: inline-block;
  font-size: 36px;
}
.newsroom .social-list .social-icon.facebook {
  background-color: #537bbd;
}
.newsroom .social-list .social-icon.twitter {
  background-color: #4099ff;
}
.newsroom .social-list .social-icon.youtube {
  background-color: #e9654b;
  margin: 0;
}
.newsroom .social-list .social-icon.instagram {
  background-color: #bb2a8d;
}
.newsroom .social-list .social-icon.flickr {
  background-image: url('/themes/agriculture/images/flickr-big.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: bottom;
  background-position: center center;
  border: 1px solid gray;
}
.newsroom .social-list .social-icon:hover {
  background-color: white;
}
.newsroom .social-list .social-icon:hover.facebook {
  background-color: white;
}
.newsroom .social-list .social-icon:hover.facebook span {
  color: #537bbd;
}
.newsroom .social-list .social-icon:hover.twitter {
  background-color: white;
}
.newsroom .social-list .social-icon:hover.twitter span {
  color: #4099ff;
}
.newsroom .social-list .social-icon:hover.youtube {
  background-color: white;
}
.newsroom .social-list .social-icon:hover.youtube span {
  color: #e9654b;
}
.newsroom .social-list .social-icon:hover.instagram span {
  color: #bb2a8d;
}
.newsroom .social-list .social-icon:hover.flickr {
  border: 1px solid white;
}
.newsroom .social-list .newsletter {
  margin-left: 5px;
}
body#subcommittees .sectionhead {
  display: inline-block;
  background-color: #f1f2e9;
  border-bottom: 5px solid #6c5236;
  padding: 10px 0px;
  width: 100%;
}
body#subcommittees .sectionhead .title {
  font-size: 28px;
  margin-bottom: 2px;
}
body#subcommittees .sectionhead .site {
  display: block;
  font-size: 18px;
}
body#subcommittees .party {
  padding-left: 15px;
}
body#subcommittees .members {
  list-style: none;
  padding-left: 15px;
}
.nobreadcrumbs #breadcrumb {
  display: none;
}
.nobreadcrumbs #main_container {
  padding-top: 40px;
}
#asides {
  margin-top: 50px;
}
#asides .amend-textarea {
  background-color: #f1f2e9;
  padding: 10px 15px;
}
#asides h2,
#asides h3 {
  margin-top: 0px;
}
aside {
  margin-top: 60px !important;
}
#sam-resources {
  background-color: #f1f2e9 !important;
}
#san-applicationdeadlines {
  margin-top: 40px;
}
.leader {
  background-color: #f1f2e9;
  padding: 15px 10px 3px 5px;
  margin-left: 0px;
  margin-right: 20px;
  border-bottom: 5px solid #6c5236;
}
.links-list {
  margin-bottom: 50px;
}
.links-list a {
  margin-bottom: -13px;
  display: block;
}
.faq {
  margin-bottom: 30px;
}
.panel-default > .panel-heading {
  background-color: rgba(18, 86, 5, 0.8);
  border-color: rgba(18, 86, 5, 0.8);
  color: white;
}
#sam-resources {
  margin-top: -40px;
  line-height: 33px;
}
#filterbuttons a {
  background-color: white;
  color: black;
  padding-left: 0;
  padding-right: 20px;
  font-size: 15px;
}
#filterbuttons a:hover {
  text-decoration: underline;
  color: #50aa0d !important;
}
#chairman-twitter,
#ranking-twitter {
  min-height: 150px;
}
.more-aside {
  width: 100%;
  background-color: #3d8209;
  color: white;
  padding: 15px;
  margin-bottom: 0px;
}
select {
  background: #f1f2e9;
  color: black;
  border: 1px solid #dfe0d9;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
/*compilations*/
body#compilations .panel-default {
  border: none;
}
body#compilations .panel-default > .panel-heading {
  border: none;
  background-color: white;
}
body#compilations a h4 {
  color: black;
}
body#compilations a h4:hover {
  text-decoration: underline;
}
body#compilations .listing {
  width: 100%;
}
body#compilations .listing tr {
  height: 40px;
}
body#compilations .listing tr:nth-child(even) {
  background-color: #f1f2e9;
}
/*nominations*/
body#nominations .panel-default > .panel-heading {
  color: black;
}
body#nominations .nominations .panel-group .panel-default .panel-heading .panel-title .title {
  font-family: 'Avenir Next Cyr W00 Regular';
}
body#nominations .nominations .panel-group .panel-default:nth-of-type(2n+0) .panel-heading {
  background-color: #F7F4F4;
}
/*legislation page*/
body#legislation td.header_date {
  width: 140px;
}
body#legislation td.header_bill {
  width: 80px;
}
body#legislation tr:nth-child(even) {
  background-color: #F7F4F4;
}
body#legislation #filterbuttons a {
  margin-top: 60px;
  margin-left: 8px;
  text-transform: capitalize;
}
a.asc {
  position: relative;
  display: inline-block;
  bottom: 4px;
}
span.glyphicon.glyphicon-triangle-top {
  top: 5px;
}
a.desc {
  bottom: 3px;
  position: relative;
}
/*hearings page*/
#toggleCalendar a {
  background-color: white;
  color: black;
}
#toggleCalendar a span {
  vertical-align: middle;
}
#toggleCalendar a:hover {
  color: #50aa0d;
  background-color: white;
}
#toggleCalendar .jump {
  width: 225px;
  margin: -15px 0;
}
#toggleCalendar .jump label {
  width: 100%;
}
body#hearing #breadcrumb {
  display: none;
}
.hearingplaceholder {
  background-image: url('/themes/agriculture/images/posterbg.jpg');
}
.vevent:nth-child(odd) {
  background-color: #f7f4f4;
}
a.full:before {
  color: #ffd505 !important;
  background-color: #ffd505 !important;
}
.glyphicon.glyphicon-stop.full {
  color: #ffd505 !important;
  background-color: transparent !important;
}
tr.divider.congress {
  background-color: #3d8209;
  color: white;
  padding: 10px 0px;
  font-size: 22px;
  border-top: 50px solid white;
}
#calendar th {
  border: 1px solid #50aa0d;
  background-color: #3d8209;
  color: white;
}
#calendar .fc-today {
  background-color: #50aa0d;
}
.glyphicon.glyphicon-stop.today {
  color: #50aa0d !important;
}
.acrobat {
  color: #3d8209;
  padding-left: 20px;
}
.acrobat span {
  vertical-align: text-top;
}
body#compilations .acrobat {
  padding-left: 20px;
}
.vcard .acrobat {
  padding-left: 0px;
  padding-top: 15px;
}
#calendar .fc-toolbar .fc-left .fc-state-active,
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #3d8209 !important;
}
li#vcard-Debbie-Stabenow {
  width: 100%;
}
body#hearings .filter {
  float: none !important;
}
body#hearings #toggleCalendar {
  margin-top: 60px;
}
body#hearings #currently-showing {
  margin-left: 8px;
}
body#hearings #pagination-container {
  text-align: right;
  margin-top: 60px;
  margin-bottom: 0px;
}
body#hearings .table > tbody > tr > td {
  padding: 20px 20px;
}
.hearing-type {
  margin-top: 80px;
  text-transform: uppercase;
  font-weight: bold;
  color: #3d8209;
}
/*library landing*/
.understand {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  margin-top: 40px;
  background-color: #3d8209;
  color: white;
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.understand:hover {
  color: white;
  background-color: #50aa0d;
}
.understand:focus,
.understand:visited,
.understand:link {
  color: white;
}
.table > tbody > tr > td {
  padding: 20px 8px;
}
body#library #pagination-container {
  float: right;
  margin-bottom: 0px;
  margin-top: 70px;
}
body#library #filterbuttons {
  float: left;
  margin-top: 70px;
}
#search-pod-field {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
}
body#newsroom td {
  padding: 18px 18px 18px 0px;
}
body#newsroom #asides {
  margin-top: 32px;
}
/*general interior styles*/
#pagination-container .pagination-right {
  display: inline-block;
  vertical-align: sub;
  float: none;
  margin-bottom: 20px;
  margin-right: 10px;
}
li.previous a {
  margin-right: 10px;
}
.amend-textarea .social-list {
  text-align: center;
}
.amend-textarea .social-list .socicon {
  color: white;
  vertical-align: bottom;
  padding-left: 7px;
}
.amend-textarea .social-list .social-icon {
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 15px;
  vertical-align: bottom;
}
.amend-textarea .social-list .social-icon.facebook {
  background-color: #537bbd;
}
.amend-textarea .social-list .social-icon.twitter {
  background-color: #4099ff;
}
.amend-textarea .social-list .social-icon.youtube {
  background-color: #e9654b;
  margin: 0;
}
.amend-textarea .social-list .social-icon.flickr {
  background-color: white;
  background-repeat: no-repeat;
  vertical-align: bottom;
  background-position: center center;
  border: 1px solid gray;
  margin-left: 5px;
}
.amend-textarea .social-list .social-icon.instagram {
  background-color: #bb2a8d;
}
.amend-textarea .social-list .social-icon:hover {
  background-color: white;
}
.amend-textarea .social-list .social-icon:hover.facebook {
  background-color: white;
}
.amend-textarea .social-list .social-icon:hover.facebook span {
  color: #537bbd;
}
.amend-textarea .social-list .social-icon:hover.twitter {
  background-color: white;
}
.amend-textarea .social-list .social-icon:hover.twitter span {
  color: #4099ff;
}
.amend-textarea .social-list .social-icon:hover.youtube {
  background-color: white;
}
.amend-textarea .social-list .social-icon:hover.youtube span {
  color: #e9654b;
}
.amend-textarea .social-list .social-icon:hover.instagram span {
  color: #bb2a8d;
}
.amend-textarea .social-list .social-icon:hover.flickr {
  border-color: white;
}
#search-nominations-field,
#search-pod-field {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.collapesey {
  transition: 0.05s all ease-in;
}
.collapesey.open {
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(90deg);
}
.main_page_title {
  font-family: 'ITCGaramondW01-BookCn';
  text-transform: uppercase;
  font-size: 50px;
}
body.custom-banner h1.main_page_title {
  position: absolute;
  margin: 145px auto;
  font-size: 3em;
  padding: 20px 0px;
  font-family: 'ITCGaramondW01-BookCn';
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.72);
}
body#issue table {
  width: 100%;
}
body#issue .black {
  padding: 0px;
  background-color: transparent;
}
body#issue td {
  padding: 10px;
}
body#issue #main_column {
  padding-top: 30px;
}
body#issue .divider {
  font-size: 30px;
  font-family: 'ITCGaramondW01-BookCn';
  margin-top: 30px;
  display: block;
  border-bottom: 2px solid black;
}
body#issue .divider .divider {
  border: none;
}
body#issue aside.files {
  background-color: #f1f2e9;
}
body#issue aside.files h1 {
  font-size: 30px;
  border-top: 20px solid white;
  display: inline-block;
  width: 100%;
  padding: 16px;
}
body#issue aside .related-files-list {
  padding: 0px 14px 15px;
}
body#issue .one_column .breakout #issueFeed > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
body.farmbill .listing .vevent .tdheader {
  position: relative;
}
body.farmbill .listing .vevent .tdheader .icon {
  position: absolute;
  right: 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: green;
  font-weight: bold;
}
body.farmbill .listing .vevent .tdheader .icon .fa {
  color: green;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  top: 2px;
}
body.farmbill .listing .vevent .tdheader.subitems {
  transition: background-color 0.2s ease-in-out;
}
body.farmbill .listing .vevent .tdheader.subitems:hover {
  background-color: #f1f2e9;
  cursor: pointer;
}
body.farmbill .listing .vevent .tdheader.subitems #farmbillcollapse ul {
  margin-top: 10px;
}
body.farmbill .listing .vevent .tdheader.subitems #farmbillcollapse ul li {
  padding: 5px 0px;
}
body#farmbill .tree__root .compilationTree__order0 ul {
  padding-left: 0px;
  list-style-type: none;
}
body#farmbill .tree__root .compilationTree__order0 .tree__nav {
  display: block;
  border-bottom: 2px solid black;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 10px;
}
body#farmbill .tree__root .compilationTree__order0 .tree__nav h4 {
  font-size: 30px;
  font-family: 'ITCGaramondW01-BookCn';
  margin-top: 30px;
  display: block;
}
body#farmbill .tree__root .compilationTree__order0 .listItem:nth-child(even) {
  background-color: #f7f4f4;
}
body#farmbill .tree__root .compilationTree__order0 .listItem.compilationTree__order1 {
  padding: 10px;
}
body#farmbill .tree__root .compilationTree__order0 .listItem:not(.compilationTree__order0) ul {
  padding-left: 40px;
  list-style-type: initial;
}
body#farmbill .tree__root .compilationTree__order0 .listItem:not(.compilationTree__order0) .tree__nav {
  display: block;
  border-bottom: none;
  margin-top: 0px;
  margin-bottom: 00px;
  padding: 0px;
}
body#farmbill .tree__root .compilationTree__order0 .listItem:not(.compilationTree__order0) .tree__nav h4 {
  font-size: 18px;
  font-family: 'Avenir Next Cyr W00 Regular';
  font-weight: bolder;
  margin-bottom: 5px;
  margin-top: 0px;
}
body#farmbill .tree__root .compilationTree__order0 .listItem:not(.compilationTree__order1) {
  list-style-type: initial;
  padding: 5px 0px;
}
body#farmbill .tree__root .compilationTree__order0 .listItem.compilationTree__order2 {
  list-style-type: none;
  padding: 5px 0px;
}
body#farmbill .tree__root .compilationTree__order0 .compilationTree__order1 {
  list-style-type: none;
  padding: 5px 0px;
}
body#farmbill .tree__root .compilationTree__order0 .compilationTree__order2 {
  list-style-type: none;
  padding: 5px 0px;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
body .footer {
  margin-top: 30px;
  background-color: #35281a;
}
body .footer .footernav {
  text-align: center;
  margin: 0px;
}
body .footer .footernav li {
  padding: 25px 20px;
}
body .footer .footernav li a {
  color: white;
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
}
body .Subfooter {
  background-color: #f1f2e9;
}
body .Subfooter .subfooternav {
  text-align: center;
}
body .Subfooter .subfooternav li {
  margin: 15px 0px;
}
body .Subfooter .subfooternav li a {
  color: #35281a;
  font-size: 15px;
  text-transform: uppercase;
  font-family: 'Avenir Next Cyr W00 Demi';
}
body .Subfooter .subfooternav li:first-child {
  border-right: 2px solid #35281a;
  padding: 0px 9px;
}
body#home .footer {
  margin-top: 0px;
  background-color: #35281a;
}
body#home .Subfooter {
  background-color: #f1f2e9;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
font-family:'ITCGaramondW01-HtooledB_827047';
font-family:'ITCGaramondW01-HtooledB_827050';
font-family:'GaramondITCW01-LtNarrow_710013';
font-family:'GaramondITCW01-LtNarrow_710016';
font-family:'GaramondITCW01-BookNarr_710007';
font-family:'GaramondITCW01-BookNarr_710010';
font-family:'GaramondITCW01-BoldNarr_710001';
font-family:'GaramondITCW01-BoldNarr_710004';
font-family:'GaramondITCW01-UltNarro_710019';
font-family:'GaramondITCW01-UltNarro_710022';
font-family:'ITC Garamond W01 Light';
font-family:'ITCGaramondW01-LightIt';
font-family:'ITC Garamond W01 Book';
font-family:'ITCGaramondW01-BookItal';
font-family:'ITC Garamond W01 Bold';
font-family:'ITCGaramondW01-BoldItal';
font-family:'ITC Garamond W01 Ultra';
font-family:'ITCGaramondW01-UltraIt';
font-family:'ITCGaramondW01-LightCn';
font-family:'ITCGaramondW01-LightCnI';
font-family:'ITCGaramondW01-BookCn';
font-family:'ITCGaramondW01-BookCnIt';
font-family:'ITCGaramondW01-BoldCn';
font-family:'ITCGaramondW01-CnBoldIt';
font-family:'ITCGaramondW01-UltraCnI';
font-family:'ITCGaramondW01-UltraCn';
font-family:'Museo Slab W01_100';
font-family:'MuseoSlabW01-100Italic';
font-family:'Museo Slab W01_300';
font-family:'MuseoSlabW01-300Italic';
font-family:'Museo Slab W01_500';
font-family:'MuseoSlabW01-500Italic';
font-family:'Museo Slab W01_700';
font-family:'MuseoSlabW01-700Italic';
font-family:'Museo Slab W01_900';
font-family:'MuseoSlabW01-900Italic';
font-family:'Museo Slab W01_1000';
font-family:'MuseoSlabW01-1000Italic';
font-family:'VeggieFruit W95 Regular';

font-family:'Boho Sans W00 Regular';
font-family:'Boho Sans W00 Italic';
font-family:'Boho Sans W00 Bold';
font-family:'Boho Sans W00 Bold Italic';
font-family:'Boho Serif W00 Regular';
font-family:'Boho Serif W00 Italic';
font-family:'Boho Serif W00 Bold';
font-family:'Boho Serif W00 Bold Italic';
font-family:'Boho Ornaments W95 Regular';
font-family:'Boho Dingbats W95 Regular';
font-family:'Avenir Next Cyr W00 Ult Light';
font-family:'Avenir Next Cyr W00 Ult Lt It';
font-family:'Avenir Next Cyr W00 Thin';
font-family:'Avenir Next Cyr W00 Thin It';
font-family:'Avenir Next Cyr W00 Light';
font-family:'Avenir Next Cyr W00 Light It';
font-family:'Avenir Next Cyr W00 Regular';
font-family:'Avenir Next Cyr W00 Italic';
font-family:'Avenir Next Cyr W00 Medium';
font-family:'Avenir Next Cyr W00 Medium It';
font-family:'Avenir Next Cyr W00 Demi';
font-family:'Avenir Next Cyr W00 Demi It';
font-family:'Avenir Next Cyr W00 Bold';
font-family:'Avenir Next Cyr W00 Bold It';
font-family:'Avenir Next Cyr W00 Heavy';
font-family:'Avenir Next Cyr W00 Heavy It';
font-family:'AvenirNextLTW01-UltraLi';
font-family:'AvenirNextLTW01-UltraLt_721260';
font-family:'AvenirNextLTW01-BoldIta';
font-family:'AvenirNextLTW01-UltraLt_721293';
font-family:'AvenirNextLTW01-UltLtCn_721296';
font-family:'AvenirNextLTW01-Condens_721299';
font-family:'AvenirNextLTW01-Condens_721302';
font-family:'AvenirNextLTW01-MediumC_721311';
font-family:'AvenirNextLTW01-MediumC_721314';
font-family:'AvenirNextLTW01-DemiCn';
font-family:'AvenirNextLTW01-DemiCnI_721308';
font-family:'AvenirNextLTW01-BoldCn';
font-family:'AvenirNextLTW01-BoldCnI_721320';
font-family:'AvenirNextLTW01-HeavyCn_721323';
font-family:'AvenirNextLTW01-HeavyCn_721326';
font-family:'Avenir Next W01 Cn Thin';
font-family:'AvenirNextW01-CnThinIta';
font-family:'AvenirNextW01-CnLight';
font-family:'AvenirNextW01-CnLightIt';
font-family:'Avenir LT W01_95 Black1475556';
font-family: 'Ek Mukta', sans-serif;
font-family:'Avenir LT W01_65 Medium1475532';
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*/
/*header styles*/
.gara-book {
  font-family: 'ITC Garamond W01 Book';
}
.gara-book-con {
  font-family: 'ITCGaramondW01-BookCn';
}
.gara-book-con-it {
  font-family: 'ITCGaramondW01-BookCnIt';
}
.ekmukta {
  font-family: 'Ek Mukta', sans-serif;
}
.ekmukta-bold {
  font-family: 'Ek Mukta', sans-serif;
  font-weight: 600;
}
.avenir-demi {
  font-family: 'Avenir Next Cyr W00 Demi';
}
.avenir {
  font-family: 'Avenir Next Cyr W00 Regular';
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Avenir Next Cyr W00 Demi';
}
body {
  font-family: 'Avenir Next Cyr W00 Regular';
}
/*anchor stlyes*/
a {
  color: #3d8209;
}
a:hover {
  color: #50aa0d;
}
a:focus,
a:visited {
  text-decoration: none;
  color: #3d8209;
}
.main_page_title {
  text-transform: none;
}
/*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: #3d8209;
  color: white;
  text-transform: uppercase;
  font-family: 'Ek Mukta', sans-serif;
}
.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: #50aa0d;
  color: white;
}
.pager li .btn:focus,
.btn:focus,
.btn-defualt:focus,
.btn:visited:focus,
.btn-defualt:visited:focus,
btn:focus:focus,
.btn-default:focus:focus,
.search-media-btn:focus,
#main_column form .btn:focus,
.pager li .btn:visited,
.btn:visited,
.btn-defualt:visited,
.btn:visited:visited,
.btn-defualt:visited:visited,
btn:focus:visited,
.btn-default:focus:visited,
.search-media-btn:visited,
#main_column form .btn:visited,
.pager li .btn:link,
.btn:link,
.btn-defualt:link,
.btn:visited:link,
.btn-defualt:visited:link,
btn:focus:link,
.btn-default:focus:link,
.search-media-btn:link,
#main_column form .btn:link {
  color: white !important;
}
.btn-lg {
  font-size: 21px;
}
/*interior page content default styles */
#content {
  font-size: 18px;
}
@media only screen and (min-width: 2000px) {
  #banner-image {
    max-height: 1060px !important;
  }
  #banner-image .logo {
    top: 405px;
  }
}
@media (max-width: 1500px) {
  #banner-image {
    max-height: 950px ;
  }
  #banner-image .logo {
    top: 350px;
  }
}
@media (max-width: 1400px) {
  #banner-image {
    max-height: 950px ;
  }
  #banner-image .logo {
    top: 300px;
  }
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    font-size: 18px;
    padding-left: 0px;
  }
  body .navbar .srchbutton {
    right: 0px;
  }
  #banner-image .logo {
    top: 25%;
  }
  .grey .desc {
    height: 160px;
  }
  .pattern .spotlight {
    width: 80%;
  }
  .members .title {
    margin-top: 0px;
  }
  .members .name {
    margin-top: 3px;
  }
  body .navbar {
    height: 50px;
  }
  body .navbar .nav-pills {
    width: 100%;
  }
  body .navbar .nav-pills li {
    height: 49px;
  }
  body .navbar .nav-pills li a {
    padding-left: 10px;
  }
  body.custom-banner h1.main_page_title {
    margin: 96px auto;
  }
  .newsroom .social-list .social-icon {
    height: 54px;
    width: 54px;
    display: inline-block;
    font-size: 28px;
  }
  #chairman h4 {
    margin-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .togglemenu {
    color: white;
    float: left;
    font-size: 20px;
    margin-top: 10px;
  }
  .members .name,
  .members .party,
  .members .link {
    margin-left: 30px;
  }
  .grey {
    height: 564px;
  }
  .grey .block {
    height: 590px;
  }
  .grey .desc {
    height: 250px;
  }
  .srchbuttonmodal {
    float: right;
    font-size: 20px;
    color: white;
    margin-top: 10px;
  }
  #banner-image .logo {
    top: 25%;
    height: 200px;
  }
  #banner-image .logo .logo-hold {
    padding: 16px 0px;
  }
  .pattern .spotlight {
    width: 100%;
  }
  #banner-image .logo {
    height: 180px;
  }
  #banner-image .logo .logo-hold .ag {
    font-size: 45px;
    line-height: 44px;
  }
  #banner-image .logo .logo-hold .united {
    font-size: 12px;
  }
  #banner-image .logo .logo-hold .com {
    font-size: 15px;
  }
  body.custom-banner h1.main_page_title {
    margin: 69px auto;
  }
  iframe.streaminghearing {
    border: none;
    height: 544px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #banner-image .logo {
    top: 4%;
  }
  body#home .grey .col-sm-4 {
    width: 100%;
  }
  body#home .grey .desc {
    height: auto;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }
  .members .headshot {
    margin-bottom: 0px;
  }
  .grey {
    height: auto;
  }
  .grey .block {
    position: relative;
    margin-top: -20px;
    margin-bottom: 35px;
    height: auto;
  }
  .grey .block .block-link {
    position: relative;
    bottom: 0px;
  }
  .grey .desc {
    margin-bottom: 15px;
  }
  .chairman {
    display: inline-block;
  }
  .chairman #chairman h4 {
    margin-bottom: 0px;
  }
  .relative img {
    width: auto;
    height: 500px;
  }
  .members .headshot {
    padding: 30px;
  }
  .leader {
    min-height: 440px;
  }
  .leader .headshot {
    padding: 0px;
  }
  .members .name,
  .members .party,
  .members .link {
    margin-left: 30px;
  }
  .members .leader .name,
  .members .leader .party,
  .members .leader .link {
    margin-left: 0px;
  }
  body.custom-banner h1.main_page_title {
    margin: 83px auto;
    font-size: 2em;
  }
  .newsroom .social-list .social-icon {
    height: 54px;
    width: 54px;
    display: inline-block;
    font-size: 28px;
  }
  body#home #featured-image {
    display: none;
  }
}
@media (max-width: 700px) {
  .logo {
    display: none;
  }
  .grey .desc {
    height: auto;
  }
  .livelogo {
    display: none;
  }
  body#home .interior-header,
  .interior-header {
    background-color: #125605;
    color: white;
    display: block;
  }
  body#home .interior-header a,
  .interior-header a {
    color: white;
  }
  body#home .interior-header .logo,
  .interior-header .logo {
    display: block;
  }
  body#home .interior-header .united,
  .interior-header .united {
    color: white;
  }
  body#home .interior-header .ag,
  .interior-header .ag,
  body#home .interior-header .and,
  .interior-header .and {
    color: white;
  }
  body .nav-hold {
    background-color: #35281a;
  }
  .grey .block {
    margin-top: -60px;
    margin-bottom: 85px;
  }
  .grey .container .col-sm-4:last-child .block {
    margin-bottom: 50px;
  }
  #chairman-twitter,
  #ranking-twitter {
    min-height: auto;
  }
  .hearings .more {
    margin-bottom: 30px;
  }
  body#home .footer {
    padding: 15px;
  }
  body .footer .footernav li {
    padding: 8px 20px;
  }
  .leader {
    min-height: 420px;
  }
  body.custom-banner h1.main_page_title {
    margin: 60px auto;
  }
  body#home #header {
    position: relative;
  }
  .nav-hold.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 644px) {
  .members {
    width: 100%;
  }
  body.custom-banner h1.main_page_title {
    font-size: 1.5em;
  }
}
@media (max-width: 479px) {
  body .interior-header .logo-hold {
    padding: 14px 0px;
    z-index: 21;
  }
  body.custom-banner h1.main_page_title {
    margin: 35px auto;
  }
  .footer {
    display: none;
  }
  body#subcommittees .head {
    width: 100%;
  }
  body#hearings #toggleCalendar a:last-child {
    display: none;
  }
}
@media (max-width: 375px) {
  body.custom-banner h1.main_page_title {
    margin: -5px auto;
    width: 100%;
    margin-left: -15px;
  }
  body.custom-banner img {
    width: 111% !important;
    margin-top: -40px;
    margin-left: -15px;
  }
  body#newsroom .banner {
    width: 100%;
    display: block;
    margin-top: -40px;
    z-index: 1;
  }
  .btn-lg {
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie select {
  padding: 5px;
}
.ie .understand {
  padding: 20px 10px;
  font-size: 17px;
}
.ie .notie {
  display: none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
.people > li .title {
  text-transform: none;
}
/*# sourceMappingURL=common.css.map */