/* 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);
  }
}
.arrow {
  margin-bottom: 50px;
  margin-left: -115px;
  background-color: #2f2f2f;
  position: relative;
  height: auto;
  padding: 5px;
  text-align: left;
  background-image: url(/themes/democrats-transportation/images/transtrianglebackwards.png);
  display: inline-block;
  font-family: 'Helvetica Neue LT W01_65 Md';
  font-size: 32px;
  color: #fff;
  line-height: 30px;
  padding: 15px 10px 15px 115px;
}
.after:after {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: inline-block;
  border-left: 35px solid #2f2f2f;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  right: -35px;
  top: 0;
}
.arrowShadow {
  box-shadow: 4px 4px 1px #ffff00;
}
.arrowShadow:before {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: inline-block;
  border-left: 37px solid #ffff00;
  border-top: 22px solid transparent;
  border-bottom: 32px solid transparent;
  right: -37px;
  top: 14px;
}
#breadcrumb {
  height: 25px;
}
#breadcrumb a {
  font-size: 14px;
}
.alert {
  padding: 0px;
  background-color: #ff0000;
  text-align: center;
  padding: 10px;
}
.alert span {
  display: none;
}
.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  background-color: #ff0000;
  color: #fff;
  margin-top: -1px;
  font-family: 'Lora', serif;
  font-style: italic;
  margin-bottom: -1px;
}
.alert a:hover {
  color: #fff;
  text-decoration: underline;
}
.alert.live-hearing {
  background-color: #ffff00;
  padding: 0px;
}
.alert.live-hearing .live-hearing-title {
  padding: 20px;
  background-color: transparent;
}
.alert.live-hearing .live-hearing-title h2 {
  color: #2f2f2f;
  margin: 0;
  font-size: 26px;
}
@media (max-width: 767px) {
  .alert.live-hearing .live-hearing-title h2 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .alert.live-hearing .live-hearing-title h2 {
    font-size: 18px;
  }
}
.alert.live-hearing .live-hearing-title:hover {
  background-color: #cccc00;
  text-decoration: none!important;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #252525;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#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: #ffff00;
  color: #2f2f2f;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #999900;
}
body #header {
  height: auto;
  width: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 10;
}
body #header a.logo-hold {
  width: 100%;
  max-width: 400px;
  position: absolute;
  display: block;
  padding-top: 10px;
  float: left;
}
@media (max-width: 1260px) {
  body #header a.logo-hold {
    max-width: 340px;
  }
}
@media (max-width: 1115px) {
  body #header a.logo-hold {
    max-width: 300px;
  }
}
@media (max-width: 535px) {
  body #header a.logo-hold {
    max-width: 260px;
  }
}
@media (max-width: 460px) {
  body #header a.logo-hold {
    max-width: 225px;
    left: 40px;
  }
}
@media (max-width: 400px) {
  body #header a.logo-hold {
    left: 20px;
    max-width: 195px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
body #header .nav .dropdown > a:hover {
  color: #ffff00;
}
@media (max-width: 991px) {
  body #header {
    padding-top: 10px;
  }
  body #header .nav-hold {
    float: left;
  }
}
body #header .newsletter {
  position: absolute;
  right: 0px;
  top: 1rem;
  z-index: 12;
}
body #header .newsletter a {
  padding: 10px 35px 10px 15px;
  background-color: #ffff00;
  display: block;
  position: relative;
  width: 130px;
  transition: width 0.2s ease-in-out;
}
body #header .newsletter a .text {
  font-family: 'Lora', serif;
  font-style: italic;
  text-align: right;
  line-height: 1;
  font-size: 16px;
  display: block;
}
body #header .newsletter a .text .signup {
  display: block;
}
body #header .newsletter a:before {
  content: '';
  width: 0;
  position: absolute;
  bottom: 0px;
  height: 0;
  border-top: 26px solid transparent;
  border-right: 25px solid #ffff00;
  border-bottom: 26px solid transparent;
  left: -25px;
  margin: 0 auto;
}
body #header .newsletter a:hover {
  width: 160px;
}
body #header .newsletter:before {
  content: '';
  width: 100px;
  position: absolute;
  border-top: 6px solid #b6b709;
  border-right: 30px solid #b5b800;
  border-bottom: 4px solid #d7d83c;
  border-left: 70px solid #d5d900;
  top: -10px;
  right: 0;
}
@media (max-width: 991px) {
  body #header .newsletter:before {
    display: none;
  }
}
@media (max-width: 991px) {
  body #header .newsletter {
    top: 9.8rem;
  }
}
.modal-backdrop.in {
  background-color: #252525 !important;
  background-image: url('/themes/democrats-transportation/images/transtrianglebackwards.png');
}
body:not(#home) #header {
  height: 150px;
  width: 100%;
  position: absolute;
  background-color: #252525;
  position: relative;
  background-image: url('/themes/democrats-transportation/images/transtrianglebackwards.png');
  background-size: cover;
}
@media (max-width: 400px) {
  body:not(#home) #header {
    height: 125px;
  }
}
body:not(#home) #header a.logo-hold {
  width: 100%;
  max-width: 150px;
  position: relative;
  display: block;
  padding-top: 15px;
  float: left;
  left: 0px;
}
body:not(#home) #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 991px) {
  body:not(#home) #header a.logo-hold {
    padding-top: 5px;
  }
}
body:not(#home) #header .nav-hold {
  padding-top: 7rem;
}
body:not(#home) #header .nav-hold .navbar .nav-pills a {
  padding: 10px 25px;
}
@media (max-width: 1200px) {
  body:not(#home) #header .nav-hold .navbar .nav-pills a {
    font-size: 16px;
    padding: 10px 19px;
  }
}
body:not(#home) #header .nav-hold .nav-pills > li.dropdown > a {
  height: 55px;
}
body:not(#home) #header .nav-hold .nav-pills > li.dropdown > ul.dropdown-menu {
  top: 55px;
}
@media (max-width: 991px) {
  body:not(#home) #header .nav-hold {
    padding-top: 3rem;
  }
}
@media (max-width: 460px) {
  body:not(#home) #header .nav-hold {
    padding-top: 5rem;
  }
}
@media (max-width: 991px) {
  body:not(#home) #header {
    height: auto;
    padding-bottom: 10px;
  }
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
  border: 0;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  position: relative;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li:after {
  content: "/";
  float: right;
  position: absolute;
  top: 10px;
  right: 0px;
  color: #fff;
}
body .navbar .nav-pills > li a {
  color: #fff;
  /*	text-decoration: none;
					font-style: oblique;
					text-transform: uppercase;
					.bold; */
}
body .navbar .nav-pills > li:last-child:after {
  display: none;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  border: 2px solid #2f2f2f;
  border-top: none;
  box-shadow: 4px 4px 2px #cecece;
  top: 145%;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 0;
  width: 265px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #2f2f2f;
  white-space: normal;
  padding: 10px 20px !important;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #ffff00;
  color: #2f2f2f;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #2f2f2f;
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu:after {
  content: '';
  position: absolute;
  top: -20px;
  left: 35px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid white;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #ffff00;
}
body .navbar .togglemenu {
  color: white;
  font-size: 44px;
}
@media (max-width: 535px) {
  body .navbar .togglemenu {
    font-size: 34px;
  }
}
@media (max-width: 460px) {
  body .navbar .togglemenu {
    font-size: 28px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 41px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 535px) {
  body .navbar .srchbuttonmodal {
    font-size: 31px;
  }
}
@media (max-width: 460px) {
  body .navbar .srchbuttonmodal {
    font-size: 25px;
  }
}
body .navbar .srchbutton {
  color: #fff;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  background-color: transparent;
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .nav-hold .nav-pills > li.dropdown > a {
  height: 55px;
}
body#home .nav-hold .nav-pills > li.dropdown > ul.dropdown-menu {
  top: 55px;
}
body#home .navbar {
  position: relative;
}
body#home .navbar .nav-pills > li a {
  padding: 10px 15px;
  font-size: 18px;
}
@media (max-width: 1200px) {
  body#home .navbar .nav-pills > li a {
    padding: 10px 10px;
    font-size: 16px;
  }
}
@media (max-width: 1080px) {
  body#home .navbar .nav-pills > li a {
    padding: 10px 10px;
    font-size: 16px;
  }
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
  padding-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 36px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Helvetica Neue LT W01_65 Md';
  white-space: normal;
  line-height: 20px;
  margin-bottom: 12px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding-top: 7rem;
  float: right;
  text-align: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
  text-align: center;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 13px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    padding-top: 3rem;
  }
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#home #top-banner {
  height: 565px;
  position: relative;
  /*	.logo-hold{
			position: absolute;
			width: 100%;
			max-width: 750px;
			bottom: 20rem;
			right: 0;
			left: 0;
			text-align: center;
			margin: 0 auto;
			img{
				width: 100%;
			}
			@media (max-width: 991px){
				bottom: 10rem;
			}
		} */
}
@media (max-width: 1200px) {
  #home #top-banner {
    height: 470px;
  }
}
@media (max-width: 767px) {
  #home #top-banner {
    height: 380px;
  }
}
@media (max-width: 500px) {
  #home #top-banner {
    height: 285px;
  }
}
#home #top-banner .banner-background {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url(/themes/democrats-transportation/images/banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
#home #top-banner .newsletter {
  position: absolute;
  right: 0px;
  top: 1rem;
  z-index: 12;
}
#home #top-banner .newsletter a {
  padding: 10px 35px 10px 15px;
  background-color: #ffff00;
  display: block;
  position: relative;
  width: 130px;
  transition: width 0.2s ease-in-out;
}
#home #top-banner .newsletter a .text {
  font-family: 'Lora', serif;
  font-style: italic;
  text-align: right;
  line-height: 1;
  font-size: 16px;
  display: block;
}
#home #top-banner .newsletter a .text .signup {
  display: block;
}
#home #top-banner .newsletter a:before {
  content: '';
  width: 0;
  position: absolute;
  bottom: 0px;
  height: 0;
  border-top: 26px solid transparent;
  border-right: 25px solid #ffff00;
  border-bottom: 26px solid transparent;
  left: -25px;
  margin: 0 auto;
}
#home #top-banner .newsletter a:hover {
  width: 160px;
}
#home #top-banner .newsletter:before {
  content: '';
  width: 100px;
  position: absolute;
  border-top: 6px solid #b6b709;
  border-right: 30px solid #b5b800;
  border-bottom: 4px solid #d7d83c;
  border-left: 70px solid #d5d900;
  top: -10px;
  right: 0;
}
@media (max-width: 991px) {
  #home #top-banner .newsletter:before {
    display: none;
  }
}
@media (max-width: 991px) {
  #home #top-banner .newsletter {
    top: 15rem;
  }
}
#home #congestion-debt-container {
  display: block;
  background: #ffff00;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 5px;
  background-image: url('/themes/democrats-transportation/images/transtriangle.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 5px #cecece solid;
  min-height: 70px;
}
#home #congestion-debt-container #transdebt {
  padding-left: 0px;
  background-color: #2f2f2f;
  display: block;
  position: absolute;
  bottom: -20px;
  height: auto;
  padding: 5px;
  text-align: right;
  width: 48%;
  left: 0px;
  background-image: url('/themes/democrats-transportation/images/transtrianglebackwards.png');
}
@media (max-width: 1250px) {
  #home #congestion-debt-container #transdebt {
    width: 40%;
  }
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #transdebt {
    width: 34%;
  }
}
@media (max-width: 820px) {
  #home #congestion-debt-container #transdebt {
    width: 70%;
  }
}
@media (max-width: 640px) {
  #home #congestion-debt-container #transdebt {
    width: 77%;
  }
}
@media (max-width: 530px) {
  #home #congestion-debt-container #transdebt {
    width: 85%;
  }
}
#home #congestion-debt-container #transdebt #congestion-debt {
  display: block;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 40px;
  color: #fff;
  line-height: 30px;
  padding: 15px;
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #transdebt #congestion-debt {
    font-size: 29px;
  }
}
@media (max-width: 991px) {
  #home #congestion-debt-container #transdebt #congestion-debt {
    font-size: 24px;
  }
}
@media (max-width: 820px) {
  #home #congestion-debt-container #transdebt #congestion-debt {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  #home #congestion-debt-container #transdebt #congestion-debt {
    font-size: 26px;
  }
}
#home #congestion-debt-container #transdebt:after {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: inline-block;
  border-left: 30px solid #2f2f2f;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  right: -30px;
  top: 0px;
}
#home #congestion-debt-container #alertstuff {
  color: #2f2f2f;
  display: block;
  float: right;
  width: 48%;
}
@media (max-width: 1250px) {
  #home #congestion-debt-container #alertstuff {
    width: 55%;
  }
}
@media (max-width: 991px) {
  #home #congestion-debt-container #alertstuff {
    width: 60%;
  }
}
@media (max-width: 820px) {
  #home #congestion-debt-container #alertstuff {
    width: 100%;
    padding-top: 46px;
  }
}
#home #congestion-debt-container #alertstuff .alert-home {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0px;
  vertical-align: middle;
  font-family: 'Helvetica Neue LT W01_71488914';
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #alertstuff .alert-home {
    padding: 13px 0px;
  }
}
@media (max-width: 820px) {
  #home #congestion-debt-container #alertstuff .alert-home {
    top: -47px;
    text-align: center;
  }
}
#home #congestion-debt-container #alertstuff .alert-home a {
  color: #252525;
  font-size: 22px;
  display: table;
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #alertstuff .alert-home a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  #home #congestion-debt-container #alertstuff .alert-home a {
    font-size: 18px;
  }
}
#home #congestion-debt-container #alertstuff .alert-home a .alertIcn {
  padding: 5px 12px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #2f2f2f;
  border-radius: 50px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #alertstuff .alert-home a .alertIcn {
    padding: 5px 11px;
  }
}
@media (max-width: 500px) {
  #home #congestion-debt-container #alertstuff .alert-home a .alertIcn {
    display: none;
  }
}
#home #congestion-debt-container #alertstuff .alert-home a .alertIcn .fa {
  font-size: 24px;
  display: block;
}
@media (max-width: 1140px) {
  #home #congestion-debt-container #alertstuff .alert-home a .alertIcn .fa {
    font-size: 19px;
  }
}
#home #congestion-debt-container #alertstuff .alert-home a .headline {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
#home #hearingsarea {
  background-color: #EBEFF2;
  display: table;
  width: 100%;
  padding: 2rem 0px 10rem;
}
#home #hearingsarea #calendar-holder .hearing-list {
  background: white;
  display: block;
  height: 400px;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area {
  display: block;
  padding: 10px;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-header {
  font-family: 'Helvetica Neue LT W01_71488914';
  text-transform: uppercase;
  margin-top: 0px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-header .hearings-footer a {
  color: #ff0000;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  text-transform: capitalize;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-item {
  margin-bottom: 2rem;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-item .date {
  font-size: 14px;
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-item a {
  font-family: 'Helvetica Neue LT W01_71488914';
}
#home #hearingsarea #calendar-holder .hearing-list .hearings-area .hearing-item .time {
  font-size: 14px;
}
#top {
  max-width: 1440px;
  margin: 0 auto;
  background-image: url('/themes/default_v5/images/default.jpg');
  background-size: cover;
  background-attachment: scroll;
  background-color: transparent;
  position: relative;
  background-repeat: no-repeat;
  min-height: 730px;
}
#top .content {
  position: absolute;
  text-align: center;
  bottom: 40px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
#top .content #main-text h1 {
  width: 80%;
  display: block;
  float: none;
  margin: 0 auto;
  text-shadow: 2px 2px 8px #000;
}
#top .content #main-text h1 a {
  color: #fff;
}
#top .content #main-text h1 a:hover {
  color: #03A4C1;
}
#press {
  background-color: #EBEFF2;
  margin-top: 0;
  padding: 40px;
  display: table;
  width: 100%;
}
@media (max-width: 1200px) {
  #press {
    padding: 40px 0px;
  }
}
#press .pressarea {
  padding: 40px 0px;
}
#press .home-featured {
  padding: 0px 15px;
}
@media (max-width: 991px) {
  #press .home-featured {
    padding: 20px;
  }
}
#press .home-featured .wrap {
  position: relative;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 0px;
  height: 250px;
  padding-top: 3rem;
  text-align: center;
  display: table-cell;
  vertical-align: top;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #press .home-featured .wrap {
    height: auto;
    padding-bottom: 50px;
  }
}
#press .home-featured .wrap .press-image {
  height: 140px;
  transition: all 0.3s ease-in-out;
}
#press .home-featured .wrap .press-title {
  text-align: left;
  padding: 15px;
  color: #2f2f2f;
  transition: all 0.3s ease-in-out;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
#press .home-featured .wrap .press-title .more {
  color: #ff0000;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
}
#press .home-featured .wrap .press-title.without-img {
  font-size: 18px;
}
#press .home-featured .wrap .black-bar {
  background-color: #2f2f2f;
  height: 10px;
  position: absolute;
  width: 100%;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
#press .home-featured .wrap:hover {
  background-color: #f7f7f7;
}
#press .home-featured .wrap:hover .black-bar {
  background-color: #ffff00;
  height: 20px;
  background-image: url('/themes/democrats-transportation/images/transtriangle.png');
  background-size: cover;
  background-repeat: no-repeat;
}
#press .home-featured .wrap.with-img {
  padding: 0px;
  overflow: hidden;
  position: relative;
  display: block;
}
#press .home-featured .wrap.with-img .press-title {
  background-color: #fff;
  position: relative;
  z-index: 10;
}
#press .home-featured .wrap.with-img .press-image {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-position: center;
}
#press .home-featured .wrap.with-img:hover .press-image {
  transform: scale(1.1);
}
#press .home-featured .wrap.with-img:hover .press-title {
  background-color: #f7f7f7;
}
.twitter-container {
  height: 390px;
  padding: 0 80px;
  padding-top: 40px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .twitter-container {
    padding: 40px 20px 0;
  }
}
@media (max-width: 650px) {
  .twitter-container {
    height: 435px;
  }
}
@media (max-width: 400px) {
  .twitter-container {
    height: 455px;
  }
}
.twitter-container .socialicons {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30px;
}
.twitter-container .twitter-body {
  height: 70%;
  position: relative;
  padding: 0 46px;
}
@media (max-width: 479px) {
  .twitter-container .twitter-body {
    padding: 0 25px;
    word-break: break-word;
  }
}
.twitter-container .twitter-body > a {
  color: #1385b4;
}
.twitter-container .twitter-body #twitter-carousel {
  padding: 0px 60px;
  margin-top: -20px;
  height: 100%;
}
@media (max-width: 650px) {
  .twitter-container .twitter-body #twitter-carousel {
    padding: 0 20px;
  }
}
.twitter-container .twitter-body #twitter-carousel #twitcarousel {
  height: 100%;
}
.twitter-container .twitter-body #twitter-carousel #twitcarousel #twitter {
  height: 100%;
}
.twitter-container .twitter-body .twitter-bird {
  font-size: 46px;
}
.twitter-container .twitter-body .left,
.twitter-container .twitter-body .right {
  display: inline-block;
  font-size: 75px;
  color: #EBEFF2;
}
@media (max-width: 991px) {
  .twitter-container .twitter-body .left,
  .twitter-container .twitter-body .right {
    font-size: 43px;
  }
}
.twitter-container .twitter-body .left {
  position: absolute;
  top: 36%;
  left: 0px;
}
@media (max-width: 991px) {
  .twitter-container .twitter-body .left {
    top: 50%;
  }
}
.twitter-container .twitter-body .right {
  position: absolute;
  top: 36%;
  right: 0px;
}
@media (max-width: 991px) {
  .twitter-container .twitter-body .right {
    top: 50%;
  }
}
.twitter-container .twitter-body .carousel-inner {
  overflow: initial;
}
.twitter-container .twitter-body .carousel-inner .item {
  padding: 0px 0px;
  font-size: 22px;
  top: 2em;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.twitter-container .twitter-body .carousel-inner .item .tweet {
  color: #2f2f2f;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .twitter-container .twitter-body .carousel-inner .item .tweet {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 525px) {
  .twitter-container .twitter-body .carousel-inner .item .tweet {
    font-size: 16px;
    line-height: 21px;
  }
}
.twitter-container .twitter-body .carousel-inner .item .tweet a {
  color: #ff0000;
}
.twitter-container .twitter-body .carousel-inner .item .timePosted {
  font-size: 16px;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.twitter-container .twitter-body .carousel-inner .item .timePosted a {
  color: #252525;
}
.social-list {
  font-size: 25px;
}
.social-list a {
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  font-size: 16px;
  display: inline-block;
}
.social-list a.facebook {
  background-color: #395a9a;
  border: 1px solid #395a9a;
}
.social-list a.facebook.facebook:hover {
  background-color: #fff;
  color: #395a9a;
  border: 1px solid;
}
.social-list a.twitter {
  background-color: #1385b4;
  border: 1px solid #1385b4;
}
.social-list a.twitter.twitter:hover {
  background-color: #fff;
  color: #1385b4;
  border: 1px solid;
}
.social-list a.youtube {
  background-color: #c62f2c;
  border: 1px solid #c62f2c;
}
.social-list a.youtube.youtube:hover {
  background-color: #fff;
  color: #c62f2c;
  border: 1px solid;
}
.social-list a:hover {
  color: #fff;
}
#committee-act {
  background-color: #EBEFF2;
}
#committee-act .title {
  width: 460px;
  padding-left: 0;
  background-color: #2f2f2f;
  display: inline-block;
  position: relative;
  margin-top: 20px;
  height: auto;
  text-align: right;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  #committee-act .title {
    width: auto;
  }
}
#committee-act .title:after {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: block;
  border-left: 30px solid #2f2f2f;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  right: -30px;
  top: 0;
}
#committee-act .title a {
  display: block;
  padding: 18px;
}
#committee-act .title a h1 {
  color: #fff;
  font-size: 30px;
  margin: 0px;
  font-family: 'Helvetica Neue LT W01_71488914';
  text-align: right;
  padding: 0px 60px;
}
@media (max-width: 767px) {
  #committee-act .title a h1 {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  #committee-act .title a h1 {
    padding: 6px 20px;
    font-size: 20px;
    height: 34px;
  }
}
#committee-act .title:hover {
  width: 500px;
}
@media (max-width: 767px) {
  #committee-act .title:hover {
    width: auto;
  }
}
#committee-act .issueblocks {
  padding: 40px 15px;
}
#committee-act .issueblocks .blockitem {
  min-height: 380px;
  height: auto;
  margin-bottom: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 500px) {
  #committee-act .issueblocks .blockitem {
    min-height: 315px;
  }
}
#committee-act .issueblocks .blockitem a {
  height: 100%;
  width: 100%;
  display: block;
  overflow: hidden;
}
#committee-act .issueblocks .blockitem a .issuetitle {
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_71488914';
  padding-top: 10px;
  display: block;
  position: relative;
  z-index: 100;
  background-color: #EBEFF2;
  transition: all 0.3s ease-in-out;
}
#committee-act .issueblocks .blockitem a .imageforissue {
  width: 100%;
  height: 275px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-bottom: 15px solid #252525;
}
@media (max-width: 1200px) {
  #committee-act .issueblocks .blockitem a .imageforissue {
    height: 230px;
  }
}
@media (max-width: 500px) {
  #committee-act .issueblocks .blockitem a .imageforissue {
    height: 225px;
  }
}
#committee-act .issueblocks .blockitem:hover a .imageforissue {
  transform: scale(1.1);
}
#committee {
  height: auto;
  background-color: #303437;
  padding: 50px 0px;
}
#committee #rankingtitle {
  height: 100%;
  padding: 0px;
}
#committee #rankingtitle .rankingimage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 280px;
}
@media (max-width: 991px) {
  #committee #rankingtitle .rankingimage {
    height: 315px;
  }
}
@media (max-width: 479px) {
  #committee #rankingtitle .rankingimage {
    background-position: top left;
    margin-bottom: 20px;
    height: 250px;
    margin-left: 15px;
    background-size: contain;
  }
}
#committee .ranking-member-desc {
  color: #fff;
}
#committee .ranking-member-desc .titleareamember {
  max-width: 250px;
  width: 100%;
}
#committee .ranking-member-desc .titleareamember h1,
#committee .ranking-member-desc .titleareamember h5 {
  margin: 0;
}
#committee .ranking-member-desc .titleareamember h1 {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  #committee .ranking-member-desc .titleareamember h1 {
    font-size: 32px;
  }
}
#committee .ranking-member-desc .titleareamember .rankingname {
  color: #fff;
  font-family: 'Lora', serif;
  font-style: italic;
}
#committee .ranking-member-desc .titleareamember .rankingname:hover {
  text-decoration: underline;
}
#committee .ranking-member-desc .titleareamember .socialicons {
  margin-top: 12px;
}
#committee .ranking-member-desc .titleareamember .socialicons .social-list li {
  padding-right: 2px;
  padding-left: 2px;
}
#committee .ranking-member-desc .titleareamember .socialicons .social-list li a {
  width: 40px;
  height: 40px;
  font-size: 24px;
}
#committee #membership {
  width: 620px;
}
@media (max-width: 991px) {
  #committee #membership {
    margin-top: 30px;
  }
}
@media (max-width: 660px) {
  #committee #membership {
    width: 100%;
  }
}
#committee .party {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
}
#committee #divide-list {
  column-count: 3;
  font-size: 14px;
}
@media (max-width: 1300px) {
  #committee #divide-list {
    column-count: 2;
  }
}
@media (max-width: 991px) {
  #committee #divide-list {
    column-count: 3;
  }
}
@media (max-width: 660px) {
  #committee #divide-list {
    column-count: 2;
  }
}
@media (max-width: 449px) {
  #committee #divide-list {
    column-count: 1;
  }
}
#committee #divide-list img {
  display: none;
}
#committee #divide-list .member {
  line-height: 1.8;
  font-size: 14px;
}
#committee #divide-list .member .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 200px;
  display: none;
  background-color: #2f2f2f;
  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);
}
#committee #divide-list a {
  color: #fff;
}
#committee #divide-list a:hover {
  text-decoration: underline;
}
@media (max-width: 479px) {
  .col-xs {
    width: 100%;
  }
}
/* Carousel Fading slide */
.carousel-fade .carousel-control {
  z-index: 2;
}
.carousel-fade .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active {
  opacity: 1;
}
.carousel-fade .active.left,
.carousel-fade .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
/* Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Carousel Control custom */
.carousel-control .control-icon {
  font-size: 48px;
  height: 30px;
  margin-top: -15px;
  width: 30px;
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 5;
}
.carousel-control .prev {
  margin-left: -15px;
  left: 50%;
}
/* Prev */
.carousel-control .next {
  margin-right: -15px;
  right: 50%;
}
/* Next */
/* Removing BS background */
.carousel .control-box {
  opacity: 0;
}
a.carousel-control.left {
  left: 0;
  background: none;
  border: 0;
}
a.carousel-control.right {
  right: 0;
  background: none;
  border: 0;
}
/* Animation */
.control-box,
a.carousel-control,
.carousel-indicators li {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  /* hardware acceleration causes Bootstrap carousel controlbox margin error in webkit */
  /* Assigning animation to indicator li will make slides flicker */
}
/* Hover animation */
.carousel:hover .control-box {
  opacity: 1;
}
.carousel:hover a.carousel-control.left {
  left: 15px;
}
.carousel:hover a.carousel-control.right {
  right: 15px;
}
/* Carouse Indicator */
.carousel-indicators li.active,
.carousel-indicators li {
  border: 0;
}
.carousel-indicators li {
  background: #666;
  margin: 0 3px;
  width: 12px;
  height: 12px;
}
.carousel-indicators li.active {
  background: #fff;
  margin: 0 3px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
  margin-top: 11%;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #11c198 !important;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #252525;
}
.hearing-type {
  display: inline-block;
  padding: 2px 10px;
  margin-top: 28px;
  margin-bottom: -5px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  background-color: #ffff00;
}
.sectionhead h1 {
  font-family: 'Helvetica Neue LT W01_71488914';
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #252525;
  padding-left: 0px;
  padding-right: 20px;
  border: 0;
  border-bottom: 0 !important;
}
#filterbuttons a:hover {
  color: #ff0000;
  background: white;
}
body.hide-expand #filterbuttons a:last-child {
  display: none;
}
body#list-blocks #content {
  background-color: #EBEFF2;
}
body#list-blocks .hearing-card {
  background-color: #2f2f2f;
  color: white;
  padding: 20px 30px;
}
@media (max-width: 991px) {
  body#list-blocks .hearing-card {
    margin-bottom: 30px;
  }
}
body#list-blocks .hearing-card .hearing-card-title {
  height: 150px;
  width: 100%;
  font-size: 26px;
  padding-left: 11px;
  line-height: 28px;
}
@media (max-width: 1200px) {
  body#list-blocks .hearing-card .hearing-card-title {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  body#list-blocks .hearing-card .hearing-card-title {
    height: 95px;
  }
}
body#list-blocks .hearing-card a {
  color: white;
  font-family: 'Helvetica Neue LT W01_65 Md';
  line-height: 18px;
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-block;
}
body#list-blocks .hearing-card a .date {
  font-family: 'Helvetica Neue LT W01_71488914';
}
body#list-blocks .hearing-card a:hover {
  text-decoration: underline;
}
body#list-blocks .hearing-card .hearing-info {
  min-height: 150px;
  border-left: 6px solid #ffff00;
  padding-left: 22px;
}
@media (max-width: 479px) {
  body#list-blocks .hearing-card .hearing-info {
    border-left: 0px;
    border-top: 6px solid #ffff00;
    width: 100%;
  }
}
body#list-blocks .height-manage {
  margin-bottom: 30px;
  margin-top: 30px;
}
body#list-blocks .height-manage .row,
body#list-blocks .height-manage .col-md-6,
body#list-blocks .height-manage .col-sm-8,
body#list-blocks .height-manage .hearing-card,
body#list-blocks .height-manage .hearing-info {
  height: 100%;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 240px;
  position: relative;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #fff;
  font-weight: bold;
  color: #2f2f2f;
  transition: 0.3s background-color ease-in;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a .black-bar {
  background-color: #2f2f2f;
  height: 10px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
#listblocks .block a:hover {
  background-color: #f7f7f7;
}
#listblocks .block a:hover .black-bar {
  background-color: #ffff00;
  height: 20px;
  background-image: url('/themes/democrats-transportation/images/transtriangle.png');
  background-size: cover;
  background-repeat: no-repeat;
}
#typenav li a {
  color: #2f2f2f;
  border-bottom: 0px !important;
}
#typenav li.active a {
  color: white !important;
  background-color: #2f2f2f;
}
#typenav.affix {
  top: 0;
}
.ranking-headshot {
  float: left;
  margin: 10px 40px 7px 0;
  width: 268px;
}
@media (max-width: 550px) {
  .ranking-headshot {
    width: 40%;
  }
}
#filterbuttons {
  display: inline-block;
  margin-bottom: 40px;
}
body:not(#home) {
  position: static;
}
body:not(#home) #press {
  background-color: transparent;
}
body:not(#home) #press .summary a {
  font-family: 'Lora', serif;
  color: #ff0000;
  font-size: 16px;
  font-style: italic;
  border-bottom: 0;
}
body:not(#home) #press .date {
  display: block;
}
#newscontent #press {
  padding: 0;
  height: auto;
}
body#issue #divide-list {
  column-count: 2;
}
body#issue .hearing-box {
  margin-top: 20px;
  box-shadow: 0 0 0 1px #000000;
}
body#issue .hearing-box p {
  padding: 20px 30px;
  font-family: 'Helvetica Neue LT W01_65 Md';
  font-size: 14px;
}
body#issue .member {
  margin-bottom: 10px;
}
body#issue .member .member-image {
  width: 110px;
  height: 135px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  margin-right: 30px;
}
body#issue .member .member-info {
  padding-top: 1px;
  margin-top: 30px;
}
body#issue .member .leader {
  font-size: 18px;
}
@media only screen and (max-width: 543px), only screen and (min-width: 544px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  body#issue .member .leader {
    min-height: auto;
  }
}
body#issue .member .name {
  margin-bottom: -5px;
  margin-top: 15px;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 24px;
}
body#issue .member .name a {
  color: white;
}
body#issue .member .name a:hover {
  color: #ffff00;
}
body#issue .member a {
  border-bottom: 0px !important;
}
body#issue .house-subcommittee {
  background-color: #2F2F2F;
  color: #fff;
  margin: 0 -115px;
  padding: 50px 115px;
  margin-top: 50px;
  margin-bottom: -50px;
}
body#issue .house-subcommittee h4 {
  margin-bottom: 0px;
}
body#issue .house-subcommittee h1 {
  margin-top: 0;
  font-family: 'Helvetica Neue LT W01_71488914';
}
body#issue .house-subcommittee .committee-party {
  margin-top: 50px;
  display: inline-block;
  font-size: 21px;
}
body#issue .recent-activity .date {
  margin-bottom: 20px;
  font-size: 16px;
}
body#issue .recent-activity .title {
  font-size: 22px;
  margin-bottom: 5px;
}
body#issue #membership {
  width: auto;
}
@media only screen and (max-width: 543px) {
  body#issue #membership .memberlist {
    column-count: 1;
  }
}
#pagination-container {
  margin-top: 50px;
  margin-bottom: 150px;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
#pagination-container .next {
  margin-left: 24px;
}
#pagination-container .pagination-list {
  margin-right: 15px;
}
@media (max-width: 767px) {
  #pagination-container .pagination-list {
    display: none;
  }
}
#pagination-container .pagination-list .pagination-page {
  margin-left: 10px;
}
#pagination-container .pagination-list .pagination-page span:not(:last-child):after {
  content: '|';
  padding: 0 5px;
}
#pagination-container a {
  color: #ff0000;
  text-decoration: underline;
}
#pagination-container a:hover {
  color: #2f2f2f;
}
#toggleCalendar a,
#toggleCalendar .filter,
#toggleCalendar .hidden-sm {
  background-color: transparent;
  color: #2f2f2f;
  border-bottom: 0 !important;
}
#toggleCalendar a:hover,
#toggleCalendar .filter:hover,
#toggleCalendar .hidden-sm:hover {
  background-color: transparent;
  color: #ff0000;
}
.main_page_title {
  font-family: 'Helvetica Neue LT W01_71488914';
}
.main_page_title:before,
.main_page_title:after {
  display: none!important;
}
#membership {
  margin-top: 0px;
}
#membership .leader-block {
  display: inline-block;
  width: 100%;
  background-color: #2f2f2f;
  color: white;
}
#membership .leader-block .info {
  padding-left: 30px;
  padding-top: 30px;
}
#membership .leader-block .info .leader {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 767px) {
  #membership .leader-block .info .leader {
    min-height: 1px;
  }
}
@media (max-width: 479px) {
  #membership .leader-block .info .leader {
    margin-top: 0;
  }
}
#membership .leader-block .info .leader a {
  color: white;
}
@media (max-width: 359px) {
  #membership .leader-block {
    padding-bottom: 20px;
  }
  #membership .leader-block .pull-left {
    width: 100%;
  }
  #membership .leader-block .pull-left img {
    display: block;
    margin: 0 auto;
  }
  #membership .leader-block .info {
    width: 100%;
    padding: 30px 10px 0;
    text-align: center;
  }
}
#membership .committee-party {
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 26px;
  margin-top: 50px;
  padding: 10px 0;
}
#membership .altered.col-md-6 {
  width: calc(50% - 2px);
  margin-top: 20px;
  padding-right: 60px;
}
@media (max-width: 991px) {
  #membership .altered.col-md-6 {
    width: 100%;
    padding-left: 30px;
    padding-right: 60px;
  }
}
#membership .altered.col-md-6 + .altered.col-md-6 {
  margin-left: 0px;
  padding-right: 0;
  padding-left: 60px;
  border-left: 1px solid #2f2f2f;
}
@media (max-width: 991px) {
  #membership .altered.col-md-6 + .altered.col-md-6 {
    border-left: 0px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  #membership .col-xs-50 {
    width: 50%;
  }
}
#membership .leader-block .name,
#membership .leader-block .state,
#membership .leader-block .site {
  margin-bottom: 0;
}
#membership .leader-block .name {
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 30px;
}
#membership .leader-block .name a {
  border-bottom: 0px;
  color: white;
}
#membership .leader-block .name a:hover {
  color: #ffff00;
}
#membership .member-block .name,
#membership .member-block .state,
#membership .member-block .site {
  font-size: 16px;
  margin-bottom: 0;
}
#membership .member-block .name {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 20px;
}
#membership .member-block img {
  width: 110px;
}
#membership .member-block .member {
  height: 280px;
  margin-bottom: 0;
}
#membership .member-block .site {
  font-family: 'Lora', serif;
  font-style: italic;
}
#membership .member-block:nth-child(3n) .member-info {
  width: 117px;
  text-align: center;
  float: right;
}
@media (max-width: 479px) {
  #membership .member-block:nth-child(3n) .member-info {
    float: none;
    margin: 0 auto;
  }
}
#membership .member-block:nth-child(3n) .member {
  text-align: right;
}
@media (max-width: 479px) {
  #membership .member-block:nth-child(3n) .member {
    text-align: center;
  }
}
#membership .member-block:nth-child(3n-2) .member-info {
  width: 117px;
  text-align: center;
}
@media (max-width: 479px) {
  #membership .member-block:nth-child(3n-2) .member-info {
    float: none;
    margin: 0 auto;
  }
}
#membership .member-block:nth-child(3n-2) .member {
  text-align: left;
}
@media (max-width: 479px) {
  #membership .member-block:nth-child(3n-2) .member {
    text-align: center;
  }
}
.video-player {
  padding: 0px;
}
.amendment-form {
  padding-top: 30px;
}
.embed-responsive-210by297 {
  padding-bottom: 92.42%;
}
.embed-responsive-210by297:first-child {
  margin-bottom: 50px;
}
.table > tbody > tr > td {
  vertical-align: middle;
  padding: 15px 8px;
  min-width: 100px;
}
.table > tbody > tr.divider > td {
  border-top: 0px;
  padding-top: 40px;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2f2f2f;
}
.vevent .add {
  margin-left: 10px;
  font-family: 'Helvetica Neue LT W01_65 Md';
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 15px;
  position: relative;
  top: 4px;
}
#calendar {
  border: 1px solid #2f2f2f;
}
#calendar td {
  width: 100%;
}
#calendar th {
  background-color: #ffff00;
  background-image: url(/themes/democrats-transportation/images/transtrianglebackwards.png);
  color: #2f2f2f;
  border-color: #2f2f2f;
}
#hearings-page p {
  margin-bottom: 5px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a {
  color: #2f2f2f;
  height: auto;
}
#calendar .fc-toolbar .fc-center h2 {
  color: #2f2f2f;
}
#calendar .fc-toolbar {
  background-color: #fff;
}
#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button,
#calendar .fc-toolbar .fc-left .fc-month-button,
#calendar .fc-toolbar .fc-right .fc-month-button,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button {
  background-color: #2f2f2f !important;
  color: #fff !important;
}
#calendar .fc-toolbar .fc-left .fc-state-active,
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #2f2f2f !important;
}
.jump {
  background-color: #2f2f2f !important;
  padding-top: 10px !important;
}
.jump .glyphicon {
  color: #fff !important;
}
.jump label {
  color: #fff;
}
#calendar {
  margin: 45px 0 0 0;
  background-color: #fff;
  padding: 0 0px 0px 0px;
}
#calendar .fc-state-disabled {
  background-color: #cecece !important;
  color: #2f2f2f !important;
  border: 1px solid #bedae5;
}
#calendar .fc-today {
  background-color: #ffff00;
  border-top: 1px solid #2f2f2f;
  border-left: 1px solid #2f2f2f;
}
#calendar td.fc-day {
  border: 1px solid #331f1f;
}
.calendarFooter .row .col .today {
  color: #ffff00;
}
a.business_meeting:before {
  background-color: #ffff00 !important;
}
.business_meeting.glyphicon {
  color: #ffff00;
}
.contact-address {
  border-bottom: 10px solid #2f2f2f;
  padding: 20px 40px 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.contact-address h4 {
  line-height: 30px;
}
body.newsroom_landing .alt-9 {
  padding-left: 45px;
  border-left: 1px solid #2f2f2f;
  padding-top: 50px;
}
body.newsroom_landing .alt-3 {
  padding-top: 50px;
}
body.newsroom_landing #breadcrumb {
  display: none;
}
body.newsroom_landing .section-header {
  margin-left: -45px !important;
  padding-left: 45px !important;
  transition: 0.2s ease-in padding-left;
}
body.newsroom_landing .section-header a {
  color: white;
}
body.newsroom_landing .section-header:hover {
  padding-left: 70px !important;
}
#pagetools #actions li {
  margin-bottom: 0;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -2px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #2f2f2f;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #11c198;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #252525;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #11c198;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #252525;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser input[type="button"] {
  font-size: 12px !important;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: transparent;
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_71488914';
}
#multimedia-browser .pagination {
  background-color: #252525;
}
#multimedia-browser .row .media-thumbnail a {
  color: #2f2f2f;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #252525;
}
@media (max-width: 990px) {
  #multimedia-browser input[type="button"] {
    font-size: 12px !important;
  }
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new .topvideobg {
  background-color: #2f2f2f;
}
body#multimedia.new #video-content {
  background-color: #2f2f2f;
  padding: 40px 20px;
  position: relative;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0;
  height: 24px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #video-content #social-container .you {
  margin-top: 9px;
}
body#multimedia.new .media-header {
  color: #2f2f2f !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 20px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .multimedia-content {
    text-align: center;
  }
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #252525;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #252525 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #11c198;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser input[type="button"] {
  font-size: 12px !important;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_71488914';
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .status a {
  color: black;
  text-decoration: none;
}
body#multimedia.new #multimedia-browser .status a:hover {
  color: #ff0000;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Helvetica Neue LT W01_41488878';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #252525;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn {
  margin-right: 13px !important;
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .multimedia-tools .date-btn {
    margin-right: 0px !important;
  }
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_41488878';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_41488878';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #2f2f2f;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #2f2f2f;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #ff0000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #ff0000;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #2f2f2f;
  height: 165px;
  overflow: hidden;
  font-family: 'Helvetica Neue LT W01_71488914';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #252525;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_71488914';
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #252525;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #252525;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
  body#multimedia.new #multimedia-browser input[type="button"] {
    font-size: 12px !important;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 42%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 84%;
  }
}
body footer {
  background-color: #252525;
  padding: 15px 0;
}
@media (max-width: 1199px) {
  body footer {
    text-align: center;
  }
  body footer ul.footer-ul {
    float: none !important;
  }
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 30px 35px 20px;
  text-align: center;
  position: relative;
}
body footer .footer-ul.footernav li:after {
  content: "\\";
  float: right;
  position: absolute;
  top: 32px;
  right: 0;
  color: #fff;
}
body footer .footer-ul.footernav li:last-child:after {
  display: none;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Helvetica Neue LT W01_55 Roman';
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #000000;
}
body footer .subfooternav a {
  color: white;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
					padding-right: 10px;*/
}
body:not(#home) footer .socialicons {
  display: inline-block;
  margin-top: 30px;
  padding: 10px;
}
body:not(#home) footer .socialicons .social-list li {
  padding-right: 2px;
  padding-left: 2px;
}
body:not(#home) footer .socialicons .social-list li a {
  width: 40px;
  height: 40px;
  font-size: 24px;
}
body:not(#home) footer .footernav {
  display: inline-block;
  padding: 20px;
}
body:not(#home) footer .footernav li {
  padding-left: 15px;
  padding-right: 20px;
}
body:not(#home) footer .footernav li a {
  font-size: 18px;
}
@media (max-width: 1330px) {
  body:not(#home) footer .footernav li a {
    font-size: 16px;
  }
}
#flagForm #flag-options .head {
  background-color: #252525;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here
font-family:'Helvetica Neue LT W01_71488914';
font-family:'Helvetica Neue LT W01_65 Md';
font-family:'Helvetica Neue LT W01_41488878';
font-family:'Helvetica Neue LT W01_55 Roman';
font-family: 'Lora', serif;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Helvetica Neue LT W01_55 Roman';
}
.medium {
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.sans {
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.bold {
  font-family: 'Helvetica Neue LT W01_71488914';
}
.sans-serif {
  font-family: 'Helvetica Neue LT W01_41488878';
}
.lora {
  font-family: 'Lora', serif;
  font-style: italic;
}
body {
  font-size: 18px;
  font-family: 'Helvetica Neue LT W01_55 Roman';
  max-width: 1500px;
  margin: 0 auto;
  background-color: #f5f5f5;
  position: relative;
}
body.header-box .section-header,
body.newsroom_landing .section-header {
  margin-bottom: 50px;
  margin-left: -115px;
  background-color: #2f2f2f;
  position: relative;
  height: auto;
  padding: 5px;
  text-align: left;
  background-image: url(/themes/democrats-transportation/images/transtrianglebackwards.png);
  display: inline-block;
  font-family: 'Helvetica Neue LT W01_65 Md';
  font-size: 32px;
  color: #fff;
  line-height: 30px;
  padding: 15px 10px 15px 115px;
  box-shadow: 4px 4px 1px #ffff00;
}
body.header-box .section-header:after,
body.newsroom_landing .section-header:after {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: inline-block;
  border-left: 35px solid #2f2f2f;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  right: -35px;
  top: 0;
}
body.header-box .section-header:before,
body.newsroom_landing .section-header:before {
  width: 0;
  height: 0;
  position: absolute;
  content: '';
  display: inline-block;
  border-left: 37px solid #ffff00;
  border-top: 22px solid transparent;
  border-bottom: 32px solid transparent;
  right: -37px;
  top: 14px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #2f2f2f;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #ff0000;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
h2.title a {
  color: #2f2f2f !important;
  border-bottom: 0 !important;
}
h2.title a:hover {
  color: #ff0000 !important;
}
/*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: #252525;
  color: white;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.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: #000000;
  color: #ffff00;
}
#main_column p a {
  border-bottom: 1px solid #2f2f2f;
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
#main_column p a:hover {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
}
#main_column ul li {
  margin-bottom: 10px;
}
#main_column ul li > a:not(.btn) {
  position: relative;
  border-bottom: 1px solid #2f2f2f;
  color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
#main_column ul li > a:not(.btn):hover {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
}
#main_column .issuebody h4 {
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 24px;
  margin-top: 50px;
}
#main_column table a,
#main_column #pagination-container a {
  border-bottom: 0px;
}
bold,
strong {
  font-weight: normal;
  font-family: 'Helvetica Neue LT W01_71488914';
}
/*interior page content default styles */
#content {
  background-color: #fff;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
.parent-element {
  overflow-x: hidden;
  margin-right: -2px;
  height: 400px;
  background-color: #2f2f2f;
  /* slide out to the left */
  /* slide in from the right */
  /* Animations are cool!  */
}
.parent-element #calendar {
  margin-top: 0px;
  border: 0;
  border-radius: 0px;
  background-color: #2f2f2f;
}
.parent-element .calendar {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  margin: 0 auto;
  display: block;
  background-color: #2f2f2f;
  overflow-y: hidden;
}
.parent-element .calendar .circle {
  width: 40px;
  height: 40px;
  background-color: #2f2f2f;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  z-index: 25;
  left: -3px;
  right: 0;
  margin: 0 auto;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
@media (max-width: 1280px) {
  .parent-element .calendar .circle {
    width: 32px;
    height: 32px;
    top: 2px;
  }
}
@media (max-width: 1140px) {
  .parent-element .calendar .circle {
    width: 28px;
    height: 28px;
    top: 2px;
  }
}
.parent-element .calendar .header {
  width: 100%;
  background-color: #2f2f2f;
  font-family: 'Helvetica Neue LT W01_71488914';
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 55px;
}
.parent-element .calendar .header .month {
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 0px;
  padding: 0px;
  font-weight: normal;
  min-height: 1px;
  display: inline-block;
}
.parent-element .calendar .header .year {
  display: none;
}
.parent-element .calendar .header h1 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 50px;
  font-weight: 100;
  letter-spacing: 1px;
}
.parent-element .calendar .legend {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #E9E9E9;
  line-height: 30px;
}
.parent-element .ring-left {
  left: 2em;
  position: absolute;
  margin-top: -8px;
}
.parent-element .ring-right {
  right: 2em;
  position: absolute;
  margin-top: -8px;
}
.parent-element .ring-left,
.parent-element .ring-right {
  display: none;
}
.parent-element .ring-left:after,
.parent-element .ring-right:after,
.parent-element .ring-left:before,
.parent-element .ring-right:before {
  background: #2f2f2f;
  border-radius: 4px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25), 0 -1px 1px rgba(0, 0, 0, 0.2);
  content: "";
  display: inline-block;
  margin: 8px;
  height: 32px;
  width: 8px;
  background-color: #2f2f2f;
}
.parent-element .left,
.parent-element .right {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  top: 50%;
  margin-top: -7.5px;
  cursor: pointer;
}
.parent-element .left {
  border-width: 7.5px 10px 7.5px 0;
  border-color: transparent #FFF transparent transparent;
  left: 20px;
  background-color: #2f2f2f;
}
.parent-element .right {
  border-width: 7.5px 0 7.5px 10px;
  border-color: transparent transparent transparent #FFF;
  right: 20px;
  background-color: #2f2f2f;
}
.parent-element .month {
  /*overflow: hidden;*/
  opacity: 0;
  transition: all 0.3s ease;
  padding: 10px 20px 0 ;
  min-height: 225px;
  color: white;
  font-family: 'Helvetica Neue LT W01_71488914';
  background-color: #2f2f2f;
}
.parent-element .month.new {
  -webkit-animation: fadeIn 1s ease-out;
  opacity: 1;
  background-color: #2f2f2f;
}
.parent-element .month.new .day {
  height: 40px;
}
.parent-element .month.in {
  background-color: #2f2f2f;
}
.parent-element .month.in.next {
  -webkit-animation: moveFromRightFadeMonth 0.3s ease-out;
  -moz-animation: moveFromRightFadeMonth 0.3s ease-out;
  animation: moveFromRightFadeMonth 0.3s ease-out;
  opacity: 1;
  background-color: #2f2f2f;
}
.parent-element .month.in.prev {
  -webkit-animation: moveFromLeftFadeMonth 0.3s ease-out;
  -moz-animation: moveFromLeftFadeMonth 0.3s ease-out;
  animation: moveFromLeftFadeMonth 0.3s ease-out;
  background-color: #2f2f2f;
  opacity: 1;
}
.parent-element .month.out {
  background-color: #2f2f2f;
}
.parent-element .month.out.next {
  -webkit-animation: moveToLeftFadeMonth 0.3s ease-in;
  -moz-animation: moveToLeftFadeMonth 0.3s ease-in;
  animation: moveToLeftFadeMonth 0.3s ease-in;
  opacity: 1;
  background-color: #2f2f2f;
}
.parent-element .month.out.prev {
  -webkit-animation: moveToRightFadeMonth 0.3s ease-in;
  -moz-animation: moveToRightFadeMonth 0.3s ease-in;
  animation: moveToRightFadeMonth 0.3s ease-in;
  background-color: #2f2f2f;
  opacity: 1;
}
.parent-element .week-days {
  padding: 17px 20px 0;
  background-color: #2f2f2f;
  color: gray;
  font-family: 'Helvetica Neue LT W01_71488914';
  font-size: 18px;
  height: 50px;
}
.parent-element .week-days .day {
  cursor: default;
}
.parent-element .week {
  background-color: #2f2f2f;
  /* background: #4A4A4A; */
  color: gray;
  font-family: 'Helvetica Neue LT W01_71488914';
}
.parent-element .week:last-child {
  border-radius: 10px;
  padding-bottom: 15px;
}
.parent-element .day {
  display: inline-block;
  width: -moz-calc(100%/7);
  /* WebKit */
  width: -webkit-calc(100%/7);
  /* Opera */
  width: -o-calc(100%/7);
  /* Standard */
  width: calc(100%/7);
  padding: 0 7px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  height: 40px;
  /* background: #4A4A4A; */
  position: relative;
  z-index: 100;
}
.parent-element .day.no-events .day-number {
  color: white;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.parent-element .day.no-events .circle {
  transform: scale(1) !important;
  background: #2f2f2f !important;
}
.parent-element .day.other .day-number {
  color: gray !important;
}
.parent-element .day.other .circle {
  background-color: #2f2f2f;
  transform: scale(0, 0) !important;
}
.parent-element .day.today .day-number {
  color: #ffff00 !important;
  font-style: bold;
}
.parent-element .day.today .circle {
  background-color: #2f2f2f !important;
  border: 1px solid #ffff00 !important;
}
.parent-element .day .day-events {
  list-style: none;
  margin-top: 3px;
  text-align: center;
  height: 12px;
  line-height: 6px;
  overflow: hidden;
}
.parent-element .day .day-events span {
  vertical-align: top;
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 5px;
  height: 5px;
  line-height: 5px;
  margin: 0 1px;
}
.parent-element .day.has-events .day-number {
  color: #ffff00;
  text-decoration: underline;
}
.parent-element .day-name {
  font-size: 9px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.7px;
}
.parent-element .day-number {
  font-size: 22px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 30;
  top: 5px;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.parent-element gray {
  background: gray !important;
}
.parent-element .orange {
  background: #f7a700;
}
.parent-element .green {
  background: #99c66d;
}
.parent-element .yellow {
  background: #f9e900;
}
.parent-element .pink {
  background: #FF009B;
}
.parent-element .details {
  position: absolute;
  z-index: 200;
  background-color: white;
  color: #2f2f2f;
  margin-top: 5px;
  border-radius: 2px;
  top: 50px;
  left: 0px;
  width: 100%;
}
.parent-element .details a {
  color: gray;
}
.parent-element .details.in {
  -webkit-animation: moveFromTopFade 0.5s ease both;
  -moz-animation: moveFromTopFade 0.5s ease both;
  animation: moveFromTopFade 0.5s ease both;
}
.parent-element .details.out {
  -webkit-animation: moveToTopFade 0.5s ease both;
  -moz-animation: moveToTopFade 0.5s ease both;
  animation: moveToTopFade 0.5s ease both;
}
.parent-element .events {
  padding: 7px 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
}
.parent-element .events .close-details {
  text-align: right;
  color: #ff0000;
}
.parent-element .events.in {
  -webkit-animation: fadeIn 0.3s ease both;
  -moz-animation: fadeIn 0.3s ease both;
  animation: fadeIn 0.3s ease both;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
  height: 300px;
}
.parent-element .details.out .events {
  -webkit-animation: fadeOutShrink 0.4s ease both;
  -moz-animation: fadeOutShink 0.4s ease both;
  animation: fadeOutShink 0.4s ease both;
}
.parent-element .events.out {
  -webkit-animation: fadeOut 0.3s ease both;
  -moz-animation: fadeOut 0.3s ease both;
  animation: fadeOut 0.3s ease both;
}
.parent-element .event {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.5px;
  padding: 2px 16px;
  vertical-align: top;
  font-family: 'Helvetica Neue LT W01_65 Md';
}
.parent-element .event.empty {
  color: #eee;
}
.parent-element .event span {
  display: inline-block;
}
.parent-element .event-category {
  height: 10px;
  width: 10px;
  float: left;
  display: inline-block;
  margin: 8px 0 0;
  vertical-align: top;
}
.parent-element .legend {
  bottom: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #E9E9E9;
  line-height: 30px;
}
.parent-element .entry {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 13px;
  display: inline-block;
  line-height: 30px;
  background: transparent;
}
.parent-element .entry:after {
  position: absolute;
  content: '';
  height: 5px;
  width: 5px;
  top: 12px;
  left: 14px;
}
.parent-element .entrygray:after {
  background: #9ccaeb;
}
.parent-element .entry.orange:after {
  background: #f7a700;
}
.parent-element .entry.green:after {
  background: #99c66d;
}
.parent-element .entry.yellow:after {
  background: #f9e900;
}
@keyframes slideOutLeft {
  to {
    transform: translateX(-200%);
  }
}
@-moz-keyframes slideOutLeft {
  to {
    -moz-transform: translateX(-200%);
  }
}
@-webkit-keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-200%);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(200%);
  }
  to {
    transform: translateX(0);
  }
}
@-moz-keyframes slideInRight {
  from {
    -moz-transform: translateX(200%);
  }
  to {
    -moz-transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
  }
}
@-webkit-keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    height: 0px;
    margin-top: 0px;
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes moveFromTopFade {
  from {
    height: 0px;
    margin-top: 0px;
    -moz-transform: translateY(-100%);
  }
}
@keyframes moveFromTopFade {
  from {
    height: 0px;
    margin-top: 0px;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToTopFade {
  to {
    height: 0px;
    margin-top: 0px;
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes moveToTopFade {
  to {
    height: 0px;
    -moz-transform: translateY(-100%);
  }
}
@keyframes moveToTopFade {
  to {
    height: 0px;
    transform: translateY(-100%);
  }
}
@-webkit-keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(-30%) scale(0.95);
  }
}
@-moz-keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }
}
@keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }
}
@-webkit-keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(30%) scale(0.95);
  }
}
@-moz-keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -moz-transform: translateY(30%);
  }
}
@keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -moz-transform: translateY(30%);
  }
}
@-webkit-keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%) scale(0.95);
  }
}
@-moz-keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%);
  }
}
@keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%);
  }
}
@-webkit-keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.95);
  }
}
@-moz-keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%);
  }
}
@keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%);
  }
}
@-webkit-keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%) scale(0.95);
  }
}
@-moz-keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }
}
@keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }
}
@-webkit-keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%) scale(0.95);
  }
}
@-moz-keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%);
  }
}
@keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%);
  }
}
@-webkit-keyframes moveFromLeftFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.95);
  }
}
@-webkit-keyframes moveFromRightFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-webkit-keyframes moveToRightFadeMonth {
  to {
    opacity: 1;
    -webkit-transform: translateX(200%);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}
@-moz-keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}
@keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}
