/* 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);
  }
}
#filtermodal .modal-dialog .modal-content .modal-body legend {
  display: none;
}
#FilterSearchModal .modal-dialog .modal-content .modal-header {
  border-bottom: 0px solid transparent;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog,
#FilterSearchModal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}
#NavMobileModal .modal-dialog .modal-content,
#SearchModal .modal-dialog .modal-content,
#ContactModal .modal-dialog .modal-content,
#FilterSearchModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close,
#FilterSearchModal .modal-dialog .modal-content .close {
  color: black;
  opacity: 1;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch,
#FilterSearchModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 40px 0px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#FilterSearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button,
#FilterSearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #315553;
  border: none;
  font-size: 28px;
  padding: 14px;
  width: 12%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .searchsection,
#SearchModal .modal-dialog .modal-content .modal-body .searchsection,
#ContactModal .modal-dialog .modal-content .modal-body .searchsection,
#FilterSearchModal .modal-dialog .modal-content .modal-body .searchsection {
  color: #315553;
  font-size: 18px;
  text-align: center;
  padding: 40px 0px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .searchsection .page-title,
#SearchModal .modal-dialog .modal-content .modal-body .searchsection .page-title,
#ContactModal .modal-dialog .modal-content .modal-body .searchsection .page-title,
#FilterSearchModal .modal-dialog .modal-content .modal-body .searchsection .page-title {
  color: black;
  font-weight: bold;
}
.live-hearing {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #b27921;
}
.live-hearing .container {
  padding: 0px;
}
.live-hearing .container .live-span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: white;
}
.live-hearing .live-hearing-title {
  color: white;
}
.live-hearing .live-hearing-title:hover {
  text-decoration: underline;
}
body#home .live-hearing {
  display: none;
}

body#home .main_container {
  padding-top: 100px;
}


body .main_container {
  padding: 0px;
}
body #header {
  background-color: #f7f1e6;
  height: 100px;
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0px;
}
body #header .blue {
  background-color: #315553;
  height: 100%;
  width: 30%;
  left: 0;
  position: absolute;
  z-index: 1;
}
body #header .beige {
  height: 100%;
  width: 70%;
  right: 0;
  background-color: #f7f1e6;
  border-bottom: 5px solid #e5e5e5;
  position: absolute;
}
body #header .logo {
  height: 100px;
  z-index: 3;
  position: relative;
  display: inline-block;
}
body #header .logo img {
  height: 100%;
  z-index: 5;
  position: relative;
}
body .nav-hold {
  display: inline-block;
  float: right;
  margin-top: 40px;
}
body .navbar {
  background-color: transparent;
  position: relative;
}
body .navbar .nav-pills {
  margin-right: 25px;
}
body .navbar .nav-pills li {
  z-index: 2;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
}
body .navbar .nav-pills > li {
  width: auto;
}
body .navbar .nav-pills > li a,
body .navbar .nav-pills > li span {
  color: #363636;
  text-transform: uppercase;
  font-size: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 6px 9px;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  display: block;
  position: relative;
}
body .navbar .nav-pills > li span {
  pointer-events: none;
}
body .navbar .nav-pills > li:last-child .dropdown-menu {
  right: 0;
}
body .navbar .nav-pills > li .dropdown-menu {
  z-index: 100;
  margin-left: 23px;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  border: none;
  background-color: white;
  overflow: hidden;
}
body .navbar .nav-pills > li .dropdown-menu li {
  -webkit-transform: skew(-20deg);
  -moz-transform: -skew-(20deg);
  -o-transform: skew(-20deg);
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #363636;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: white;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  text-decoration: underline;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #315553;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li:hover span,
body .navbar .nav-pills > li.selected a,
body .navbar .nav-pills > li.selected span {
  color: white;
}
body .navbar .nav-pills .dropdown:first-child .dropdown-menu {
  margin-left: 36px;
}
body .navbar .nav-pills .dropdown:nth-child(2) .dropdown-menu {
  margin-left: 22px;
}
body .navbar .nav-pills .dropdown:last-child .dropdown-menu {
  margin-right: -37px;
}
body .navbar .srchbutton {
  color: #363636;
  position: absolute;
  right: 0;
  font-size: 15px;
  top: 10px;
}
body .navbar #search {
  float: left;
  width: 0;
  position: absolute;
  right: 17px;
  overflow: hidden;
  z-index: 100;
  top: 0px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search.showme {
  position: absolute;
  width: 615px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search #sitesearch ,
body .navbar #search #sitesearchnav{
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
  border-bottom: 2px solid #315553;
}
body .navbar #search #sitesearch #search-field,
body .navbar #search #sitesearchnav #search-field-nav {
  background-color: #f7f1e6;
  border-bottom: 2px solid #315553;
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}
body .navbar #search #sitesearch #search-field:focus ,
body .navbar #search #sitesearchnav #search-field-nav:focus{
  outline: none;
  border: none;
  filter: none;
}
body .navbar #search #sitesearch button ,
body .navbar #search #sitesearchnav button {
  position: absolute;
  line-height: 20px;
  background-color: #f7f1e6;
  color: #363636;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body .navbar #search #sitesearch button span ,
body .navbar #search #sitesearchnav button span {
  color: #363636;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  width: 100%;
  display: inline-block;
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  display: inline-block;
  position: relative;
  border: none;
  background-color: inherit;
  color: white;
  text-transform: none;
  box-shadow: none;
  padding-left: 30px;
  font-size: 20px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  width: 100%;
}
body #NavMobileModal .modal-backdrop.in {
  background-color: #315553;
}
.streaminghearing {
  height: 500px !important;
  position: relative;
  z-index: 998;
  border: 1px solid red;
}
body#home .main_container {
  position: relative;
  z-index: 10;
}
.live-hearing-container {
  margin: 30px 0px;
}
.live-hearing-container .live-col {
  padding: 0px;
}
.live-hearing-container .live-hearing {
  background-color: #315553;
  height: 100%;
  padding: 20px 30px;
}
.live-hearing-container .live-hearing h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 36px;
}
.live-hearing-container .live-hearing h4,
.live-hearing-container .live-hearing .description p {
  color: white !important;
}
.live-hearing-container .live-hearing a {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  color: white;
}
.live-hearing-container .live-hearing a:hover {
  text-decoration: underline;
}
#twohearings .live-hearing-container {
  margin: 30px 0px;
}
@media (max-width: 767px) {
  #twohearings .live-hearing-container {
    padding: 10px;
  }
}
#twohearings .live-hearing-container .live-col {
  padding: 0px;
}
#twohearings .live-hearing-container .live-col .video-container iframe.streaminghearing {
  height: 330px!important;
}
#twohearings .live-hearing-container .live-hearing {
  background-color: #315553;
  height: auto;
  padding: 20px 30px;
  display: block;
}
#twohearings .live-hearing-container .live-hearing h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 36px;
}
#twohearings .live-hearing-container .live-hearing h4,
#twohearings .live-hearing-container .live-hearing .description p {
  color: white !important;
}
#twohearings .live-hearing-container .live-hearing a {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  color: white;
}
#twohearings .live-hearing-container .live-hearing a:hover {
  text-decoration: underline;
}
.top {
  background-image: url('/themes/finance/images/seal.jpg');
  margin: 30px 0px;
}
.top #featured {
  background-image: url('/themes/finance/images/seal.jpg');
}
.top #featured #featuredCarousel .carousel-inner .item {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.top #featured #featuredCarousel .carousel-inner .item h2 {
  color: white;
  font-size: 48px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.top #featured #featuredCarousel .carousel-inner .item a {
  color: white;
  display: table;
  height: 100%;
  width: 55%;
  padding-left: 5rem;
}

@media(max-width:991px){

  .top #featured #featuredCarousel .carousel-inner .item a {
    color: white;
    display: table;
    height: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

}

.top #featured #featuredCarousel .carousel-inner .item a:hover {
  text-decoration: underline;
  -moz-text-decoration-color: white;
  /* Code for Firefox */
  text-decoration-color: white;
}

.h3,
h3 {
  font-size: 26px;
  line-height: 1.4;
}
.carousel-indicators li {
  background-color: white;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.carousel-indicators .active {
  background-color: #315553;
  width: 20px;
  margin-right: 8px;
  height: 20px;
  border-color: #315553;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  margin-left: -78px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  margin-right: -60px;
}
.hold img {
  width: 100%;
}
.hold .member {
  background-color: #315553;
  color: white;
  width: 50%;
  position: absolute;
  top: 234px;
  height: 100px;
  padding: 10px 15px;
  transition: all 0.1s ease;
}
.hold .member .name {
  margin: 0px;
  font-size: 42px;
}
.hold .member .rank {
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 19px;
  width: auto;
  float: left;
  display: inline-block;
  margin-right: 5px;
}
.hold .member .social-list {
  width: auto;
  float: left;
  display: inline-block;
}
.hold .member .social-list .social-link {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
  font-size: 16px;
  margin: 0 2px;
  line-height: 31px;
  text-align: center;
}
.hold .member .social-list .social-link.bio {
  text-transform: uppercase;
  color: #315553;
  background-color: white;
  font-weight: bold;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.hold .member .social-list .social-link.bio:hover {
  background-color: #f7f1e6;
  text-decoration: none;
}
.hold .member .social-list .social-link.twitter {
  background-color: #78cdf0;
  color: white;
}
.hold .member .social-list .social-link.twitter:hover {
  background-color: #5fb2d3;
}
.hold .member .social-list .social-link.youtube {
  background-color: #e9654b;
  color: white;
}
.hold .member .social-list .social-link.youtube:hover {
  background-color: #ce5844;
}
.hold .member:hover {
  width: 53%;
  padding-left: 30px;
}
.hold .news {
  display: inline-block;
  border-left: 1px solid #363636;
  border-right: 1px solid #363636;
  padding: 15px 0px;
  height: 100%;
  min-height: 409px;
}
.hold .news #recentnews1 {
  padding-left: 16px;
}
.hold .news #recentnews1 p {
  font-size: 26px;
}
.hold .news #recentnews2 {
  padding-left: 16px;
}
.hold .news #recentnews2 p {
  font-size: 26px;
}
.hold .news .news-item {
  margin: 10px 0px;
  display: inline-block;
  width: 100%;
}
.hold .news .news-item .ten {
  width: auto;
  float: left;
  text-align: center;
  margin: 0px 15px;
  display: inline-block;
}
.hold .news .news-item .ninety {
  width: 80%;
  float: left;
  display: inline-block;
}
.hold .news .date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-weight: bold;
  font-size: 17px;
  vertical-align: super;
}
.hold .news a {
  font-size: 18px;
  color: #363636;
  display: block;
}
.hold .more-news {
  background-color: #315553;
  color: white;
  text-align: right;
  width: 100%;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.hold .more-news:hover {
  background-color: #234341;
  color: white;
  text-decoration: none;
}
.more-news {
  background-color: #315553;
  color: white;
  text-align: right;
  width: 100%;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.more-news:hover {
  background-color: #234341;
  color: white;
  text-decoration: none;
}
.calendar {
  border-top: 1px solid #363636;
  border-right: 1px solid #363636;
  border-left: 1px solid #363636;
  margin-top: 30px;
  display: inline-block;
}
.calendar .date-col {
  width: auto;
  float: left;
  margin: 0px 15px;
  display: inline-block;
}
.calendar .hearing-col {
  width: 90%;
  float: left;
  display: inline-block;
}
.calendar h2 {
  margin-left: 0px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  background-color: #F7F1E6;
  position: relative;
  display: block;
  bottom: 20px;
  border-bottom: 1px solid;
  line-height: 2;
}
.calendar h2 a {
  color: #000;
  display: block;
  font-size: 30px;
}
.calendar h2 a:hover {
  color: #315553;
}
.calendar .hearing {
  margin: 10px 0px;
  display: inline-block;
  width: 100%;
}
.calendar .date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-weight: bold;
  font-size: 17px;
  vertical-align: super;
}
.calendar a {
  font-size: 18px;
  color: #363636;
  display: block;
}
body#home .main_container {
  margin-top: 100px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
body.no-title .main_page_title {
  display: none;
}
body#newsroom #pressrelease {
  margin-top: 68px;
  text-align: left !important;
}
body#newsroom #pressrelease .date {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
}
body#newsroom #pressrelease .contactinfo .presscontact {
  margin-top: 15px;
  font-size: 20px;
  font-style: italic;
}
body#newsroom #pressrelease .contactinfo p {
  font-size: 20px;
}
body#newsroom #pressrelease .main_page_title {
  margin-top: 70px;
}
body#newsroom #pressrelease .subtitle {
  font-size: 22px;
  font-style: italic;
}
#voting_record .page .row {
  /* ----- */
}
#newscontent.article a {
  text-decoration: underline;
  /* color: #119f97; */
  color: #315553;
  text-decoration-color: #315553;;
}
#newscontent.article a:hover {
  color: #315553;
  text-decoration-color: #119f97;
}

#newscontent.article a.btn{
  color: white;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
.people > li {
  min-height: 210px;
}
.members li {
  min-height: 50px;
}
.sideacrobat .filetype {
  background: url(/themes/default_v4/images/icons/pdficon_large.png) 0 0 no-repeat;
  height: 20px !important;
  width: 20px !important;
  margin: 2px 7px auto auto;
  background-size: 20px 20px;
  float: left;
}
#toggleCalendar .jump {
  background-color: #315553;
  width: 225px;
}
#toggleCalendar .jump label {
  color: #FFF;
  width: 100%;
}
#toggleCalendar .jump .glyphicon {
  color: white;
}
#calendar th {
  background-color: #315553;
  color: white;
}
#calendar .fc-toolbar {
  border-bottom: 0;
  background: transparent;
}
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #315553 !important;
  color: white !important;
}
/* #calendar .fc-toolbar .fc-right button {
  background-color: #4d8682 !important;
}
#calendar .fc-toolbar .fc-right button:hover {
  background-color: #315553 !important;
} */

#calendar .fc-toolbar .fc-right button {
  background-color: #eee !important;
  color: black !important;
}
#calendar .fc-toolbar .fc-right button:hover {
  background-color: #618381 !important;
  color: black !important;
}
.calendarFooter .row .col .today {
  color: #f7f1e6;
}
.joint_full {
  color: #ffef77;
}
.sub_field {
  color: #012484;
}
.joint_sub {
  color: #315553;
}
a.executive:before {
  color: #A9A9A9;
  background-color: #A9A9A9;
}
#calendar .fc-today,
#calendar .fc-state-disabled {
  background-color: #f7f1e6 !important;
}
#calendar .fc-day-grid-event .fc-content .fc-title {
  white-space: nowrap;
  overflow: hidden;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a {
  height: auto;
  color: #315553;
}

#calendar .fc-view-container .fc-month-view .fc-event-container a.executive{
  color: #575757;
}
#calendar td {
  vertical-align: top;
}
#breadcrumb > ol li:first-child {
  display: inline-block;
}
.members {
  margin-top: 20px;
}
.members .title {
  margin-top: 0px;
}
.members .link {
  font-size: 16px;
}
.members .leader {
  padding-left: 8px;
  padding-top: 15px;
  max-height: 285px;
  height: 285px;
  background-color: #f7f1e6;
  padding-right: 10px;
  margin-right: 10px;
  border-bottom: 5px solid #E5E5E5;
  position: relative;
}


@media(max-width:636px){
  .members .leader .linkarea{
    margin-right: 15px;
    margin-left: 15px;
  }
}

.members .leader a:hover {
  color: #234341;
}
.members .leader .member-text {
  font-size: 14px;
  display: block;
  margin-bottom: 3rem;

}

.members .leader .linkarea{
  position: absolute;
  bottom: 0;
  padding: 0 1.5rem;
  left: 0;
  right: 0;
}

@media(max-width:636px){
  .members .leader .linkarea{
    position: relative;
    bottom: 0;
    padding: 0 1.5rem;
    left: 0;
    right: 0;
  }
}

.members .leader .social {
  float: right;
  font-size: 16px;
  margin: 10px 0px;
}
.members .leader .social span {
  margin: 3px;
}
.members .leader .link {
  font-size: 16px;
  color: #315553;
  width: 50%;
  margin: 10px 0px;
}
.members .leader .headshot {
  margin-top: 0px;
}
.members .party {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.members .member-list {
  margin-top: 20px;
}
.members .member-list .name {
  width: auto;
  margin-right: 6px;
}
.oHatch {
  position: relative;
  display: block;
  top: -5px;
}
#toggleCalendar a {
  color: white;
  background-color: #315553;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 1;
}
#toggleCalendar a:hover {
  background-color: #234341;
}
#toggleCalendar a .glyphicon {
  line-height: 1;
}
.vcard {
  width: 100%;
}
.pagination-right,
.maxrows {
  display: inline-block;
  vertical-align: top;
  float: left;
}
.maxrows {
  margin-left: 10px;
  border-left: 1px solid #315553;
  padding-left: 10px;
}
.related-files {
  padding: 0px 15px;
}
.related-files td {
  vertical-align: top;
  padding: 10px 0px;
  padding-right: 36px;
}
.related-files td.file {
  padding-top: 12px;
  padding-left: 33px;
  padding-right: 14px;
}
#pagination-container,
.pagination-container {
  font-size: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
#pagination-container #showing-page,
.pagination-container #showing-page {
  padding: 0px 0px 0px 0px;
  font-size: 16px;
}
#pagination-container #inside-pagination select,
.pagination-container #inside-pagination select,
.pagination-container .inside-pagination select{
  padding: 0px 0px 0px 0px;
}
/*#pagination-container{
	text-align: right;
	margin-bottom: 20px;

}
.megapagination-container{
	margin-bottom: 80px;
	display: block;
}

.maxrows{
	    position: absolute;
    left: 272px;
}
.pager{
	margin: 0px;
	display: inline-block;
	width: auto;
	li{
		border: 2px solid white;
	}
}*/
blockquote {
  border-left: none;
}
.nextarticle,
.prevarticle {
  display: none;
}
#sam-faq,
#sam-resources .resources,
#sam-accomplishments,
#sam-ranking,
#sam-social {
  /*background-color: @beige;
	padding: 10px 15px 10px 15px;
	font-size: 22px;
	border-bottom: 5px solid #e5e5e5;*/
}
#sam-faq h4,
#sam-resources .resources h4,
#sam-accomplishments h4,
#sam-ranking h4,
#sam-social h4,
#sam-faq h3,
#sam-resources .resources h3,
#sam-accomplishments h3,
#sam-ranking h3,
#sam-social h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #315553;
  margin-top: 0px;
}
#sam-resources .resources {
  margin-top: 71px;
}
#sam-faq {
  margin-top: 52px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
#sam-faq a {
  color: #000;
  text-decoration: underline;
}
.span4,
select {
  background: #fff;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
#filterbuttons {
  width: 100%;
}
#filterbuttons a {
  background-color: #315553;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 1px 10px 0px 10px;
}
#filterbuttons a:hover {
  background-color: #234341;
}
#filterbuttons a:first-child {
  float: right;
}
#filterbuttons #launchfilter {
  float: right;
}
#filterbuttons #launchfilter a {
  background-color: #315553;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 1px 10px 0px 10px;
  margin-right: 0px;
}
#filterbuttons #launchfilter a:hover {
  background-color: #234341;
}
a#witnesses {
  margin-left: 10px;
}
#sam-social p {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #315553;
  line-height: 40px;
  text-align: center;
  padding: 0px 8px;
  color: #f7f1e6;
  margin-right: 10px;
}
#sam-social p:hover {
  background-color: #234341;
}
#sam-social a {
  display: inline-block;
  font-size: 24px;
  color: #f7f1e6;
}
/*body#about{
	#main_column{
		margin-top: 47px;
	}
}*/
#search-pod-field {
  width: 100%;
}
/*#main_column{
	margin-top: 45px;
}*/
.disability,
.faq-container {
  background-color: #f7f1e6;
  margin-top: 30px;
  border-bottom: 5px solid #E5E5E5;
  padding: 15px 35px;
  display: inline-block;
}
.disability h3,
.faq-container h3 {
  color: #315553;
  margin-top: 0px;
}
/*
.faq-container h3 {
  font-family: 'Lucida Grande';
}*/
.faq-container h3 .glyphicon {
  position: relative;
  top: 4px;
}
body#subcommittees .sectionhead {
  display: inline-block;
  background-color: #f7f1e6;
  border-bottom: 5px solid #e5e5e5;
  padding: 10px 0px;
}
body#subcommittees .sectionhead .title {
  font-size: 28px;
  margin-bottom: 2px;
}
body#subcommittees .sectionhead .site {
  display: block;
  font-size: 18px;
}
body#subcommittees .party {
  padding-left: 15px;
}
body#subcommittees .members {
  list-style: none;
  padding-left: 15px;
}
.panel-title {
  font-size: 22px;
}
.panel-body {
  font-size: 20px;
}
#main_container {
  margin-top: 165px;
}
#asides {
  margin-top: 60px;
}
#asides form fieldset {
  margin-top: 0;
}
#library #main_column form a {
  text-decoration: underline;
}
#library #main_column form a:hover {
  text-decoration: none;
}
#library #main_column form label {
  font-weight: normal;
}
#library #main_column form .btn {
  display: inline-block;
  float: none;
  margin: 0;
  padding: 3px 7px;
  font-size: 17px;
  line-height: 1;
}
#files-select {
  display: none;
}
#asides {
  font-size: 18px;
}
#asides h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #315553;
  margin-top: 0;
}
#asides form fieldset input,
#asides form fieldset select {
  margin-bottom: 20px;
}
#asides .amend-textarea,
#asides .inline-search {
  padding: 10px 15px;
  background-color: #f7f1e6;
  border-bottom: 5px solid #e5e5e5;
}
#asides .amend-textarea #side-update-btn,
#asides .inline-search #side-update-btn {
  width: 66px;
}
body.lib #asides {
  background-color: #f7f1e6;
  border-bottom: 5px solid #E5E5E5;
  padding: 10px 15px;
  margin-top: 75px;
}
#main_column form fieldset legend {
  font-weight: normal;
  font-size: 21px;
}
body#newsroom #pressrelease {
  line-height: 31px;
}
#download-public-law,
#view-on-congress {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  margin: 10px 0px;
}
#download-public-law span,
#view-on-congress span {
  vertical-align: middle;
}
.panel-collapse {
  background-color: #fff;
}
.nominations .panel-group .panel-default:nth-of-type(2n+0) .panel-heading,
.faqs .panel-group .panel-default:nth-of-type(2n+0) .panel-heading,
.witnesses .panel-group .panel-default:nth-of-type(2n+0) .panel-heading {
  border-top: 1px solid #ddd;
}
.nominations .panel-group .panel-default .panel-heading,
.faqs .panel-group .panel-default .panel-heading,
.witnesses .panel-group .panel-default .panel-heading {
  border-top: 1px solid #ddd;
}
span.title.pull-right {
  color: #315553;
}
span.title.pull-right:hover {
  color: #234341;
  text-decoration: underline;
}
body#faq .panel-default {
  border: none;
}
body#faq .panel-heading {
  background-color: #F8F8F8;
  border: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#sam-faq {
  background-color: #f7f1e6;
  color: #000;
}
#sam-faq h3,
#sam-faq h4 {
  color: #000;
}
p {
  font-family: 'Newsreader', serif;
  color: #333;
  font-size: 18px;
}
.panel-group {
  background-color: #F8F8F8;
}
.panel-title {
  font-size: 18px;
}
h3.jusrisdiction {
  margin-bottom: 5px !important;
}
li.jurisdiction-list-items {
  font-size: 18px;
  padding-bottom: 10px;
}
p.excerpt {
  font-size: 23px;
}
span .contact-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.header_date {
  width: 120px;
}
.header_bill {
  width: 65px;
}
.hearing-td {
  width: 60%;
}
#breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
}
#breadcrumb > ol li:after {
  color: black;
}
a.conference_session:before {
  background-color: black;
}
.conference_session {
  color: black;
}
a.sub:before {
  background-color: #01822c !important;
}
.sub {
  color: #01822c;
}
a.field:before {
  background-color: #824101 !important;
}
.field {
  color: #824101;
}
a.sub_field:before {
  background-color: #012484 !important;
}
a.full:before {
  background-color: #7f152a !important;
}
.full,
.full:before {
  color: #7f152a;
}
.modal-dialog .modal-content form input[type="text"] {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}
.streaminghearing {
  margin-bottom: -8px;
  width: 100%;
  height: 660px;
  border: none;
}
#watch-live-now {
  margin: 0 auto 30px;
  float: none;
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  padding: 15px;
}
tr:nth-child(odd) {
  background-color: #F6F6F6 !important;
}
#calendar tr:nth-child(odd) {
  background-color: transparent !important;
}
.vevent:nth-child(odd) {
  background-color: #F6F6F6 !important;
}
tr.divider.congress,
tr.divider {
  font-size: 26px;
  color: #363636;
  text-transform: uppercase;
  font-weight: 400;
  background-color: #f7f1e6 !important;
}
tr.divider.congress a,
tr.divider a {
  color: #363636;
  font-size: 24px;
}
tr.divider.congress b,
tr.divider b {
  font-weight: 400;
}
.hearing-td {
  padding-right: 50px !important;
}
.dtstart,
td.date,
span.date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
td.header_date {
  width: 201px;
}
body#history {
  /* ---- Timeline ---- */
  /* ---- Timeline elements ---- */
}
body#history html,
body#history body {
  color: #681;
  background: #eee;
  min-width: 700px;
}
body#history #timeline {
  position: relative;
  display: block;
  margin: 100px 0;
  height: 4px;
  background: #315553;
  overflow: visible;
  z-index: 1;
}
body#history ol#timeline::before,
body#history ol#timeline::after {
  content: "";
  position: absolute;
  top: -8px;
  display: block;
  width: 0;
  height: 0;
  border-radius: 10px;
  border: 10px solid #315553;
}
body#history ol#timeline::before {
  left: -5px;
}
body#history ol#timeline::after {
  right: -10px;
  border: 10px solid transparent;
  border-right: 0;
  border-left: 20px solid #315553;
  border-radius: 3px;
}
body#history #timeline {
  /* ---- Details ---- */
  /* ---- Hover effects ---- */
}
body#history #timeline li {
  position: relative;
  left: -5px;
  top: -50px;
  display: inline-block;
  float: left;
  width: 9%;
  overflow: visible;
  white-space: nowrap;
  transform: rotate(-45deg);
  font: bold 14px arial;
  background-color:white;
}
body#history #timeline li:last-child {
  top: -50px;
}
body#history #timeline li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -29px;
  display: block;
  width: 6px;
  height: 6px;
  border: 4px solid #315553;
  border-radius: 10px;
  background: #eee;
}
body#history #timeline .timeline-links {
  display: none !important;
}
body#history #timeline .details {
  display: none;
  position: absolute;
  left: -85px;
  top: 60px;
  padding: 15px;
  border-radius: 3px;
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
  font: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  background: #fff;
}
body#history #timeline .details::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -9px;
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
}
body#history #timeline li:hover {
  cursor: pointer;
  color: #28e;
}
body#history #timeline li:hover::before {
  top: 7px;
  left: -31px;
  width: 8px;
  height: 8px;
  border-width: 5px;
  border-color: #363636;
}
body#history #timeline li:hover .details {
  color: #444;
}
body#subcommittees .links ul {
  line-height: 40px;
}
body#subcommittees strong {
  text-transform: uppercase;
}
body#subcommittees .party {
  font-size: 22px;
}
body#subcommittees .members li {
  font-size: 22px;
  min-height: 40px !important;
}
body#subcommittees .state {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
td {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}
#calendar td {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
span.pull-left.hearing-date {
  margin-right: 15px;
}
.previous a {
  margin-right: 15px;
}
td.header_bill {
  width: 100px;
}
.witnesses .header {
  font-size: 24px;
}
.witnesses .panel-heading h3 a span {
  font-size: 24px;
}
.agenda {
  margin-bottom: 40px;
}
.mceLayout .mceToolbar {
  padding: 0px !important;
}
.mceLayout .mceToolbar td {
  padding: 0px !important;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #363636;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #f7f1e6;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #315553;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #f7f1e6;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #315553;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #f7f1e6;
  color: #fff;
}
#multimedia-browser .multimedia-tools label {
  display: none !important;
}
#multimedia-browser .pagination {
  background-color: #315553;
}
#multimedia-browser .row .media-thumbnail a {
  color: #363636;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #315553;
}
body#multimedia.new #main_container {
  margin-top: 99px;
}
@media (max-width: 1200px) {
  body#multimedia.new #main_container {
    margin-top: 79px;
  }
}
@media (max-width: 636px) {
  body#multimedia.new #main_container {
    margin-top: 66px;
  }
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #363636;
  padding: 40px 80px;
  position: relative;
}
@media (max-width: 991px) {
  body#multimedia.new #video-content {
    padding: 40px 0px;
  }
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #363636;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #363636;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 19px;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: #315553 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
@media (max-width: 991px) {
  body#multimedia.new #multimedia-browser {
    padding: 50px 0px;
  }
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #315553;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #315553 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #f7f1e6;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #f7f1e6;
  color: #234341;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools fieldset {
  width: 48%;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #315553;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #363636;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #363636;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #f7f1e6;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #f7f1e6;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #363636;
  height: 165px;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #315553;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #363636;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #315553;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #315553;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 139px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 75px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools fieldset {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 10px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body .footer {
  margin-top: 90px;
  background-color: #315553;
  color: white;
  text-align: center;
  padding: 22px 0px 10px 0px;
}
body .footer .footernav li a {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
}
body .footer .footernav li a:hover {
  text-decoration: underline;
}
body .Subfooter {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  background-color: #f7f1e6;
  color: #363636;
  text-align: center;
  padding: 30px 0px 30px 0px;
  font-size: 18px;
}
body .Subfooter ul {
  text-transform: uppercase;
}
body .Subfooter ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: #363636;
}
body .Subfooter ul li:first-child {
  border-right: 2px solid #363636;
  padding-right: 11px;
}
body .Subfooter ul li:hover a {
  color: black;
  text-decoration: underline;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
font-family:'Sabon MT W01';
font-family:'Sabon MT W01 Italic';
font-family:'Sabon MT W01 Semibold';
font-family:'SabonMTW01-SemiboldIt';
font-family:'LeituraNewsW01-Roman1';
font-family:'LeituraNewsW01-Italic1';
font-family:'LeituraNewsW01-Roman2';
font-family:'LeituraNewsW01-Italic2';
font-family:'LeituraNewsW01-Roman3';
font-family:'LeituraNewsW01-Italic3';
font-family:'LeituraNewsW01-Roman4';
font-family:'LeituraNewsW01-Italic4';

font-family:'HelveticaNeueW01-67MdCn_692710';
paste available font families here
*/
/*define site colors here

  naming conventions
  if we have multiple shades of one color
  number each shade from 1 - n
  with 1 being the lightest and n being the darkest

  @sitecolor:#fff; //example

  @colorshade1 :#examplehex;
  @colorshade2 :#examplehex;
  @colorshade3 :#examplehex;

*/
/*set up serif font quick class if we have one*/
.playfair {
  font-family: 'Newsreader', serif;
}
.helvetica,
.bold,
.sans-serif {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
@font-face {
  font-family: 'socicon';
  src: url('/themes/finance/fonts/social/socicon.eot');
  src: url('/themes/finance/fonts/social/socicon.eot?#iefix') format('embedded-opentype'), url('/themes/finance/fonts/social/socicon.woff') format('woff'), url('/themes/finance/fonts/social/socicon.woff2') format('woff2'), url('/themes/finance/fonts/social/socicon.ttf') format('truetype'), url('/themes/finance/fonts/social/socicon.svg#sociconregular') format('svg');
  font-weight: normal;
  font-style: normal;
  text-transform: initial;
}
.socicon {
  font-family: 'socicon' !important;
}
.socicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.socicon:empty {
  width: 1em;
}
.socicon-twitter:before {
  content: "a";
}
.socicon-facebook:before {
  content: "b";
}
.socicon-google:before {
  content: "c";
}
.socicon-youtube:before {
  content: "r";
}
.socicon-instagram:before {
  content: "x";
}
/*body color and font*/
body {
  font-family: 'Newsreader', serif;
  font-size: 22px;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
}
/*anchor stlyes*/
a {
  color: #315553;
}
a:hover {
  color: #234341;
}
#pressrelease p {
  line-height: 34px;
  margin-bottom: 40px;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  color: white;
  background-color: #315553;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  color: white;
  background-color: #234341;
}
/*interior page content default styles */
@media (max-width: 1330px) {
  body .navbar .nav-pills > li a {
    font-size: 19px;
    padding: 2px 10px;
  }
  body .navbar .nav-pills > li .dropdown-menu {
    margin-left: 17px;
  }
  body .navbar .nav-pills .dropdown:first-child .dropdown-menu {
    margin-left: 27px;
  }
  body .navbar .nav-pills .dropdown:last-child .dropdown-menu {
    margin-right: -28px;
  }
  body .nav-hold {
    margin-top: 50px;
  }
  body .navbar .srchbutton {
    top: 4px;
  }
  body .navbar #search #sitesearch button {
    height: 33px;
    font-size: 16px;
  }
}
.container {
  max-width: 1170px;
}
@media (max-width: 1200px) {
  .members .leader {
    max-height: none;
  }
  .members .leader .member-text p {
    font-size: 16px;
  }
  body#home iframe.streaminghearing {
    margin: 0px;
  }
  .members .leader .link {
    width: 70%;
  }
  body #header .logo,
  body #header {
    height: 80px;
  }
  body .navbar .nav-pills > li .dropdown-menu {
    margin-top: 3px;
  }
  body .nav-hold {
    margin-top: 30px;
  }
  body .navbar .nav-pills > li a {
    font-size: 17px;
    padding: 4px 6px;
  }
  body .navbar .nav-pills > li a {
    font-size: 18px;
  }
  body #header .logo,
  body #header {
    height: 79px;
  }
  body .navbar .srchbutton {
    top: 6px;
    font-size: 14px;
  }
  body .navbar #search {
    top: -5px;
  }
  body .navbar #search.showme {
    width: 500px;
  }
  body .navbar #search #sitesearch button {
    height: 32px;
    top: 5px;
  }
  body#history #timeline {
    margin: 100px 56px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -49px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -49px;
  }
  .hold .news {
    height: 100%;
    min-height: 409px;
  }
  .hold .member {
    top: 159px;
    height: 93px;
    width: 52%;
  }
  .hold .member .name {
    font-size: 38px;
  }
  .hold .member .rank {
    font-size: 17px;
  }
  .hold .member .social-list .social-link {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 27px;
  }
  .hold .member:hover {
    width: 54%;
  }
  iframe.streaminghearing {
    border: none;
    height: 544px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li .dropdown-menu {
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  body#home .live-hearing-container {
    height: auto;
  }
  .timeline-links {
    display: block !important;
  }
  #timeline {
    display: none !important;
  }
  .pager li {
    bottom: 187px;
  }
  .srchbuttonmodal {
    position: absolute;
    right: 92px;
    font-size: 20px;
  }
  .togglemenu .menulabel {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
  }
  .top #featured #featuredCarousel .carousel-inner .item {
    height: 400px;
  }
  .top #featured #featuredCarousel .carousel-inner .item h2 {
    font-size: 40px;

  }
  .members li {
    margin-bottom: 30px;
  }
  #pagination-container,
  .pagination-container {
    font-size: 22px;
    width: 100%;
    text-align: center;
  }
  #pagination-container .pagination-right,
  .pagination-container .pagination-right{
    float: none;
  }
  #pagination-container #inside-pagination,
  .pagination-container #inside-pagination,
  .pagination-container .inside-pagination{
    float: none;
  }


  #pagination-container .pager,
  .pagination-container .pager{
    float: none;
    width: 100%;
  }
  .hold .news {
    height: 100%;
    min-height: 535px;
  }
  .hold .member {
    position: relative;
    width: 100%;
    top: 0px;
  }
  .hold .member:hover {
    width: 100%;
  }
  body#membership .members .leader {
    height: 583px;
  }
  body#membership .members .leader .link {
    width: 75%;
  }
  #sam-faq {
    margin-top: 0px;
  }
  iframe.streaminghearing {
    border: none;
    height: 542px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  body#home iframe.streaminghearing {
    height: 350px !important;
  }
  .live-hearing {
    padding-left: 10px;
  }
  .live-hearing-container .live-hearing {
    padding: 20px 30px;
  }
  .live-hearing-container .live-hearing h4 {
    font-size: 30px;
  }
  .live-hearing-container .live-hearing a {
    font-size: 22px;
  }
  body#history .img-responsive {
    width: 50% !important;
  }
  .oHatch {
    top: 0px;
  }
  .members li {
    margin-bottom: 30px;
  }
  .leader img {
    width: 100%;
  }
  .top #featured #featuredCarousel .carousel-inner .item h2 {
    font-size: 36px;
    padding-top: 13%;
  }
  .togglemenu {
    margin-right: 10px;
  }
  .srchbuttonmodal {
    right: 102px;
  }
  .hold .news .news-item .ninety {
    width: 75%;
  }
  .hold .news {
    min-height: 535px!important;
  }
  .hold .news {
    min-height: 500px;
  }
  .calendar .hearing-col {
    width: 85%;
  }
  body #header .logo img {
    margin-left: 10px;
  }
  body .Subfooter {
    font-size: 15px;
  }
  body .Subfooter #address {
    font-size: 12px;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  iframe.streaminghearing {
    border: none;
    height: 240px;
    display: block;
    float: none;
    margin: 10px auto 0;
    width: 100%;
  }
}
@media (max-width: 673px) {
  .hold .news {
    min-height: 560px!important;
  }
}
@media (max-width: 638px) {
  .hold .news {
    min-height: 584px!important;
  }
}
@media (max-width: 636px) {
  .hold {
    width: 97%;
  }
  .hold .news {
    height: auto;
    min-height: auto;
  }
  .hold:first-child .more-news {
    margin-bottom: 30px;
  }
  .more-hearings {
    width: 97%;
  }
  .hold,
  .calendar,
  .more-hearings {
    margin-left: 10px;
    margin-right: 10px;
  }
  body #header .logo,
  body #header {
    height: 66px;
  }
  body#membership .membership {
    width: 100%;
    margin-top: 20px;
  }
  body#membership .members .leader {
    height: auto;
  }
  body#membership .members .leader .link {
    width: 75%;
  }
}
@media (max-width: 530px) {
  body#subcommittees .sectionhead {
    height: 345px;
  }
  .pager li {
    bottom: 218px;
    right: 16px;
  }
}
@media (max-width: 479px) {
  .form-inline {
    padding-left: 0px;
    font-size: 19px;
  }
  .maxrows {
    font-size: 19px;
    left: 275px;
  }
  select.span4 {
    font-size: 19px;
  }
  .pager li {
    bottom: -63px;
    right: 20px;
  }
  select#maxrows {
    font-size: 19px;
  }
  body#subcommittees .sectionhead {
    height: auto;
  }
  body#subcommittees .head {
    width: 100%;
  }
  body#history .img-responsive {
    width: 100% !important;
  }
  body #header .logo img {
    margin-left: 2%;
  }
  body #header .logo,
  body #header {
    height: 94px;
  }
  .top #featured #featuredCarousel .carousel-inner .item h2 {
    padding-left: 20px;
    font-size: 31px;
    padding-top: 18%;
  }
  body .nav-hold {
    margin-top: 0;
    width: 100%;
    padding: 6px;
    background-color: #f7f1e6;
  }
  .togglemenu {
    float: right;
  }
  .carousel {
    display: inline-block;
  }
  .more-hearings,
  .hold {
    width: 98%;
  }
  .hold,
  .calendar,
  .more-hearings {
    margin-left: 1%;
    margin-right: 1%;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -29px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -25px;
  }
  .calendar .hearing-col {
    width: 79%;
  }
  .top #featured #featuredCarousel .carousel-inner .item h2 {
    width: 100%;
  }
}
@media (max-width: 411px) {
  .maxrows {
    left: 223px;
  }
  body #header .logo,
  body #header {
    height: 81px;
    width: 100%;
  }
  .togglemenu {
    font-size: 17px;
  }
  .srchbuttonmodal {
    right: 81px;
    font-size: 17px;
  }
}
@media (max-width: 350px) {
  body #header .logo,
  body #header {
    height: 72px;
    width: 100%;
  }
}
@media (max-width: 330px) {
  .top #featured #featuredCarousel .carousel-inner .item h2 {
    padding-left: 20px;
    font-size: 29px;
    padding-top: 30%;
    width: 60%;
  }
  .calendar .hearing-col {
    width: 75%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie body #header .logo img {
  width: 522px;
}
@media (max-width: 1200px) {
  .ie body #header .logo img {
    width: 411px;
  }
}
@media (max-width: 636px) {
  .ie body #header .logo img {
    width: 343px;
  }
}
@media (max-width: 479px) {
  .ie body #header .logo img {
    width: 343px;
  }
}
.ie select {
  padding: 5px;
}
.ie body .navbar .nav-pills .dropdown .dropdown-menu {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media (max-width: 1330px) {
  .ie body .navbar .nav-pills > li .dropdown-menu {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie9 body#history #timeline {
  display: none !important;
}
.ie9 .timeline-links {
  display: block !important;
}
.ie9 body.socicon {
  top: 0px;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .timeline-links {
  display: block;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .ipad-portrait {
    color: red;
  }
  /* your css rules for ipad portrait */
  .hold .news .news-item .ten {
    width: 40px;
    float: left;
    text-align: center;
    display: block;
  }
  .hold .news {
    overflow-y: auto;
  }
  .hold .news .news-item .ninety {
    width: 80%;
    float: left;
    display: inline-block;
  }
  .members .leader {
    height: 600px !important;
    max-height: 600px;
    display: block;
  }
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
  .ipad-landscape {
    color: blue;
  }
  /* your css rules for ipad landscape */
}

.faqGroup button{
  outline: none;
  border: none;
  background: none;
}

.filter-toolbar {
  margin-bottom: 20px;
}

#filterbuttons {
  width: auto;
}
#filterbuttons a:first-child {
  float: left;
}

.clear-filter-button {
  float: right;
  background: none;
  color: indianred;
  border: 1px solid;
}
.tab-content {
  padding-top: 15px;
}

.tab-content .feedback,
.tab-content #newscontent > p {
  padding: 15px;
}

.tab-content #pagination-container,
.tab-content .pagination-container{
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.pagination-container label{
  font-weight: normal;
}

.pagination-container .form-inline,
.pagination-container .inside-pagination{
  display: flex;
  align-items: center;
}

#sam-social .social-text{
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1.5rem;
}

.center{
display: flex;
align-items: center;
justify-content: center;
}
.modal-dialog .modal-content .close{
  font-size: 40px;
  color: #333;
  opacity: .8;
  font-weight: 300;
}


/*@-moz-document url-prefix() {
	body .navbar .nav-pills .dropdown .dropdown-menu{
		margin-left:0px !important;
		margin-right: 0px !important;
	}
	@media (max-width: 1330px) {
	body .navbar .nav-pills > li .dropdown-menu {
			margin-left: 0px;
			margin-right: 0px;
		}
	}
}*/
/*# sourceMappingURL=common.css.map */