/* 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;
}
#SearchModal .modal-dialog .modal-content .modal-header .close {
  font-size: 60px;
  opacity: 1;
}
#SearchModal .modal-dialog .modal-content .modal-body {
  margin-top: 3em;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #252525;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  margin-right: 1em;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 0px;
}
#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"] {
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  color: #fff;
  font-size: 50px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus {
  outline: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #312e40;
  margin-top: 3em;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #272434;
}
body #header {
  height: auto;
  position: fixed;
  width: 100%;
  z-index: 101;
  background-color: #312e40;
}
body #header a.logo-hold {
  width: 150px;
  top: 15px;
  position: absolute;
  display: block;
  z-index: 100;
  cursor: pointer;
}
body #header a.logo-hold img {
  width: 100%;
  cursor: pointer;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  height: 80px;
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  cursor: pointer;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
  font-family: 'Proxima N W01 Smbd';
  padding: 27px 15px;
  border-radius: 0px;
  margin-right: 5px;
  text-transform: uppercase;
}
body .navbar .nav-pills > li:last-child .dropdown-menu {
  right: 5px;
}
body .navbar .nav-pills > li .dropdown-menu {
  top: 100%;
  background-color: #312e40;
  border: none;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  padding: 20px 15px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  background-color: #312e40;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #272434;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
  color: #fff;
  background-color: #272434;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 14px;
  position: relative;
  top: 30px;
  float: right;
}
body .navbar .srchbutton {
  color: #252525;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body#home .navbar .togglemenu {
  color: #272434;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  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-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;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
body#home #header .nav-hold.right-slide-search .nav-pills,
body#home #header .nav-hold.right-search-modal .nav-pills {
  top: -1px;
}
body#home #header .nav-hold.right-slide-search .nav-pills li a,
body#home #header .nav-hold.right-search-modal .nav-pills li a {
  padding: 28px 15px;
}
#header {
  text-align: center;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 0px 0;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
  display: block;
  border: none;
  margin: 0 auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: -8px;
  position: relative;
  top: 0px;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
  margin-right: 25px;
  float: right;
  margin-top: 25px;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search .togglemenu,
  #header .nav-hold.right-search-modal .togglemenu {
    margin-left: 0px;
    margin-right: 25px;
    float: right;
    margin-top: 25px;
  }
}
#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: 10px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #fff;
  color: #252525;
  border-bottom: 3px solid #252525;
}
#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: #252525;
}
#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: #252525;
}
#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: #252525;
}
#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: #252525;
}
#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: #fff;
  color: #252525;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
#home {
  background-color: #272434;
}
#home .banner {
  background: url('/themes/rules/images/homepagebanner.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
}
#home .banner .logo-hold {
  max-width: 480px;
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  top: 30%;
}
#home .banner .logo-hold img {
  width: 100%;
}
#home .banner .downarrow {
  position: absolute;
  bottom: 6em;
  width: 100%;
  left: 0px;
  text-align: center;
}
#home .banner .downarrow .fa {
  color: rgba(255, 255, 255, 0.65);
  font-size: 40px;
  margin: 0 auto;
}
#home .banner .downarrow .bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
#home .banner .downarrow.dissapear {
  opacity: 0;
  transition: opacity 1s ease-in;
}
#home .banner .downarrow.showingit {
  opacity: 1;
  transition: opacity 1s ease-in;
}
#home .banner .livehearingarea {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 46, 59, 0.65);
  padding: 4em 2em;
}
#home .banner .livehearingarea .livehearingvideoholder {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
#home .banner .livehearingarea .livehearingvideoholder #hearingvideo {
  display: inline-block;
  position: relative;
  float: none;
}
#home .banner .livehearingarea #livehearingtitle {
  color: #fff;
}
#home .banner .livehearingarea #livehearingtitle h1 {
  color: #fff;
  font-size: 26px;
}
#home .banner .livehearingarea #livehearingtitle h1 a {
  color: #fff;
}
#home .banner .livehearingarea #livehearingtitle .type {
  display: block;
}
#home .banner .livehearingarea #livehearingtitle .date {
  display: block;
}
#home .banner .livehearingarea #livehearingtitle .time {
  display: block;
}
#home .rulessearch {
  background-color: #312e40;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 6;
  height: 60px;
}
#home .rulessearch #search {
  display: table;
  width: 100%;
}
#home .rulessearch #search #rulessearch {
  display: table;
  width: 100%;
  position: relative;
}
#home .rulessearch #search #rulessearch .rulessearchtitle {
  color: #fff;
  padding: 15px 0px;
  font-size: 20px;
  padding-right: 30px;
  width: 15%;
  vertical-align: middle;
  height: 60px;
  text-align: right;
  float: left;
}
#home .rulessearch #search #rulessearch #rulesearch {
  background-color: #1a1922;
  color: #fff;
  border: none;
  height: 60px;
  margin-left: 0px;
  width: 70%;
  font-size: 20px;
  padding: 15px;
}
#home .rulessearch #search #rulessearch button {
  cursor: pointer;
  height: 60px;
  width: 8%;
  margin-left: 15px;
  background-color: transparent;
  border: none;
  position: relative;
  top: -1px;
}
#home .rulessearch #search #rulessearch button Span {
  color: #fff;
}
#home .rulessearch #search #rulessearch button:hover {
  background-color: #1a1922;
}
#home .rulessearch #search-services-results {
  position: relative;
  z-index: 10;
  background-color: #ebe3da;
  margin: 0 auto;
  width: 70%;
  top: 0px;
  vertical-align: middle;
  max-height: 500px;
  overflow: scroll;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.5);
}
#home .rulessearch #search-services-results .result {
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(39, 36, 52, 0.31);
}
#home .rulessearch #search-services-results .result .titlearea a {
  font-size: 24px;
  font-family: 'Proxima N W01 Smbd';
}
#home .rulessearch #search-services-results .result .bodyarea {
  font-size: 16px;
}
#home .rulessearch #search-services-results.showingthis {
  padding: 10px;
}
#home .bottomareas {
  position: relative;
}
#home .bottomareas .hearingsarea {
  height: 100vh;
}
@media (max-width: 768px) {
  #home .bottomareas .hearingsarea {
    height: auto;
  }
}
#home .bottomareas .hearingsarea .backgroundholder {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: url('/themes/rules/images/homepagebanner.jpg') no-repeat center center fixed;
  background-size: cover;
  -webkit-filter: blur(7px);
  -moz-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  opacity: .8;
}
#home .bottomareas .hearingsarea #hearings {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 0px;
}
#home .bottomareas .hearingsarea #hearings .hearingstitle {
  color: #fff;
}
#home .bottomareas .hearingsarea #hearings .hearingstitle h1 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
#home .bottomareas .hearingsarea #hearings .hearingitem {
  padding: 15px 0px;
}
#home .bottomareas .hearingsarea #hearings .hearingitem .headline {
  font-size: 22px;
  color: #fff;
}
#home .bottomareas .hearingsarea #hearings .hearingitem .date {
  color: #fff;
  margin-bottom: 10px;
}
#home .bottomareas .hearingsarea.styleitup {
  background-color: #ebe3da;
}
#home .bottomareas .hearingsarea.styleitup .backgroundholder {
  display: none;
}
#home .bottomareas .hearingsarea.styleitup .hearingstitle {
  color: #252525 !important;
}
#home .bottomareas .hearingsarea.styleitup .hearingitem .headline {
  color: #252525 !important;
}
#home .bottomareas .hearingsarea.styleitup .hearingitem .date {
  color: #252525 !important;
}
#home .bottomareas #press {
  position: relative;
  z-index: 4;
  background-color: #ebe3da;
  text-align: center;
  height: 100vh;
  padding: 80px 0px;
  box-shadow: 0px 1px 15px #9a9a9a;
}
@media (max-width: 768px) {
  #home .bottomareas #press {
    height: auto;
  }
}
#home .bottomareas #press #presscontainerarea {
  position: relative;
}
#home .bottomareas #press .presstitle h1 {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #252525;
}
#home .bottomareas #press #chairpresslist,
#home .bottomareas #press #rankingpresslist {
  padding: 40px 0px;
  position: relative;
}
#home .bottomareas #press #chairpresslist .presstitle,
#home .bottomareas #press #rankingpresslist .presstitle {
  color: #272434;
  font-size: 22px;
}
#home .bottomareas #press #chairpresslist .more a,
#home .bottomareas #press #rankingpresslist .more a {
  color: #272434;
}
#home .bottomareas #membership {
  height: calc(100vh - 128px);
}
@media (max-width: 767px) {
  #home .bottomareas #membership {
    height: auto;
  }
}
#home .bottomareas #membership .backgroundholder {
  position: absolute;
  height: calc(100vh - 128px);
  width: 100%;
  background: url('/themes/rules/images/homepagebanner.jpg') no-repeat center center fixed;
  background-size: cover;
  -webkit-filter: blur(7px);
  -moz-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  opacity: .8;
}
@media (max-width: 768px) {
  #home .bottomareas #membership .backgroundholder {
    height: 100%;
  }
}
#home .bottomareas #membership .membershipareaholder {
  padding: 50px 15px;
  position: relative;
  z-index: 5;
  height: calc(100vh - 128px);
}
@media (max-width: 768px) {
  #home .bottomareas #membership .membershipareaholder {
    height: 100%;
  }
}
#home .bottomareas #membership .membershipareaholder h1 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #fff;
}
#home .bottomareas #membership .membershipareaholder #majority .member-container,
#home .bottomareas #membership .membershipareaholder #minority .member-container {
  position: relative;
  height: 250px;
  width: 100%;
  max-width: 350px;
}
@media (max-width: 767px) {
  #home .bottomareas #membership .membershipareaholder #majority .member-container,
  #home .bottomareas #membership .membershipareaholder #minority .member-container {
    display: none;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .membermainimage,
#home .bottomareas #membership .membershipareaholder #minority .member-container .membermainimage {
  height: 250px;
  overflow: hidden;
  border: 1px solid #272434;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-box-shadow: inset 0 -50px 90px -10px #000000;
  -webkit-box-shadow: inset 0 -50px 90px -10px #000000;
  box-shadow: inset 0 -50px 90px -10px #000000;
}
@media (max-width: 991px) {
  #home .bottomareas #membership .membershipareaholder #majority .member-container .membermainimage,
  #home .bottomareas #membership .membershipareaholder #minority .member-container .membermainimage {
    background-position: center;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .membermainimage img,
#home .bottomareas #membership .membershipareaholder #minority .member-container .membermainimage img {
  width: 100%;
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .member-info,
#home .bottomareas #membership .membershipareaholder #minority .member-container .member-info {
  position: absolute;
  left: 1em;
  bottom: 1em;
  font-family: 'Proxima N W01 Smbd';
  color: #fff;
  text-transform: uppercase;
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .member-info h3,
#home .bottomareas #membership .membershipareaholder #minority .member-container .member-info h3 {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  #home .bottomareas #membership .membershipareaholder #majority .member-container .member-info h3,
  #home .bottomareas #membership .membershipareaholder #minority .member-container .member-info h3 {
    font-size: 18px;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .member-info h3 a,
#home .bottomareas #membership .membershipareaholder #minority .member-container .member-info h3 a {
  color: #fff;
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .member-info .position,
#home .bottomareas #membership .membershipareaholder #minority .member-container .member-info .position {
  font-size: 16px;
}
@media (max-width: 567px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list,
  #home .bottomareas #membership .membershipareaholder #minority .members-list {
    text-align: center;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .members-list .membershipgrouptitle,
#home .bottomareas #membership .membershipareaholder #minority .members-list .membershipgrouptitle {
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list .membershipgrouptitle,
  #home .bottomareas #membership .membershipareaholder #minority .members-list .membershipgrouptitle {
    padding-left: 30px;
  }
}
@media (max-width: 567px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list .membershipgrouptitle,
  #home .bottomareas #membership .membershipareaholder #minority .members-list .membershipgrouptitle {
    padding-left: 0px;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .members-list li,
#home .bottomareas #membership .membershipareaholder #minority .members-list li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
  width: 33%;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 991px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li {
    padding-left: 30px;
  }
}
@media (max-width: 567px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li {
    padding-left: 0px;
    width: 100%;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .members-list li:first-child,
#home .bottomareas #membership .membershipareaholder #minority .members-list li:first-child {
  display: none;
}
@media (max-width: 767px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li:first-child,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li:first-child {
    display: block;
    font-weight: bold;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .members-list li a,
#home .bottomareas #membership .membershipareaholder #minority .members-list li a {
  color: #fff;
  float: left;
  width: 100%;
  display: block;
  line-height: 45px;
  font-size: 20px;
}
@media (max-width: 991px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li a,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #home .bottomareas #membership .membershipareaholder #majority .members-list li a,
  #home .bottomareas #membership .membershipareaholder #minority .members-list li a {
    font-size: 20px;
  }
}
#home .bottomareas #membership .membershipareaholder #majority .members-list li a:hover,
#home .bottomareas #membership .membershipareaholder #minority .members-list li a:hover {
  color: #fff;
}
#home .bottomareas #membership .membershipareaholder #majority .members-list li .headshot,
#home .bottomareas #membership .membershipareaholder #minority .members-list li .headshot {
  opacity: 0;
  position: fixed;
  z-index: 100;
  width: 200px;
  height: 150px;
  display: none;
  box-shadow: 5px 5px 10px black;
  border-radius: 5px;
}
#home .bottomareas #membership .membershipareaholder #majority .members-list.detail li:first-child,
#home .bottomareas #membership .membershipareaholder #minority .members-list.detail li:first-child {
  display: block;
}
#home .bottomareas #membership .membershipareaholder #majority .member-container .membermainimage {
  background-image: url('/imo/media/image/roy-blunt.jpg');
}
#home .bottomareas #membership .membershipareaholder #minority {
  margin-top: 30px;
}
#home .bottomareas #membership .membershipareaholder #minority .member-container .membermainimage {
  background-image: url('/imo/media/image/klobucharofficial2.jpg');
}
#home #header {
  position: fixed;
  z-index: 101;
  top: 0px;
  background-color: #fff;
  transition: all .4s;
}
#home #header #logo-hold-area {
  width: 150px;
  top: 15px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 110;
  transition: all .4s;
}
#home #header .navbar .nav-pills > li a {
  color: #312e40;
}
#home #header .navbar .nav-pills > li:hover a {
  color: #fff;
}
#home #header .navbar .srchbuttonmodal {
  color: #312e40;
}
#home #header.interiorlike {
  background-color: #312e40;
}
#home #header.interiorlike .navbar .nav-pills > li a {
  color: #fff;
}
#home #header.interiorlike .navbar .nav-pills > li:hover a {
  color: #fff;
}
#home #header.interiorlike .navbar .togglemenu {
  color: #fff;
}
#home #header.interiorlike .navbar .srchbuttonmodal {
  color: #fff;
}
#home .banner {
  margin-top: 80px;
}
#home .rulessearch.stayput {
  position: fixed;
  z-index: 100;
  top: 50px;
  transition: all .4s;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #312e40 !important;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #252525;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #252525;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #000000;
}
body#therules {
  background-color: #ebe3da;
}
body#therules .indexbutton {
  padding: 0px 0px;
  float: right;
  margin-right: 15px;
}
body#therules .indexbutton .btn {
  background-color: #312e40;
  font-size: 12px;
  border-radius: 15px;
  margin-top: -5px;
  font-family: 'Proxima N W01 Bold';
}
body#therules .indexbutton .btn:hover {
  background-color: #272434;
}
body#therules .buttonexpand {
  float: right;
}
body#therules .buttonexpand .toggle-accordion {
  background-color: #312e40;
  font-size: 12px;
  border-radius: 15px;
  margin-top: -5px;
  color: #fff!important;
}
body#therules .buttonexpand .toggle-accordion:before {
  content: "Collapse All";
}
body#therules .buttonexpand .toggle-accordion.active:before {
  content: "Expand All";
}
body#therules .backgroundholder {
  background: url(/themes/rules/images/ruleshearingroom.jpg) no-repeat center bottom;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 4em;
}
body#therules #searchbodyarea {
  position: relative;
  width: 100%;
  display: block;
}
body#therules #searchbodyarea .searchrulestitle {
  font-size: 20px;
  color: #695135;
  margin-bottom: 1.5em;
}
body#therules #searchbodyarea #search-services-container #query-container #search-services-field-container #rulessearch {
  height: 60px;
  padding: 10px 30px;
  width: 100%;
}
body#therules .bottomarea,
body#therules #searchbodyarea {
  margin-top: 3em;
}
body#therules .bottomarea .therules,
body#therules #searchbodyarea .therules {
  counter-reset: thiscounter;
}
body#therules .bottomarea .therules .panel-group,
body#therules #searchbodyarea .therules .panel-group {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
body#therules .bottomarea .therules .panel-group .panel,
body#therules #searchbodyarea .therules .panel-group .panel {
  margin-bottom: 0px;
  margin-top: 0px!important;
  background-color: transparent;
  border: none;
  border-top: 1px solid #b9b9b9;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
  padding: 10px 0px;
  font-size: 18px;
  font-weight: bold;
  color: #695135;
}
body#therules .bottomarea .therules .panel-group .panel .romannumber,
body#therules #searchbodyarea .therules .panel-group .panel .romannumber {
  display: inline-block;
  text-align: center;
  width: 8%;
  padding: 7px 0px;
  border-radius: 3px;
  position: relative;
  float: left;
}
body#therules .bottomarea .therules .panel-group .panel .panel-heading,
body#therules #searchbodyarea .therules .panel-group .panel .panel-heading {
  display: inline-block;
  background-color: transparent;
  width: 88%;
  position: relative;
}
body#therules .bottomarea .therules .panel-group .panel .panel-heading .panel-title,
body#therules #searchbodyarea .therules .panel-group .panel .panel-heading .panel-title {
  text-align: left;
}
body#therules .bottomarea .therules .panel-group .panel .panel-heading .panel-title a,
body#therules #searchbodyarea .therules .panel-group .panel .panel-heading .panel-title a {
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  color: #312e40;
}
body#therules .bottomarea .therules .panel-group .panel .panel-heading .panel-title a:hover,
body#therules #searchbodyarea .therules .panel-group .panel .panel-heading .panel-title a:hover {
  background-color: transparent;
  color: #272434;
}
body#therules .bottomarea .therules .panel-group .panel .panelbodyarea,
body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea {
  background-color: transparent;
  transition: all 0.4s ease-in;
}
body#therules .bottomarea .therules .panel-group .panel .panelbodyarea .panel-body,
body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea .panel-body {
  padding: 15px 65px;
  color: #252525;
  border-top: 0px;
  font-weight: normal;
}
@media (max-width: 991px) {
  body#therules .bottomarea .therules .panel-group .panel .panelbodyarea .panel-body,
  body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea .panel-body {
    padding: 15px 5px;
  }
}
body#therules .bottomarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule,
body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule {
  text-align: right;
  padding: 40px 0px 30px;
}
body#therules .bottomarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule .btn,
body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule .btn {
  background-color: #312e40;
  font-size: 12px;
  border-radius: 15px;
  font-family: 'Proxima N W01 Bold';
  text-transform: uppercase;
}
body#therules .bottomarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule .btn:hover,
body#therules #searchbodyarea .therules .panel-group .panel .panelbodyarea .panel-body .linktorule .btn:hover {
  background-color: #272434;
}
body#therules .bottomarea.showinghere,
body#therules #searchbodyarea.showinghere {
  display: block;
}
body#therules .bottomarea.dissapear,
body#therules #searchbodyarea.dissapear {
  display: none;
}
#main_container {
  background-color: #FFFFFF;
  min-height: inherit;
}
@media only screen and (max-width: 991px) {
  #main_container {
    max-width: auto;
  }
}
@media only screen and (min-width: 990px) {
  #main_container {
    position: relative;
    padding-bottom: 50px;
    padding-left: 165px;
    padding-right: 165px;
  }
}
body#members,
body#membership {
  background-color: #ebe3da;
}
body#members .backgroundholder,
body#membership .backgroundholder {
  background: url('/themes/rules/images/membershiproom.jpg') no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 1000px;
  min-height: 100%;
  position: fixed;
  opacity: .3;
  filter: blur(5px);
}
body#members #main_container .members .leader,
body#membership #main_container .members .leader {
  padding: 35px 10px;
  background-color: #312e40;
  color: #fff;
  margin: 15px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-repeat: no-repeat;
  height: 275px;
  -moz-box-shadow: inset 0 -50px 90px -10px #000000;
  -webkit-box-shadow: inset 0 -50px 90px -10px #000000;
  box-shadow: inset 0 -50px 90px -10px #000000;
  position: relative;
}
@media (max-width: 570px) {
  body#members #main_container .members .leader,
  body#membership #main_container .members .leader {
    min-height: 260px!important;
  }
}
body#members #main_container .members .leader .nameofsenator,
body#membership #main_container .members .leader .nameofsenator {
  bottom: 1em;
  position: absolute;
  left: 1em;
}
body#members #main_container .members .leader .nameofsenator a,
body#membership #main_container .members .leader .nameofsenator a {
  color: #fff;
  display: block;
  width: 100%;
}
body#members #main_container .members .leader .nameofsenator a:hover .name,
body#membership #main_container .members .leader .nameofsenator a:hover .name {
  text-decoration: underline;
}
body#members #main_container .members .leader .nameofsenator .title,
body#membership #main_container .members .leader .nameofsenator .title {
  font-size: 18px;
  margin-top: 0px;
  display: inline;
  float: none;
  width: auto;
}
body#members #main_container .members .leader .nameofsenator .name,
body#membership #main_container .members .leader .nameofsenator .name {
  color: #fff;
  font-size: 28px;
  display: inline;
  float: none;
  width: auto;
}
body#members #main_container .members .leader .nameofsenator .link,
body#membership #main_container .members .leader .nameofsenator .link {
  display: inline;
  float: none;
  width: auto;
}
body#members #main_container .members .leader .nameofsenator .link a,
body#membership #main_container .members .leader .nameofsenator .link a {
  color: #fff;
  display: inline;
  float: none;
  width: auto;
}
body#members #main_container .group .sectionhead h2,
body#membership #main_container .group .sectionhead h2 {
  text-transform: uppercase;
  font-size: 22px;
  border-bottom: 1px solid #252525;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
body#members #main_container .group .submembers a,
body#membership #main_container .group .submembers a {
  font-family: 'Proxima N W01 Bold';
}
body#members #main_container .group .submembers a:hover .name,
body#membership #main_container .group .submembers a:hover .name {
  text-decoration: underline;
}
body#members #main_container .group .submembers .name,
body#membership #main_container .group .submembers .name {
  font-size: 19px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #312e40;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #272434;
}
#toggleCalendar,
#filterbuttons {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  #toggleCalendar,
  #filterbuttons {
    left: 10px;
    float: right;
    z-index: 1;
  }
}
#toggleCalendar a,
#filterbuttons a {
  color: #fff !important;
  text-transform: uppercase;
  font-family: 'Proxima N W01 Bold';
  background-color: #312e40;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 10px;
}
#toggleCalendar a:hover,
#filterbuttons a:hover {
  background-color: #272434;
}
body.legislation .header_date {
  min-width: 138px;
}
@media (max-width: 375px) {
  body.legislation .header_date {
    min-width: 116px;
  }
}
@media (max-width: 350px) {
  body.legislation .header_date {
    min-width: 97px;
  }
}
@media (max-width: 320px) {
  body.legislation .table {
    margin-left: -10px;
  }
}
@media (max-width: 375px) {
  body.legislation .divider td h4 {
    font-size: 15px;
  }
}
@media (max-width: 350px) {
  body.legislation .divider td h4 {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .table > tbody tr td {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .nominations .panel-group .panel-heading .panel-title {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .nominations .panel-group .panel-heading .panel-title .title {
    font-size: 18px!important;
    width: 78%!important;
  }
}
@media (max-width: 400px) {
  .nominations .panel-group .panel-heading .panel-title .title {
    font-size: 16px!important;
    width: 78%!important;
  }
}
@media (max-width: 600px) {
  .nominations .panel-group .panel-heading a .date {
    font-size: 16px!important;
  }
}
@media (max-width: 400px) {
  .nominations .panel-group .panel-heading a .date {
    font-size: 14px!important;
  }
}
@media (max-width: 600px) {
  .nominations .panel-group .panel-collapse .panel-body {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .nominations .panel-group .panel-collapse .panel-body {
    font-size: 14px;
  }
}
body#hearings-page .table-holder,
body#hearings-page #browser_table,
body#hearings-page .table {
  margin-top: 40px;
}
body#hearings-page .table-holder .divider,
body#hearings-page #browser_table .divider,
body#hearings-page .table .divider {
  background-color: #ebe3da !important;
}
body#hearings-page .table-holder .divider td,
body#hearings-page #browser_table .divider td,
body#hearings-page .table .divider td {
  padding: 20px 0px;
}
body#hearings-page .table-holder .divider b,
body#hearings-page #browser_table .divider b,
body#hearings-page .table .divider b,
body#hearings-page .table-holder .divider td,
body#hearings-page #browser_table .divider td,
body#hearings-page .table .divider td {
  font-family: 'Proxima N W01 Reg';
  font-weight: 100;
  font-size: 20px !important;
  color: #252525;
  text-transform: uppercase;
  padding: 20px 0px;
}
body#hearings-page .table-holder .vevent,
body#hearings-page #browser_table .vevent,
body#hearings-page .table .vevent,
body#hearings-page .table-holder tr,
body#hearings-page #browser_table tr,
body#hearings-page .table tr {
  border: 0;
}
body#hearings-page .table-holder .vevent td,
body#hearings-page #browser_table .vevent td,
body#hearings-page .table .vevent td,
body#hearings-page .table-holder tr td,
body#hearings-page #browser_table tr td,
body#hearings-page .table tr td {
  border-top: 0px !important;
  border: 0;
  vertical-align: middle;
  padding: 8px 20px !important;
}
body#hearings-page .table-holder .vevent td a,
body#hearings-page #browser_table .vevent td a,
body#hearings-page .table .vevent td a,
body#hearings-page .table-holder tr td a,
body#hearings-page #browser_table tr td a,
body#hearings-page .table tr td a {
  color: #312e40;
}
body#hearings-page .table-holder .vevent td a:hover,
body#hearings-page #browser_table .vevent td a:hover,
body#hearings-page .table .vevent td a:hover,
body#hearings-page .table-holder tr td a:hover,
body#hearings-page #browser_table tr td a:hover,
body#hearings-page .table tr td a:hover {
  color: #272434;
  text-decoration: underline;
}
body#hearings-page .table-holder .vevent td .location,
body#hearings-page #browser_table .vevent td .location,
body#hearings-page .table .vevent td .location,
body#hearings-page .table-holder tr td .location,
body#hearings-page #browser_table tr td .location,
body#hearings-page .table tr td .location,
body#hearings-page .table-holder .vevent td .dtstart,
body#hearings-page #browser_table .vevent td .dtstart,
body#hearings-page .table .vevent td .dtstart,
body#hearings-page .table-holder tr td .dtstart,
body#hearings-page #browser_table tr td .dtstart,
body#hearings-page .table tr td .dtstart {
  font-family: 'Proxima N W01 Reg';
  text-transform: uppercase;
  font-size: 15px;
}
body#hearings-page .table-holder .vevent .pull-left.add,
body#hearings-page #browser_table .vevent .pull-left.add,
body#hearings-page .table .vevent .pull-left.add,
body#hearings-page .table-holder tr .pull-left.add,
body#hearings-page #browser_table tr .pull-left.add,
body#hearings-page .table tr .pull-left.add {
  font-family: 'Proxima N W01 Reg';
  float: right !important;
  font-size: 15px;
}
body#hearings-page .table-holder .vevent .url.summary,
body#hearings-page #browser_table .vevent .url.summary,
body#hearings-page .table .vevent .url.summary,
body#hearings-page .table-holder tr .url.summary,
body#hearings-page #browser_table tr .url.summary,
body#hearings-page .table tr .url.summary {
  width: 80%;
}
@media (max-width: 767px) {
  body#hearings-page .table-holder .vevent .url.summary,
  body#hearings-page #browser_table .vevent .url.summary,
  body#hearings-page .table .vevent .url.summary,
  body#hearings-page .table-holder tr .url.summary,
  body#hearings-page #browser_table tr .url.summary,
  body#hearings-page .table tr .url.summary {
    width: 100%;
  }
}
@media (max-width: 767px) {
  body#hearings-page .table-holder tr td .faux-col,
  body#hearings-page #browser_table tr td .faux-col,
  body#hearings-page .table tr td .faux-col {
    width: 100%!important;
  }
}
body#hearings-page #browser_table {
  border-top: 1px solid #ddd;
}
body#hearings-page #browser_table tr td {
  padding: 16px 20px !important;
}
body#hearings-page #calendar th {
  background: #312e40;
  color: #fff;
}
body#hearings-page #calendar .fc-button-group .fc-state-active {
  background-color: #e0d1c0!important;
  color: #312e40;
}
body#hearings-page #calendar .fc-button-group .fc-month-button,
body#hearings-page #calendar .fc-button-group .fc-agendaWeek-button,
body#hearings-page #calendar .fc-button-group .fc-agendaDay-button {
  background-color: #ebe3da;
  color: #312e40;
}
body#hearings-page #calendar .fc-toolbar .fc-today-button {
  background-color: #ebe3da !important;
}
body#hearings-page #calendar .fc-toolbar .fc-today-button:hover {
  background-color: #312e40 !important;
}
body#hearings-page #calendar .fc-today {
  background-color: #ebe3da !important;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .business_meeting {
  color: #afabc2;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .business_meeting:before {
  color: #afabc2;
  background-color: #afabc2;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .Nomination {
  color: #272434;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .Nomination:before {
  color: #272434;
  background-color: #272434;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .full {
  color: #1a1922;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .full:before {
  color: #1a1922;
  background-color: #1a1922;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .organizational_meeting {
  color: #766f98;
}
body#hearings-page #calendar .fc-view-container .fc-month-view .fc-event-container .organizational_meeting:before {
  color: #766f98;
  background-color: #766f98;
}
body#hearings-page .calendarFooter .col .today {
  color: #ebe3da;
}
body#hearings-page .calendarFooter .col .business_meeting {
  color: #afabc2;
}
body#hearings-page .calendarFooter .col .Nomination {
  color: #272434;
}
body#hearings-page .calendarFooter .col .full {
  color: #1a1922;
}
body#hearings-page .calendarFooter .col .organizational_meeting {
  color: #766f98;
}
body#hearings-page #toggleCalendar .jump {
  padding: 10px 10px 5px 10px;
  background-color: #ebe3da;
}
body.has-background .backgroundholder {
  background-size: cover !important;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}
body.has-background.background1 .backgroundholder {
  background: url('/themes/rules/images/ruleshearingroom1.jpg') no-repeat center center fixed;
}
body.has-background.background2 .backgroundholder {
  background: url('/themes/rules/images/ruleshearingroom2.jpg') no-repeat center center fixed;
}
body.has-background.background3 .backgroundholder {
  background: url('/themes/rules/images/ruleshearingroom3.jpg') no-repeat center center fixed;
}
body#hearing #hearingcontent {
  margin-top: 3em;
}
body#hearing #hearingcontent .hearing-type {
  text-transform: uppercase;
}
body#hearing #hearingcontent .main_page_title {
  font-size: 24px;
}
body#hearing #hearingcontent .streaminghearing {
  margin-bottom: 0px;
  height: 360px;
}
body#hearing #hearingcontent #watch-live-now {
  background-color: #312e40;
  color: #fff;
  font-size: 18px;
  font-family: 'Proxima N W01 Bold';
}
body#hearing #hearingcontent #watch-live-now:hover {
  background-color: #272434;
}
body#hearing #hearingcontent .sectionarea {
  float: none!important;
  margin: 3em 0px;
}
body#hearing #hearingcontent .sectionarea .sectionhead h1 {
  font-size: 22px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #252525;
  margin-bottom: 20px;
}
body#hearing #hearingcontent .sectionarea .agenda {
  margin: 1em 0px!important;
}
body#hearing #hearingcontent .sectionarea hr {
  display: none;
}
body#hearing #hearingcontent .memberstatement .people {
  float: none;
}
body#history h3 {
  color: #312e40;
  padding-bottom: 10px;
  border-bottom: 1px solid #312e40;
}
#typenav li a {
  color: #252525;
}
#typenav li.active a {
  color: white;
  background-color: #312e40;
}
#typenav.affix {
  top: 0;
}
#content {
  padding-top: 80px;
  min-height: 1500px;
}
#content.hasbanner {
  padding-top: 80px;
}
#pagination-container .pagination-right .form-inline select {
  padding: 0px 0px 0px 5px;
}
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: #252525;
}
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: #312e40;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #252525;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #312e40;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #252525;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #312e40;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #252525;
}
#multimedia-browser .row .media-thumbnail a {
  color: #252525;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #252525;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #252525;
  padding: 40px 80px;
  position: relative;
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #252525;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #252525;
  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: 'Proxima N W01 Bold';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #312e40 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #252525;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #252525 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #312e40;
}
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: #312e40;
  color: #fff;
  font-family: 'Proxima N W01 Smbd';
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Proxima N W01 Smbd';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #252525;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Proxima N W01 Smbd';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Proxima N W01 Smbd';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #252525;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #252525;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #312e40;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #312e40;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #252525;
  height: 165px;
  overflow: hidden;
  font-family: 'Proxima N W01 Bold';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #252525;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #252525;
  font-family: 'Proxima N W01 Bold';
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #252525;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #252525;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 70px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #312e40;
  position: relative;
  z-index: 5;
  display: table;
  width: 100%;
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 10px 15px 5px;
  text-align: center;
  text-transform: uppercase;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 18px;
  font-family: 'Proxima N W01 Smbd';
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .subfooternav {
  padding-bottom: 40px;
  background-color: #312e40;
}
body footer .subfooternav a {
  color: #fff;
  font-size: 14px;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li:before {
  content: "|";
  color: #fff;
  margin-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
#flagForm #flag-options .head {
  background-color: #252525;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'Proxima N W01 Bold';
font-family:'Proxima N W01 Smbd';
font-family:'Proxima N W01 Reg';
font-family:'Proxima N W01 Light';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Proxima N W01 Reg';
}
.sans {
  font-family: 'Proxima N W01 Light';
}
.bold {
  font-family: 'Proxima N W01 Bold';
}
.sans-serif {
  font-family: 'Proxima N W01 Smbd';
}
body {
  font-size: 18px;
  font-family: 'Proxima N W01 Reg';
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Proxima N W01 Smbd';
}
.main_page_title {
  color: #252525;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #252525;
  font-size: 32px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #312e40;
}
a:hover,
.light-bg-link:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #272434;
}
/* 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: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
p a {
  text-decoration: underline;
}
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: #252525;
  color: white;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #000000;
  color: white;
}
a {
  cursor: pointer!important;
}
/*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 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
#nomsearch fieldset legend {
  margin-right: 10px;
  width: 110px;
}
#nomsearch fieldset #search-nominations-field {
  width: 35%;
}
#sam-biopod {
  margin-top: 85px;
}
#sam-biopod a.biopod__name {
  padding: 10px 0;
  background-color: #312e40;
}
#sam-biopod a.biopod__name p {
  margin-bottom: 0;
}
