/* 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);
  }
}
#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: #007498;
  text-transform: uppercase;
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.container-fluid {
  max-width: 1300px;
  padding: 0px 1px;
}
body .social-list {
  margin: 0px;
}
body .social-list li a {
  background-color: #a9a9aa;
}
body .social-list li .facebook {
  background-color: #537bbd;
}
body .social-list li .facebook:hover {
  background-color: #fff;
  color: #537bbd;
}
body .social-list li .linkedin {
  background-color: #0077B5;
}
body .social-list li .linkedin:hover {
  background-color: #fff;
  color: #0077B5;
}
body .social-list li .twitter {
  background-color: #78cdf0;
}
body .social-list li .twitter:hover {
  background-color: #fff;
  color: #78cdf0;
}
body .social-list li .youtube {
  background-color: #e9654b;
}
body .social-list li .youtube:hover {
  background-color: #fff;
  color: #e9654b;
}
body .social-list li .instagram {
  background-color: #D53582;
}
body .social-list li .instagram:hover {
  background-color: #fff;
  color: #D53582;
}
body .social-list li .medium {
  background-color: #03a87c;
}
body .social-list li .medium:hover {
  background-color: #fff;
  color: #03a87c;
}
body .social-list li .flickr {
  background-color: #0062DD;
}
body .social-list li .flickr:hover {
  background-color: #ff0084;
  color: #fff;
}
body #header {
  display: block;
  position: relative;
  background: #ffffff;
}
body #header .header-logo {
  display: block;
  float: none;
  padding: 10px 0px 20px;
  text-align: center;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
}
body #header .header-logo a {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 450px;
}
body #header .header-logo a .logo-txt {
  height: auto;
  display: block;
  position: relative;
}
body #header .header-logo a .logo-icon {
  width: 100%;
}
body #header .container-relative {
  position: relative;
}
body #header .newsletter-signup {
  display: block;
  float: left;
}
body #header .newsletter-signup a {
  width: 120px;
  line-height: 14px;
  font-size: 16px;
  float: left;
  display: block;
  margin-top: 10px;
 font-family: 'Open Sans', sans-serif;
 font-weight: 700;
}
body #header .newsletter-signup a img {
  float: left;
  display: block;
}
body #header .newsletter-signup a span {
  display: block;
  float: left;
  padding-left: 5px;
  color: #ffffff;
}
body #header .newsletter-signup a .sign-up-txt {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body #header .newsletter-signup a:hover span {
  color: #ffcd0c;
}
body #header .social-media {
  margin-top: 10px;
  margin-bottom: 0px;
}
body #main-navigation {
  background: #007498;
  height: auto;
  width: 100%;
}
body #main-navigation .social-media {
  position: relative;
  display: block;
  float: right;
}
body #main-navigation .social-media .list-inline > li {
  padding-right: 0px;
  padding-left: 0px;
}


body .translate-button {

  display: inline-block;

  top: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #007498;
  border: none;
  background: #ffcd0c;
  font-size: 1.4rem;
}
body .translate-button:hover{
  background: #ffcd0c;
  color: #16395b;
}
body .whistleblower-button{

  display: inline-block;

  top: 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #007498;
  border: none;
  background: #ffcd0c;
}

.icon-whistle {
  fill: #007498;
  }

.icon-whistle__soundwave {
	margin: 0 5px;
	visibility: hidden;
  }
  .whistleblower__figure {
	margin: 0 .5rem;
  }
  .whistleblower__figure:hover .icon-whistle__soundwave {
	visibility: visible;
  }
  .whistleblower__figure:hover {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
  }

body .whistleblower-button:hover{
  background: #ffcd0c;
  color: #16395b;
}
body .whistleblower-button:hover .icon-whistle {
  fill: #16395b;
  }
body #content {
  padding-bottom: 100px;
  font-size: 18px;
  position: relative;
}
body #translations,
body #mobiletranslations {
  z-index: 5;
 
  background-color: #ffcd0c;
  position: absolute;
  top: 0;
  right: 15px;
  min-width: 130px;
  padding: 0 1rem;
 
  /* IE */
}
body #translations .translateme,
body #mobiletranslations .translateme,
body #translations .mobiletranslateme,
body #mobiletranslations .mobiletranslateme {
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  height: 35px;
  padding-top: 8px;
  position: absolute;
  bottom: 1rem;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 14px;
}
body #translations .closeme,
body #mobiletranslations .closeme,
body #translations .mobilecloseme,
body #mobiletranslations .mobilecloseme {
  font-weight: 600;
  color: #007498;
  width: 0px;
  display: block;
  text-align: right;
  height: 35px;
  position: absolute;
  top: -100%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.3em;
  
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  
}
body #translations .closeme:hover,
body #mobiletranslations .closeme:hover,
body #translations .mobilecloseme:hover,
body #mobiletranslations .mobilecloseme:hover {
  color: #007498;
}
body #translations .translateoption,
body #mobiletranslations .translateoption {
  background-color: #ffcd0c;
  position: absolute;
  top: -100%;
  width: 200px;
  display: block;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
  z-index: 9;
  right: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
body #translations.change .translateoption,
body #mobiletranslations.change .translateoption {
  top: 100%;
  right: 0rem;
}
body #translations.change .closeme,
body #mobiletranslations.change .closeme,
body #translations.change .mobilecloseme,
body #mobiletranslations.change .mobilecloseme {
  top: 100%;
  right: 1rem;
  padding: .2rem;
}
body #translations.change .translateme,
body #mobiletranslations.change .translateme,
body #translations.change .mobiletranslateme,
body #mobiletranslations.change .mobiletranslateme {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 8;
}
body #translations .goog-te-gadget-simple,
body #mobiletranslations .goog-te-gadget-simple {
  background-color: #ffcd0c;
  border: none;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  z-index: 20;
}
#NavMobileModal .modal-backdrop.in,
#SearchModal .modal-backdrop.in,
#ContactModal .modal-backdrop.in {
  z-index: 10;
}
body .navbar {
 font-family: 'Open Sans', sans-serif;
 font-weight: 700;
  border: none;
  background-color: transparent;
}
body .navbar .nav-pills {
  float: left;
}
body .navbar .nav-pills > li {
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
body .navbar .nav-pills > li a {
  padding-top: 15px;
  padding-bottom: 7px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 18px;
  line-height: 20px;
  border-bottom: 8px solid transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
body .navbar .nav-pills > li .dropdown-menu li a[href=""] {
    height: fit-content;
    padding: 0;
}
body .navbar .nav-pills > li .dropdown-menu {
  padding-left: 0px;
  border: none;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  border: none;
  color: #6b6b6d;
  padding-left: 10px;
  padding-right: 10px;
}
body .navbar .nav-pills > li:hover .dropdown-menu {
  display: block;
}
body .navbar .nav-pills > li:hover a {
  color: #ffcd0c;
  /* border-bottom: 8px solid #ffcd0c; */
}
body .navbar .nav-pills > li.selected a {
  color: #ffcd0c;
  /* border-bottom: 8px solid #ffcd0c; */
}

body .navbar .nav-pills > li a:focus {
  outline: 2px solid yellow;
}

.button-outline:focus-within {
  outline: 2px solid yellow;
}

body .navbar .togglemenu {
  display: block;
  float: left;
  padding: 15px;
  font-size: 18px;
  color: #ffffff;
}
body .navbar .srchbutton {
  float: left;
  display: block;
  padding: 15px 20px 0px;
  font-size: 18px;
  line-height: 18px;
}
body .navbar .srchbutton span {
  color: #fff;
}
body .navbar .srchbutton span:hover {
  color: #ffcd0c;
}
body #NavMobileModal .modal-backdrop {
  z-index: auto;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  margin-right: 15px;
  color: black;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  font-size: 30px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  text-transform: none;
  padding: 3px 17px;
  font-family: 'Open Sans', sans-serif;
  white-space: normal;
}
body #SearchModal .modal-content {
  height: 370px;
  padding: 28px;
  box-shadow: gray 1px 4px 38px !important;
}
body #SearchModal button.close {
  color: #007498 !important;
}
body #SearchModal button[type=submit] {
  background-color: #007498 !important;
  border: 1px solid #007498 !important;
}
body #SearchModal button[type=submit]:hover {
  background-color: #ffcd0c !important;
  border: 1px solid #ffcd0c !important;
}
body #SearchModal input[type=search] {
  border: 1px solid !important;
  margin-right: -14px !important;
}
#featured-carousel {
  position: relative;
  height: 600px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
#featured-carousel .carousel-inner {
  height: 100%;
}
#featured-carousel .item {
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}
#featured-carousel .ticker-tape {
  background-color: rgba(0, 116, 152, 0.8);
  color: #ffffff;
  position: absolute;
  display: block;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  text-align: center;
}
#featured-carousel .ticker-tape h2 {
  margin: 0px;
}
#featured-carousel .ticker-tape a {
  width: 100%;
  color: #ffffff;
  display: block;
}
#featured-carousel .ticker-tape:hover a {
  color: #ffcd0c;
}
#livehearings {
  background-color: #ce3827;
  display: block;
}
#livehearings:hover {
  transition: background 0.3s;
  background-color: #ffcd0c;
}



#livehearings .ftext .subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  float: none;
  display: inline-block;
  font-size: 24px;
  text-transform: uppercase;
  margin: 5px 0;
}
#livehearings .ftext h3 {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  float: none;
  margin: 3px;
}
#livehearings .ftext h3 a {
  color: #fff;
}
#livehearings .ftext h3 a:hover {
  color: #fff;
}
#newsgrid {
  margin-bottom: 90px;
}
#newsgrid .news-row {
  margin: 0px;
}
#newsgrid .news-row .news-col {
  padding: 0px;
}
#newsgrid .news-row .news-col .grid-item {
  position: relative;
  height: 400px;
  border-right: 1px solid #bcbcbd;
  border-bottom: 1px solid #bcbcbd;
  overflow: hidden;
  background-color: #007498;
}
#newsgrid .news-row .news-col .grid-item a {
  display: block;
}
#newsgrid .news-row .news-col .grid-item .text {
  padding: 15px 20px;
  display: block;
  width: 100%;
  height: 118px;
  position: absolute;
  top: 0px;
  z-index: 10;
  background-color: #fff;
}
#newsgrid .news-row .news-col .grid-item .text .type {
  display: block;
  color: #bcbcbd;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  overflow:visible;
}
#newsgrid .news-row .news-col .grid-item .text .title {
  overflow: visible;
  display: block;
  font-size: 1.3em;
  
  color: #69696b;
  line-height: 22px;
}
#newsgrid .news-row .news-col .grid-item .text:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  top: 100%;
  position: absolute;
}
#newsgrid .news-row .news-col .grid-item .play {
  position: absolute;
  bottom: 20%;
  z-index: 10;
  left: 35%;
  right: 0px;
  float: none;
  display: block;
  width: 100px;
}
#newsgrid .news-row .news-col .grid-item .img {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: block;
  height: 285px;
  background-size: cover;
  background-attachment: scroll;
  background-position: center top;
  background-color: transparent;
}
#newsgrid .news-row .news-col .grid-item .img img {
  display: none;
  width: 100%;
  height: 100%;
}
#newsgrid .news-row .news-col:first-child .grid-item {
  border-left: 1px solid #bcbcbd;
}
#newsgrid .news-row .news-col:hover .text {
  background-color: #ffcd0c;
}
#newsgrid .news-row .news-col:hover .text .type {
  color: #ffffff;
}
#newsgrid .news-row .news-col:hover .text .title {
  color: #ffffff;
}
#newsgrid .news-row .news-col:hover .text:after {
  border-color: #ffcd0c transparent transparent transparent;
}
#newsgrid .news-row .news-col:hover .img {
  opacity: 0.8;
}
.social {
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 1329px) {
  .social .container {
    width: 100%;
  }
}
.social .twitter #twitter-carousel {
  position: relative;
  height: 450px;
}
.social .twitter #twitter-carousel .left,
.social .twitter #twitter-carousel .right {
  position: absolute;
  top: 40%;
  font-size: 45px;
}
.social .twitter #twitter-carousel .left {
  left: 0;
}
.social .twitter #twitter-carousel .right {
  right: 0;
}
.social .twitter #twitter-feed ul {
  list-style: none;
  padding: 0px;
}
.social .twitter #twitter-feed .tweet {
  font-size: 30px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #6b6b6d;
  word-wrap: break-word;
}
@media (max-width: 1200px) {
  .social .twitter #twitter-feed .tweet {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .social .twitter #twitter-feed .tweet {
    font-size: 25px;
  }
}
@media (max-width: 550px) {
  .social .twitter #twitter-feed .tweet {
    font-size: 1.3em;
  }

}
.social .twitter .icon {
  font-size: 40px;
}
.social .social-list li a {
  height: 60px;
  width: 60px;
  font-size: 30px;
  vertical-align: bottom;
}
.social .social-list li a span {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .social .social-list li a {
    height: 45px;
    width: 45px;
    font-size: 1.3em;
  }

}
#issuegrid .sectionhead {
  background-color: #ce3827;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 15px;
}
#issuegrid .sectionhead a {
  color: #fff;
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  width: 100%;
  display: block;
}
#issuegrid .sectionhead:hover {
  background-color: #ffcd0c;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#issuegrid .issues-row {
  margin: 0px;
}
#issuegrid .issues-row .issue-item {
  padding: 0px;
  position: relative;
  height: 398px;
  overflow: hidden;
  border-right: 1px solid #c7c6c6;
  border-bottom: 1px solid #c7c6c6;
}
#issuegrid .issues-row .issue-item .img-block {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  height: 398px;
  background-size: cover;
  background-attachment: scroll;
  background-position: center top;
  background-color: transparent;
}
#issuegrid .issues-row .issue-item .txt {
  position: absolute;
  background-color: rgba(0, 116, 152, 0.35);
  width: 100%;
  height: 100%;
  color: #fff;
}
#issuegrid .issues-row .issue-item .txt a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
}
#issuegrid .issues-row .issue-item .txt a span {
  position: absolute;
  bottom: 40px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  padding: 0px 60px;
  line-height: 24px;
  overflow: visible;
}

.txt .title {
  overflow: visible;
}

.txt .title .bold {
  overflow: visible;
}

#issuegrid .issues-row .issue-item .txt a .desc-overlay {
  background-color: #007498;
  padding: 40px;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  
  height: 100%;
  width: 100%;
  opacity: 0;
}
#issuegrid .issues-row .issue-item .txt:hover {
  background-color: rgba(0, 116, 152, 0.8);
}
#issuegrid .issues-row .issue-item:nth-child(3n) {
  border-right: none;
}
#issuegrid .issues-row .issue-item.hassummary .txt a:hover .desc-overlay {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#issuegrid .issues-row .issue-item.hassummary .txt a:hover span {
  opacity: 0;
}
#issuegrid .issues-row .search-item {
  padding: 0px;
  position: relative;
  height: 199px;
  overflow: hidden;
  border-right: 1px solid #c7c6c6;
  background-color: #007498;
}
#issuegrid .issues-row .search-item .img-block {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  height: 100%;
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
  background-color: transparent;
  background-image: url('/themes/democrats-naturalresources/images/capitol.png');
}
#issuegrid .issues-row .search-item .txt {
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 100%;
  color: #fff;
}
#issuegrid .issues-row .search-item .txt a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
}
#issuegrid .issues-row .search-item .txt a .title {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  font-size: 24px;
  margin: 0 auto;
  text-align: center;
  line-height: 33px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 48px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
#issuegrid .issues-row .search-item .txt a .title .bold {
  font-size: 40px;
  text-transform: lowercase;
  letter-spacing: 0px;
}
#issuegrid .issues-row .search-item:hover {
  background-color: #ffcd0c;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#issuegrid .issues-row .search-item:hover .img-block {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background-image: url('/themes/democrats-naturalresources/images/capitolyell.png');
}
#issuegrid .issues-row .score-item {
  padding: 0px;
  position: relative;
  height: 199px;
  overflow: hidden;
  background-color: #8B0000;
}
#issuegrid .issues-row .score-item .img-block {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  height: 100%;
  background: url('/themes/democrats-naturalresources/images/pencilred.png') no-repeat transparent center center;
}
#issuegrid .issues-row .score-item .txt {
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 100%;
  color: #fff;
}
#issuegrid .issues-row .score-item .txt a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
}
#issuegrid .issues-row .score-item .txt a .title {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 44px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
#issuegrid .issues-row .score-item:hover {
  background-color: #ffcd0c;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#issuegrid .issues-row .score-item:hover .img-block {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background-image: url('/themes/democrats-naturalresources/images/pencilyell.png');
}
.translated-ltr body .navbar .nav-pills > li a {
  font-size: 16px;
  padding-right: 0px;
}
.item {
  
  margin: 0 auto;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.prevarticle,
.nextarticle {
  display: none;
}
#breadcrumb {
  background-color: #f2f2f2;
  margin: 0px;
  padding: 15px 0px;
}
#breadcrumb ol {
  margin-bottom: 0px;
}
#breadcrumb ol li a {
  color: #6b6b6d;
  font-size: 14px;
}
#breadcrumb ol li a:hover {
  color: #007498;
}

#breadcrumb ol li a:focus {
  color: 2px solid yellow;
}

#breadcrumb ol li:after {
  content: "|";
  position: relative;
  left: 5px;
  font-size: 1.3em;
  
  top: 3px;
  font-weight: 100;
  line-height: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#breadcrumb ol li:last-child:after {
  content: none;
}
#filterbuttons {
  margin-bottom: 40px;
}
.modal-dialog {
  z-index: 100000;
}
body#newsroom #newscontent {
  margin-top: 20px;
}

/* h3.press-author {
  font-size: 18px;
  margin-top:10px;
  margin-bottom: 10px;
  font-weight: 500;

} */

.popvox-widget iframe {
  height: 675px;
}
#voting_record .page .row {
  /* ----- */
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
body.hearings .table tr:hover {
  background-color: #fbfbfb !important;
}
body.hearings .table tr td {
  min-width: 175px;
}
body.hearings .table tr td .faux-th {
  display: none;
}
body.hearings .table tr td .date,
body.hearings .table tr td .bill-number {
  min-width: 75px;
  display: block;
}
body.hearings .table tr td .location {
  min-width: 250px;
  display: block;
}
body.hearings .table tr td a {
  display: block;
  float: left;
  width: 100%;
  color: #6b6b6d;
}
body.hearings .table tr td a:hover {
  color: #007498;
}

body.hearings .table tr td a:focus-within {
  outline: 2px solid yellow;
}

body.hearings .table tr td a.add {
  padding-top: 5px;
}
body.hearings .table .divider {
  border-top: none;
  background-color: transparent !important;
}
body.hearings .table .divider td {
  border-top: none !important;
  background-color: transparent;
  font-size: 24px;
  padding: 30px 0px 30px 0px;
}
body.hearings .table .divider td .faux-th {
  display: none;
}
body.hearings .table .divider .header_date,
body.hearings .table .divider .header_bill,
body.hearings .table .divider .header_title {
  padding: 0px 30px 15px 30px;
  background: none repeat scroll 0 0 transparent;
  border-top: none;
  border-bottom: 4px solid #eee;
}
body.hearings .table .divider .header_date h4,
body.hearings .table .divider .header_bill h4,
body.hearings .table .divider .header_title h4 {
  padding: 0px;
  margin: 0px;
}
body.hearings .table .divider .header_date h4 a,
body.hearings .table .divider .header_bill h4 a,
body.hearings .table .divider .header_title h4 a {
  font-size: 16px;
}
body.hearings .table .divider .header_date h4 a:hover,
body.hearings .table .divider .header_bill h4 a:hover,
body.hearings .table .divider .header_title h4 a:hover {
  cursor: pointer;
}
body.hearings .table .divider .header_date h4 a:before,
body.hearings .table .divider .header_bill h4 a:before,
body.hearings .table .divider .header_title h4 a:before {
  border-color: #eee transparent transparent transparent;
  border-style: solid;
  border-width: 8px;
  content: "";
  display: block;
  width: 8px;
  right: 23px;
  position: relative;
  top: 22px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider .header_date h4 .desc:before,
body.hearings .table .divider .header_bill h4 .desc:before,
body.hearings .table .divider .header_title h4 .desc:before {
  border-color: #ccc transparent transparent transparent;
  border-style: solid;
  border-width: 8px;
  content: "";
  display: block;
  width: 8px;
  right: 23px;
  position: relative;
  top: 22px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider .header_date h4 .asc:before,
body.hearings .table .divider .header_bill h4 .asc:before,
body.hearings .table .divider .header_title h4 .asc:before {
  border-color: transparent transparent #ccc transparent;
  border-style: solid;
  border-width: 8px;
  content: "";
  width: 8px;
  display: block;
  right: 23px;
  position: relative;
  top: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
body.hearings .table .divider:hover {
  background-color: transparent !important;
}
.hearingslideshow .item {
  height: auto;
}


.members .title {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  color: #ce3827;
}
.members .name {
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-bottom: .5rem;
  
}
.members .party {
  font-size: 16px;
  color: #6b6b6d;
  padding: .5rem 0;
}

.members .memberholder{
  display: block;
  min-height: 215px;
}
/* calendar fix */
.datepicker.dropdown-menu {
  min-width: 0 !important;
  width: auto;
}
#toggleCalendar {
  position: relative;
  margin: 15px 0;
  height: 45px;
}
#toggleCalendar a {
  font-size: 16px;
  color: white;
  background-color: #007498;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
}
#toggleCalendar a:hover {
  background-color: #ffcd0c;
  color: #6b6b6d;
  text-decoration: none;
}
#toggleCalendar a.selected {
  background-color: #ffcd0c;
  color: #6b6b6d;
}
#toggleCalendar .jump {
  position: relative;
  float: right;
  font-size: 16px;
  background-color: #007498;
  padding: 5px 10px 5px 10px;
  width: 200px;
}
#toggleCalendar .jump label {
  width: 100%;
  color: white;
}
#toggleCalendar .jump label .glyphicon {
  color: white;
  padding: 0 10px 0 0;
}
#toggleCalendar .jump #datePicker {
  border: none;
  padding: 0 0 0 10px;
}
#calendar {
  margin: 45px 0 0 0;
  background-color: #fff;
  border: 1px solid #dcdddf;
  padding: 0 0px 0px 0px;
}
#calendar .fc-widget-header {
  padding-top: 0px;
}
#calendar td {
  border: 0px solid transparent;
  vertical-align: middle;
  text-align: center;
  font-size: 17px;
  padding: 0px 0px;
}
#calendar .fc-day-number {
  padding: 5px 0px;
}
#calendar th {
  padding: 5px 0 5px 0;
  background: lightgrey;
  font-size: 24px;
  border: 1px solid #dcdddf;
  vertical-align: middle;
  text-align: center;
  color: #747475;
  font-size: 28px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: #fff;
  color: #007498;
  white-space: normal !important;
  overflow: hidden;
  height: auto;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 10px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: #007498;
  background-color: #007498;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.executive {
  color: #6b6b6d;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.executive:before {
  color: #6b6b6d;
  background-color: #6b6b6d;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Legislative {
  color: #ce3827;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Legislative:before {
  color: #ce3827;
  background-color: #ce3827;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Oversight {
  color: #007498;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Oversight:before {
  color: #007498;
  background-color: #007498;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.business_meeting {
  color: #478731;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.business_meeting:before {
  color: #478731;
  background-color: #478731;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.sub {
  color: #474f58;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.sub:before {
  color: #474f58;
  background-color: #474f58;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Field {
  color: #537bbd;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.Field:before {
  color: #537bbd;
  background-color: #537bbd;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.full {
  color: #78cdf0;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a.full:before {
  color: #78cdf0;
  background-color: #78cdf0;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-head,
#calendar .fc-view-container .fc-agendaDay-view .fc-head {
  padding: 0;
  margin: 0;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-slats tr,
#calendar .fc-view-container .fc-agendaDay-view .fc-slats tr {
  border-bottom: 1px solid rgba(204, 204, 204, 0.65);
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 16px;
  margin: 3px;
  padding: 20px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: transparent;
  color: grey;
  white-space: normal !important;
  overflow: hidden;
  height: 100px;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 0px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: grey;
  background-color: grey;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-time,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a .fc-content .fc-title,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-title {
  word-break: break-all;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.executive:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive:before {
  color: #b9b9b9;
  background-color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Legislative,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Legislative {
  color: #ce3827;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Legislative:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Legislative:before {
  color: #ce3827;
  background-color: #ce3827;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Oversight,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Oversight {
  color: #007498;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Oversight:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Oversight:before {
  color: #007498;
  background-color: #007498;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.business_meeting,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.business_meeting {
  color: #478731;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.business_meeting:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.business_meeting:before {
  color: #478731;
  background-color: #478731;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.sub,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.sub {
  color: #474f58;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.sub:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.sub:before {
  color: #474f58;
  background-color: #474f58;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Field,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Field {
  color: #537bbd;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.Field:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Field:before {
  color: #537bbd;
  background-color: #537bbd;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.full,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.full {
  color: #78cdf0;
}
#calendar .fc-view-container .fc-agendaWeek-view .fc-event-container a.full:before,
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.full:before {
  color: #78cdf0;
  background-color: #78cdf0;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container {
  font-size: 24px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a {
  border: none;
  text-align: left;
  padding: 6px;
  background-color: transparent;
  color: grey;
  white-space: normal !important;
  overflow: hidden;
  height: 100px;
  display: block;
  border-radius: 0px;
  margin: 0;
  position: relative;
  padding-left: 11px;
  margin-left: 10px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a:before {
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  color: grey;
  background-color: grey;
  position: absolute;
  top: 11px;
  left: 0px;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a .fc-content .fc-time {
  display: none;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive {
  color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.executive:before {
  color: #b9b9b9;
  background-color: #b9b9b9;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Legislative {
  color: #ce3827;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Legislative:before {
  color: #ce3827;
  background-color: #ce3827;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Oversight {
  color: #007498;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Oversight:before {
  color: #007498;
  background-color: #007498;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.business_meeting {
  color: #478731;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.business_meeting:before {
  color: #478731;
  background-color: #478731;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.sub {
  color: #474f58;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.sub:before {
  color: #474f58;
  background-color: #474f58;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Field {
  color: #537bbd;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.Field:before {
  color: #537bbd;
  background-color: #537bbd;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.full {
  color: #78cdf0;
}
#calendar .fc-view-container .fc-agendaDay-view .fc-event-container a.full:before {
  color: #78cdf0;
  background-color: #78cdf0;
}
#calendar .fc-event {
  padding: 10px;
}
#calendar .fc-event .fc-bg {
  background-color: grey;
}
#calendar td.fc-day {
  border: 1px solid #dcdddf;
}
#calendar td.fc-more-cell {
  font-size: 18px;
}
#calendar td.event {
  border-radius: 0px;
  color: #fff;
  background-color: transparent;
}
#calendar .fc-today {
  border-radius: 0px;
  background-color: #ffcd0c;
  color: #474f58;
  border-top: 1px solid #dcdddf;
  border-left: 1px solid #dcdddf;
}
#calendar .fc-state-default.fc-corner-right {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
#calendar .fc-state-default.fc-corner-left {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
#calendar .fc-state-disabled {
  background-color: lightgrey !important;
  color: #747475 !important;
  box-shadow: 0px 0px 0px;
  border: 1px solid lightgrey;
}
#calendar .fc-state-active,
#calendar .fc-state-down {
  box-shadow: inset 1px 2px 4px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
}
#calendar .fc-button-group {
  margin-right: 10px;
}
#calendar .fc-toolbar {
  margin: 0px 0px 0px;
  padding: 0px 0px 5px;
  border-bottom: 1px solid #dcdddf;
  background: #ffffff;
}
#calendar .fc-toolbar .fc-left .fc-next-button,
#calendar .fc-toolbar .fc-right .fc-next-button,
#calendar .fc-toolbar .fc-left .fc-prev-button,
#calendar .fc-toolbar .fc-right .fc-prev-button {
  border: none;
  width: 45px;
  height: 45px;
  color: transparent;
  margin: 10px;
  padding: 0;
  font-size: 1px;
  box-shadow: 0px 0px 0px;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#calendar .fc-toolbar .fc-left .fc-state-active,
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #ffcd0c !important;
}
#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button,
#calendar .fc-toolbar .fc-left .fc-month-button,
#calendar .fc-toolbar .fc-right .fc-month-button,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button {
  margin: 10px 0 0 0;
  font-size: 22px;
  background: none;
  background-color: #007498;
  color: #FFF;
}
#calendar .fc-toolbar .fc-left .fc-today-button:hover,
#calendar .fc-toolbar .fc-right .fc-today-button:hover,
#calendar .fc-toolbar .fc-left .fc-month-button:hover,
#calendar .fc-toolbar .fc-right .fc-month-button:hover,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button:hover,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button:hover,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button:hover,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button:hover {
  background-color: #ffcd0c;
}
#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button {
  margin-left: 30px;
}
#calendar .fc-toolbar .fc-left .fc-prev-button,
#calendar .fc-toolbar .fc-right .fc-prev-button {
  background-image: url(/themes/democrats-naturalresources/images/calendar_arrw-left.png);
}
#calendar .fc-toolbar .fc-left .fc-next-button,
#calendar .fc-toolbar .fc-right .fc-next-button {
  background-image: url(/themes/democrats-naturalresources/images/calendar_arrw-right.png);
}

#calendar .fc-toolbar .fc-left .fc-next-button:focus,
#calendar .fc-toolbar .fc-right .fc-prev-button:focus,
#calendar .fc-toolbar .fc-left .fc-prev-button:focus,
#calendar .fc-toolbar .fc-right .fc-next-button {
  outline: 2px solid yellow;
}


#calendar .fc-toolbar .fc-center h2 {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: #333;
  text-transform: uppercase;
}
#calendar .fc-day-grid-event .fc-content {
  white-space: normal;
  overflow: hidden;
}
.calendarFooter {
  padding: 30px 0px;
  background-color: transparent;
  color: #474f58;
  border-top: 1px solid lightgrey;
}
.calendarFooter .row {
  clear: both;
  overflow: none;
}
.calendarFooter .row .col {
  float: left;
  padding-right: 15px;
}
.calendarFooter .row .col .hearing {
  color: #007498;
}
.calendarFooter .row .col .today {
  color: #ffcd0c;
}
.calendarFooter .row .col .executive {
  color: #6b6b6d;
}
.calendarFooter .row .col .Legislative {
  color: #ce3827;
}
.calendarFooter .row .col .Oversight {
  color: #007498;
}
.calendarFooter .row .col .business_meeting {
  color: #478731;
}
.calendarFooter .row .col .sub {
  color: #474f58;
}
.calendarFooter .row .col .Field {
  color: #537bbd;
}
.calendarFooter .row .col .full {
  color: #78cdf0;
}
.calendarFooter .row .col .glyphicon {
  float: left;
  padding: 0 0 0 20px;
  font-size: 32px;
}
.calendarFooter .row .col .title {
  float: left;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 0 0 10px;
  margin: 0;
}
#overlay {
  position: absolute;
  width: 350px;
  background-color: #FFF;
  z-index: 1000;
  padding: 15px 25px 25px 25px;
  border: 1px solid #000;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.35);
}
#overlay .clsBtn {
  cursor: pointer;
  color: #8f8f8f;
}
#overlay .clsBtn:hover {
  color: #000000;
}
#overlay h1 {
  font-size: 26px;
}
#overlay h2 {
  font-style: italic;
  font-size: 18px;
}
#overlay h2.hearing {
  color: grey;
}
#overlay h2.executive {
  color: darkgrey;
}
#overlay p {
  font-size: 14px;
}
#overlay p.time {
  text-transform: uppercase;
}
#overlay.small {
  width: 300px;
}
#overlay.small h1 {
  font-size: 22px;
}
#overlay.small h2 {
  font-size: 16px;
}
#overlay.small p {
  font-size: 12px;
}
#overlay.a-right:after,
#overlay.a-right:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#overlay.a-right:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #ffffff;
  border-width: 20px;
  margin-top: -20px;
}
#overlay.a-right:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #000000;
  border-width: 21px;
  margin-top: -21px;
}
#overlay.a-left:after,
#overlay.a-left:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#overlay.a-left:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #FFF;
  border-width: 20px;
  margin-top: -20px;
}
#overlay.a-left:before {
  border-color: rgba(0, 0, 0, 0);
  border-right-color: #000;
  border-width: 21px;
  margin-top: -21px;
}
.profilelink {
  text-transform: uppercase;
  color: #007498;
  font-size: 1.3em;
}

.datepicker {
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
#subcommittee_issue #issue-banner {
  display: none;
}
#subcommittee_issue #main_container {
  padding: 0 15px;
}
#subcommittee_issue #main_column {
  padding: 0px;
}
#subcommittee_issue #breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 15px 0;
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 10;
}
#subcommittee_issue #breadcrumb ol {
  margin-bottom: 0;
  padding-left: 55px;
}
#subcommittee_issue #breadcrumb ol li a {
  color: white;
  text-transform: uppercase;
}
#subcommittee_issue #breadcrumb ol li:after {
  color: white;
  opacity: 1;
}
#subcommittee_issue .top {
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  top: 0px;
  color: white;
  height: auto;
  z-index: 9;
}
#subcommittee_issue .top .wrapper {
  background-color: rgba(0, 116, 152, 0.85);
}
#subcommittee_issue .top .member-row {
  position: relative;
  margin: 0px;
}
#subcommittee_issue .top .info {
  padding-top: 60px;
  padding-left: 40px;
  padding-bottom: 40px;
}
#subcommittee_issue .top .info a {
  color: #ffcd0c;
}
#subcommittee_issue .top .info a:hover {
  text-decoration: underline !important;
}
#subcommittee_issue .top h1,
#subcommittee_issue .top h2 {
  color: #ffcd0c;
  text-transform: uppercase;
}
#subcommittee_issue .top p {
  font-size: 1.3em;
}
#subcommittee_issue .top #membership {
  padding-top: 60px;
  background-color: rgba(255, 255, 255, 0.25);
  height: auto;
  padding-bottom: 40px;
}
#subcommittee_issue .top #membership .memberlist {
  padding-left: 0px;
  margin-top: -16px;
}
#subcommittee_issue .top #membership .rankingmember {
  font-size: 18px;
}
#subcommittee_issue .top #membership .statedistrict {
  font-size: 14px;
}
#subcommittee_issue .top #membership li {
  font-size: 1.3em;
  
  margin-bottom: 20px;
  display: block;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
#subcommittee_issue .top #membership li span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}
#subcommittee_issue .lower {
  position: relative;
  top: 40px;
}
#subcommittee_issue .lower .expandables-container h3 {
  cursor: pointer;
  position: relative;
  display: block;
  background-color: #ebebeb;
  color: #6a6a6c;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding: 60px 60px 60px 120px;
  margin: 0px;
}
#subcommittee_issue .lower .expandables-container h3:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 14px 0 14px;
  top: 43%;
  left: 7%;
  border-color: #ffce0c transparent transparent transparent;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#subcommittee_issue .lower .expandables-container h3.open:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#subcommittee_issue .lower .expandables-container .expander + h3 {
  margin-top: 20px;
}
#subcommittee_issue .lower .expandables-container p {
  margin-top: 20px;
  font-size: 1.3em;
}

#subcommittee_issue .latestheader {
  margin: 50px 0 0 0;
  font-size: 30px;
  color: #6b6b6d;
  text-transform: uppercase;
}
#subcommittee_issue .related-row {
  margin-top: 30px;
}
#subcommittee_issue .related-row .date {
  float: left;
  width: 15%;
  font-size: 22px;
  color: #6b6b6d;
}
#subcommittee_issue .related-row .title {
  float: left;
  margin: 0 0 0 4%;
  width: 80%;
  font-size: 22px;
}
#subcommittee_issue .more-link {
  margin-top: 30px;
  padding-left: 19%;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}
body#library #filebody {
  text-align: center;
}
body#library .item {
  margin-bottom: 40px;
  min-height: 500px;
}
body#library .item a img {
  width: 80%;
  margin-bottom: 10px;
  border: 1px solid black;
}

.expandables-container h2 {
  cursor: pointer;
  position: relative;
  display: block;
  background-color: #ebebeb;
  color: #6a6a6c;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding: 60px 60px 60px 120px;
  margin: 0px;
}
.expandables-container h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 14px 0 14px;
  top: 43%;
  left: 7%;
  border-color: #ffce0c transparent transparent transparent;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.expandables-container h2.open:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.expandables-container .expander + h2 {
  margin-top: 20px;
}
.expandables-container p {
  margin-top: 20px;
  font-size: 1.3em;
}

@media (max-width: 991px) {
  body#library .item a img {
    max-height: 100%;
  }
}
body#library .item a .title {
  font-size: 16px;
}
#asides {
  margin-top: 24px;
}
input#search-issues-page {
  display: none;
}
td.date {
  width: 105px !important;
}
.blockfill-1,
.blockfill-5 {
  background-color: #0e7496;
}
.blockfill-2,
.blockfill-6 {
  background-color: #498636;
}
.blockfill-3 {
  background-color: #cc392e;
}
.blockfill-4 {
  background-color: #fecb31;
}
.fancybox-title-float-wrap .child {
  white-space: normal !important;
}
.media-nav {
  display: table-cell;
  background-color: #ebebeb;
  float: none;
}
.media-nav .affix {
  top: 0;
  width: 209.67px;
}
.media-nav .affix-bottom {
  position: absolute;
  width: 209.67px;
}
.media-nav #typenav {
  padding-left: 30px;
  padding-top: 10px;
}
.media-nav #typenav li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.media-nav #typenav li.active a {
  background-color: #007498;
}
.media-main {
  display: table-cell;
  vertical-align: top;
  float: none;
  padding-top: 10px;
  padding-left: 50px;
}
.media-main .section-header {
  margin-bottom: 25px;
}
.media-main h2.section-header a {
  font-size: 30px;
  color: #6b6b6d;
  text-transform: uppercase;
}

.media-main h2.section-header a:focus-within {
  outline: 2px solid yellow;
}

.media-main h2.title {
  margin-top: 5px;
}
.media-main .more {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.media-main .continue {
  color: #ffcd0c;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.media-main .continue:focus {
  outline: 2px solid yellow;
}

body#stories .story {
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  display: table;
  width: 100%;
  min-height: 260px;
  vertical-align: top;
}
body#stories .story .storyitem {
  display: table-cell;
  vertical-align: top;
  position: relative;
}
body#stories .story .storyitem h2 {
  font-size: 22px;
  margin: 0;
  padding: 10px 5px;
  border-bottom: 1px solid #007498;
}
body#stories .story .storyitem h2 .more {
  font-size: 14px;
  font-weight: lighter;
  float: right;
  padding-top: 5px;
  vertical-align: middle;
}
body#stories .story .storyitem .name {
  margin: 0;
  padding: 5px;
  font-size: 18px;
}
body#stories .story .storyitem .location {
  font-weight: bold;
  padding: 5px;
  font-size: 16px;
}
body#stories .story .storyitem .summary {
  padding: 5px;
}
body#stories .story .storyitem .smallbutton {
  display: block;
  width: 100%;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
body#stories .story:hover {
  border: 1px solid #bbcad2;
  box-shadow: 0px 5px 10px #bbcad2;
}
body#stories .story:hover .storyitem h2 {
  border-bottom: 1px solid #ffcd0c;
}
body#stories .modal .modal-dialog .modal-content .modal-header {
  padding: 15px 15px 0px 15px;
  border-bottom: 1px solid #007498;
}
body#stories .modal .modal-dialog .modal-content .modal-header h1 {
  font-size: 22px;
}
body#stories .modal .modal-dialog .modal-content .modal-body {
  padding: 0px 15px 15px 15px;
}
body#stories .modal .modal-dialog .modal-content .modal-body .name {
  font-size: 1.3em;
}

body#stories .modal .modal-dialog .modal-content .modal-body .location {
  font-size: 1.3em;
  
  font-weight: bold;
  padding-bottom: 2rem;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser legend {
  padding: 33px 0px 17px 0px !important;
}
#multimedia-browser fieldset {
  margin-bottom: 10px !important;
}
#multimedia-browser input[type="button"] {
  background-color: #6b6b6d;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #6b6b6d;
}
#multimedia-browser .pagination {
  background-color: #007498;
  display: block;
  width: 100%;
}

.multimedia-content{
  display: block;
  position: relative;
}

#multimedia-browser .media-thumbnail{
  
float: left;
width: 100%;
max-width: 30%;
margin: 0 1rem;
min-height: 420px;
}

#multimedia-browser .media-thumbnail img{
display: block;
width: 100%;
}

@media (max-width: 1198px) {
  #multimedia-browser .media-thumbnail{
  max-width: 28%;
  min-height: 350px;
  }
}

@media (max-width: 767px) {
  #multimedia-browser .media-thumbnail{
  max-width: 100%;
  min-height: 350px;
  margin: 1rem 0;
    float: none;
  }
}


body footer .footernav {
  margin: 0;
  padding: 40px 0px;
}
body footer .footernav li {
  padding: 0px;
  margin-right: 30px;
}
body footer .footernav li a {
  color: #6b6b6d;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
}

body footer .footernav li a:hover {
  color: #ffcd0c;
}

body footer .footernav li a:focus {
  outline: 2px solid yellow;
}

body footer .social-media {
  margin: 40px 0px;
}
body footer .subfooter {
  padding: 30px 0px;
  background-color: #f2f2f2;
}
body footer .subfooter .subfooternav {
  margin: 0px;
}
body footer .subfooter .subfooternav li a {
  color: #6b6b6d;
  font-size: 14px;
}
body footer .subfooter .subfooternav li a:hover {
  color: #007498;
}

body footer .subfooter .subfooternav li a:focus {
  outline: 2px solid yellow;
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  outline: 2px solid yellow;
}

body footer .subfooter .subfooternav li:after {
  content: "|";
  position: relative;
  left: 5px;
  font-size: 1.3em;
  
  top: 3px;
  font-weight: 100;
  line-height: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body footer .subfooter .subfooternav li:last-child:after {
  display: none;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form .btn {
  background: #007498;
}
#content .amend-form-container form .btn:hover {
  background-color: #ffcd0c;
  color: #007498;
}
/*

typography.less

paste available font families here

font-family:'Proxima N W01 Light';
font-family:'Proxima N W01 Light It';
font-family:'Proxima N W01 Reg';
font-family:'Proxima N W01 Reg It';
font-family:'Proxima N W01 Bold';
font-family:'Proxima N W01 Bold It';

*/
/*set up serif font quick class if we have one*/
.proxima {
  font-family: 'Open Sans', sans-serif;
}
.bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.boldit {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
}
/*set up sans-serif font quick class if we have one*/
.sans {
  font-family: 'Open Sans', sans-serif;
}
.sansit {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}
.light {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.lightit {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
}
/*body color and font*/
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5em!important;
}

p{
  line-height: 1.5em!important;
}
i,
em {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
/*anchor stlyes*/
a {
  color: #007498;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  text-decoration: none;
  color: #ffcd0c;
}
a:focus,
a:visited,
a:link {
  outline: none;
  border: none;
  filter: none;
}

/* #content #main_container a{
  text-decoration: underline;
} */

/* .summary a:focus, .summary a:link, .summary a:hover {
  text-decoration: underline;
} */

/* .title a:focus, .title a:link, .title a:link {
  text-decoration: underline;
} */




/*button styles*/
.pager li .btn,
.btn-sm,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#listblocks .block a {
  color: #ffffff;
  border: none;
  background: #007498;
}
.pager li .btn:hover,
.btn-sm:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#listblocks .block a:hover {
  color: #6b6b6d;
  background: #ffcd0c;
}
/*interior page content default styles */
.pattern {
  background: url("") repeat scroll 0 0 transparent;
}
@media (min-width: 1650px) {
  #featured-carousel {
    height: 800px;
  }
  #featured-carousel .item {
    background-size: cover;
    background-position: center center;
    height: 800px;
  }
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    font-size: 17px;
    line-height: 17px;
    letter-spacing: -0.5px;
    padding-right: 12px;
    padding-left: 12px;
  }
  body .navbar srchbutton {
    font-size: 17px;
    line-height: 17px;
  }
  #livehearings {
    background-color: #ce3827;
    display: block;
  }
  #livehearings:hover {
    transition: background 0.3s;
    background-color: #ffcd0c;
  }
  #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0px 0;
  }
  #livehearings .ftext h3 {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    float: left;
    margin: 3px;
  }
  #livehearings .ftext h3 a {
    color: #fff;
  }
  #livehearings .ftext h3 a:hover {
    color: #fff;
  }
  #newsgrid .news-row .news-col .grid-item {
    height: 430px;
  }
  #newsgrid .news-row .news-col .grid-item .text {
    height: 150px;
  }
}
@media (max-width: 991px) {
  #newsgrid .news-row .news-col:first-child .grid-item {
    border-left: none;
  }
  #newsgrid .news-row .news-col .grid-item {
    height: 250px;
  }
  #newsgrid .news-row .news-col .grid-item .text {
    height: 100%;
    width: 34%;
  }
  #newsgrid .news-row .news-col .grid-item .text:after {
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #fff;
    left: 100%;
    top: 30px;
  }
  #newsgrid .news-row .news-col .grid-item .img {
    right: 0;
    left: auto;
    width: 69%;
    height: 100%;
  }
  #newsgrid .news-row .news-col:hover .text:after {
    border-color: transparent transparent transparent #ffcd0c;
  }
  #livehearings {
    background-color: #ce3827;
    display: block;
  }
  #livehearings:hover {
    transition: background 0.3s;
    background-color: #ffcd0c;
  }
  #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0px 0;
  }
  #livehearings .ftext h3 {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    float: left;
    margin: 3px;
  }
  #livehearings .ftext h3 a {
    color: #fff;
  }
  #livehearings .ftext h3 a:hover {
    color: #fff;
  }
  .contact-div {
    text-align: left !important;
    padding-bottom: 20px;
  }
  .contact-div h4 {
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  #newsgrid .news-row .news-col:first-child .grid-item {
    border-left: none;
  }
  #newsgrid .news-row .news-col .grid-item {
    height: auto;
  }
  #newsgrid .news-row .news-col .grid-item .text {
    height: auto;
    width: 100%;
    position: relative;
  }
  #newsgrid .news-row .news-col .grid-item .text:after {
    border-width: 15px 15px 0  15px;
    border-color: #fff transparent transparent transparent;
    top: 100%;
    left: auto;
  }
  #newsgrid .news-row .news-col .grid-item .img {
    right: auto;
    left: auto;
    width: 100%;
    height: 300px;
    position: relative;
    bottom: auto;
  }
  #newsgrid .news-row .news-col:hover .text:after {
    border-color: #ffcd0c transparent transparent transparent;
  }
  #livehearings {
    background-color: #ce3827;
    display: block;
  }
  #livehearings:hover {
    transition: background 0.3s;
    background-color: #ffcd0c;
  }
  #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0px 0;
  }
  #livehearings .ftext h3 {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    float: left;
    margin: 3px;
  }
  #livehearings .ftext h3 a {
    color: #fff;
  }
  #livehearings .ftext h3 a:hover {
    color: #fff;
  }
}
@media (max-width: 680px) {
  body #livehearings {
    background-color: #ce3827;
    display: block;
  }
  body #livehearings:hover {
    transition: background 0.3s;
    background-color: #ffcd0c;
  }
  body #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 13px;
    text-transform: uppercase;
    margin: 1px 0;
  }
  body #livehearings .ftext h3 {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    float: left;
    margin: 3px;
  }
  body #livehearings .ftext h3 a {
    color: #fff;
  }
  body #livehearings .ftext h3 a:hover {
    color: #fff;
  }
}
@media (max-width: 620px) {
  body #livehearings {
    background-color: #ce3827;
    display: block;
  }
  body #livehearings:hover {
    transition: background 0.3s;
    background-color: #ffcd0c;
  }
  body #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    margin: 1px 0;
  }
  body #livehearings .ftext h3 {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    float: left;
    margin: 3px;
  }
  body #livehearings .ftext h3 a {
    color: #fff;
  }
  body #livehearings .ftext h3 a:hover {
    color: #fff;
  }
}
@media (max-width: 600px) {
  body #main-navigation .social-media {
    display: none;
  }
  #livehearings {
    background-color: #ce3827;
    display: block;
  }
  #livehearings:hover {
    transition: background 0.3s ease-in-out;
    background-color: #ffcd0c;
  }
  #livehearings .ftext .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    float: left;
    font-size: 20px!important;
    text-transform: uppercase;
    margin: 0px 0;
  }
  #livehearings .ftext h3 {
    display: none!important;
  }
  #livehearings .ftext h3 a {
    color: #fff;
  }
  #livehearings .ftext h3 a:hover {
    color: #fff;
  }
}
@media (max-width: 479px) {
  body #header .newsletter-signup {
    float: right;
  }
  body .navbar .srchbutton {
    padding: 15px 0px 0px;
  }
  #subcommittee_issue .related-row .title {
    float: right;
    width: 71%;
  }
  .follow {
    text-align: center;
  }
  .follow .button-connect {
    margin-bottom: 10px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie8 .modal,
.ie7 .modal {
  background-color: #fff !important;
}
.ie8 #SearchModal .modal-dialog .modal-content .modal-body #sitesearch #search-field,
.ie7 #SearchModal .modal-dialog .modal-content .modal-body #sitesearch #search-field {
  border: 1px solid #333 !important;
  margin-right: -14px !important;
  height: 70px;
}
.ie8 #featured-carousel,
.ie7 #featured-carousel {
  margin: 0 auto;
  max-width: 1298px;
}
.ie8 #featured-carousel .ticker-tape,
.ie7 #featured-carousel .ticker-tape {
  background: #007498;
}
.ie8 #newsgrid .news-row .news-col .grid-item .img img,
.ie7 #newsgrid .news-row .news-col .grid-item .img img {
  display: block;
}
.ie8 #issuegrid a .desc-overlay,
.ie7 #issuegrid a .desc-overlay {
  display: none !important;
}
.ie8 #issuegrid a:hover .desc-overlay,
.ie7 #issuegrid a:hover .desc-overlay {
  display: block !important;
}
.ie8 #breadcrumb ol li:after,
.ie7 #breadcrumb ol li:after {
  content: none;
}
.ie8 #thomas_search,
.ie7 #thomas_search {
  width: 100%;
}
.ie8 #media-player iframe,
.ie7 #media-player iframe {
  width: 100%;
  height: 350px;
}
.ie8 .footernav,
.ie7 .footernav {
  margin: 0;
  padding: 40px 0px;
}
.ie8 .footernav li,
.ie7 .footernav li {
  padding: 0px;
  margin-right: 30px;
}
.ie8 .footernav li a,
.ie7 .footernav li a {
  color: #6b6b6d;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
}

.ie8 .footernav li a:hover,
.ie7 .footernav li a:hover {
  color: #ffcd0c;
}
.ie8 .social-media,
.ie7 .social-media {
  margin: 40px 0px;
}
.ie8 .subfooter,
.ie7 .subfooter {
  padding: 30px 0px;
  background-color: #f2f2f2;
}
.ie8 .subfooter .subfooternav,
.ie7 .subfooter .subfooternav {
  margin: 0px;
}
.ie8 .subfooter .subfooternav li a,
.ie7 .subfooter .subfooternav li a {
  color: #6b6b6d;
  font-size: 14px;
}
.ie8 .subfooter .subfooternav li a:hover,
.ie7 .subfooter .subfooternav li a:hover {
  color: #007498;
}
.ie8 .subfooter .subfooternav li:first-child:after,
.ie7 .subfooter .subfooternav li:first-child:after {
  content: "|";
  position: relative;
  left: 5px;
  font-size: 1.3em;
  
  top: 3px;
  font-weight: 100;
  line-height: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
/* SEARCH --------------------------------------------- */
#SearchModal .search #results {
  /* corrects bootstrap conflicts !!!!! */
  /* ---- */
}
#SearchModal .search #results input.gsc-search-button,
#SearchModal .search #results input.gsc-search-button:hover,
#SearchModal .search #results input.gsc-search-button:focus {
  color: #fff;
}
#SearchModal .search #results .gsc-clear-button .gsc-clear-button {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#SearchModal .search #results .gsc-selected-option-container {
  min-width: 100px;
}
#SearchModal .search #results .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #fff;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-title {
  margin: 0 0 15px 0;
}


.btnred{
  border: 5px solid #b96149!important;
  padding: 0.6rem 2.5rem;
  background-color: white;
  color: #b96149!important;
 font-family: 'Open Sans', sans-serif;
 font-weight: 700;
}

.btnred:visited{
  background: white;
}

.btnred.large{
  font-size: 24px!important;
}

.btnred.xlarge{
  font-size: 30px!important;
}


#popupModal .modal-backdrop.in{
  background-color: rgb(15 30 30 / 75%);
}

#popupModal .modal-dialog {
  max-width: 800px !important;
  margin: 10% auto !important;
}
#popupModal .modal-dialog .modal-content {
  background-color: #007498;
  padding: 2rem;
}
#popupModal .modal-dialog .modal-content .close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: white;
  opacity: 1;
  padding: 0rem;
  text-shadow: none;
  background-color: #ffcd0c;
  border-radius: 100%;
  width: 40px;
  text-align: center;
  height: 40px;
}
#popupModal .modal-dialog .modal-content .close:hover {
  background-color: #00536d;
}
#popupModal .modal-dialog .modal-content .modal-area {
  border: 2px solid #ffcd0c;
  padding: 1rem;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-header .modal-logoholder {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-header .modal-logoholder .modal-logo {
  width: 100%;
  display: block;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-body .popupbody {
  color: #fff !important;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder .btn{
  background-color: #00536d!important;
  font-family: 'Open Sans', sans-serif!important;
  font-weight: 700;
  font-size: 1.3em;
}


#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder .btn:hover{
  background-color: #ffcd0c!important;
}


.alert {
  width: 100%;
  background: #16395b;
  margin: 0 auto;
  border-radius: 0px;
  padding: 1.5rem;
}

.alert .alertholder{
  display: table;
  width: 100%;
  vertical-align: middle;
}

.alert .alertIcn{
  display: table-cell;
  vertical-align: middle;
  font-size: 30px;
}

.alert .alertIcn .glyphicon {
  color: #fff;
  top: 0px;
  
}

.alert .headline{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.alert .headline a {
  color: #fff;
 font-family: 'Open Sans', sans-serif;
 font-weight: 700;
  font-size: 24px;
  
}

.alert .headline a:hover{
  text-decoration: underline;
  color: white;
}


@media (max-width: 600px) {
  .alert .headline a {

    font-size: 1.3em;
    

  }

  .alert .alertIcn{

    font-size: 26px;
  }
}

/* New Stuff */


body#home .social .twitterholder{
  padding-bottom: 3rem;
}

.socialareablock .socialblock {
  padding: 1rem;
  height: 100%;
  position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;


}
.socialareablock .socialblock .socialheader .socialfeedbackbutton {
  padding: 5px 10px;
  text-align: left;
  display: block;
  font-size: 1.3em;
  
  display: inline-block;
  margin-bottom: 1rem;
}
.socialareablock .socialblock .socialheader .socialfeedbackbutton .icon {
  margin-right: 10px;
  text-decoration: none;
  padding: 4px;
  color: #007498;
  display: inline-block;
  text-align: center;
}


.socialareablock .socialblock .socialheader .socialfeedbackbutton .icon.youtube {
color: #e9654b;
}
.socialareablock .socialblock .socialheader .socialfeedbackbutton .icon.twitter {
color: #78cdf0;
}


.socialareablock .videos__section {
  height: auto;
  width: 100%;
  display: table;
  position: relative;
  padding: 1rem;
}
.socialareablock .videos__section--video {
  
  text-align: center;
  min-height: 350px;
}
.socialareablock .videos__section--imageholder {
  display: table;
  width: 100%;
  height: 200px;
  position: relative;
}
.socialareablock .videos__section--playbutton {
  position: absolute;
  color: white;
  text-align: center;
  top: 30%;
  left: 0;
  right: 0;
  font-size: 64px;
}

.socialareablock .videos__section--video:hover .videos__section--playbutton  {
  color: red;
}

.socialareablock .videos__section--image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: 100%;
  background-position: center;
}
.socialareablock .videos__section--title {
  
  font-weight: 600;
  color: #007498;
  text-align: left;
  padding: 1rem 0;
  font-size: 18px;
}


h1,h2,h3,h4,h5{
  line-height: 1.5em;
}

#toggleCalendar a:focus {
  outline: 2px solid yellow;
}

body.notitle .main_page_title{
  display: none;
}

/*# sourceMappingURL=common.css.map */