/* 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.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.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
#searchpopup #sitesearch #searchtogglesection {
  padding-top: 15px;
}
#searchpopup #sitesearch #searchtogglesection .searchtoggleadvanced {
  color: #b7ae6e;
}
#searchpopup #sitesearch #searchtogglesection #search-sections-container #site-sections-list li {
  float: none;
  display: block;
}
#searchpopup #sitesearch #searchtogglesection #search-sections-container #site-sections-list li input[type=checkbox] {
  margin-right: 10px;
}
#searchpopup .searchsection {
  padding: 20px 0px;
}
#searchpopup .searchsection .page-title {
  font-weight: bold;
  color: #b7ae6e;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in,
#FilterSearchModal .fade.in {
  background-color: #363a40;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a,
#FilterSearchModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover,
#FilterSearchModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#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 0px 0px;
}
#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: #b7ae6e;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#FilterSearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #80783f;
}
body #header {
  width: 100%;
  background-color: #363a40;
}
body #header .header-top {
  height: 110px;
  max-width: 625px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (max-width: 1200px) {
  body #header .header-top {
    max-width: 465px;
  }
}
@media (max-width: 991px) {
  body #header .header-top {
    padding-left: 91px;
  }
}
@media (max-width: 767px) {
  body #header .header-top {
    padding-left: 0px;
  }
}
@media (max-width: 660px) {
  body #header .header-top {
    height: 85px;
  }
}
@media (max-width: 380px) {
  body #header .header-top {
    padding: 30px 0;
  }
}
body #header .header-top img {
  height: 100%;
  width: 100%;
}
@media (max-width: 530px) {
  body #header .header-top img {
    height: auto;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
body #header a.logo-hold {
  width: 160px;
  position: absolute;
  display: block;
  background-color: #b7ae6e;
  position: fixed;
  top: 0;
  z-index: 2;
}
@media (max-width: 660px) {
  body #header a.logo-hold {
    width: 125px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 767px) {
  body #header a.logo-hold img {
    display: none;
  }
}
body #header .nav-hold {
  background-color: #f7f5ee;
  float: none !important;
  padding: 0 !important;
  margin-top: -10px;
  position: relative;
  height: 53px;
}
body #header .nav-hold .navbar {
  position: absolute;
  right: 24%;
  margin: 0 auto;
  transition: 0.3s ease-in-out all;
}
@media (max-width: 1200px) {
  body #header .nav-hold .navbar {
    right: 16%;
  }
  body #header .nav-hold .navbar .nav > li > a {
    padding: 11px 10px;
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  body #header .nav-hold .navbar {
    text-align: right;
    right: 0;
    top: 11px;
  }
}
@media (max-width: 767px) {
  body #header .nav-hold .navbar {
    right: 15px;
  }
}
body #header .nav-hold .container {
  position: relative;
}
body #header .nav-hold .gold-logo {
  width: 0;
  overflow: hidden;
  height: 0;
  transition: 0.3s ease-in-out width;
  margin-left: 80px;
  position: absolute;
  margin-top: 11px;
}
@media (max-width: 1200px) {
  body #header .nav-hold .gold-logo {
    margin-left: 75px;
  }
}
body #header.fikit {
  position: fixed;
  z-index: 5;
  top: -82px;
}
@media (max-width: 660px) {
  body #header.fikit {
    top: -80px;
  }
}
body #header.fikit .container {
  position: relative;
}
body #header.fikit .navbar {
  right: 0;
}
@media (max-width: 767px) {
  body #header.fikit .navbar {
    right: 15px;
  }
}
body #header.fikit .gold-logo {
  height: 30px;
  width: 350px;
}
@media (max-width: 1200px) {
  body #header.fikit .gold-logo {
    width: 250px;
  }
}
@media (max-width: 991px) {
  body #header.fikit .gold-logo {
    width: 324px;
  }
}
@media (max-width: 767px) {
  body #header.fikit .gold-logo {
    width: 300px;
    margin-left: 0px;
  }
}
@media (max-width: 400px) {
  body #header.fikit .gold-logo {
    width: 250px;
  }
}
@media (max-width: 350px) {
  body #header.fikit .gold-logo {
    width: 221px;
  }
}
body #header.has-live-hearing {
  position: relative;
}
body #header.has-live-hearing .logo-hold {
  position: absolute;
}
.interior-header a.logo-hold {
  width: 67px !important;
}
body:not(#home) #content {
  margin-top: 60px;
}
body:not(#home) .header-top img {
  display: none;
}
@media (max-width: 660px) {
  body#home #header .header-top {
    height: 110px;
  }
}
@media (max-width: 380px) {
  body#home #header .header-top {
    height: 85px;
  }
}
body#newsroom #filtermodal .modal-content {
  background-color: white !important;
  border-radius: 10px;
}
body#newsroom #filtermodal .modal-content .modal-header {
  padding: 12px 20px !important;
}
body#newsroom #filtermodal .modal-content .modal-body {
  padding: 15px 20px !important;
}
body#newsroom #filtermodal .modal-content .close {
  color: #363a40 !important;
}
body .navbar {
  background-color: transparent;
  width: 660px;
  display: inline-block;
}
@media (max-width: 1200px) {
  body .navbar {
    width: 572px;
  }
}
@media (max-width: 991px) {
  body .navbar {
    width: auto;
  }
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #363a40;
  font-family: 'Futura LT W01 Heavy';
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #000;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #363a40;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #b7ae6e;
}
body .navbar .togglemenu {
  color: #363a40;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 991px) {
  body .navbar .srchbuttonmodal {
    color: #000;
  }
}
body .navbar .srchbutton {
  color: #363a40;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  width: 575px;
  border: none;
  background-color: #f7f5ee;
  color: white;
  width: 80%;
  border-bottom: 3px solid white;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #363a40;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: #363a40;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  color: #363a40;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: #363a40;
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  margin-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Futura LT W01 Medium';
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 20px;
  width: 100%;
  display: block;
  font-family: 'Futura LT W01 Medium';
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 10px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 86%;
  right: 0px;
  border: none;
  background-color: #f7f5ee;
  color: #363a40;
  border-bottom: 3px solid #363a40;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #363a40;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #363a40;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #363a40;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #363a40;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #f7f5ee;
  color: #363a40;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-slide-search #search #advanced-search-container,
#header .nav-hold.right-search-modal #search #advanced-search-container {
  position: absolute;
  left: 0px;
  top: 5px;
  max-width: 100px;
  font-size: 15px;
}
#header .nav-hold.right-slide-search #search #advanced-search-container .btn,
#header .nav-hold.right-search-modal #search #advanced-search-container .btn {
  font-size: 10px;
  padding: 4px 5px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#home .banner {
  background-size: cover;
  height: 490px;
  width: 100%;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}
@media only screen and (max-width: 991px) {
  #home .banner {
    border-left: 0;
    height: 472px;
  }
}
@media only screen and (max-width: 479px) {
  #home .banner {
    border-left: 0;
    height: 200px;
  }
}
@media (max-width: 600px) {
  #home .memberlist .member {
    float: none;
  }
}
@media (max-width: 768px) {
  #home .container .press .feat-hearings .box.cover {
    padding: 0px;
  }
}
#home #press .no-padding .banner {
  background-position: center;
  display: block;
}
.no-padding {
  padding: 0;
}
.press-title {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .press-title {
    margin-top: 40px;
  }
}
.press-title a {
  font-family: 'Futura LT W01 Medium';
  color: #b7ae6e;
}
.press-title a:hover {
  color: #363a40;
}
.press-title .summary a {
  text-decoration: underline;
}
.press-title h2 {
  margin-bottom: 25px;
}
.press-title h2 a {
  color: #b7ae6e;
  font-family: 'Futura LT W01 Bold';
}
@media (max-width: 991px) {
  .press-title h2 a {
    font-size: 24px;
  }
}
.press-title .summary {
  font-family: 'Futura LT W01 Book';
}
@media (max-width: 991px) {
  .press-title .summary {
    font-size: 15px;
  }
  .press-title .summary p {
    margin-bottom: 0px;
    line-height: 23px;
  }
}
@media (max-width: 767px) {
  .press-title .summary {
    font-size: 15px;
  }
  .press-title .summary p {
    margin-bottom: 30px;
    line-height: 23px;
  }
}
.feat-hearings:first-child .box.with-image {
  background-image: url(/themes/judiciary/images/justice.jpg);
}
.feat-hearings:nth-child(2) .box.with-image {
  background-image: url(/themes/judiciary/images/supreme.jpg);
}
.feat-hearings:last-child .box.with-image {
  background-image: url(/themes/judiciary/images/chairman.jpg);
}
.feat-hearings + .feat-hearings {
  border-left: 2px solid white;
}
@media (max-width: 767px) {
  .feat-hearings + .feat-hearings {
    border: 0px;
  }
}
.inside-slide {
  position: absolute;
  top: 0;
  width: 100%;
  transition: 0.4s ease-in-out top;
}
.inside-slide.open {
  top: -100%;
}
.box {
  height: 290px;
  color: white;
}
.box .details,
.box .default-link1,
.box .default-link2,
.box .default-link3,
.box .default-link4 {
  text-transform: uppercase;
  color: #b7ae6e;
  font-size: 14px;
  font-family: 'Futura LT W01 Bold';
  width: 100%;
  cursor: pointer;
}
.box .details:hover,
.box .default-link1:hover,
.box .default-link2:hover,
.box .default-link3:hover,
.box .default-link4:hover {
  color: white;
}
.box a:hover {
  color: white;
}
.box.cover {
  position: relative;
  padding: 20px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(204, 205, 204, 0) 20%, rgba(2, 5, 2, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(204, 205, 204, 0) 20%, rgba(2, 5, 2, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(204, 205, 204, 0) 20%, rgba(2, 5, 2, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#bf020502', GradientType=0);
}
@media (max-width: 767px) {
  .box.cover {
    padding: 20px 30px;
  }
}
.box.cover .hearing-title {
  position: absolute;
  bottom: 55px;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 991px) {
  .box.cover .hearing-title {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .box.cover .hearing-title {
    font-size: 28px;
    padding-right: 3px;
  }
}
.box.cover .details {
  position: absolute;
  bottom: 20px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .box.cover .details {
    padding-right: 17px;
  }
}
.box.cover .details:hover {
  color: white;
}
.box.with-image {
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-position: center;
}
.box.details-box {
  padding: 20px;
  text-align: center;
  background-color: rgba(54, 58, 64, 0.9);
  position: relative;
}
.box.details-box .hearing-title {
  text-align: center;
  color: white;
}
.box.details-box .hearing-title:hover {
  color: #b7ae6e;
}
.box.details-box .details {
  cursor: pointer;
}
.box.details-box .details:hover {
  color: white;
}
.box.details-box .detail-summary {
  font-size: 16px;
  font-family: 'Futura LT W01 Medium';
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  height: auto;
  padding: 0 20px;
}
.box.details-box .detail-summary p {
  line-height: 20px;
  margin-bottom: 10px;
}
.box.details-box .detail-summary a {
  color: #b7ae6e;
  text-decoration: none;
}
.hearings {
  margin-top: 60px;
  margin-bottom: 100px;
}
.hearings h3 {
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
.hearings tr:first-child {
  border-top: 1px solid #b7ae6e;
}
.hearings tr:nth-child(even) {
  background-color: #f7f5ee;
}
.hearings tr {
  border-bottom: 1px solid #b7ae6e;
}
.hearings table {
  margin-top: 30px;
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
  width: 100%;
}
.hearings table a {
  color: #363a40;
}
.hearings table a:hover {
  color: #b7ae6e;
}
.hearings table td {
  padding: 30px 30px;
  min-width: 145px;
}
@media (max-width: 767px) {
  .hearings table td {
    padding: 20px 15px;
  }
}
@media (max-width: 479px) {
  .hearings table td {
    min-width: 85px;
    padding: 20px 8px;
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .hearings table td:nth-child(2) {
    display: none;
  }
}
.member-container {
  background-color: #363a40;
  color: white;
  height: 200px;
}
@media (max-width: 450px) {
  .member-container {
    height: 150px;
  }
}
@media (max-width: 380px) {
  .member-container {
    height: auto;
    display: inline-block;
  }
}
.member-container h3 {
  margin-bottom: 0;
}
@media (max-width: 450px) {
  .member-container h3 {
    font-size: 20px;
  }
}
.member-container img {
  height: 100%;
  width: auto;
}
@media (max-width: 380px) {
  .member-container img {
    width: 100%;
    height: auto;
  }
}
.member-container .position {
  color: #b7ae6e;
  text-transform: uppercase;
  margin-top: 25px;
  display: block;
}
@media (max-width: 450px) {
  .member-container .position {
    font-size: 15px;
  }
}
@media (max-width: 380px) {
  .member-container .position {
    margin-bottom: 20px;
  }
}
.member-container .italic {
  font-size: 24px;
}
@media (max-width: 450px) {
  .member-container .italic {
    font: 19px;
  }
}
.member-container .member-info {
  padding: 25px;
}
@media (max-width: 450px) {
  .member-container .member-info {
    padding: 0 25px;
  }
}
.members-list {
  margin-bottom: 150px;
  display: inline-block;
  width: 100%;
}
.members-list h3 {
  text-transform: uppercase;
  font-family: 'Futura LT W01 Medium';
  font-size: 22px;
  margin-bottom: 25px;
}
.members-list .list {
  color: #363a40;
  line-height: 32px;
}
@media (max-width: 991px) {
  .members-list#republican {
    margin-bottom: 80px;
  }
}
@media (max-width: 335px) {
  .members-list li a {
    font-size: 14px;
  }
}
#live-hearing-container {
  background-color: #1b2026;
  color: white;
  padding: 25px 0px 20px;
  font-family: 'Futura LT W01 Medium';
  position: relative;
}
#live-hearing-container .live-link {
  color: #b7ae6e;
  text-transform: uppercase;
  font-size: 16px;
}
#live-hearing-container .live-video {
  width: 380px;
  float: left;
  margin-right: 25px;
  transition: 0.3s ease-in-out all;
}
#live-hearing-container .live-video iframe {
  width: 100%;
  height: 200px;
  transition: 0.3s ease-in-out all;
}
#live-hearing-container .live-video #watch-live-now {
  display: none;
}
#live-hearing-container a {
  color: white;
}
#live-hearing-container a:hover {
  color: #b7ae6e;
}
#live-hearing-container .live-expand {
  position: absolute;
  bottom: 20px;
}
#live-hearing-container .live-label {
  background-color: #E7181F;
  padding: 5px 15px;
  border-radius: 30px;
  font-family: 'Futura LT W01 Heavy';
  font-size: 14px;
  text-transform: uppercase;
}
#live-hearing-container .live-title {
  display: block;
  margin: 20px 0;
  font-size: 20px;
}
#live-hearing-container .live-details,
#live-hearing-container .live-minimize {
  display: none;
}
#live-hearing-container.expand .live-details,
#live-hearing-container.expand .live-minimize {
  display: block;
}
#live-hearing-container.expand .live-expand {
  display: none;
}
#live-hearing-container.expand .live-details {
  height: 200px;
  overflow-y: scroll;
}
#live-hearing-container.expand .live-minimize {
  margin-top: -20px;
}
#live-hearing-container.expand .live-title {
  font-family: 'Futura LT W01 Bold';
  text-transform: none;
  font-size: 30px;
}
#live-hearing-container.expand .live-video {
  width: 50%;
  float: left;
  margin-right: 25px;
}
#live-hearing-container.expand .live-video iframe {
  width: 100%;
  height: 300px;
}
@media (max-width: 991px) {
  #live-hearing-container.expand .live-video iframe {
    height: 200px;
  }
}
#live-hearing-container.expand .live-video #watch-live-now {
  display: block;
  padding: 10px 0px;
  text-align: left;
  color: #b7ae6e;
  background-color: #1b2026;
  text-transform: uppercase;
}
.members-list li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 45%;
  cursor: pointer;
  font-size: 18px;
}
.members-list li:first-child {
  display: none;
}
.members-list li a {
  color: #363a40;
  float: left;
  width: 100%;
  display: block;
  line-height: 32px;
}
.members-list li a:hover {
  color: #b7ae6e;
}
.members-list li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  display: none;
  background-color: #363a40;
  padding: 2px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.members-list.detail li:first-child {
  display: block;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
#breadcrumb a {
  color: #d1d1d1;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Futura LT W01 Bold';
}
#breadcrumb a:hover {
  color: #b7ae6e;
}
.modal .modal-backdrop.fade.in {
  background-color: #363a40 !important;
}
.modal .modal-dialog {
  margin: 20% auto;
}
.modal .btn {
  font-family: 'Futura LT W01 Bold';
  text-transform: uppercase;
}
.modal .modal-header h1 {
  font-family: 'Futura LT W01 Medium';
  font-size: 23px;
  text-transform: uppercase;
}
.modal legend {
  font-family: 'Futura LT W01 Book';
  border-bottom: 0px;
}
.modal .close {
  font-size: 40px;
  color: #333;
  opacity: .8;
  font-weight: 300;
}
table.table tbody > tr > td {
  min-width: 160px;
}
@media (max-width: 479px) {
  table.table tbody > tr > td {
    min-width: auto;
  }
}
table.table .header_date a,
table.table .header_bill a,
table.table .header_title a {
  color: #363a40;
  text-transform: uppercase;
}
.main_page_title {
  font-family: 'Futura LT W01 Medium';
  margin-top: 20px;
  margin-bottom: 40px;
  color: #363a40;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
body#legislation #content .clearfix .table {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
}
body#legislation #content .clearfix .table tr {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
}
body#legislation #content .clearfix .table tr td {
  padding: 15px !important;
  font-size: 16px;
  border-top: 1px solid #b7ae6e !important;
}
body#legislation #content .clearfix .table tr a {
  color: #363a40;
  font-size: 18px;
}
body#legislation #content .clearfix .table tr a:hover {
  color: #6a6038;
}
body#legislation #content .clearfix .table tr:nth-child(even) {
  background-color: #f7f5ee;
}
body#legislation #content .clearfix .table tr td {
  padding: 35px 15px 20px;
  border-top: 1px solid #b7ae6e !important;
}
@media (max-width: 479px) {
  body#legislation #content .clearfix .table td.date,
  body#legislation #content .clearfix .table td.bill-number,
  body#legislation #content .clearfix .table td.bill-title,
  body#legislation #content .clearfix .table td.header_date,
  body#legislation #content .clearfix .table td.header_bill,
  body#legislation #content .clearfix .table td.header_title {
    display: block;
    border-top: 1px solid transparent!important;
  }
  body#legislation #content .clearfix .table td.date,
  body#legislation #content .clearfix .table td.header_date {
    border-top: 1px solid #b7ae6e !important;
  }
  body#legislation #content .clearfix .table td.bill-title,
  body#legislation #content .clearfix .table td.header_title {
    border-bottom: 1px solid #b7ae6e !important;
  }
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons {
  margin-bottom: 20px;
}
#filterbuttons a {
  color: #857d46;
  border: 1px solid #b7ae6e;
  background-color: #f7f5ee;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  font-size: 14px;
}
#filterbuttons a:hover {
  background-color: #eae3cd;
  color: #857d46;
}
table.styled-box a {
  color: #b7ae6e;
}
table.styled-box a:hover {
  color: white;
}
#newscontent.article a {
  text-decoration: underline;
}
h2.subtitle {
  margin-bottom: 40px !important;
  margin-top: -26px;
  font-size: 21px;
  font-style: italic;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #b7ae6e;
  font-weight: bold;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #363a40;
}
#typenav li a {
  color: #000;
}
#typenav li.active a {
  color: white;
  background-color: #b7ae6e;
}
#typenav.affix {
  top: 0;
}
.members .members .title.medium {
  margin-bottom: 20px;
  color: #b7ae6e;
  font-size: 24px;
}
.members .members .name {
  font-family: 'Futura LT W01 Medium';
}
.members .members .leader {
  color: white;
  background-color: #363a40;
  display: inline-block;
}
.members .members .leader .headshot {
  margin-bottom: 0px;
  min-width: 200px;
}
@media (max-width: 991px) {
  .members .members .leader .pull-left {
    float: none !important;
  }
  .members .members .leader .pull-left .headshot {
    width: 100%;
    min-width: auto;
  }
}
.members .members .leader .leader-info {
  background-color: #363a40;
  float: left;
  padding-left: 20px;
  padding-top: 15px;
  width: calc(100% - 200px);
}
@media (max-width: 991px) {
  .members .members .leader .leader-info {
    width: 100%;
    float: none;
  }
}
.members .members .leader .col-md-7 {
  padding: 0;
}
@media (max-width: 991px) {
  .members .members .leader .col-md-7 {
    padding: 0 15px;
  }
}
.members .members .leader .link {
  color: #b7ae6e;
  margin-bottom: 16px;
  float: none;
}
@media (max-width: 1200px) {
  .members .members .leader .link {
    margin-bottom: 12px;
  }
}
.members .members .leader .link a {
  color: #b7ae6e;
}
@media (max-width: 1200px) {
  .members .members .leader .title {
    font-size: 19px;
  }
}
.members .members li {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .members .members li {
    min-height: 438px;
    height: auto;
  }
}
@media (max-width: 450px) {
  .members .members li {
    min-height: 364px;
    height: auto;
  }
}
.members .members .name.sansbold {
  font-size: 22px;
  margin-top: 25px;
}
.members .members .leader .name.sansbold {
  font-size: 22px;
  margin-top: 0px;
}
.members .members .link {
  text-transform: uppercase;
  font-family: 'Futura LT W01 Medium';
  font-size: 13px;
}
.members-list.detail {
  margin-bottom: 60px;
}
ol.jurisdiction {
  background: #f7f5ee;
  border: 1px solid #ad9e5d;
  padding: 30px 66px;
  font-family: 'Futura LT W01 Medium';
  margin-bottom: 50px;
}
ol.jurisdiction > li {
  margin-bottom: 15px;
}
h2.faq {
  margin: 50px 0px 20px;
}
.amend-textarea .panel-group .panel {
  border-radius: 0;
  border-color: #b7ae6e;
}
.amend-textarea .panel-group .panel-heading {
  background-color: #f7f5ee;
  color: #363a40;
  border-radius: 0;
  border: 0;
}
.amend-textarea .panel-group .panel-heading .panel-title {
  font-size: 18px;
}
.nav-tabs {
  border-bottom: 1px solid #363a40;
}
.nav-tabs a {
  padding: 10px 30px !important;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
@media (max-width: 652px) {
  .nav-tabs a {
    font-size: 15px;
    padding: 10px 15px !important;
  }
}
@media (max-width: 479px) {
  .nav-tabs a {
    font-size: 15px;
    padding: 10px 5px !important;
  }
}
.nav-tabs a:hover {
  border-color: #b7ae6e #b7ae6e #b7ae6e !important;
}
.nav-tabs li.active a {
  font-family: 'Futura LT W01 Heavy';
  border-color: #363a40 !important;
  border-bottom-color: transparent !important;
}
.nav-tabs li.oversight a {
  border-bottom: #363a40;
}
.nav-tabs li.oversight.active a {
  background-color: white;
  border-bottom: 1px solid white !important;
}
.tab-pane {
  padding-top: 25px;
}
.tab-pane .listing-jump {
  font-family: 'Futura LT W01 Medium';
  font-size: 15px;
}
.tab-pane #browser_table {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
}
.tab-pane #browser_table a {
  color: #363a40;
}
.tab-pane #browser_table .divider {
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  font-size: 16px;
}
.tab-pane #browser_table tr td {
  border-top: 1px solid #B7AE6E;
  padding: 15px 10px;
}
.tab-pane #browser_table tbody > tr > td {
  min-width: auto;
}
.tab-pane #browser_table tr:nth-child(even) {
  background-color: #f7f5ee;
}
#browser_table {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
}
#browser_table a {
  color: #363a40;
}
#browser_table .divider {
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  font-size: 16px;
}
#browser_table tr td {
  border-top: 1px solid #B7AE6E;
  padding: 15px 10px;
}
#browser_table tbody > tr > td {
  min-width: auto;
}
#browser_table tr:nth-child(even) {
  background-color: #f7f5ee;
}
body.hearingvideo {
  background-color: #f7f5ee;
  text-align: center;
  padding: 69px;
  border: 5px solid #b7ae6e;
}
.header_date h4 a span.glyphicon {
  display: inline;
}
#issue .one_column .breakout,
#issue .two_column .breakout {
  border: 0;
  margin-top: 60px;
}
#Oversight {
  padding-top: 40px;
}
.oversight-block {
  border: 1px solid #B7AE6E;
  padding-top: 35px;
  padding-bottom: 40px;
  height: 160px;
  width: 100%;
  background-color: #f7f5ee;
  margin-bottom: 30px;
  text-align: center;
}
.oversight-block .flag {
  background-color: #b7ae6e;
  color: white;
  text-transform: uppercase;
  font-family: 'Futura LT W01 Medium';
  padding: 10px 20px 10px 35px;
  font-size: 15px;
}
.oversight-block .date {
  font-family: 'Futura LT W01 Medium';
  padding: 10px 0;
  padding-top: 10px;
  font-size: 16px;
}
.oversight-block .clearfix {
  clear: both;
  padding: 22px 40px;
  color: #6a6038;
}
.oversight-block .title {
  font-family: 'Futura LT W01 Medium';
  color: #363a40;
  font-size: 22px;
}
.oversight-block:hover {
  background-color: #F6F2E7;
}
#newscontent #press {
  margin-top: 35px;
}
#newscontent #press .date {
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
#issue .oversight-block {
  height: auto;
}
#issue .oversight-block h2 {
  text-align: left;
}
#issue .oversight-block .date {
  color: #b7ae6e;
  font-family: 'Futura LT W01 Medium';
  margin-right: 30px;
}
#issue .one_column .breakout #issueFeed > li,
#issue .two_column .breakout #issueFeed > li {
  border-bottom: 0px;
  margin-bottom: 0;
}
#toggleCalendar a {
  color: #857d46;
  border: 1px solid #b7ae6e;
  background-color: #f7f5ee;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  font-size: 14px;
}
#toggleCalendar a:hover {
  background-color: #eae3cd;
  color: #857d46;
}
#toggleCalendar .jump {
  background-color: #b7ae6e;
}
#toggleCalendar .jump label {
  color: white;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
#witnesses {
  margin-left: 10px;
}
.witnesses .header {
  font-family: 'Futura LT W01 Medium';
  background-color: #f7f5ee;
  padding: 15px 10px;
  text-transform: uppercase;
  margin-top: 20px;
}
.witnesses .panel-heading h3 a span {
  font-size: 17px;
}
.witnesses .panel-body {
  font-family: 'Futura LT W01 Medium';
}
.witnesses .panel-body .hearing-date {
  width: 110px !important;
}
.vevent {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
}
.vevent td {
  padding: 15px !important;
  font-size: 16px;
  border-top: 1px solid #b7ae6e !important;
}
.vevent a {
  color: #363a40;
  font-size: 18px;
}
.vevent a:hover {
  color: #6a6038;
}
.vevent a.add {
  font-size: 13px;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  line-height: 27px;
  margin-left: 10px;
}
.vevent:nth-child(even) {
  background-color: #f7f5ee;
}
.divider.congress {
  font-family: 'Futura LT W01 Medium';
}
.divider.congress td {
  padding: 35px 15px 20px;
  border-top: 1px solid #b7ae6e !important;
}
#calendar {
  border: 1px solid #b7ae6e;
}
#calendar .fc-toolbar {
  background: #f7f5ee;
  border-bottom-color: #b7ae6e;
}
#calendar .fc-toolbar h2 {
  color: #b7ae6e;
}
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #b7ae6e !important;
}
#calendar th {
  color: white;
  background-color: #b7ae6e;
}
#calendar .fc-state-disabled {
  background-color: #f7f5ee !important;
  color: #b7ae6e !important;
  border: 1px solid #b7ae6e;
}
#calendar .fc-today {
  background-color: #f7f5ee !important;
}
.calendarFooter .row .col .today {
  color: #f7f5ee;
}
.glyphicon.full {
  color: #b7ae6e;
}
.fc-event-container a.full:before {
  background-color: #b7ae6e !important;
}
.glyphicon.business_meeting {
  color: #25259b;
}
.fc-event-container a.business_meeting:before {
  background-color: #25259b !important;
}
.glyphicon.Nomination {
  color: #a33a56	;
}
.fc-event-container a.Nomination:before {
  background-color: #a33a56 !important;
}
.glyphicon.sub {
  color: #14770d	;
}
.fc-event-container a.sub:before {
  background-color: #14770d !important;
}
.glyphicon.joint_sub {
  color: #cc7300	;
}
.fc-event-container a.joint_sub:before {
  background-color: #cc7300 !important;
}
.glyphicon.Field {
  color: #521587	;
}
.fc-event-container a.Field:before {
  background-color: #521587 !important;
}
.glyphicon.press_conference {
  color: #ffe254	;
}
.fc-event-container a.press_conference:before {
  background-color: #ffe254 !important;
}
.glyphicon.Oversight {
  color: #c103ae	;
}
.fc-event-container a.Oversight:before {
  background-color: #c103ae !important;
}
.glyphicon.joint_full {
  color: #bfbbbb	;
}
.fc-event-container a.joint_full:before {
  background-color: #bfbbbb !important;
}
.calendarFooter .row .col:nth-child(2) {
  display: none;
}
.calendar-container {
  min-height: 400px;
  display: inline-block;
  position: relative;
  width: 100%;
}
.loading {
  text-align: center;
  font-size: 60px;
  color: #b7ae6e;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 80px;
}
#calendar .fc-view-container .fc-month-view .fc-event-container a {
  background-color: transparent;
}
#hearingcontent .hearing-type {
  color: #b7ae6e;
  border: 1px solid #b7ae6e;
  background: #f7f5ee;
  font-family: 'Futura LT W01 Medium';
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 16px;
  margin-left: 15px;
}
#hearingcontent .no-top-margin {
  margin-top: 50px;
}
#hearingcontent .vcard {
  font-family: 'Futura LT W01 Medium';
}
#hearingcontent .committee {
  font-family: 'Futura LT W01 Medium';
  display: inline-block;
  font-size: 24px;
  margin-bottom: 15px;
}
#hearingcontent .hearing-meta {
  font-family: 'Futura LT W01 Medium';
  color: #363a40;
}
#hearingcontent .hearing-meta b {
  font-family: 'Futura LT W01 Heavy';
  text-transform: uppercase;
}
#hearingcontent .hearing-meta td {
  min-width: 100px;
}
#hearingcontent .hearing-meta .add {
  font-size: 13px;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
  line-height: 27px;
  margin-top: 1px;
  margin-left: 10px;
}
#hearingcontent .sectionhead h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}
#hearingcontent hr {
  margin-top: 10px;
  border-top: 1px solid #b7ae6e;
}
#hearingcontent .files-columns {
  column-count: 2;
  margin-bottom: 100px;
}
#hearingcontent .files-columns .acrobat {
  color: #b7ae6e;
  margin: 10px 0;
}
#hearingcontent .files-columns .acrobat span {
  margin-right: 10px;
}
#hearingcontent .people {
  padding-left: 15px;
}
#hearingcontent .people > li .files li {
  float: none;
}
#hearingcontent .vcard {
  min-height: auto;
  min-height: 82px;
  display: table;
  background-color: #f7f5ee;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}
#hearingcontent .vcard .files {
  color: #b7ae6e;
}
#hearingcontent .vcard .files li {
  font-size: 16px;
}
#hearingcontent .vcard .files li:first-child {
  float: none;
  margin-top: 20px;
  margin-bottom: 0;
}
#hearingcontent .vcard .title {
  font-size: 16px;
}
#hearingcontent .vcard .cell {
  display: table-cell;
  vertical-align: middle;
}
#hearingcontent .vcard .cell .org,
#hearingcontent .vcard .cell .address {
  font-size: 16px;
}
.nom-btns {
  margin-bottom: 100px;
}
.nom-btns .btn-block {
  min-height: auto;
}
.nom-btns .nom-btn {
  height: 200px;
  width: 100%;
  padding: 0;
  background-size: cover;
  margin-bottom: 20px;
}
.nom-btns .nom-btn span {
  background-color: rgba(54, 58, 64, 0.6);
  white-space: normal;
  font-size: 22px;
  padding: 20px;
}
.nom-btns .nom-btn span:hover {
  background-color: rgba(54, 58, 64, 0.85);
}
.nom-btns .col-sm-6:first-child .nom-btn {
  background-image: url(/themes/judiciary/images/exec.jpg);
}
.nom-btns .col-sm-6:nth-child(2) .nom-btn {
  background-image: url(/themes/judiciary/images/judicial.jpg);
}
.nom-btns .col-sm-6:nth-child(3) .nom-btn {
  background-image: url(/themes/judiciary/images/supreme.jpg);
}
.nom-btns .col-sm-6:nth-child(4) .nom-btn {
  background-image: url(/themes/judiciary/images/column.jpg);
}
.nominations .panel-group .panel-default .panel-heading {
  color: #6a6038;
  font-family: 'Futura LT W01 Medium';
  padding: 15px !important;
  font-size: 16px;
  border-top: 1px solid #b7ae6e !important;
}
.nominations .panel-group .panel-default .panel-heading .panel-title .title {
  color: #363a40;
  font-size: 18px;
}
.nominations .panel-group .panel-default .panel-heading .panel-title .title:hover {
  color: #6a6038;
}
@media (max-width: 510px) {
  .nominations .panel-group .panel-default .panel-heading .panel-title .title {
    width: 72%;
    font-size: 19px;
  }
}
@media (max-width: 390px) {
  .nominations .panel-group .panel-default .panel-heading .panel-title .title {
    width: 66%;
    font-size: 18px;
  }
}
@media (max-width: 510px) {
  .nominations .panel-group .panel-default .panel-collapse .panel-body {
    width: 72%;
    font-size: 19px;
  }
}
@media (max-width: 390px) {
  .nominations .panel-group .panel-default .panel-collapse .panel-body {
    width: 66%;
    font-size: 18px;
  }
}
.nominations .panel-group .panel-default:nth-of-type(2n+0) .panel-heading {
  background: #f7f5ee !important;
}
@media (max-width: 400px) {
  body#aboutChairman #content #sam-main p a img {
    width: 90%;
    height: auto;
  }
}
@media (max-width: 420px) {
  body#aboutRanking img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 410px) {
  body#subcommittees #content .container .clearfix table {
    width: 80%;
  }
}
@media (max-width: 450px) {
  body#history .container .clearfix table.styled-box {
    width: 100% !important;
  }
}
@media (min-width: 450px) and (max-width: 991px) {
  #nominations .nom-btns .row .col-sm-4 a.btn {
    min-height: 62px;
  }
}
@media (max-width: 776px) {
  #nominations .nom-btns .row .col-sm-4 {
    margin-top: 8px;
  }
}
.filtertext {
  display: inline;
  vertical-align: text-bottom;
  font-size: 16px;
  margin-left: 10px;
  position: relative;
  top: -4px;
  color: #7d7248;
  font-family: 'Futura LT W01 Medium';
}
@media (max-width: 767px) {
  .filtertext {
    display: block;
    margin-left: 0px;
  }
}
.filtertext a {
  font-family: 'Futura LT W01 Bold';
  text-transform: uppercase;
  color: #b7ae6e;
}
.filtertext.floated {
  float: right;
  position: relative;
  top: -40px;
  right: 97px;
}
@media (max-width: 600px) {
  .filtertext.floated {
    float: none;
    top: 0px;
    right: 0px;
  }
}
body#library #mobile-filter {
  padding: 0;
  margin-bottom: 20px;
  margin-top: -20px;
}
body#library #mobile-filter > h1 {
  font-size: 24px;
}
body#library table.table tbody tr td {
  border-top: 1px solid #b7ae6e !important;
  padding: 15px !important;
}
@media (max-width: 335px) {
  body#library table.table tbody tr td {
    padding-right: 16px;
    min-width: auto;
  }
}
body#library table.table tbody tr:nth-child(even) {
  background-color: #f7f5ee;
}
@media (max-width: 335px) {
  body#library table.table .acrobat a {
    font-size: 14px;
  }
}
body#library #asides {
  margin-top: 100px;
}
body#library .quick-type-filter#type-restrict2,
body#library select.session_select {
  width: 100%;
  height: 50px;
  border: 1px solid #b7ae6e;
  color: #7d7248;
  background: #f7f5ef;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
#press-kit table tbody tr td {
  padding: 17px 0px;
}
@media (max-width: 450px) {
  #press-kit table tbody tr td {
    padding: 10px;
  }
}
@media (max-width: 479px) {
  #newsroom .nav-tabs li {
    width: 100%;
    text-align: center;
    background-color: #b7ae6e;
    color: white;
    margin-bottom: 6px;
  }
  #newsroom .nav-tabs li a {
    color: white;
  }
  #newsroom .nav-tabs li.active a {
    background-color: #363a40;
    color: white;
  }
}
@media (max-width: 767px) {
  body#hearingpage .table-holder .table tr td .faux-col {
    width: 100%!important;
  }
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #363a40;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #b7ae6e;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #363a40;
}
#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: #b7ae6e;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #363a40;
}
#multimedia-browser .row .media-thumbnail a {
  color: #000;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #363a40;
}
body footer {
  background-color: #363a40;
  border-top: 10px solid #b7ae6e;
  padding: 30px 0px 50px;
  position: relative;
}
body footer .footer-logo {
  position: absolute;
  width: 70px;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -50px;
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 30px 35px 00px;
  text-align: center;
}
@media (max-width: 1200px) {
  body footer .footer-ul.footernav li {
    padding: 30px 20px 0px;
  }
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-family: 'Futura LT W01 Medium';
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav li a {
    font-size: 18px;
  }
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #363a40;
}
body footer .subfooternav a {
  color: white;
  font-family: 'Futura LT W01 Book';
  font-size: 14px;
  text-transform: uppercase;
  color: #6e747c;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 0px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid #6e747c;
  padding-left: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 50px;
}
#flagForm #flag-options .head {
  background-color: #363a40;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'Trajan W01 Regular';
font-family:'Trajan W01 Bd';
font-family:'Baskerville MT W01 It';
font-family:'BaskervilleMTW01-SmBdIt';
font-family:'Futura LT W01 X Bold Cond Obl';
font-family:'Futura LT W01 X Bold Condensed';
font-family:'Futura LT W01 Bold Cond Obl';
font-family:'Futura LT W01 Bold Condensed';
font-family:'Futura LT W01 Medium Cond Obl';
font-family:'Futura LT W01 Medium Condensed';
font-family:'Futura LT W01 Light Cond Obl';
font-family:'Futura LT W01 Light Condensed';
font-family:'Futura LT W01 Heavy Oblique';
font-family:'Futura LT W01 Heavy';
font-family:'Futura LT W01 Extra Bold Obl';
font-family:'Futura LT W01 Extra Bold';
font-family:'Futura LT W01 Bold Oblique';
font-family:'Futura LT W01 Bold';
font-family:'Futura LT W01 Medium Oblique';
font-family:'Futura LT W01 Medium';
font-family:'Futura LT W01 Book Oblique';
font-family:'Futura LT W01 Book';
font-family:'Futura LT W01 Light Oblique';
font-family:'Futura LT W01 Light';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.bold {
  font-family: 'Futura LT W01 Bold';
}
.book {
  font-family: 'Futura LT W01 Book';
}
.medium {
  font-family: 'Futura LT W01 Medium';
}
.italic,
.cursive {
  font-family: 'Baskerville MT W01 It';
}
.heavy {
  font-family: 'Futura LT W01 Heavy';
}
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
body {
  font-size: 18px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Futura LT W01 Medium';
}
.amend-textarea {
  line-height: 30px;
}
.amend-textarea ul {
  margin-bottom: 40px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #7d7348;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #363a40;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
h2.title {
  margin-top: 7px;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #b7ae6e;
  color: white;
  font-family: 'Futura LT W01 Bold';
  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 {
  background-color: #80783f;
  color: white;
}
.btn-block {
  white-space: normal;
  padding: 10px 20px;
  min-height: 65px;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .ie-map#map {
  display: block;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .ie-map#map {
  display: block;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .ie-map#map {
  display: block;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .ie-map#map {
  display: block;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
