/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #6bb4f9;
}
#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 input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  padding: 9px;
  border: 1px solid #1d3968;
  margin-bottom: 14px;
}
#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: #1d3968;
  margin-bottom: 14px;
}
#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: #070d18;
}
body #header {
  width: 100%;
  background-color: transparent;
}
body #header a.logo-hold {
  width: 270px;
  position: absolute;
  display: block;
}
body #header a.logo-hold img {
  width: 100%;
}
.join-us {

    text-align: center;
    margin: 0 auto;
    background-color: white;
    display: table;
    padding: 2rem;
    margin-top: 0px;
    transition: 0.3s ease-in-out margin-top;
    width: 100%;
}

.join-us .join-text {
  font-size: 46px;
  position: relative;
  top: 7px;
}
@media (max-width: 960px) {
  .join-us .join-text {
    font-size: 36px;
  }
}
@media (max-width: 773px) {
  .join-us .join-text {
    margin-bottom: 13px;
    display: block;
  }
}
@media (max-width: 320px) {
  .join-us .join-text {
    font-size: 27px;
  }
}
.join-us.hide-this {
  margin-top: 0px;
}
.join-us.spanish .join-text {
  font-size: 42px;
  position: relative;
  display: inline-block;
  float: left;
  top: 14px;
}
.join-us.spanish .social-list a {
  padding-left: 7px;
}
.join-us.values .social-list a {
  padding-left: 6px;
}
.social-list {
  display: inline-block;
  margin-left: 25px;
}
@media (max-width: 773px) {
  .social-list {
    margin-left: 0px;
  }
}
.social-list a {
  background-color: #6bb4f9;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  display: inline-block;
  color: white;
  padding-top: 5px;
  font-size: 22px;
  text-align: center;
  margin: 0 5px;
}
@media (max-width: 960px) {
  .social-list a {
    margin: 0 8px;
  }
}
@media (max-width: 479px) {
  .social-list a {
    height: 33px;
    width: 33px;
    padding-top: 6px;
    font-size: 16px;
    margin: 0px 3px;
  }
}
.social-list a:hover {
  background-color: #1d3968;
  color: white;
}
.nav-hold {
  background-color: #1d3968;
  width: 100%;
  padding: 2px 0px;
  /*border-bottom: 10px solid white;*/
}
.nav-hold .left a {
  color: #6bb4f9;
}
.nav-hold .navbar {
  width: 100% !important;
  position: relative;
  top: 4px;
}
.nav-hold a {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .nav-hold a {
    font-size: 25px;
  }
}
.nav-hold .nav-pills {
  right: 0 !important;
}
.nav-hold .nav-pills > li + li:before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 20px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 6px;
}
@media (max-width: 1150px) {
  .nav-hold .nav-pills > li + li:before {
    top: 8px;
    height: 23px;
  }
}
.nav-hold .nav-pills > li a {
  padding: 0 15px;
  position: relative;
}
.nav-hold .nav-pills > li:hover a,
.nav-hold .nav-pills > li .selected a {
  color: #1d3968;
  background-color: white;
  border-radius: 0;
}
.nav-hold .nav-pills > li:hover:before,
.nav-hold .nav-pills > li .selected:before {
  left: -3px;
  top: 0px;
  height: 31px;
}
@media (max-width: 1240px) {
  .nav-hold .nav-pills > li:hover:before,
  .nav-hold .nav-pills > li .selected:before {
    height: 27px;
  }
}
.nav-hold .nav-pills > li:hover:after,
.nav-hold .nav-pills > li .selected:after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 31px;
  background-color: white;
  position: absolute;
  right: -3px;
  top: 0px;
}
@media (max-width: 1240px) {
  .nav-hold .nav-pills > li:hover:after,
  .nav-hold .nav-pills > li .selected:after {
    height: 27px;
  }
}
.nav-hold .nav-pills > li:last-child:hover a,
.nav-hold .nav-pills > li:last-child .selected a {
  color: #1d3968;
  background-color: white;
  border-radius: 0;
}
.nav-hold .nav-pills > li:last-child:hover:before,
.nav-hold .nav-pills > li:last-child .selected:before {
  left: 0px;
  top: 6px;
  height: 20px;
}
.nav-hold .nav-pills > li:last-child:hover:after,
.nav-hold .nav-pills > li:last-child .selected:after {
  content: '';
  display: none;
  width: 3px;
  height: 31px;
  background-color: white;
  position: absolute;
  right: -3px;
  top: 0px;
}
.nav-hold .srchbutton {
  top: -5px;
  display: none;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  /* float: right; */
  text-align: center;
}
body#home .nav-hold .nav-pills li + li:before {
  width: 4px;
  height: 26px;
  top: 9px;
}
@media (max-width: 1040px) {
  body#home .nav-hold .nav-pills li + li:before {
    top: 6px;
    height: 21px;
  }
}
body#home .nav-hold .nav-pills > li:hover:before,
body#home .nav-hold .nav-pills > li.selected:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 5px;
  height: 42px;
  top: 0px;
  left: -4px;
}
@media (max-width: 1040px) {
  body#home .nav-hold .nav-pills > li:hover:before,
  body#home .nav-hold .nav-pills > li.selected:before {
    top: 0px;
    height: 30px;
  }
}
body#home .nav-hold .nav-pills > li:hover:after,
body#home .nav-hold .nav-pills > li.selected:after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 42px;
  background-color: white;
  position: absolute;
  right: -4px;
  top: 0px;
}
@media (max-width: 1040px) {
  body#home .nav-hold .nav-pills > li:hover:after,
  body#home .nav-hold .nav-pills > li.selected:after {
    top: 0px;
    height: 30px;
  }
}
body#home .banner.new{
  position: relative;
  padding-top: 50%;
  height: 0;
  display: table;
}

body#home .banner .bannertext{
  display: block;
  width: 100%;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  line-height: 1;
}

body#home .banner .bannertext .text{
  font-size: 74px;
    color: white;
    font-family: 'proxima-nova', sans-serif;
    font-style: normal;
    font-weight: 800;
}

@media(max-width:767px){
  body#home .banner .bannertext .text{
    font-size: 46px;
      
  }
}

@media(max-width:500px){
  body#home .banner .bannertext{
    padding: 2.5rem;
    bottom: 0rem;
  }

  body#home .banner .bannertext .text{
    font-size: 28px;
      
  }

}

body#home .banner .bannerhompage{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/themes/democrats/images/newhomebanner.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

body#home .join-us {
  margin-top: 0px;
}
@media (max-width: 1040px) {
  body#home .nav-hold a {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  body#home #header .nav-hold.right-slide-search,
  body#home #header .nav-hold.right-search-modal {
    padding: 10px 35px;
  }
}
@media (max-width: 320px) {
  body#home #header .nav-hold.right-slide-search,
  body#home #header .nav-hold.right-search-modal {
    padding: 10px 30px;
  }
}
body#home #header .nav-hold.right-slide-search .togglemenu,
body#home #header .nav-hold.right-search-modal .togglemenu {
  font-size: 30px;
  float: right;
}
body#home #header .nav-hold.right-slide-search .srchbuttonmodal,
body#home #header .nav-hold.right-search-modal .srchbuttonmodal {
  font-size: 25px;
}
@media (max-width: 1040px) {
  body#home #header .nav-hold.right-slide-search .srchbuttonmodal,
  body#home #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 19px !important;
  }
}
@media (max-width: 991px) {
  body#home #header .nav-hold.right-slide-search .srchbuttonmodal,
  body#home #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 24px !important;
    top: 3px;
  }
}
@media (max-width: 991px) {
  body#home #header .nav-hold.right-slide-search .navbar,
  body#home #header .nav-hold.right-search-modal .navbar {
    width: auto !important;
    float: right;
  }
}
.mobile-logo {
  display: none;
  float: left;
}
@media (max-width: 991px) {
  .mobile-logo {
    display: inline-block;
  }
}
.mobile-logo a {
  font-size: 18px;
  line-height: 23px;
  color: white !important;
}
.mobile-logo a img {
  max-width: 50px;
  margin-right: 12px;
}
.mobile-logo .lora {
  text-transform: capitalize;
  font-size: 29px;
}
.mobile-logo .medium {
  position: relative;
  left: -4px;
  font-size: 19px;
}
body:not(#home) .navbar {
  text-align: right;
}
body:not(#home) .share-icon {
  margin-left: 18px;
  position: relative;
  top: -4px;
  cursor: pointer;
}
body:not(#home) #header {
  border-bottom: 10px solid white;
  background-color: #1d3968;
}
body:not(#home) .nav-hold {
  border-bottom: 0px;
  padding: 13px 0px !important;
  max-height: 83px;
}
body:not(#home) .nav-hold a {
  font-size: 22px;
  white-space: nowrap !important;
}
@media (max-width: 1240px) {
  body:not(#home) .nav-hold a {
    font-size: 19px;
  }
}
body:not(#home) .nav-hold .navbar .nav-pills > li:last-child .dropdown-menu {
  left: auto;
  right: -4px;
}
body:not(#home) .nav-hold .navbar {
  width: auto !important;
  float: right;
  margin-top: 6px;
}
@media (max-width: 1150px) {
  body:not(#home) .nav-hold .nav-pills > li + li:before {
    top: 5px;
    height: 18px;
  }
}
body:not(#home) .nav-hold .nav-pills > li:hover:before {
  top: 0px;
}
@media (max-width: 1150px) {
  body:not(#home) .nav-hold .nav-pills > li:hover:before {
    height: 27px;
  }
}
@media (max-width: 1150px) {
  body:not(#home) .nav-hold .nav-pills > li:hover:after {
    height: 27px;
  }
}
@media (max-width: 1150px) {
  body:not(#home) .nav-hold .nav-pills > li .dropdown-menu {
    top: 94%;
  }
}
body:not(#home) .nav-hold .nav-pills > li:first-child .dropdown-menu {
  min-width: calc(100% + 3px);
}
body:not(#home) .nav-hold .nav-pills > li:last-child:hover:before {
  top: 6px !important;
}
body:not(#home) .nav-hold .left {
  position: relative;
  top: 3px;
}
body:not(#home) .nav-hold .left a {
  font-size: 18px;
  line-height: 23px;
  color: white;
  display: inline-block;
}
body:not(#home) .nav-hold .left a img {
  max-width: 50px;
  margin-right: 12px;
}
@media (max-width: 320px) {
  body:not(#home) .nav-hold .left a img {
    max-width: 45px;
    margin-right: 5px;
  }
}
body:not(#home) .nav-hold .left .lora {
  text-transform: capitalize;
  font-size: 29px;
}
@media (max-width: 320px) {
  body:not(#home) .nav-hold .left .lora {
    font-size: 26px;
  }
}
body:not(#home) .nav-hold .left .medium {
  position: relative;
  left: -4px;
}
@media (max-width: 320px) {
  body:not(#home) .nav-hold .left .medium {
    font-size: 16px;
  }
}
body:not(#home) #header .container {
  position: relative;
}
#search-sections-container li.checkbox {
  display: block;
  color: #333;
  font-size: 21px;
}
#search-sections-container li.checkbox input {
  margin-right: 10px;
}
#search-sections-container #site-sections-list {
  column-count: 2;
}
#SearchModal .modal-dialog .modal-content .modal-body #advanced-search-btn {
  color: white !important;
  width: 100%;
  font-size: 20px;
  padding: 15px;
  margin-top: 10px;
}
#SearchModal .modal-dialog .modal-content .modal-body #advanced-search-btn:hover {
  background-color: #1d3968;
}
body.stripey-header .stripey-header {
  height: 175px;
  display: inline-block;
  width: 100%;
  background-image: url(/themes/democrats/images/eagle-logo-clear.png);
  position: relative;
  top: -10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 284px;
  background-position: top right;
  background-position-y: 17px;
  background-position-x: 96%;
}
body.stripey-header .stripey-header:before {
  position: relative;
  background-image: url(/themes/democrats/images/pattern.png);
  width: 100%;
  height: 100%;
  content: '';
  display: inline-block;
  top: 0px;
}
body.stripey-header #content {
  margin-top: -142px;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
}
body .navbar .nav-pills > li:last-child .dropdown-menu {
  left: auto;
  right: -4px;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #333;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #6bb4f9;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
  color: #6bb4f9;
}
body .navbar .nav-pills > li:hover a {
  color: #1d3968;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
  font-size: 18px !important;
  position: relative;
  top: -9px;
  right: -13px;
  padding-left: 22px;
  display: inline-block !important;
}
@media (max-width: 1200px) {
  body .navbar .srchbuttonmodal {
    top: -1px;
    padding-right: 17px;
  }
}
body .navbar .srchbuttonmodal:before {
  display: inline-block;
  width: 3px;
  content: '';
  height: 20px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 3px;
}
@media (max-width: 1200px) {
  body .navbar .srchbuttonmodal:before {
    display: none;
  }
}
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 {
  /*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 .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body#home .navbar .srchbuttonmodal {
  top: -12px;
  font-size: 22px !important;
  margin-left: -18px;
}
@media (max-width: 1200px) {
  body#home .navbar .srchbuttonmodal {
    top: -7px;
  }
}
body#home .navbar .srchbuttonmodal:before {
  display: inline-block;
  width: 4px;
  content: '';
  height: 25px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (max-width: 1040px) {
  body#home .navbar .srchbuttonmodal:before {
    height: 20px;
  }
}
@media (max-width: 991px) {
  body#home .navbar .srchbuttonmodal:before {
    display: none;
  }
}
#SearchModal .fade.in.modal-backdrop {
  bottom: -20px;
  height: 100vh !important;
}
#NavMobileModal,
#SearchModal {
  border: 10px solid #e11100;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in {
  background-color: white !important;
  background-image: none !important;
  border: 10px solid #e11100;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header,
#SearchModal .modal-dialog .modal-content .modal-header {
  border-bottom: 0px !important;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body,
#SearchModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a {
  color: #1d3968 !important;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:first-child > a,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li:first-child > a {
  margin-top: 0px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-size: 36px !important;
  font-size: 45px;
  margin-top: 30px;
  line-height: 38px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: -8px 0 40px 0;
  padding: 0;
  position: relative;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
  font-size: 22px !important;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a,
#SearchModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  white-space: unset;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover,
#SearchModal .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: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#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: 15px;
  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;
}
#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;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: white;
  top: 94%;
  border: 0px;
  left: -3px;
  padding: 10px 0px;
  min-width: calc(100% + 6px);
}
@media (max-width: 1240px) {
  body .navbar .nav-pills > li .dropdown-menu {
    top: 90%;
  }
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #1d3968;
  height: auto;
  font-size: 18px !important;
  white-space: normal;
  padding: 2px 4px !important;
}
body .navbar .nav-pills > li .dropdown-menu li + li {
  border-left: 0px !important;
}
body .navbar .nav-pills > li:first-child .dropdown-menu {
  left: 0px;
  min-width: calc(100% + 4px);
}
body .navbar .nav-pills > li:last-child .dropdown-menu {
  min-width: calc(100% + 4px);
}
body#home .navbar .nav-pills > li .dropdown-menu {
  left: -4px;
  min-width: calc(100% + 8px);
}
.banner {
  height: 440px;
  height: 520px;
  background-color: #59b6fc;
  display: inline-block;
  width: 100%;
}
@media (max-width: 1422px) {
  .banner {
    height: 480px;
  }
}
@media (max-width: 1328px) {
  .banner {
    height: 440px;
  }
}
@media (max-width: 1145px) {
  .banner {
    height: 435px;
  }
}
@media (max-width: 1140px) {
  .banner {
    height: 410px;
  }
}
@media (max-width: 1067px) {
  .banner {
    height: 385px;
  }
}
@media (max-width: 1013px) {
  .banner {
    height: 356px;
  }
}
@media (max-width: 973px) {
  .banner {
    height: 336px;
  }
}
@media (max-width: 910px) {
  .banner {
    height: 305px;
  }
}
@media (max-width: 870px) {
  .banner {
    height: auto;
    display: inline-block;
  }
}
.banner .left {
  display: inline-block;
  background-color: #59b6fc;
  color: white;
  height: 100%;
  line-height: 50px;
  text-align: center;
  padding: 50px;
  width: 32%;
  background-position: center center;
}
@media (max-width: 1432px) {
  .banner .left {
    width: 32.5%;
  }
}
@media (max-width: 1328px) {
  .banner .left {
    width: 32.5%;
  }
}
@media (max-width: 1232px) {
  .banner .left {
    width: 29%;
  }
}
@media (max-width: 1145px) {
  .banner .left {
    line-height: 39px;
  }
}
@media (max-width: 870px) {
  .banner .left {
    display: none;
  }
}
.banner .left img {
  max-width: 90px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1140px) {
  .banner .left img {
    max-width: 65px;
  }
}
.banner .left .lora {
  font-size: 112px;
  position: relative;
  left: 14px;
}
@media (max-width: 1230px) {
  .banner .left .lora {
    font-size: 87px;
    left: 2px;
  }
}
@media (max-width: 1145px) {
  .banner .left .lora {
    font-size: 75px;
  }
}
.banner .left .medium {
  font-size: 73px;
  text-transform: uppercase;
}
@media (max-width: 1230px) {
  .banner .left .medium {
    font-size: 57px;
  }
}
@media (max-width: 1145px) {
  .banner .left .medium {
    font-size: 49px;
  }
}
.banner .left .table-display {
  height: 100%;
  width: 100%;
}
.banner .right {
  height: 100%;
  display: inline-block;
  border-left: 10px solid white;
}
@media (max-width: 870px) {
  .banner .right {
    height: auto;
    border-left: 0px;
    width: 100%;
  }
}
.banner .right img {
  height: 100%;
}
@media (max-width: 870px) {
  .banner .right img {
    height: auto;
    width: 100%;
  }
}
.find-senator {
  border-top: 0!important;
  border-bottom: 0!important;
  padding: 10px;
  background-size: cover;
  padding-left: 50px;
  position: relative;
  padding-right: 50px;
}

.find-senator .medium{
  font-size: 52px;
  text-transform: uppercase;
  color: white;
}

.whatwe{

  font-size: 44px;
  color: #6bb4f9;
  padding-top: 4rem;

}

.newheader{
  font-size: 44px;
  color: #6bb4f9;
}

.learnleadership{
  position: relative;
  padding-top: 35%;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 7rem;
}

@media(max-width:991px){
  
.learnleadership{
  padding-top: 45%;
}
}

@media(max-width:600px){
  
  .learnleadership{
    padding-top: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 0px;
  }

}
  

.learnleadership .bannerforthis{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url('/themes/democrats/images/bottomsenators.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.learnleadership .buttonarea{
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: table;
}

.learnleadership .buttonarea .learnbutton{
  font-size: 28px;
  word-break: break-word;
  display: block;
  padding: 2rem;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  font-family: 'proxima-nova', sans-serif;
  background-color: #6bb4f9;
  white-space: normal;
} 



@media(max-width:600px){

  .learnleadership .bannerforthis{
    background-position: top center;
    width: 100%;
    height: 300px;
    top: 0;
    left: 0;
    position: relative;
    display: block;
  }
  
  .learnleadership .buttonarea{
    position: relative;
    bottom: 0rem;
    max-width: 100%;
  }

  .learnleadership .buttonarea .learnbutton{
    font-size: 22px;
  }
}

@media(max-width:540px){

  .learnleadership .bannerforthis{
    height: 260px;
  }

}

@media(max-width:480px){
  
  .learnleadership .bannerforthis{
    height: 240px;
  }

}


@media(max-width:320px){
  
  .learnleadership .bannerforthis{
    height: 200px;
  }

}

.standfor{
  color: #1e3968;
  text-align: center;
  font-size: 22px;
  width: 100%;
  line-height: 1.2;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}


@media (max-width: 600px){
  .standfor{
    padding: 5px 2rem;
  }
}


@media (max-width: 910px) {
  .find-senator .medium {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 515px) {
  .find-senator .medium {
    font-size: 42px;
  }
}
@media (max-width: 435px) {
  .find-senator .medium {
    font-size: 36px;
  }
}


.find-senator .medium:after {
 display: none;
}


.find-senator.new {
  display: table;
  width: 100%;
  background-color: #1e3968;
  vertical-align: middle;
}

.find-senator.new .textholder {
  display: table-cell;
  vertical-align: middle;
}


.find-senator.new .medium{
  font-size: 36px;
  padding-right: 2rem;
  color: white;
}

.find-senator.new .search-container{
  position: relative;
  margin-left: 0px;
  top: 26px;
  right: 0px;
  display: inline-block;
  top: -8px;
}

.find-senator.new .socialmedia{
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

@media (max-width: 991px) {
  .find-senator.new .textholder{
    display: block;

    text-align: center;
  }
  
  .find-senator.new .socialmedia{
    display: block;

    text-align: center;
    padding: 2rem 0;
  }

  .find-senator.new .medium{
    
    padding-right: 0rem;
  
  }
  
  }
  @media (max-width: 600px) {
    .find-senator.new {
      padding-left: 0;
      padding-right: 0;
    }
  }
.home-button {
  height: 200px;
  display: inline-block;
  width: 100%;
  margin-bottom: -7px;
}
@media (max-width: 960px) {
  .home-button {
    height: 145px;
  }
}
.home-button .rowd,
.home-button .col-sm-6 {
  height: 100%;
  padding: 0;
  transition: 0.3s background-color ease-in-out;
}
.home-button .big-button {
  text-align: center;
  font-size: 73px;
  width: 100%;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  height: 100%;
}
@media (max-width: 1200px) {
  .home-button .big-button {
    font-size: 60px;
  }
}
@media (max-width: 960px) {
  .home-button .big-button {
    font-size: 48px;
  }
}
.home-button .big-button .col-sm-6 {
  height: 100%;
}
.home-button .big-button .col-sm-6 .table-display {
  height: 100%;
}
.home-button .big-button span {
  transition: 0.3s all ease-in-out;
}
.home-button .image-side {
  height: 100%;
  background-size: cover;
  padding: 0;
  position: relative;
  background-position: center;
}
.home-button .image-side:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1d3968;
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
}
.home-button .image-side.light:before {
  background-color: #6bb4f9;
}
.home-button:hover .image-side:before {
  opacity: 0;
}
.home-button:hover .big-button .darkblue {
  color: white;
  background-color: #1d3968;
}
.home-button:hover .big-button .lightblue {
  color: white;
  background-color: #6bb4f9;
}
.home-button:hover .rowd {
  background-color: #1d3968;
}
.home-button:nth-child(even):hover .rowd {
  background-color: #6bb4f9;
}
.mobile-services .home-button .big-button span {
  color: white;
}
.mobile-services .home-button .big-button {
  position: relative;
}
@media (max-width: 400px) {
  .mobile-services .home-button .big-button {
    font-size: 36px;
  }
}
.img-feature {
  width: 100%;
  display: inline-block;
  border-top: 10px solid white !important;
}
.img-feature img {
  width: 100%;
  display: inline-block;
}
.twitter-area {
  width: 100%;
  border-top: 10px solid white;
  border-bottom: 10px solid white;
}
.twitter-area .twitter-bird {
  font-size: 70px;
  width: 140px;
  display: inline-block;
  text-align: center;
  padding: 2px;
  color: #6bb4f9;
}
@media (max-width: 920px) {
  .twitter-area .twitter-bird {
    display: block;
    margin: 0 auto;
  }
}
.twitter-area .twitter-bird:hover {
  color: #114e88;
}
.twitter-area #twitter {
  display: inline-block;
  width: calc(100% - 150px);
  float: right;
}
@media (max-width: 920px) {
  .twitter-area #twitter {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 773px) {
  .twitter-area #twitter {
    width: 100%;
    padding: 10px 30px;
  }
}
.twitter-area #twitter .item {
  width: 33%;
  display: inline-block;
  height: 120px;
  background-color: #EAE8EC;
  position: relative;
  padding: 6px 20px 10px;
}
@media (max-width: 920px) {
  .twitter-area #twitter .item {
    height: 150px;
  }
}
@media (max-width: 773px) {
  .twitter-area #twitter .item {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
.twitter-area #twitter .item .handle {
  color: #6bb4f9;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
}
.twitter-area #twitter .item .tweet {
  text-overflow: ellipsis;
  overflow-y: hidden;
  height: 80%;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}
.twitter-area #twitter .item .tweet a {
  color: #1d3968;
}
.twitter-area #twitter .item .tweet a:hover {
  color: #6bb4f9;
}
.twitter-area #twitter .item span[data-scribe="element:name"],
.twitter-area #twitter .item img[data-scribe="element:avatar"],
.twitter-area #twitter .item span[data-scribe="element:verified_badge"] {
  display: none;
}
.twitter-area #twitter .item .fa-twitter {
  position: absolute;
  right: 8px;
  color: white;
  bottom: 10px;
}
.twitter-area #twitter .item + .item {
  border-left: 10px solid white;
}
@media (max-width: 773px) {
  .twitter-area #twitter .item + .item {
    border-left: 0px;
  }
}
.twitter-area #twitter .user {
  display: inline-block;
}
.twitter-area #twitter div[data-scribe="component:author"] {
  display: inline-block;
}
.twitter-area #twitter div[data-scribe="component:author"] a {
  color: #6bb4f9;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
}
.twitter-area #twitter .fa-retweet {
  color: #1d3968;
  font-size: 14px;
  margin-left: 3px;
}
.red-line {
  clear: both;
  background-color: #e11100;
  width: 60%;
  margin: 60px auto 60px;
  border-color: #e11100;
  border-top: 5px solid #e11100;
}
.leadership.lora {
  font-size: 35px;
  color: #6bb4f9;
}
.member-list {
  padding: 20px 40px;
  text-align: center;
  font-size: 22px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .member-list {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .member-list {
    font-size: 18px;
    color: white;
  }
}
@media (max-width: 670px) {
  .member-list {
    font-size: 15px;
    color: white;
    line-height: 26px;
  }
}
.member-list .medium {
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .member-list .medium {
    color: #1d3968;
  }
}
.member-list .leader {
  margin-right: -2px;
}
@media (max-width: 767px) {
  .member-list .leader {
    display: block;
    min-height: auto;
    color: white;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .member-list .lora {
    color: #1d3968;
  }
}
.member-list a {
  color: #1d3968;
}
.member-list a:hover {
  color: #6bb4f9;
}


@media(max-width:767px){
  .member-list .leader .sentitle{
    display: block;
  }
}

.search-container {
  position: absolute;
  margin-left: -120px;
  top: 26px;
  right: 50px;
}
@media (max-width: 910px) {
  .search-container {
    right: 30%;
    top: 95px;
  }
}
@media (max-width: 810px) {
  .search-container {
    right: 29%;
    top: 95px;
  }
}
@media (max-width: 710px) {
  .search-container {
    right: 26%;
    top: 95px;
  }
}
@media (max-width: 610px) {
  .search-container {
    right: 22%;
    top: 95px;
  }
}
@media (max-width: 530px) {
  .search-container {
    right: 18%;
    top: 95px;
  }
}
@media (max-width: 515px) {
  .search-container {
    right: 17%;
    top: 81px;
  }
}
@media (max-width: 460px) {
  .search-container {
    right: 13%;
    top: 81px;
  }
}
@media (max-width: 448px) {
  .search-container {
    right: 10%;
    top: 81px;
  }
}
@media (max-width: 435px) {
  .search-container {
    top: 75px;
  }
}
@media (max-width: 410px) {
  .search-container {
    right: 7%;
  }
}
@media (max-width: 386px) {
  .search-container {
    top: 128px;
    right: 4%;
  }
}
@media (max-width: 360px) {
  .search-container {
    top: 128px;
    right: 10%;
  }
}
@media (max-width: 320px) {
  .search-container {
    top: 128px;
    right: 7%;
  }
}
.search-container .search-button {
  display: inline-block;
  background: white;
  padding: 8px 12px 7px;
  color: #cccccc;
  margin-right: -6px;
}
.result,
.search-bar {
  text-rendering: optimizelegibility;
  width: 300px;
  font-size: 20px;
  padding: 6px;
  border-radius: 2px;
  outline: none;
  letter-spacing: 0.6px;
  border: 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  position: relative;
  top: 2px;
}
@media (max-width: 360px) {
  .result,
  .search-bar {
    width: 240px;
  }
}
.search-bar {
 /* border: 1px solid transparent;*/
  position: absolute;
  background: transparent;
  color: #666;
  top: 0;
  left: 39px;
  text-transform: capitalize;
}
.search-bar::-webkit-input-placeholder {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.search-bar::-moz-placeholder {
  /* Firefox 19+ */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.search-bar:-ms-input-placeholder {
  /* IE 10+ */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.search-bar:-moz-placeholder {
  /* Firefox 18- */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.result {
  color: #cccccc;
}
.result::-webkit-input-placeholder {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.result::-moz-placeholder {
  /* Firefox 19+ */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.result:-ms-input-placeholder {
  /* IE 10+ */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.result:-moz-placeholder {
  /* Firefox 18- */
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #cccccc;
  font-size: 18px;
}
.helper-text {
  position: absolute;
  right: 0;
  color: white;
  font-size: 13px;
  display: none;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.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;
}
@media (max-width: 774px) {
  body {
    margin: 1px;
  }
}
@media (max-width: 773px) {
  body {
    margin: 0;
  }
}
body.no-title .main_page_title {
  display: none;
}
.main_page_title {
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 32px;
  color: #333;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
.quick-nav {
  margin-top: 30px;
}
.quick-nav li a:hover {
  background-color: white;
  color: #333;
  border-left: 5px solid #e11100;
}
#newsroom .main_page_title {
  color: #1d3968;
}
#browser_table td a {
  color: #1d3968;
}
#browser_table td a:hover {
  color: #6bb4f9;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #1d3968 !important;
}
#breadcrumb a {
  color: #cccccc;
  text-transform: uppercase;
  font-weight: bold;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
#breadcrumb a:hover {
  color: #6bb4f9;
}
.alert {
  background-color: #6bb4f9;
  color: white;
  border-radius: 0px;
}
.alert .headline {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
.alert .headline a {
  color: white;
}
#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: #6bb4f9;
  color: white;
  margin-top: 30px;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  background-color: transparent;
  color: #e11100;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #1d3968;
}
body#countdown h1.biggest {
  font-size: 100px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  body#countdown h1.biggest {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  body#countdown h1.biggest {
    font-size: 60px;
    margin-bottom: 40px;
  }
}
@media (max-width: 550px) {
  body#countdown h1.biggest {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  body#countdown h1.biggest {
    font-size: 36px;
  }
}
body#countdown .main_page_title {
  display: none;
}
body#countdown #content {
  text-align: center;
}
body#countdown #sam-main,
body#countdown #sam-main-future {
  border-top: 20px solid white;
  background: aliceblue;
  display: inline-block;
}
body#countdown #sam-main h3,
body#countdown #sam-main-future h3 {
  line-height: 36px;
}
body#countdown #sam-main .col-md-6:last-child,
body#countdown #sam-main-future .col-md-6:last-child {
  padding: 0px;
  border-left: 20px solid white;
}
body#countdown #sam-main .highlight,
body#countdown #sam-main-future .highlight {
  background-color: white;
  color: #333;
  border-bottom: 2px solid #e11100;
}
body#countdown #sam-main {
  padding: 20px;
}
body#countdown #sam-main-future {
  background: black;
}
body#countdown #sam-main-future .col-sm-6:first-child {
  background-color: aliceblue;
  border-right: 20px solid white;
  padding: 15px;
}
body#countdown #sam-main-future .col-sm-6:last-child {
  padding: 0px;
  border-left: 0px solid white;
}
body#countdown .countdown-body {
  background-image: url(/themes/democrats/images/pattern.png);
  padding: 50px;
}
@media (max-width: 420px) {
  body#countdown .countdown-body {
    padding: 20px;
  }
}
body#countdown .countdown-body .flip-clock-wrapper {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px;
}
@media (max-width: 990px) {
  body#countdown .countdown-body .flip-clock-wrapper {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    margin: 0 -80px;
  }
}
@media (max-width: 715px) {
  body#countdown .countdown-body .flip-clock-wrapper {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    margin: 0 -200px;
  }
}
@media (max-width: 470px) {
  body#countdown .countdown-body .flip-clock-wrapper {
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
    margin: 0 -250px;
  }
}
body.redline-header .main_page_title {
  padding-bottom: 10px;
  border-bottom: 5px solid #e11100;
  margin-top: 45px;
  margin-bottom: 30px;
}
body.redline-header #filterbuttons {
  display: block;
  float: right;
  top: 46px;
}
body.redline-header #filterbuttons .feed-icon {
  padding: 0px;
  float: none;
  background-color: #6bb4f9;
  color: white;
  display: inline-block;
  height: 32px;
  width: 32px;
  text-align: center;
  border-radius: 32px;
  padding-top: 4px;
  font-size: 14px;
  position: relative;
  top: -30px;
}
body.redline-header #filterbuttons .feed-icon:hover {
  background-color: #1d3968;
}
.listing-jump {
  color: #cccccc;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
}
body:not(#home) .container {
  max-width: 1170px;
}
@media (max-width: 1240px) {
  body:not(#home) #header .container {
    width: 100%;
    padding: 0 40px;
    margin: 0;
  }
}
@media (max-width: 479px) {
  body#about td,
  body#better-deal td {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}
body#about .bigger,
body#better-deal .bigger {
  font-size: 28px;
  display: block;
  margin-bottom: 37px;
  text-align: center;
  line-height: 43px;
}
body#about .no-margin,
body#better-deal .no-margin {
  margin-top: 0;
}
body#about .littler,
body#better-deal .littler {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  body#about .littler,
  body#better-deal .littler {
    max-width: 100%;
  }
}
body#about h3,
body#better-deal h3 {
  font-family: 'Avenir LT W01_45 Book1475508';
}
body#about table.breakout,
body#better-deal table.breakout {
  background-color: #f0f8ff;
  margin-top: 80px;
  position: relative;
}
body#about table.breakout .bigger,
body#better-deal table.breakout .bigger {
  margin-top: 30px;
}
body#about table.breakout td,
body#better-deal table.breakout td {
  padding: 40px 0px;
}
body#about table.breakout:before,
body#better-deal table.breakout:before {
  background-color: #f0f8ff;
  position: absolute;
  width: 3000px;
  height: 100%;
  left: -2000px;
  top: 0px;
  content: '';
  display: inline-block;
  z-index: -1;
}
body#about table.breakout:after,
body#better-deal table.breakout:after {
  background-color: #f0f8ff;
  position: absolute;
  width: 3000px;
  height: 100%;
  right: -2000px;
  top: 0px;
  content: '';
  display: inline-block;
  z-index: -1;
}
body#better-deal {
  /* breaks SAM save buttons yo -> #content{
		overflow: hidden;
	}*/
}
body#better-deal .outerbreakout {
  position: relative;
  text-align: center;
  background-color: #f0f8ff;
  width: 200%;
  left: -50%;
  margin-bottom: 60px;
}
body#better-deal .outerbreakout .breakout {
  background-color: #f0f8ff;
  width: 50%;
  max-width: 1170px;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
body#better-deal .outerbreakout .insidebreakout {
  display: table;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 60px 0px;
}
@media (max-width: 991px) {
  body#better-deal .outerbreakout .insidebreakout {
    display: block;
  }
}
body#better-deal .outerbreakout .insidebreakout .image {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 991px) {
  body#better-deal .outerbreakout .insidebreakout .image {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  body#better-deal .outerbreakout .insidebreakout .image img {
    float: none!important;
    width: 100%;
    max-width: 600px;
    margin: 20px 0px!important;
  }
}
body#better-deal .outerbreakout .insidebreakout .text-center {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 991px) {
  body#better-deal .outerbreakout .insidebreakout .text-center {
    max-width: 100% !important;
    width: 100%;
  }
}
body#better-deal .outerbreakout .insidebreakout .text-center p .bigger {
  margin-top: 0px;
}
body#better-deal .bottomcirclearea {
  padding: 50px;
  max-width: 630px;
  margin: 0 auto;
}
body#better-deal .bottomcirclearea .circlearea {
  position: relative;
  display: table;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  body#better-deal .bottomcirclearea .circlearea {
    display: block;
    padding-bottom: 20px;
  }
}
body#better-deal .bottomcirclearea .circlearea .circleimage {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 767px) {
  body#better-deal .bottomcirclearea .circlearea .circleimage {
    display: block;
    width: 100%;
    text-align: center;
  }
}
body#better-deal .bottomcirclearea .circlearea .circleimage img {
  width: 95px;
}
@media (max-width: 767px) {
  body#better-deal .bottomcirclearea .circlearea .circleimage img {
    float: none!important;
  }
}
body#better-deal .bottomcirclearea .circlearea .textforcircle {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  body#better-deal .bottomcirclearea .circlearea .textforcircle {
    display: block;
  }
}
body#better-deal .bottomcirclearea .circlearea .textforcircle h3 {
  margin-top: 0px;
  font-size: 26px;
  line-height: 36px;
}
body#better-deal .bigger {
  margin-top: 0px;
}
body#better-deal .littler {
  max-width: 80%;
}
body#values .values-top,
body#values .values-bottom {
  background-color: #F0F8FF;
  font-size: 22px;
  padding: 45px 68px 11px;
}
@media (max-width: 520px) {
  body#values .values-top,
  body#values .values-bottom {
    padding: 15px 28px 11px;
  }
}
body#values .values-top p,
body#values .values-bottom p {
  font-size: 22px;
  line-height: 38px;
}
@media (max-width: 767px) {
  body#values .values-top p,
  body#values .values-bottom p {
    font-size: 20px;
    line-height: 34px;
  }
}
@media (max-width: 520px) {
  body#values .values-top p,
  body#values .values-bottom p {
    font-size: 18px;
  }
}
@media (max-width: 1040px) {
  body#values .join-us .join-text {
    top: 0px;
  }
}
body#values #sam-main {
  background-color: #F0F8FF;
}
body#values #sam-main .col-sm-6 + .col-sm-6 {
  padding-left: 0px;
}
@media (max-width: 767px) {
  body#values #sam-main .col-sm-6 + .col-sm-6 {
    padding-left: 15px;
  }
}
body#values #sam-main .col-sm-6:first-child {
  padding-right: 0px;
}
body#values #sam-main .row {
  background-color: white;
  padding-bottom: 20px;
}
body#values .breakout-p {
  padding: 35px 70px;
  font-size: 38px;
  text-align: center;
}
@media (max-width: 767px) {
  body#values .breakout-p {
    font-size: 30px;
  }
}
@media (max-width: 520px) {
  body#values .breakout-p {
    padding: 35px 28px;
  }
}
body#values .breakout-p .highlight {
  border-bottom: 2px solid #e11100;
  background-color: white;
}
body#values .values-btn {
  background-color: #6bb4f9;
  color: white;
  padding: 70px 40px;
  display: -webkit-inline-box;
  font-size: 27px;
  text-align: center;
  border-top: 20px solid white;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1147px) {
  body#values .values-btn {
    padding: 50px 40px;
  }
}
@media (max-width: 995px) {
  body#values .values-btn {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  body#values .values-btn {
    height: 300px;
    padding: 80px 40px 0px;
  }
}
@media (max-width: 767px) {
  body#values .values-btn {
    height: auto;
    padding: 60px 40px;
  }
}
body#values .values-btn:hover {
  background-color: #1d3968;
}
body#values #better {
  margin-right: 20px;
  padding: 108px 30px;
  background-color: white;
  background-image: url(/themes/democrats/images/pattern.png);
  color: black;
  border-bottom: 5px solid white;
}
@media (max-width: 991px) {
  body#values #better {
    height: 300px;
    padding: 80px 40px 0px;
  }
}
@media (max-width: 767px) {
  body#values #better {
    height: auto;
    padding: 60px 40px;
  }
}
body#values #better:hover {
  border-bottom: 5px solid #e11100;
  background-color: #eaeaea;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #6bb4f9;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #0a82f4;
}
#newscontent hr {
  border-top: 1px solid #fff;
}
body.newsroom .main_page_title {
  margin-bottom: 10px;
}
body.newsroom #newscontent .main_page_title {
  text-transform: none;
  color: #1d3968;
}
body.newsroom #newscontent #press .title {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 15px;
}
body.newsroom #newscontent #press .title a {
  color: #1d3968;
}
body.newsroom #newscontent #press .title a:hover {
  color: #6bb4f9;
}
body.newsroom #newscontent #press .date {
  font-size: 14px;
}
body.newsroom #newscontent #press .summary {
  margin-top: 0px;
}
body.newsroom #newscontent #press .summary .continuereading {
  font-size: 14px;
  color: #1d3968;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
body.newsroom #newscontent #press .summary .continuereading .fa {
  font-size: 10px;
}
body.newsroom #newscontent #press #press-author {
  margin-top: -13px;
  margin-bottom: 30px;
}

body#newsroom #newscontent #press img{
  display: block;
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
}

body.newsroom .blog-entry .date {
  font-size: 14px;
  display: block;
}
body.newsroom .blog-entry h2 {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
}
body.newsroom .blog-entry h2 a {
  color: #1d3968;
}
body.newsroom .blog-entry h2 a:hover {
  color: #6bb4f9;
}
body.newsroom .blog-entry .byline {
  margin-bottom: 5px;
  display: inline-block;
  font-style: italic;
  margin-top: 15px;
  font-size: 16px;
}
body#issue .section-header {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 10px;
  border-bottom: 5px solid #e11100;
  font-size: 22px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
body#issue .section-header a {
  color: #333;
}
body#issue .section-header a:hover {
  color: #6bb4f9;
}
body#issue .one_column .breakout {
  margin-top: 0px;
  border-top: 0px;
}
body#newsroom #newscontent .main_page_title {
  text-transform: none;
  color: #1d3968;
  margin-bottom: 25px;
}
body#newsroom #newscontent .date {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}
body#newsroom #newscontent .subtitle {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  margin-bottom: 25px;
}
body.blogpost .blog_entry p {
  line-height: 31px;
}
body.blogpost .blog_entry .pubdate {
  font-size: 14px;
  display: block;
}
body.blogpost .blog_entry h1 {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #1d3968;
}
body.blogpost .blog_entry .byline {
  margin-bottom: 5px;
  display: inline-block;
  font-style: italic;
  margin-top: 15px;
  font-size: 16px;
}
body.newsroom_landing #breadcrumb {
  margin: 0;
  height: 0px;
}
body.newsroom_landing #content {
  padding-bottom: 50px;
}
body.newsroom_landing #main_container,
body.newsroom_landing .one_column,
body.newsroom_landing #main_column,
body.newsroom_landing #main_column > .row {
  height: 100%;
}
body.newsroom_landing #header {
  border-bottom: 0 !important;
}
body.newsroom_landing footer {
  margin-top: 0 !important;
}
body.newsroom_landing .more {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
body.newsroom_landing #browser_table tr:first-child td {
  border-top: 0px;
}
body.newsroom_landing #browser_table tr td {
  vertical-align: middle;
  padding: 15px 11px;
  border-top: 1px solid #e5f2ff;
}
body.newsroom_landing #browser_table tr td .date {
  margin-bottom: 0px;
}
body.newsroom_landing #browser_table tr td:first-child {
  white-space: nowrap;
}
body.newsroom_landing .col-sm-3 {
  margin-top: -20px;
  height: 100%;
  padding-top: 27px;
  margin-left: -20px;
  background-image: url(/themes/democrats/images/eagle-logo-clear.png);
  background-size: 584px;
  background-repeat: no-repeat;
  background-position-y: 85%;
  background-attachment: fixed;
  padding-left: 36px;
}

body.newsroom_landing .col-sm-3:before {
  background-image: url(/themes/democrats/images/pattern.png);
  height: calc(100% + 20px);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: inline-block;
  z-index: -1;
}

body.newsroom_landing.nobird .col-sm-3 {
  background-image: none!important;
}

body.newsroom_landing .col-sm-3 #typenav {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
body.newsroom_landing .col-sm-3 #typenav h1 a {
  color: #333;
}
body.newsroom_landing .col-sm-3 #typenav h1 a:hover {
  color: #6bb4f9;
}
body.newsroom_landing .col-sm-3 #typenav li.active a,
body.newsroom_landing .col-sm-3 #typenav li:hover a {
  background-color: white;
  color: #333;
  border-left: 5px solid #e11100;
}
body.newsroom_landing .col-sm-9 {
  padding-bottom: 50px;
  padding-left: 40px;
  padding-top: 10px;
}
body.newsroom_landing #newscontent .section-header {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 10px;
  border-bottom: 5px solid #e11100;
  font-size: 22px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
body.newsroom_landing #newscontent .section-header a {
  color: #333;
}
body.newsroom_landing #newscontent .section-header a:hover {
  color: #6bb4f9;
}
body.newsroom_landing #newscontent .title {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 7px;
}
body.newsroom_landing #newscontent .title a {
  color: #1d3968;
}
body.newsroom_landing #newscontent .title a:hover {
  color: #6bb4f9;
}
body.newsroom_landing #newscontent .date {
  font-size: 14px;
}
body.newsroom_landing #newscontent .summary {
  margin-top: 0px;
}
body.newsroom_landing #newscontent .summary .continuereading {
  font-size: 14px;
  display: block;
  margin-top: 15px;
}
body.newsroom_landing #newscontent .summary .continuereading .fa {
  font-size: 10px;
}
body.newsroom_landing #newscontent #reports tr + tr {
  border-top: 1px solid #eee;
}
body.newsroom_landing #newscontent #reports td {
  padding: 16px 12px;
}
body.newsroom_landing #newscontent #reports td a {
  color: #1d3968;
}
#breadcrumb.altered-breadcrumb {
  margin-top: -30px;
  margin-bottom: 30px;
}
body.update #newscontent.article {
  margin-top: 55px;
}
body.update .col-sm-9 #breadcrumb {
  margin-top: 50px;
}
#typenav li a {
  color: #333;
  padding: 10px;
}
#typenav li.active a {
  color: white;
  background-color: #1d3968;
}
#typenav.affix {
  top: 0;
  max-width: 180px;
}
td.date time {
  line-height: 23px;
}
td.acrobat,
td.title {
  width: 89%;
}
body#library #filterbuttons {
  margin-bottom: 40px;
}
body#library #filterbuttons a {
  font-size: 14px;
}
body#library td.acrobat,
body#library td.title {
  width: 89%;
}
body#library #pagination-container {
  margin-bottom: 45px;
}
body#library #pagination-container .pagination-right {
  font-size: 14px;
  margin-bottom: 20px;
}
body#library .acrobat a {
  color: #1d3968;
}
body#library td {
  padding: 16px 15px;
}
body#library .table > tbody > tr:first-child > td {
  border-top: 0px;
}
.lowercase {
  text-transform: lowercase;
}
body#members #memberarea .members .sectionhead h2,
.tab-members #memberarea .members .sectionhead h2 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  color: #1d3968;
  margin-top: -30px;
  margin-bottom: 43px;
  font-size: 25px;
}
body#members #memberarea .members .memberslist,
.tab-members #memberarea .members .memberslist {
  margin-left: -8px;
}
body#members #memberarea .members .memberslist .member,
.tab-members #memberarea .members .memberslist .member {
  position: relative;
  height: 250px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 235px;
  }
}
@media (max-width: 1058px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 265px;
  }
}
@media (max-width: 920px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 250px;
  }
}
@media (max-width: 865px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 230px;
  }
}
@media (max-width: 767px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 265px;
  }
}
@media (max-width: 610px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    height: 240px;
  }
}
@media (max-width: 570px) {
  body#members #memberarea .members .memberslist .member,
  .tab-members #memberarea .members .memberslist .member {
    max-width: 280px;
    margin: 0 auto 25px;
    float: none;
  }
}
body#members #memberarea .members .memberslist .member .initialbox,
.tab-members #memberarea .members .memberslist .member .initialbox {
  background: #000;
  height: auto;
  width: 100%;
  display: block;
}
body#members #memberarea .members .memberslist .member .initialbox .memberimage,
.tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
}
@media (max-width: 1200px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 235px;
  }
}
@media (max-width: 1058px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 265px;
  }
}
@media (max-width: 920px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 250px;
  }
}
@media (max-width: 865px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 230px;
  }
}
@media (max-width: 767px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 265px;
  }
}
@media (max-width: 610px) {
  body#members #memberarea .members .memberslist .member .initialbox .memberimage,
  .tab-members #memberarea .members .memberslist .member .initialbox .memberimage {
    height: 240px;
  }
}
body#members #memberarea .members .memberslist .member .initialbox .memberlast,
.tab-members #memberarea .members .memberslist .member .initialbox .memberlast {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 25px;
  text-transform: uppercase;
  font-size: 24px;
}
body#members #memberarea .members .memberslist .member .secondbox,
.tab-members #memberarea .members .memberslist .member .secondbox {
  text-align: center;
  position: relative;
  top: -250px;
  height: 0;
  background: rgba(107, 180, 249, 0.9);
  color: white;
  width: 100%;
  overflow: hidden;
  transition: 0.3s linear;
}
@media (max-width: 1200px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -235px;
  }
}
@media (max-width: 1058px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -265px;
  }
}
@media (max-width: 920px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -250px;
  }
}
@media (max-width: 865px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -230px;
  }
}
@media (max-width: 767px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -265px;
  }
}
@media (max-width: 610px) {
  body#members #memberarea .members .memberslist .member .secondbox,
  .tab-members #memberarea .members .memberslist .member .secondbox {
    top: -240px;
  }
}
body#members #memberarea .members .memberslist .member .secondbox .senatortitle,
.tab-members #memberarea .members .memberslist .member .secondbox .senatortitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  display: block;
  width: 100%;
  margin-bottom: 17px;
}
body#members #memberarea .members .memberslist .member .secondbox .senatorname,
.tab-members #memberarea .members .memberslist .member .secondbox .senatorname {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  font-size: 41px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 43px;
  margin-bottom: -17px;
}
body#members #memberarea .members .memberslist .member .secondbox .state,
.tab-members #memberarea .members .memberslist .member .secondbox .state {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
}
body#members #memberarea .members .memberslist .member .secondbox .state:before,
.tab-members #memberarea .members .memberslist .member .secondbox .state:before {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 2px solid white;
  top: 10px;
  left: calc(50% - 100px);
  width: calc(100px - 57%);
  display: inherit;
  max-width: 73px;
}
body#members #memberarea .members .memberslist .member .secondbox .state:after,
.tab-members #memberarea .members .memberslist .member .secondbox .state:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 2px solid white;
  top: 10px;
  right: calc(50% - 100px);
  width: calc(100px - 57%);
  display: inherit;
  max-width: 73px;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
  bottom: 25px;
  position: relative;
  width: 100%;
  bottom: -74px;
  text-align: center;
  opacity: 0;
  margin-left: 0px;
}
@media (max-width: 1200px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -58px;
  }
}
@media (max-width: 1058px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -88px;
  }
}
@media (max-width: 920px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -74px;
  }
}
@media (max-width: 865px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -53px;
  }
}
@media (max-width: 767px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -88px;
  }
}
@media (max-width: 610px) {
  body#members #memberarea .members .memberslist .member .secondbox .socialicons,
  .tab-members #memberarea .members .memberslist .member .secondbox .socialicons {
    bottom: -60px;
  }
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons li .fa,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons li .fa {
  height: 25px;
  width: 25px;
  font-size: 13px;
  padding-top: 6px;
  text-align: center;
  background-color: #1d3968;
  border-radius: 20px;
  color: #fff;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons li .fa:hover,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons li .fa:hover {
  background-color: #fff;
  color: darkblue;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons .site,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons .site {
  background-color: #1d3968;
  border-radius: 25px;
  height: 25px;
  width: 25px;
  position: relative;
  z-index: 0;
  top: 7px;
  display: inline-block;
  margin: 0px 5px;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons .site .iconsite,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons .site .iconsite {
  height: 16px;
  background-image: url('/themes/democrats/images/capicon/capicon.png');
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: relative;
  z-index: 10;
  background-size: 44%;
  background-position: center center;
  top: 3px;
  padding: 0px;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons .site:hover,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons .site:hover {
  background-color: #fff;
}
body#members #memberarea .members .memberslist .member .secondbox .socialicons .site:hover .iconsite,
.tab-members #memberarea .members .memberslist .member .secondbox .socialicons .site:hover .iconsite {
  background-image: url('/themes/democrats/images/capicon/capiconhov.png');
}
body#members #memberarea .members .memberslist .member:hover .initialbox .memberlast,
.tab-members #memberarea .members .memberslist .member:hover .initialbox .memberlast,
body#members #memberarea .members .memberslist .member.hover .initialbox .memberlast,
.tab-members #memberarea .members .memberslist .member.hover .initialbox .memberlast {
  display: none;
}
body#members #memberarea .members .memberslist .member:hover .secondbox,
.tab-members #memberarea .members .memberslist .member:hover .secondbox,
body#members #memberarea .members .memberslist .member.hover .secondbox,
.tab-members #memberarea .members .memberslist .member.hover .secondbox {
  height: 100%;
  padding: 15px 5px;
}
body#members #memberarea .members .memberslist .member:hover .secondbox .socialicons,
.tab-members #memberarea .members .memberslist .member:hover .secondbox .socialicons,
body#members #memberarea .members .memberslist .member.hover .secondbox .socialicons,
.tab-members #memberarea .members .memberslist .member.hover .secondbox .socialicons {
  opacity: 1;
  transition: opacity 0.5s linear;
}


.diversity-table td {
  padding: 2px;
  padding: 11px;
  text-align: center;
  border-right: 1px solid #cccccc;
  font-size: 15px;
}

@media(max-width:767px){
 

  .diversity-table{
    overflow-x: scroll;
    display: block;
    width: 100%;
  }
}
.diversity-table td strong {
  font-size: 15px;
  line-height: 21px !important;
}
.diversity-table td p {
  margin-bottom: 0px;
  font-size: 14px;
}
.diversity-table td:first-child {
  text-align: left;
  white-space: nowrap;
}
.diversity-table tr:nth-child(even) {
  background-color: #f4f8fc;
}
.diversity-table tr:first-child td p {
  line-height: 21px;
}
.styled-table td {
  padding: 2px;
  padding: 11px;
  text-align: center;
  border-right: 1px solid #cccccc;
  font-size: 15px;
}
.styled-table td strong {
  font-size: 15px;
  line-height: 21px !important;
}
.styled-table td p {
  margin-bottom: 0px;
  font-size: 14px;
}
.styled-table td:first-child {
  text-align: left;
}
.styled-table tr:nth-child(even) {
  background-color: #f4f8fc;
}
.styled-table tr:first-child td p {
  line-height: 21px;
}
.committee-table {
  margin-top: 80px;
}
body#about {
  font-size: 20px;
}
body#about p {
  margin-bottom: 0px;
  font-size: 17px;
  line-height: 30px;
}
@media (max-width: 1100px) {
  body#about p {
    font-size: 16px;
    line-height: 29px;
  }
}
body#about .about-top,
body#about .about-second,
body#about .about-third {
  display: table;
  background-color: aliceblue;
  border-bottom: 20px solid white;
}
@media (max-width: 1050px) {
  body#about .about-top,
  body#about .about-second,
  body#about .about-third {
    display: inline-block;
  }
}
body#about .about-title {
  border-right: 20px solid white;
}
@media (max-width: 1050px) {
  body#about .about-title {
    width: 50%;
  }
}
@media (max-width: 950px) {
  body#about .about-title {
    width: 100%;
    border-bottom: 20px solid white;
    border-right: 0px;
  }
}
body#about .about-top-right,
body#about .about-second-left {
  display: table-cell;
  width: 39%;
  vertical-align: middle;
  font-size: 17px;
  padding-right: 40px;
  line-height: 30px;
}
@media (max-width: 1200px) {
  body#about .about-top-right,
  body#about .about-second-left {
    padding-left: 40px;
  }
}
@media (max-width: 1050px) {
  body#about .about-top-right,
  body#about .about-second-left {
    padding-top: 30px;
  }
}
body#about .about-top-right .highlight,
body#about .about-second-left .highlight {
  background-color: white;
  padding: 2px 5px;
  color: #333;
  border-bottom: 2px solid #e11100;
}
@media (max-width: 1050px) {
  body#about .about-top-right {
    padding: 55px 50px;
  }
}
@media (max-width: 479px) {
  body#about .about-top-right {
    padding: 28px 35px;
  }
}
body#about .about-grad {
  border-left: 20px solid white;
}
@media (max-width: 1050px) {
  body#about .about-grad {
    width: 45%;
  }
}
@media (max-width: 950px) {
  body#about .about-grad {
    width: 34%;
    border: 20px solid white;
    margin: 45px;
    margin-left: 0px;
  }
}
@media (max-width: 750px) {
  body#about .about-grad {
    width: 85%;
  }
}
@media (max-width: 575px) {
  body#about .about-grad {
    width: calc(100% - 90px);
  }
}
body#about .about-second {
  background: url(/themes/democrats/images/pattern.png);
  background-color: white;
}
body#about .about-second .about-second-left {
  padding-left: 58px;
  padding-right: 0px;
}
@media (max-width: 1180px) {
  body#about .about-second .about-second-left {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 1050px) {
  body#about .about-second .about-second-left {
    width: 54%;
    display: inline-block;
  }
}
@media (max-width: 950px) {
  body#about .about-second .about-second-left {
    padding: 40px;
  }
}
@media (max-width: 750px) {
  body#about .about-second .about-second-left {
    padding-bottom: 0;
    width: 100%;
  }
}
body#about .about-second .about-second-left .highlight {
  background-color: white;
  padding: 2px 5px;
  color: #333;
  border-bottom: 2px solid #e11100;
}
body#about .about-third {
  background-color: white;
  padding: 60px 60px;
  width: 100%;
  color: black;
  text-align: center;
  line-height: 37px;
}
@media (max-width: 630px) {
  body#about .about-third {
    padding-bottom: 0;
  }
}
@media (max-width: 479px) {
  body#about .about-third {
    padding: 40px 15px;
  }
}
body#about .about-third .highlight {
  background-color: white;
  padding: 2px 5px;
  color: #333;
  border-bottom: 2px solid #e11100;
}
body#about .about-third p {
  font-size: 20px;
}
@media (max-width: 1050px) {
  body#about .about-third p {
    line-height: 35px;
  }
}
@media (max-width: 630px) {
  body#about .about-third p {
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 40px;
  }
}
body#about .about-fourth {
  position: relative;
}
body#about .about-fourth img {
  width: 100%;
}
body#about .about-fourth .about-right-fourth {
  position: absolute;
  right: 0;
  top: 77px;
  width: 40%;
  padding: 39px 39px;
  background: white;
  font-size: 18px;
  border-bottom: 8px solid #6bb4f9;
}
@media (max-width: 1050px) {
  body#about .about-fourth .about-right-fourth {
    padding: 30px;
  }
}
@media (max-width: 950px) {
  body#about .about-fourth .about-right-fourth {
    top: 30px;
  }
}
@media (max-width: 878px) {
  body#about .about-fourth .about-right-fourth {
    position: relative;
    width: 100%;
    padding: 50px;
    margin-bottom: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 475px) {
  body#about .about-fourth .about-right-fourth {
    padding: 50px 30px;
  }
}
@media (max-width: 1050px) {
  body#about .about-fourth p {
    line-height: 25px;
  }
}
body#about .join-uss {
  margin-top: 0;
}
body#about .join-uss .join-text {
  font-size: 46px;
  position: relative;
  /* top: 7px; */
  margin-bottom: 13px;
  display: block;
  margin-top: 35px;
}
@media (max-width: 1050px) {
  body#about .join-uss .join-text {
    font-size: 32px;
  }
}
body#about .social-list img {
  height: 64%;
  position: relative;
  top: -4px;
}
body#about .nav-hold .left a img {
  max-width: 50px !important;
}
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-15 {
  width: 20%;
  float: left;
}
@media (max-width: 1200px) {
  .col-xs-15 {
    width: 25%;
  }
}
@media (min-width: 530px) {
  .col-md-15 {
    width: 50%;
    float: left;
  }
}
@media (min-width: 768px) {
  .col-md-15 {
    width: 33%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 25%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-15,
  .col-md-15 {
    width: 25%;
    float: left;
  }
}
@media (max-width: 1060px) {
  .col-sm-4.member {
    width: 33.333%;
    float: left;
  }
}
@media (max-width: 767px) {
  .col-sm-4.member {
    width: 50%;
    float: left;
  }
}
@media (max-width: 570px) {
  .col-sm-4.member {
    width: 100%;
    float: left;
  }
}
.modal-backdrop.in {
  background-image: url('/themes/democrats/images/pattern.png') !important;
  background-color: transparent;
}
.modal-header {
  background-color: white;
  color: #333;
  border-bottom: 5px solid #e11100;
  padding: 15px 30px;
}
.modal-header .modal-title {
  color: #333;
  text-transform: uppercase;
  font-size: 22px;
}
.modal-header .close {
  color: #333;
  opacity: 1;
}
.modal-dialog {
  margin: 10% auto;
}
.modal-content {
  box-shadow: 0px 0px 0px;
  border: 0px;
  background-color: white;
}
.modal-content .btn {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}
.modal-body {
  padding: 20px 30px 30px ;
}
body#subb #Members,
body#subb #Contact {
  display: inline-block;
  width: 100%;
}
@media (max-width: 1060px) {
  body#subb .tab-members .col-sm-4.member {
    width: 50%;
  }
}
@media (max-width: 590px) {
  body#subb .tab-members .col-sm-4.member {
    width: 100%;
    max-width: 290px;
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 1160px) {
  body#subb .main_page_title {
    font-size: 27px;
  }
}
@media (max-width: 1000px) {
  body#subb .main_page_title {
    font-size: 23px;
  }
}
@media (max-width: 870px) {
  body#subb .main_page_title {
    font-size: 19px;
  }
}
body#subb #sam-customContact .breakoutarea {
  background-color: #f3f3f3;
  padding: 130px 70px;
  text-align: center;
}
body#subb #sam-customContact .breakoutarea p {
  font-size: 24px;
}
body#subb #sam-customContact .breakoutarea .phonebutton {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
body#subb #sam-customContact .breakoutarea .phonebutton a {
  width: 100%;
  max-width: 450px;
  background-color: #1d3968;
  padding: 15px;
  display: block;
  text-align: center;
  position: relative;
  margin: 0 auto;
  color: #fff;
  font-size: 23px;
}
body#subb #sam-customContact .breakoutarea .phonebutton a:hover {
  background-color: #122340;
}
@media (max-width: 991px) {
  body#subb .table {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body#subb .table {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body#subb .table .datepassed {
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  body#subb .amend-textarea img {
    padding: 0!important;
    max-width: 100%!important;
    padding-bottom: 1rem!important;
  }
}
body#subb iframe {
  width: 100%!important;
}
body#subb img {
  width: 100%!important;
  height: auto;
}
body#subb #main_column {
  height: 100%;
  display: table;
}
body#subb #main_column .leftscrollnav {
  display: table-cell;
  height: 100%;
}
body#subb #main_column #newscontent {
  display: table-cell;
  height: 100%;
}
@media (max-width: 991px) {
  body#leggraveyard .table {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body#leggraveyard .table {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body#leggraveyard .table .datepassed {
    white-space: nowrap;
  }
}
body#sub .amend-textarea {
  margin-top: 40px;
}
body#sub #breadcrumb {
  display: none;
}
body#sub #content {
  padding: 0 !important;
}
body#sub #header {
  border: 0px;
}
body#sub td.acrobat a {
  color: #1d3968;
}
body#sub .sub-top {
  background-image: url('/themes/democrats/images/pattern.png');
  display: inline-block;
  content: '';
  width: 100%;
  padding: 26px 0px 90px;
  margin-bottom: -47px;
}
body#sub .nav-tabs {
  border-bottom: 0px;
}
body#sub .nav-tabs li.active {
  border-left: 5px solid #e11100;
}
body#sub .nav-tabs li.active a {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  border: 1px solid transparent;
  text-transform: uppercase;
}
body#sub .nav-tabs li.active a:hover {
  background-color: white;
}
body#sub .nav-tabs li a {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #333;
}
body#sub .nav-tabs li a:hover {
  border-color: transparent;
  background-color: rgba(128, 128, 128, 0.09);
}
body#sub .tab-members {
  margin-top: 40px;
}
.slick-prev:before,
.slick-next:before {
  color: #6bb4f9 !important;
  font-size: 35px !important;
}
.slick-prev {
  left: -42px !important;
}
.slick-slider {
  width: 90% ;
  margin: 0 auto 30px;
}
@media (max-width: 1200px) {
  .slick-slider .slick-slide {
    height: 500px;
  }
  .slick-slider .slick-slide img {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .slick-slider .slick-slide {
    height: 400px;
  }
  .slick-slider .slick-slide img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .slick-slider .slick-slide {
    height: 320px;
  }
  .slick-slider .slick-slide img {
    height: 100%;
  }
}
@media (max-width: 479px) {
  .slick-slider .slick-slide {
    height: 200px;
  }
  .slick-slider .slick-slide img {
    height: 100%;
  }
}
body#floor .floor-top {
  background-image: url(/themes/democrats/images/pattern.png);
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 1300px) {
  body#floor .floor-top .container {
    padding: 0 15px;
  }
  body#floor .floor-top .row {
    margin: 0;
  }
}
body#floor .floor-top:after {
  background-image: url(/themes/democrats/images/eagle-logo-clear.png);
  content: '';
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 599px;
  top: 0;
  right: -174px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 687px) {
  body#floor .floor-top:after {
    display: none;
  }
}
@media (max-width: 767px) {
  body#floor .panell {
    margin-bottom: 20px;
  }
}
body#floor .panell .panel-body {
  padding: 15px 30px;
}
body#floor #content {
  padding: 0 !important;
}
body#floor #breadcrumb {
  margin: 0;
  height: 0px;
}
body#floor .main_page_title {
  margin-bottom: -12px;
  margin-top: 50px;
}
body#floor .today {
  color: #5a5858;
  margin-bottom: 40px;
  font-size: 18px;
}
body#floor #header {
  border-bottom: 0 !important;
}
body#floor #session,
body#floor #time {
  border-radius: 0px;
  border: 0px;
  text-align: center;
  height: 100px;
  width: 100%;
  background-color: white;
}
body#floor #session .panel-body,
body#floor #time .panel-body {
  display: table;
  width: 100%;
  height: 100%;
}
body#floor #session .panel-body .amend-textarea,
body#floor #time .panel-body .amend-textarea {
  display: table-cell;
  vertical-align: middle;
  font-size: 18px;
}
body#floor #session .panel-body .amend-textarea p,
body#floor #time .panel-body .amend-textarea p,
body#floor #session .panel-body .amend-textarea p span,
body#floor #time .panel-body .amend-textarea p span {
  margin-bottom: 0px;
  font-size: 18px;
  font-family: 'Avenir LT W01_45 Book1475508' !important;
}
body#floor .col-md-4.alt.left {
  padding-right: 30px;
}
body#floor .col-md-4.alt.right {
  padding-left: 30px;
}
body#floor #session {
  border-left: 15px solid #e11100;
}
body#floor #time {
  border-left: 15px solid #6bb4f9;
}
body#floor .star {
  position: absolute;
  font-size: 30px;
  color: white;
  padding-top: 5px;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  text-align: center;
  top: 24px;
  left: -2px;
}
body#floor .star.blue {
  background-color: #6bb4f9;
}
body#floor .star.red {
  background-color: #e11100;
}
body#floor .panel-default {
  border: 0px;
}
body#floor .panel-heading {
  width: 100%;
  background-color: white;
  text-transform: uppercase;
  border-bottom: 5px solid #e11100;
  font-size: 20px;
  padding: 10px 0px;
}
body#floor .panel-heading .panel-title {
  font-size: 20px;
}
body#floor .panel-heading .panel-title .external {
  width: 29px;
  background-color: #6bb4f9;
  padding: 0px 8px;
  border-radius: 50px;
  height: 29px;
  position: relative;
  top: -3px;
}
body#floor .panel-heading .panel-title .external img {
  width: 100%;
}
body#floor .panel-heading .panel-title .external:hover {
  color: #1d3968;
}
body#floor .panel-heading .panel-title a:hover {
  color: #6bb4f9;
}
body#floor .trio {
  box-shadow: 0px 0px 0px;
  margin-bottom: 50px;
}
body#floor .trio .panel-body {
  padding: 15px 0px;
  max-height: 290px;
  min-height: 290px;
  overflow: hidden;
  transition: 0.3s ease-in max-height;
}
body#floor .trio .panel-body b,
body#floor .trio .panel-body strong {
  display: block;
}
body#floor .trio .panel-body p,
body#floor .trio .panel-body p span {
  margin-bottom: 0px;
  font-family: 'Avenir LT W01_45 Book1475508' !important;
}
body#floor .trio .panel-body .dateheader {
  font-size: 12px;
  color: #333;
  display: block;
  margin-bottom: 15px;
}
body#floor .trio .panel-body .dateheader:hover {
  color: #6bb4f9;
}
body#floor .trio .panel-body.show {
  max-height: 700px;
}
body#floor .trio .more-button {
  font-size: 16px;
  display: block;
  margin-top: 20px;
  cursor: pointer;
}
body#floor .trio .more-button:before {
  content: 'more...';
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
}
body#floor .trio .more-button:hover {
  color: #6bb4f9;
}
body#floor .trio .more-button.less:before {
  content: 'less...';
}
body#floor .trio .link {
  margin-top: 20px;
  font-size: 16px;
  color: #1d3968;
}
body#floor .trio .link i {
  font-size: 14px;
  vertical-align: middle;
}
body#floor .trio .link a {
  color: #1d3968;
}
body#floor .trio .link a:hover {
  color: #6bb4f9;
}
body#floor .trio .link:hover {
  color: #6bb4f9;
}
body#floor .panel.updates {
  margin-top: 30px;
}
@media (max-width: 1200px) {
  body#floor .panel.updates {
    padding: 15px;
  }
}
body#floor .panel.updates .feed-icon.external {
  padding: 4px 9px 9px 9px !important;
}
body#floor .panel-title {
  font-size: 20px;
}
body#floor .feed-icon {
  background-color: #6bb4f9;
  color: white;
  display: inline-block;
  height: 32px;
  width: 32px;
  text-align: center;
  border-radius: 32px;
  padding-top: 6px;
  font-size: 15px;
  position: relative;
  top: -30px;
  vertical-align: bottom;
}
body#floor .feed-icon:hover {
  background-color: #1d3968;
}
body#floor .feed-icon.external {
  padding: 9px;
  vertical-align: bottom;
}
body#floor .feed-icon.external img {
  display: inline-block;
}
body#floor #updates {
  padding-top: 20px;
}
body#floor #updates .date.black {
  font-size: 12px;
  display: block;
}
body#floor #updates #type {
  font-family: 'Oswald', sans-serif;
  /* font-weight: 600; */
  font-size: 16px;
  border-bottom: 2px solid red;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  top: -5px;
  left: 7px;
}
body#floor #updates #type a {
  color: black;
}
body#floor #updates #type a:hover {
  color: #6bb4f9;
}
body#floor #updates h2.title {
  margin-bottom: 1px;
}
body#floor .panel-body {
  padding: 15px 0px;
}
body#floor .lora.more {
  display: block;
  margin-top: 15px;
}
body#floor #item .panel {
  box-shadow: 0px 0px 0px;
  display: inline-block;
  width: 100%;
}
body#floor #item .panel.show {
  max-height: 700px;
}
body#floor #item .panel .height-restrictor {
  max-height: 240px;
  overflow: hidden;
  transition: 0.3s ease-in max-height;
}
body#floor #item .panel .height-restrictor.show {
  max-height: 700px;
}
body#floor #item .panel-body {
  padding: 15px 0px;
  overflow: hidden;
  transition: 0.3s ease-in max-height;
}
body#floor #item .panel-body.show {
  max-height: 700px;
}
body#floor #item .panel-body b,
body#floor #item .panel-body strong {
  display: block;
}
body#floor #item .panel-body p,
body#floor #item .panel-body p span {
  margin-bottom: 0px;
  font-family: 'Avenir LT W01_45 Book1475508' !important;
}
body#floor #item .moree-button {
  font-size: 16px;
  display: block;
  margin-bottom: 17px;
  margin-top: 4px;
  cursor: pointer;
}
body#floor #item .moree-button:before {
  content: 'more...';
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
}
body#floor #item .moree-button:hover {
  color: #6bb4f9;
}
body#floor #item .moree-button.less:before {
  content: 'less...';
}
body.floor-feed#floor #breadcrumb {
  margin-top: 20px;
  height: 25px;
}
@media (max-width: 1200px) {
  body.floor-feed#floor #breadcrumb {
    padding: 0 15px;
  }
}
body.floor-feed#floor .filtertext {
  margin-top: 20px;
  margin-bottom: -40px;
}
@media (max-width: 1200px) {
  body.floor-feed#floor .container {
    padding: 0 15px;
  }
}
body#internopp #sam-main .statebanner {
  margin-top: 2em;
}
@media (max-width: 400px) {
  body#internopp #sam-main .statebanner {
    margin-top: 1em;
  }
}
body#internopp #sam-main .sentitle {
  position: relative;
  left: 19%;
  transition: ease-in-out 0.1s;
}
@media (max-width: 767px) {
  body#internopp #sam-main .sentitle {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  body#internopp #sam-main .sentitle {
    font-size: 24px;
    left: 0%;
    margin-top: 10px;
  }
}
@media (max-width: 400px) {
  body#internopp #sam-main .sentitle {
    font-size: 20px;
  }
}
body:not(#values) .initiative-btns div {
  display: table;
}
@media (max-width: 767px) {
  body:not(#values) .initiative-btns div {
    width: 100%;
  }
}
body:not(#values) .values-btn {
  background-color: #6bb4f9;
  color: white;
  padding: 30px 30px;
  font-size: 27px;
  border-top: 20px solid white;
  display: table-cell;
  text-align: center;
  width: 600px;
  height: 200px;
  vertical-align: middle;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  background-image: url(/themes/democrats/images/pattern.png);
}
body:not(#values) .values-btn:hover {
  background-color: #1d3968;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #333;
}
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: #1d3968;
}
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 #6bb4f9;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #1d3968;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #6bb4f9;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #1d3968;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #6bb4f9;
}
#multimedia-browser .row .media-thumbnail a {
  color: #333;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #6bb4f9;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #333;
  padding: 40px 80px;
  position: relative;
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #333;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #333;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
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-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 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #1d3968 !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 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #6bb4f9;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #6bb4f9 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #1d3968;
}
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 .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #1d3968;
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  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: #6bb4f9;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #333;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #333;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #1d3968;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #1d3968;
}
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: #333;
  height: 165px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #6bb4f9;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #333;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #6bb4f9;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #6bb4f9;
}
@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;
  }
}
@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: 39%;
  }
  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 70px;
  }
  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%;
  }
}
body footer {
  background-color: #1d3968;
  margin-top: 25px;
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 16px 0px 4px;
  text-align: center;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  display: inline-block;
  padding: 0 12px;
  line-height: 19px;
  height: 20px;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .footer-ul.footernav li + li a {
  border-left: 3px solid white;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #0a82f4;
}
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 {
  margin-top: 50px;
}
#flagForm #flag-options .head {
  background-color: #6bb4f9;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family: 'Lora', serif;
font-family: 'Oswald', sans-serif;
font-family:'Avenir LT W01_45 Book1475508';
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie
)
  above but make sure to assign these following site
  colors to them
*/
.lora {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
}
.regular {
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}
.medium {
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
.avenir {
  font-family: 'Avenir LT W01_45 Book1475508';
}
.red {
  color: #e11100;
}
.lightblue {
  color: #6bb4f9;
}
.lightblue-title .main_page_title {
  color: #6bb4f9;
}
.darkblue {
  color: #1d3968;
}
.white {
  color: white;
}
body {
  font-size: 18px;
  font-family: 'Avenir LT W01_45 Book1475508';
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'proxima-nova',sans-serif;
  font-weight: 900;
  font-style: normal;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #2483DD;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #114e88;
}
span[style="color: red;"] a {
  color: #e11100 !important;
}
/* 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: 27px;
  font-size: 17px;
  color: #333;
}
#press .date,
.blog-entry .date,
.video .date {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
}
h2.title {
  margin-top: 7px;
  font-weight: 600;
  line-height: 45px;
  font-size: 26px;
}
h2.title a {
  color: #1d3968;
}
h2.title a:hover {
  color: #6bb4f9;
}
/*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: #1d3968;
  color: white;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
#main_column form .btn:active {
  background-color: #6bb4f9;
}
.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: #6bb4f9;
  color: white;
}
/*interior page content default styles */
.container {
  max-width: 1500px;
  width: 100%;
  padding: 0;
}
body:not(#home) #content {
  padding: 0px 40px;
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
/* ----------- iPhone 5, 5S, 5C and 5SE ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* ----------- iPhone 6+, 7+ and 8+ ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Portrait */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .search-container .search-button {
    top: 0px;
    position: relative;
  }
}
/* Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* ----------- iPhone X ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .search-container .search-button {
    top: 1px;
    position: relative;
  }
}
/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}
.flip-clock-wrapper a:hover {
  color: #fff;
}
.flip-clock-wrapper ul {
  list-style: none;
}
.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}
.flip-clock-wrapper.clearfix:after {
  clear: both;
}
.flip-clock-wrapper.clearfix {
  *zoom: 1;
}
/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none;
}
.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}
.flip-clock-meridium a {
  color: #313333;
}
.flip-clock-wrapper {
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 1em;
}
.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.flip-clock-wrapper:after {
  clear: both;
}
/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 5px;
  width: 60px;
  height: 90px;
  font-size: 80px;
  font-weight: bold;
  line-height: 87px;
  border-radius: 6px;
  background: #000;
}
@media (max-width: 991px) {
  .flip-clock-wrapper ul {
    font-size: 60px;
    width: 40px;
    height: 70px;
    line-height: 67px;
  }
}
.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 87px;
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .flip-clock-wrapper ul li {
    line-height: 67px;
  }
}
.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}
.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}
.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden;
  outline: 1px solid transparent;
}
@media (max-width: 991px) {
  .flip-clock-wrapper ul li a div {
    font-size: 60px;
  }
}
.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}
.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}
.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 1px 2px #000;
  text-align: center;
  background-color: #333;
  border-radius: 6px;
  font-size: 70px;
}
.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}
.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
}
/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}
.flip-clock-wrapper .flip {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}
.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px;
}
.flip-clock-divider:first-child {
  width: 0;
}
.flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 5px;
}
.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  right: -93px;
  color: black;
  text-shadow: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 17px;
}
.flip-clock-divider.minutes .flip-clock-label {
  right: -88px;
}
.flip-clock-divider.seconds .flip-clock-label {
  right: -91px;
}
.flip-clock-dot.top {
  top: 30px;
}
.flip-clock-dot.bottom {
  bottom: 30px;
}
@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-moz-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-o-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}
@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }
  100% {
    -moz-transform: rotateX(0deg);
  }
}
@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }
  100% {
    -o-transform: rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}
@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}
@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }
  100% {
    -moz-transform: rotateX(-90deg);
  }
}
@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }
  100% {
    -o-transform: rotateX(-90deg);
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}
.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}
/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}
.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}
/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}
.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie body#home .banner .right {
  width: 65%;
}
@media (max-width: 1328px) {
  .ie body#home .banner .right {
    width: 65%;
  }
}
@media (max-width: 1230px) {
  .ie body#home .banner .right {
    width: 70%;
  }
}
.ie .twitter-area #twitter .item {
  overflow: hidden;
  word-break: break-all;
}
.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;
}
body.policy #newscontent #press #policy-paper .header-container {
  position: relative;
  margin-bottom: 20px;
  height: 379px;
  background-repeat: no-repeat;
}
body.policy #newscontent #press #policy-paper .header-container .democrats-report-header img {
  max-width: 420px;
}
body.policy #newscontent #press #policy-paper .header-container h1 {
  position: relative;
  top: 20px;
  display: table-cell;
  height: 200px;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 55px;
  font-family: 'Playfair Display SC', serif;
}
body.policy #newscontent #press #policy-paper .header-container h1.centered {
  font-size: 60px;
  color: #fff;
  text-align: center;
}
body.policy #newscontent #press #policy-paper .header-container .tags {
  position: absolute;
  left: 30px;
  bottom: 20px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1;
}
body.policy #newscontent #press #policy-paper .header-container .tags a {
  color: #000;
}
body.policy #newscontent #press #policy-paper .header-container-bg {
  margin: 0 0 20px 0;
  background-color: #2483dd;
  /*.row {
						margin: 0;
					}*/
}
body.policy #newscontent #press #policy-paper .header-container-bg .header-table {
  display: table;
  width: 100%;
}
body.policy #newscontent #press #policy-paper .header-container-bg .header-container-no-bg {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  position: relative;
  margin-bottom: 20px;
  height: 379px;
  background-repeat: no-repeat;
}
body.policy #newscontent #press #policy-paper .header-container-bg .header-container-no-bg h1 {
  margin: 0;
  padding: 0 30px;
  font-size: 60px;
  font-family: 'Playfair Display SC', serif;
  text-align: center;
  color: #fff;
}
body.policy #newscontent #press #policy-paper .header-container-bg .header-container-no-bg .tags {
  position: absolute;
  left: 30px;
  bottom: 20px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1;
}
body.policy #newscontent #press #policy-paper .header-container-bg .header-container-no-bg .tags a {
  color: #000;
}
body.policy #newscontent #press #policy-paper .share-bar {
  margin-bottom: 20px;
}
body.policy #newscontent #press #policy-paper .share-bar .sharetool + .sharetool {
  margin-left: 7px;
}
body.policy #newscontent #press #policy-paper .share-bar .tweet .socicon {
  margin-right: 3px;
}
body.policy #newscontent #press #policy-paper .share-bar .email .socicon {
  margin-right: 5px;
}
body.policy #newscontent #press #policy-paper .share-bar .email + .sharetool .glyphicon {
  margin-right: 5px;
}
body.policy #newscontent #press #policy-paper .share-bar .download {
  margin-left: 7px;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}
body.policy #newscontent #press #policy-paper .summary {
  font-family: 'Cormorant', serif;
  font-style: italic;
}
body.policy #newscontent #press #policy-paper hr {
  display: block;
  height: 7px;
  border: none;
  color: #fff;
  background: transparent url(/themes/democrats/images/body-builder/policy-paper-hr.png) center center no-repeat;
}
body.policy #newscontent #press #policy-paper .key-takeaways h3 {
  color: #333;
  text-align: left;
}
body.policy #newscontent #press #policy-paper .key-takeaways ul {
  padding: 15px 1em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
body.policy #newscontent #press #policy-paper .key-takeaways ul li {
  font-family: 'Cormorant', serif;
}
body.policy #newscontent #press #policy-paper .key-takeaways ul li + li {
  margin-top: 1em;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split {
  margin-bottom: 20px;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table {
  width: 100%;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table .key-takeaways-left {
  width: 300px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #333;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table .key-takeaways-left h3 {
  color: #333;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.4em;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table ul {
  border: none;
  margin-bottom: 0;
  padding: 10px 40px;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table ul li {
  font-family: 'Cormorant', serif;
}
body.policy #newscontent #press #policy-paper .key-takeaways-split table ul li + li {
  margin-top: 1em;
}
body.policy #newscontent #press #policy-paper p.drop-cap:first-child:first-letter {
  float: left;
  font-family: 'Playfair Display SC', serif;
  font-weight: bold;
  font-size: 55px;
  line-height: 40px;
  padding-top: 4px;
  padding-right: 4px;
  padding-left: 3px;
}
body.policy #newscontent #press #policy-paper p {
  font-family: 'Cormorant', serif;
}
body.policy #newscontent #press #policy-paper blockquote {
  margin-bottom: 0;
  padding: 5px 20px;
  font-family: 'Cormorant', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 25px;
  color: #1d3968;
  border-left: 5px solid #1d3968;
}
body.policy #newscontent #press #policy-paper .callout-header h3 {
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  color: #333;
}
body.policy #newscontent #press #policy-paper .callout-image h3 {
  margin-bottom: 5px;
  font-size: 20px;
  text-transform: uppercase;
  color: #2483dd;
  text-align: center;
}
body.policy #newscontent #press #policy-paper .callout-image img {
  width: 100%;
}
body.policy #newscontent #press #policy-paper .callout-image p {
  font-family: 'Cormorant', serif;
  font-style: italic;
}
body.policy #newscontent #press #policy-paper .issue-tags {
  font-size: 22px;
  text-transform: uppercase;
  text-align: right;
  color: #333;
}
body.policy #newscontent #press #policy-paper .issue-tags a {
  color: #333;
}
body.policy #newscontent #press #policy-paper .related-papers {
  padding: 20px;
  background-color: #e5e5e5;
}
body.policy #newscontent #press #policy-paper .related-papers img {
  width: 100%;
}
body.policy #newscontent #press #policy-paper .related-papers h3 {
  margin-top: 0px;
}
body.policy #newscontent #press #policy-paper .related-papers h4 {
  margin-bottom: 0px;
}
body.policy #newscontent #press #policy-paper .related-papers h3 a,
body.policy #newscontent #press #policy-paper .related-papers h4 a {
  text-transform: uppercase;
  color: #333;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote {
  margin-bottom: 20px;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote h3 {
  margin-bottom: 5px;
  font-size: 20px;
  text-transform: uppercase;
  color: #2483dd;
  text-align: center;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table {
  border-collapse: separate;
  border-spacing: 2px;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table td {
  padding-right: 15px;
  margin-right: 2px;
  width: 50%;
  border-right: 1px solid #333;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table td img {
  width: 100%;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table td p {
  margin-bottom: 0;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table td blockquote {
  margin-bottom: 0;
  text-align: center;
}
body.policy #newscontent #press #policy-paper .split-image-with-blockquote table td + td {
  border-right: none;
  border-left: 1px solid #333;
  padding-right: 0;
  padding-left: 15px;
  margin-right: 0;
  margin-left: 2px;
}
body.policy #newscontent #press #policy-paper ul.headlines {
  list-style: none;
  padding-top: 75px;
  padding-left: 0;
  background: url(/themes/democrats/images/body-builder/headlines-header.png) no-repeat;
  background-size: 100%;
  border: none;
  /*li:nth(2n+3) {
						padding-top: 30px;
						background: url(/themes/democrats/images/body-builder/headline-tear-alt.png) no-repeat;
						background-size: 100%;
					}*/
}
body.policy #newscontent #press #policy-paper ul.headlines li {
  padding-left: 20px;
  font-size: 35px;
  font-family: 'Playfair Display SC', serif;
  font-weight: bold;
  line-height: 1.1em;
}
body.policy #newscontent #press #policy-paper ul.headlines li + li {
  padding-top: 30px;
  background: url(/themes/democrats/images/body-builder/headline-tear.png) no-repeat;
  background-size: 100%;
}
body.policy #newscontent #press #policy-paper .images-3-column .col-md-4 {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 33.2%;
  border-right: 1px solid #333;
}
body.policy #newscontent #press #policy-paper .images-3-column .col-md-4 + .col-md-4 {
  margin-left: 2px;
  border-left: 1px solid #333;
}
body.policy #newscontent #press #policy-paper .images-3-column .col-md-4 img {
  width: 100%;
}
body.policy #newscontent #press #policy-paper .images-3-column .col-md-4:last-child {
  border-right: none;
}


.headerbanner{
  padding-top: 36%;
  position: relative;
  display: table;
  width: 100%;
  overflow: hidden;
}

.headerbanner .banner{

  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;

}