/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}

/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

#TransitionExample:hover {
  opacity: 0;
}

/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}

/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(8%);
  }

  65% {
    transform: translateY(-4%);
  }

  80% {
    transform: translateY(4%);
  }

  95% {
    transform: translateY(-2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  65% {
    -webkit-transform: translateY(-4%);
  }

  80% {
    -webkit-transform: translateY(4%);
  }

  95% {
    -webkit-transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(-8%);
  }

  65% {
    transform: translateY(4%);
  }

  80% {
    transform: translateY(-4%);
  }

  95% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }

  50% {
    -webkit-transform: translateY(-8%);
  }

  65% {
    -webkit-transform: translateY(4%);
  }

  80% {
    -webkit-transform: translateY(-4%);
  }

  95% {
    -webkit-transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }

  50% {
    transform: translateX(-8%);
  }

  65% {
    transform: translateX(4%);
  }

  80% {
    transform: translateX(-4%);
  }

  95% {
    transform: translateX(2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }

  50% {
    -webkit-transform: translateX(-8%);
  }

  65% {
    -webkit-transform: translateX(4%);
  }

  80% {
    -webkit-transform: translateX(-4%);
  }

  95% {
    -webkit-transform: translateX(2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }

  50% {
    transform: translateX(8%);
  }

  65% {
    transform: translateX(-4%);
  }

  80% {
    transform: translateX(4%);
  }

  95% {
    transform: translateX(-2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }

  50% {
    -webkit-transform: translateX(8%);
  }

  65% {
    -webkit-transform: translateX(-4%);
  }

  80% {
    -webkit-transform: translateX(4%);
  }

  95% {
    -webkit-transform: translateX(-2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }

  30% {
    transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    transform: translateY(2%) scaleX(0.5);
  }

  50% {
    transform: translateY(0%) scaleX(1.1);
  }

  60% {
    transform: translateY(0%) scaleX(0.9);
  }

  70% {
    transform: translateY(0%) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleX(0.95);
  }

  90% {
    transform: translateY(0%) scaleX(1.02);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }

  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }

  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }

  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }

  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }

  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }

  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    -webkit-transform: translateY(3%);
  }

  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
  }

  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }

  50% {
    transform: scale(0.95);
  }

  80% {
    transform: scale(1.05);
  }

  90% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }

  50% {
    -webkit-transform: scale(0.95);
  }

  80% {
    -webkit-transform: scale(1.05);
  }

  90% {
    -webkit-transform: scale(0.98);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    transform: rotate(2deg) scaleY(1);
  }

  50% {
    transform: rotate(-2deg);
  }

  65% {
    transform: rotate(1deg);
  }

  80% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }

  50% {
    -webkit-transform: rotate(-2deg);
  }

  65% {
    -webkit-transform: rotate(1deg);
  }

  80% {
    -webkit-transform: rotate(-1deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }

  60% {
    transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }

  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }

  50% {
    -webkit-transform: rotate(4deg);
  }

  100% {
    -webkit-transform: rotate(-4deg);
  }
}

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

#breadcrumb {
  height: 25px;
}

.alert {
  padding: 0px;
}

.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  background-color: #be1e2d;
  color: #fff;
  margin-top: -1px;
  margin-bottom: -1px;
}

.alert a:hover {
  background-color: #661018;
  color: #fff;
}

#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #293356;
}

#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 button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #be1e2d;
}

#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: #661018;
}

body #header {
  height: 100px;
  position: relative;
  width: 100%;
  z-index: 3;
  background-color: #293356;
}

body #header a.logo-hold {
  width: 270px;
  position: absolute;
  display: block;
}

body #header a.logo-hold img {
  width: 100%;
}

body #header a {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 22px;
}

@media (max-width: 1200px) {
  body #header a {
    font-size: 27px;
  }
}

body#home #header {
  position: absolute;
  top: 0;
  background-color: transparent;
  z-index: 3;
}

@media (max-width: 560px) {
  body#home #header {
    height: 130px;
  }
}

@media (max-width: 374px) {
  body#home #header {
    height: 113px;
  }
}

body#home #header .nav-hold.right-search-modal,
body#home #header .nav-hold.right-slide-search {
  float: none;
  text-align: center;
}

body#home #header .nav-hold.right-search-modal .srchbuttonmodal {
  top: -20px;
}

@media (max-width: 1200px) {
  body#home #header .nav-hold.right-search-modal .navbar {
    width: 100%;
  }

  body#home #header .nav-hold.right-search-modal .navbar .togglemenu {
    float: left;
    margin-top: 6px;
  }

  body#home #header .nav-hold.right-search-modal .navbar .srchbuttonmodal {
    float: right;
    top: 4px;
  }
}

@media (max-width: 767px) {
  body#home #header .nav-hold.right-search-modal .navbar {
    width: 100%;
  }

  body#home #header .nav-hold.right-search-modal .navbar .togglemenu {
    float: left;
    margin-top: 6px;
    font-size: 37px;
  }

  body#home #header .nav-hold.right-search-modal .navbar .srchbuttonmodal {
    float: right;
    top: 12px;
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  body#home #header .nav-hold.right-search-modal .navbar {
    width: 100%;
  }

  body#home #header .nav-hold.right-search-modal .navbar .togglemenu {
    float: left;
    margin-top: 4px;
    font-size: 28px;
    margin-left: 0px;
  }

  body#home #header .nav-hold.right-search-modal .navbar .srchbuttonmodal {
    float: right;
    top: 7px;
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  body#home #header .nav-hold.right-search-modal {
    margin-top: 10px;
  }
}

body:not(#home) #content {
  padding-top: 85px;
}

body:not(#home) #header {
  height: 80px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 560px) {
  body:not(#home) #header {
    height: 115px;
  }
}

body:not(#home) #header .container {
  position: relative;
}

body:not(#home) #header li a {
  font-size: 20px;
}

@media (max-width: 1330px) {
  body:not(#home) #header li a {
    padding: 10px 10px;
  }
}

body:not(#home) #header .logo-hold {
  width: 450px;
  margin-top: -4px;
  padding-left: 0px;
}

@media (max-width: 1330px) {
  body:not(#home) #header .logo-hold {
    transform: scale(0.8);
    left: -30px;
  }
}

@media (max-width: 420px) {
  body:not(#home) #header .logo-hold {
    transform: scale(1);
    left: 7px;
  }
}

@media (max-width: 400px) {
  body:not(#home) #header .logo-hold {
    transform: scale(0.9);
    left: 0px;
    margin-top: 0;
  }
}

@media (max-width: 370px) {
  body:not(#home) #header .logo-hold {
    transform: scale(0.9);
    left: -17px;
    margin-top: 0;
  }
}

@media (max-width: 350px) {
  body:not(#home) #header .logo-hold {
    transform: scale(0.8);
    left: -37px;
    margin-top: 3px;
  }
}

@media (max-width: 330px) {
  body:not(#home) #header .logo-hold {
    transform: scale(0.75);
    left: -44px;
    margin-top: 3px;
  }
}

body:not(#home) #header .logo-hold img {
  width: auto;
}

body:not(#home) #header .logo-hold .circle-logo {
  width: 88px;
  float: left;
  margin-left: -19px;
  margin-right: -19px;
}

@media (max-width: 420px) {
  body:not(#home) #header .logo-hold .circle-logo {
    display: none;
  }
}

body:not(#home) #header .logo-hold .home-logo {
  position: absolute;
  float: left;
  margin-left: -19px;
  top: 7px;
  left: 18px;
}

body:not(#home) #header .srchbuttonmodal {
  font-size: 15px;
}

@media (max-width: 1200px) {
  body:not(#home) #header .srchbuttonmodal {
    border-left: 0px;
    padding-left: 0px;
    font-size: 23px;
    top: -1px;
    left: 0;
  }
}

@media (max-width: 560px) {
  body:not(#home) #header .nav-hold.right-search-modal .navbar {
    width: 100%;
  }

  body:not(#home) #header .nav-hold.right-search-modal .navbar .togglemenu {
    float: left;
    margin-top: 4px;
    font-size: 28px;
    margin-left: 0px;
  }

  body:not(#home) #header .nav-hold.right-search-modal .navbar .srchbuttonmodal {
    float: right;
    top: 7px;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  body #header {
    border-top: 5px solid #be1e2d;
  }
}

@media (max-width: 560px) {
  body #header {
    height: 120px;
    border-top: 0px;
  }

  body #header .nav-hold {
    padding: 0px 15px !important;
    background-color: #be1e2d;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 78px;
    height: 45px;
    float: none !important;
  }
}

body #header .mobile-logo.logo-hold {
  position: absolute;
  width: 67%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

@media (max-width: 560px) {
  body #header .mobile-logo.logo-hold {
    position: relative;
    width: 100%;
    height: 80px;
  }
}

@media (max-width: 380px) {
  body #header .mobile-logo.logo-hold {
    height: 70px;
  }
}

@media (max-width: 340px) {
  body #header .mobile-logo.logo-hold {
    height: 60px;
  }
}

body #header .mobile-logo .circle-logo {
  width: 93px;
  float: left;
  margin-left: -19px;
  margin-right: -19px;
}

@media (max-width: 590px) {
  body #header .mobile-logo .circle-logo {
    width: 83px;
    margin-top: 3px;
  }
}

@media (max-width: 560px) {
  body #header .mobile-logo .circle-logo {
    display: none;
  }
}

body #header .mobile-logo .home-logo {
  position: absolute;
  float: left;
  margin-left: -19px;
  top: 7px;
  left: 18px;
}

@media (max-width: 650px) {
  body #header .mobile-logo .home-logo {
    left: 28px;
    top: 13px;
  }
}

@media (max-width: 560px) {
  body #header .mobile-logo .home-logo {
    left: -40px;
    top: 4px;
    width: calc(100% + 40px);
  }
}

@media (max-width: 450px) {
  body #header .mobile-logo .home-logo {
    left: -35px;
    width: calc(100% + 57px);
    top: 13px;
  }
}

@media (max-width: 380px) {
  body #header .mobile-logo .home-logo {
    left: -27px;
    width: calc(100% + 57px);
    top: 12px;
  }
}

@media (max-width: 340px) {
  body #header .mobile-logo .home-logo {
    top: 8px;
  }
}

@media (max-width: 767px) {
  body#home #header {
    position: relative;
    background-color: #293356;
  }
}

.logo-text {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  color: white !important;
  position: relative;
  top: 20px;
  line-height: 20px;
  left: 10px;
}

.logo-text .top {
  font-size: 16px;
}

.logo-text .bottom {
  font-size: 31px;
}

#scroll.header {
  height: 85px;
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 4;
  max-width: 1330px;
  border-top: 5px solid #be1e2d;
  background-color: #293356;
  top: -85px;
  transition: 0.3s ease-in-out all;
}

@media (max-width: 991px) {
  #scroll.header {
    display: none !important;
  }
}

#scroll.header .container {
  display: none;
}

#scroll.header .logo-hold {
  width: 450px;
  margin-top: -4px;
  padding-left: 0px;
  position: absolute;
}

@media (max-width: 1330px) {
  #scroll.header .logo-hold {
    transform: scale(0.8);
    left: -30px;
  }
}

@media (max-width: 420px) {
  #scroll.header .logo-hold {
    transform: scale(1);
    left: 7px;
  }
}

@media (max-width: 400px) {
  #scroll.header .logo-hold {
    transform: scale(0.9);
    left: 0px;
    margin-top: 0;
  }
}

@media (max-width: 370px) {
  #scroll.header .logo-hold {
    transform: scale(0.9);
    left: -17px;
    margin-top: 0;
  }
}

@media (max-width: 350px) {
  #scroll.header .logo-hold {
    transform: scale(0.8);
    left: -37px;
    margin-top: 3px;
  }
}

@media (max-width: 330px) {
  #scroll.header .logo-hold {
    transform: scale(0.75);
    left: -44px;
    margin-top: 3px;
  }
}

#scroll.header .logo-hold img {
  width: auto;
}

#scroll.header .logo-hold .circle-logo {
  width: 88px;
  float: left;
  margin-left: -19px;
  margin-right: -19px;
}

@media (max-width: 420px) {
  #scroll.header .logo-hold .circle-logo {
    display: none;
  }
}

#scroll.header .logo-hold .home-logo {
  position: absolute;
  float: left;
  margin-left: -19px;
  top: 7px;
  left: 18px;
}

#scroll.header .logo-hold .logo-text {
  float: left;
}

#scroll.header .circle-logo {
  width: 93px;
  float: left;
  margin-left: -19px;
  margin-right: -19px;
}

@media (max-width: 590px) {
  #scroll.header .circle-logo {
    width: 83px;
    margin-top: 3px;
  }
}

@media (max-width: 560px) {
  #scroll.header .circle-logo {
    display: none;
  }
}

#scroll.header .nav-hold a {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

#scroll.header .nav-hold.right-search-modal .srchbuttonmodal {
  top: -17px;
}

@media (max-width: 1200px) {
  #scroll.header .nav-hold.right-search-modal .srchbuttonmodal {
    top: 0px;
  }
}

#scroll.header.show {
  top: 0px;
}

#scroll.header.show .container {
  display: block;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
font-family:'Bebas Neue W01 Regular';
font-family:'Kostic Serif W03 Medium';
font-family:'Kostic Serif W03 Italic';
font-family:'Kostic Serif W03 Bold Italic';
font-family:'Kostic Serif W03 Bold';
font-family:'Kostic Serif W03 Regular';
font-family:'Kostic Serif W03 Medium It';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
.bebas {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.regular {
  font-family: 'PT Serif', serif;
  font-weight: 400;
}

.medium {
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

/* 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;
  background-color: #f3f3f3;
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  color: #363636;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

.section-header {
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  border-bottom: 5px solid #be1e2d;
  padding-bottom: 5px;
}

/*anchor stlyes*/
a,
.light-bg-link {
  color: #293356;
}

a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #be1e2d;
}

/* 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;
}

#press .date,
.blog-entry .date,
.video .date {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

h2.title {
  margin-top: 7px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

h2.title a {
  color: #363636;
}

h2.title a:hover {
  color: #be1e2d;
}

/*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: #fff;
  color: #be1e2d;
  border: 1px solid #c9c9c9 !important;
  border-radius: 5px;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  transition: 0.2s ease-in all;
}

.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: #be1e2d;
  color: white;
  border-color: #be1e2d;
  text-decoration: none;
}

.btn-link {
  width: 100%;
  font-size: 20px;
  margin-bottom: 10px;
}

.btn-block {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  font-size: 24px;
  padding: 20px;
  color: #be1e2d;
  background-color: white;
  white-space: normal;
}

.main_page_title {
  border-bottom: 5px solid #be1e2d;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

/*interior page content default styles */
#content {
  background-color: white;
  padding-bottom: 100px;
}

body .navbar,
#scroll .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}

body .navbar .nav-pills,
#scroll .navbar .nav-pills {
  display: inline-block;
  width: auto;
}

body .navbar .nav-pills>li,
#scroll .navbar .nav-pills>li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}

body .navbar .nav-pills>li a,
#scroll .navbar .nav-pills>li a {
  color: #fff;
  padding-bottom: 17px;
}

body .navbar .nav-pills>li .dropdown-menu,
#scroll .navbar .nav-pills>li .dropdown-menu {
  background-color: #ebebeb;
  border: 1px solid #363636;
  border-top: 5px solid #be1e2d;
  width: 240px;
}

body .navbar .nav-pills>li .dropdown-menu li,
#scroll .navbar .nav-pills>li .dropdown-menu li {
  padding: 5px 5px;
}

body .navbar .nav-pills>li .dropdown-menu li a,
#scroll .navbar .nav-pills>li .dropdown-menu li a {
  font-family: 'PT Serif W01 Regular' !important;
  text-transform: none !important;
  font-size: 16px !important;
  color: #363636;
  padding-bottom: 0;
  text-transform: uppercase;
  white-space: normal;
}

body .navbar .nav-pills>li .dropdown-menu li a:hover,
#scroll .navbar .nav-pills>li .dropdown-menu li a:hover {
  background-color: transparent;
  color: #be1e2d !important;
}

body .navbar .nav-pills>li .dropdown-menu li:hover,
#scroll .navbar .nav-pills>li .dropdown-menu li:hover {
  background-color: #fff;
  color: black;
}

body .navbar .nav-pills>li .dropdown-menu li:hover a,
#scroll .navbar .nav-pills>li .dropdown-menu li:hover a {
  color: #be1e2d !important;
  background-color: transparent;
}

body .navbar .nav-pills>li:hover a,
#scroll .navbar .nav-pills>li:hover a,
body .navbar .nav-pills>li.selected a,
#scroll .navbar .nav-pills>li.selected a {
  /*color: @yellow;*/
}

body .navbar .nav-pills>li.selected a,
#scroll .navbar .nav-pills>li.selected a {
  color: #be1e2d;
}

body .navbar .nav-pills>li.dropdown:hover:before,
#scroll .navbar .nav-pills>li.dropdown:hover:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: '';
  position: absolute;
  bottom: 0px;
  border-bottom: 10px solid #be1e2e;
  left: 40%;
}

body .navbar .togglemenu,
#scroll .navbar .togglemenu {
  color: white;
  font-size: 26px;
}

body .navbar .togglemenu .menulabel,
#scroll .navbar .togglemenu .menulabel {
  display: none;
}

body .navbar .srchbuttonmodal,
#scroll .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
  font-size: 16px;
  top: -19px;
  padding-left: 30px;
  border-left: 2px solid white;
  line-height: 17px;
  left: -14px;
}

@media (max-width: 1200px) {

  body .navbar .srchbuttonmodal,
  #scroll .navbar .srchbuttonmodal {
    border-left: 0px;
    padding-left: 0px;
    font-size: 23px;
    top: -1px;
    left: 0;
  }
}

body .navbar .srchbutton,
#scroll .navbar .srchbutton {
  color: #fff;
}

body .navbar #search,
#scroll .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}

body .navbar #search.showme,
#scroll .navbar #search.showme {
  /*width: 96%;*/
}

body .navbar #search #sitesearch,
#scroll .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}

body .navbar #search #sitesearch #search-field,
#scroll .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,
#scroll .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}

body#home .navbar .nav-pills>li a {
  padding-bottom: 10px;
}

body#home .navbar .nav-pills>li .dropdown-menu {
  background-color: white;
}

body#home .navbar .nav-pills>li .dropdown-menu li a:hover {
  background-color: transparent;
}

body#home .navbar .nav-pills>li .dropdown-menu li:hover {
  background-color: #ebebeb;
}

#NavMobileModal .modal-dialog {
  margin-top: 40px;
}

#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}

#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: #be1e2d;
  margin-right: 30px;
  font-size: 58px;
  line-height: 20px;
  opacity: 1 !important;
}

#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: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 45px;
  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;
  white-space: normal;
}

#NavMobileModal .modal-dialog .modal-content .modal-body .nav>li .dropdown-menu>li>a:hover {
  text-decoration: underline;
}

#header .nav-hold.right-slide-search,
#scroll .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal,
#scroll .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}

#header .nav-hold.right-slide-search .navbar,
#scroll .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar,
#scroll .nav-hold.right-search-modal .navbar {
  width: auto;
}

#header .nav-hold.right-slide-search .nav-pills,
#scroll .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills,
#scroll .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}

#header .nav-hold.right-slide-search .srchbutton,
#scroll .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton,
#scroll .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}

#header .nav-hold.right-slide-search .togglemenu,
#scroll .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu,
#scroll .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}

#header .nav-hold.right-slide-search #search,
#scroll .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search,
#scroll .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,
#scroll .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme,
#scroll .nav-hold.right-search-modal #search.showme {
  width: 93%;
}

#header .nav-hold.right-slide-search #search #sitesearch,
#scroll .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch,
#scroll .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#scroll .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #293356;
  color: #fff;
  border-bottom: 3px solid #fff;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#scroll .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,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#scroll .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#scroll .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#scroll .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,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}

#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#scroll .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus,
#scroll .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}

#header .nav-hold.right-slide-search #search #sitesearch button,
#scroll .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button,
#scroll .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #293356;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}

#header .nav-hold.right-search-modal .srchbutton,
#scroll .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}

#header .nav-hold.right-search-modal #search,
#scroll .nav-hold.right-search-modal #search {
  display: none;
}

#header .nav-hold.right-search-modal .srchbuttonmodal,
#scroll .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: 15px;
  top: -26px;
  padding-left: 30px;
  border-left: 2px solid white;
  line-height: 17px;
  left: -14px;
}

@media (max-width: 1330px) {

  #header .nav-hold.right-search-modal .srchbuttonmodal,
  #scroll .nav-hold.right-search-modal .srchbuttonmodal {
    top: -18px;
  }
}

@media (max-width: 1200px) {

  #header .nav-hold.right-search-modal .srchbuttonmodal,
  #scroll .nav-hold.right-search-modal .srchbuttonmodal {
    border-left: 0px;
    padding-left: 0px;
    font-size: 23px;
    top: 1px;
    left: 0;
  }
}

#header .nav-hold.hamburger-and-search,
#scroll .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only,
#scroll .nav-hold.hamburger-only {
  float: right;
}

#header .nav-hold.hamburger-and-search .togglemenu,
#scroll .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu,
#scroll .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}

#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#scroll .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal,
#scroll .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}

#header .nav-hold.hamburger-and-search .srchbutton,
#scroll .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton,
#scroll .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}

#header .nav-hold.hamburger-and-search #search,
#scroll .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search,
#scroll .nav-hold.hamburger-only #search {
  display: none;
}

#header .nav-hold.hamburger-and-search .menulabel,
#scroll .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel,
#scroll .nav-hold.hamburger-only .menulabel {
  display: none;
}

#header .nav-hold.hamburger-and-search .nav-pills,
#scroll .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills,
#scroll .nav-hold.hamburger-only .nav-pills {
  display: none;
}

#header .nav-hold.hamburger-and-search.pull-left,
#scroll .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left,
#scroll .nav-hold.hamburger-only.pull-left {
  float: left;
}

#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#scroll .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu,
#scroll .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}

#header .nav-hold.hamburger-only .srchbuttonmodal,
#scroll .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}

body#home .banner {
  height: 575px;
  width: 100%;
  background-image: url('/themes/banking/images/banner.jpg');
  background-size: cover;
  background-position: center;
  border-top: 5px solid #be1e2d;
  position: relative;
  top: 0;
  display: table;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 1100px) {
  body#home .banner {
    height: 500px;
  }
}

@media (max-width: 991px) {
  body#home .banner {
    height: 425px;
  }
}

@media (max-width: 767px) {
  body#home .banner {
    display: none;
  }
}

body#home .banner:after {
  background-color: rgba(41, 51, 86, 0.25);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

body#home .banner .circle-logo {
  width: 112px;
  position: relative;
  z-index: 1;
  left: 0px;
  top: -4px;
  display: inline-block;
}

body#home .banner .home-logo {
  width: 80%;
  max-width: 590px;
  position: relative;
  z-index: 1;
  left: -45px;
}

body#home .banner .logo-text {
  position: relative;
  text-align: left;
  display: inline-block;
  z-index: 2;
  TOP: 17px;
  line-height: 29px;
  left: -19px;
}

body#home .banner .logo-text .top {
  font-size: 20px;
}

body#home .banner .logo-text .bottom {
  font-size: 40px;
}

body#home .banner .fullscreen-bg__video {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
}

.slick {
  background-color: #293356;
}

.slick .press-image {
  height: 250px;
  width: 100%;
  display: block;
}

.slick .press-title {
  background-color: #293356;
  padding: 40px 40px 50px;
  color: white;
  text-align: center;
}

.slick .press-title span {
  font-size: 24px;
}

.slick .slick-next,
.slick .slick-prev {
  background-color: transparent;
  height: 36px;
  width: 36px;
  border-radius: 36px;
  font-size: 30px;
  color: white !important;
  top: 34%;
  opacity: 1;
}

.slick .slick-next:before,
.slick .slick-prev:before {
  content: '';
  display: none;
}

.slick .slick-next:hover,
.slick .slick-prev:hover {
  color: white;
}

.slick .slick-prev {
  left: 25px;
}

.slick .slick-prev i.fa-angle-left {
  padding-right: 4px;
}

.slick .slick-next {
  right: 25px;
}

.slick .slick-next i.fa-angle-right {
  padding-left: 4px;
}

.live-hearings-container {
  background-color: #12182b;
  border-top: 5px solid #be1e2d;
  color: white;
  text-align: center;
  padding: 75px 0 50px;
}

@media (max-width: 650px) {
  .live-hearings-container {
    padding: 75px 15px 70px;
  }
}

@media (max-width: 560px) {
  .live-hearings-container {
    padding: 120px 15px 70px;
  }
}

.live-hearings-container .live-video {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  top: -26px;
}

.live-hearings-container .live-video .embed-responsive {
  width: 100%;
}

.live-hearings-container .live-video .embed-responsive iframe {
  border: 0px;
}

.live-hearings-container .badge-live {
  display: inline-block;
  color: red;
  background-color: white;
  padding: 7px 12px;
  font-size: 19px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  position: relative;
  top: 0;
  z-index: 1;
}

.live-hearings-container a {
  color: #fff;
}

@media (max-width: 650px) {
  .live-hearings-container a h1 {
    font-size: 30px;
  }
}

@media (max-width: 479px) {
  .live-hearings-container a h1 {
    font-size: 24px;
  }
}

.live-hearings-container a:hover {
  color: #be1e2d;
}

.white-container {
  width: 100%;
  background-color: white;
  display: inline-block;
  border-top: 5px solid #be1e2d;
  position: relative;
  padding: 15px 25px 25px;
}

@media (max-width: 767px) {
  .white-container {
    padding: 15px 50px 25px;
    border: 0px;
  }
}

@media (max-width: 560px) {
  .white-container {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .white-container {
    padding: 15px 20px 25px;
  }
}

.alt-row {
  margin-left: -7px;
  margin-right: -7px;
}

.alt-row .col-sm-3,
.alt-row .col-sm-6,
.alt-row .col-sm-4 {
  padding: 0 7px;
}

@media (max-width: 991px) {
  .alt-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.grey-row {
  margin: 0;
  position: relative;
  display: table;
  width: 100%;
}

@media (max-width: 1050px) {
  .grey-row {
    background-color: #ebebeb;
  }
}

@media (max-width: 1050px) {
  .grey-row:before {
    width: 7px;
    height: 100%;
    position: relative;
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0px;
    background-color: white;
  }
}

@media (max-width: 560px) {
  .grey-row:before {
    width: 0;
  }
}

.grey-row .col-sm-45 {
  padding: 0;
  margin-left: -14px;
  margin-right: 0px;
  border-left: 14px solid white;
  border-right: 14px solid white;
  float: none;
}

.grey-row .col-sm-45 {
  width: 38%;
  vertical-align: top;
  position: relative;
  display: table-cell;
  border-left: 7px solid white;
  border-right: 7px solid white;
  background-color: #ebebeb;
}

@media (max-width: 1200px) {
  .grey-row .col-sm-45 {
    width: 36%;
  }
}

@media (max-width: 1050px) {
  .grey-row .col-sm-45 {
    width: 50%;
    display: inline-block;
    border-right: 0px;
    margin: 0;
  }
}

@media (max-width: 630px) {
  .grey-row .col-sm-45 {
    width: 100%;
  }

  .grey-row .col-sm-45 .col-sm-45 {
    border-left: 0px;
  }
}

.grey-row .col-sm-3 {
  padding: 0px;
  width: 24%;
  border-left: 7px solid white;
  border-right: 7px solid white;
  float: none;
  display: table-cell;
  vertical-align: top;
  background-color: #ebebeb;
}

@media (max-width: 1050px) {
  .grey-row .col-sm-3 {
    width: calc(100%);
    border-top: 14px solid white;
    display: block;
  }

  .grey-row .col-sm-3 .parent-element {
    width: 50%;
    float: left;
    border-right: 14px solid white;
  }

  .grey-row .col-sm-3 .hearings-area {
    width: 50%;
    float: left;
  }
}

@media (max-width: 1050px) and (max-width: 767px) {
  .grey-row .col-sm-3 .parent-element {
    border: 1px solid #ebebeb;
  }
}

@media (max-width: 991px) {
  .grey-row .col-sm-3 {
    display: inline-block;
    margin-bottom: -6px;
  }
}

@media (max-width: 767px) {
  .grey-row .col-sm-3 {
    margin-bottom: -6px;
  }
}

.mobile-header {
  background-color: white;
  margin: 0;
  padding: 70px 7px 10px;
  width: 100%;
}

@media (max-width: 560px) {
  .mobile-header {
    display: none !important;
  }
}

.other-mobile-header {
  background-color: white;
  margin: 0;
  padding: 30px 7px 10px;
  width: 100%;
}

@media (max-width: 1050px) {
  .press-area {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .press-area {
    background-color: #ebebeb;
    margin-top: -35px;
    margin-left: -25px;
    margin-right: -25px;
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .press-area {
    margin-left: -50px;
    margin-right: -50px;
    padding: 30px 40px;
  }
}

@media (max-width: 560px) {
  .press-area {
    text-align: center;
  }
}

.press-area h3 a {
  color: #363636;
}

.press-area h3 a:hover {
  color: #be1e2d;
}

.press-area .wrap {
  height: 320px;
  width: 100%;
  background-size: cover;
  display: inline-block;
  color: #363636;
  position: relative;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .press-area .wrap {
    height: auto;
    margin-bottom: 20px;
  }
}

.press-area .wrap .press-title {
  margin-top: 10px;
  line-height: 25px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  font-size: 18px;
}

.press-area .wrap .press-title .date {
  font-size: 18px;
}

@media (max-width: 767px) {
  .press-area .wrap .press-title {
    width: calc(100% - 185px);
    float: right;
  }
}

@media (max-width: 560px) {
  .press-area .wrap .press-title {
    width: 100%;
  }
}

.press-area .wrap .press-image {
  height: 165px;
  width: 100%;
  background-size: 100%;
  background-position: center center;
  transition: all 0.3s ease-in;
  position: relative;
}

@media (max-width: 991px) {
  .press-area .wrap .press-image {
    max-width: 150px;
    height: 85px;
    float: left;
    margin-right: 30px;
  }
}

.press-area .wrap:hover .press-image {
  background-size: 115%;
}

.press-area .wrap:hover .press-title {
  color: #293356;
}

@media (max-width: 991px) {
  .press-area .text-center {
    text-align: left;
  }
}

.press-area .text-center .col-md-3 {
  float: none;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 991px) {
  .press-area .text-center .col-md-3 {
    width: 100%;
  }
}

.portrait {
  height: 400px;
  background-size: cover;
  background-position: top center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .portrait {
    height: 85px;
    width: 95px;
    float: left;
  }
}

@media (max-width: 560px) {
  .portrait {
    width: 160px;
    height: 120px;
  }
}

@media (max-width: 497px) {
  .portrait {
    width: 120px;
    height: 95px;
  }
}

@media (max-width: 420px) {
  .portrait {
    width: 100px;
    height: 75px;
  }
}

.portrait .link-box {
  position: absolute;
  bottom: 15px;
  right: 20px;
  text-align: right;
}

.portrait .link-box a {
  color: white;
  font-size: 24px;
  line-height: 26px;
}

.portrait .link-box a:hover {
  color: #be1e2d;
}

@media (max-width: 767px) {
  .portrait .link-box {
    display: none;
  }
}

.portrait.republican {

  background-image: url('/themes/banking/images/timscotthome.jpg');
}

.portrait.democrat {
  background-image: url('/themes/banking/images/warrennewhome.jpg');
}

.portrait-caption {
  background-color: #293356;
  color: white;
  font-family: 'PT Serif', serif;
  font-weight: 400;
  font-size: 18px;
  padding: 10px 20px 10px 0;
  position: relative;
}

@media (min-width: 767.001px) {
  .portrait-caption {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .portrait-caption {
    height: 85px;
    font-family: 'Bebas Neue', cursive;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    line-height: 31px;
    font-size: 28px;
    padding-left: 110px;
  }

  .portrait-caption .underlined {
    border-bottom: 2px solid #363636;
    font-size: 26px;
    position: relative;
    top: -2px;
  }
}

@media (max-width: 750px) {
  .portrait-caption {
    font-size: 19px;
    line-height: 22px;
    padding-top: 22px;
  }

  .portrait-caption .underlined {
    font-size: 23px;
    top: -2px;
  }
}

@media (max-width: 560px) {
  .portrait-caption {
    background-color: white;
    color: #363636;
    height: 120px;
    padding: 25px;
    padding-left: 175px;
    font-size: 22px;
    line-height: 1.2;
  }

  .portrait-caption .underlined {
    font-size: 24px;
  }
}

@media (max-width: 497px) {
  .portrait-caption {
    height: 95px;
    padding: 19px 0;
    padding-left: 130px;
    font-size: 20px;
    line-height: 1.2;
  }

  .portrait-caption .underlined {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .portrait-caption {
    height: 75px;
    padding: 10px 0;
    padding-left: 115px;
    font-size: 18px;
    line-height: 1.2;
  }

  .portrait-caption .underlined {
    font-size: 20px;
  }
}

@media (max-width: 330px) {
  .portrait-caption {
    height: 75px;
    padding: 0;
    padding-left: 110px;
    font-size: 18px;
    line-height: 1.2;
  }

  .portrait-caption .underlined {
    display: block;
    font-size: 20px;
  }
}

.news-area {
  background-color: #ebebeb;
  padding: 20px;
}

.news-area .news-item {
  padding: 15px 0;
}

.news-area a {
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  color: #363636;
}

.news-area a:hover {
  color: #be1e2d;
}

.hearings-area {
  padding: 20px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  position: relative;
}

@media (max-width: 700px) {
  .hearings-area {
    padding: 16px;
  }
}

.hearings-area h4 {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 1px solid #363636;
  padding-bottom: 5px;
  margin-top: 0;
}

@media (max-width: 700px) {
  .hearings-area h4 {
    margin-bottom: 2px;
  }
}

.hearings-area .hearing-item {
  padding: 15px 0;
}

@media (max-width: 1050px) {
  .hearings-area .hearing-item {
    padding: 6px 0px;
    font-size: 16px;
  }
}

@media (max-width: 1050px) {
  .hearings-area .hearing-item:nth-child(3) {
    display: none;
  }
}

.hearings-area a {
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  color: #363636;
}

.hearings-area a:hover {
  color: #be1e2d;
}

.news-footer {
  padding: 20px;
  padding-top: 5px;
}

.news-footer a {
  width: 100%;
  color: #be1e2d;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  display: block;
  padding-top: 5px;
  border-top: 1px solid #363636;
}

.news-footer.inside {
  padding: 0px;
  position: absolute;
  bottom: -16px;
  width: 92%;
}

.mobile-news-button {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  background-color: #be1e2d;
  padding: 5px;
  border-bottom: 22px solid white;
  margin-top: 32px;
}

.mobile-news-button:hover {
  color: white;
}

.mobile-hearings-area h3 {
  margin: 0;
  text-align: center;
  padding: 20px;
  background-color: white;
}

.mobile-hearings-area .date,
.mobile-hearings-area .time {
  font-family: 'PT Serif', serif;
  font-weight: 400;
  display: inline-block;
}

.mobile-hearings-area table.table tr td {
  font-size: 13px;
  padding: 20px;
}

.mobile-hearings-area table.table tr td a {
  color: #363636;
}

.mobile-hearings-area table.table tr td a:hover {
  color: #be1e2d;
}

.mobile-hearings-area table.table tr td.small {
  width: 100px;
}

.mobile-hearings-area table.table tr:nth-child(even) {
  background-color: white;
}

.mobile-hearings-area table.table tr:nth-child(odd) {
  background-color: #ebebeb;
}

.hearings-mobile-button {
  color: #be1e2d;
  padding: 25px 0 25px;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 26px;
  line-height: 26px;
}

.hearings-mobile-button:hover {
  color: #363636;
}

@media (max-width: 1050px) {
  .hide-1050 {
    display: none;
  }
}

.show-1050,
.grey-row .show-1050 {
  display: none;
}

@media (max-width: 1050px) {

  .show-1050,
  .grey-row .show-1050 {
    display: inline-block;
  }
}

@media (max-width: 630px) {

  .hide-630,
  .grey-row .hide-630 {
    display: none;
  }
}

.show-630,
.grey-row .show-630 {
  display: none;
}

@media (max-width: 630px) {

  .show-630,
  .grey-row .show-630 {
    display: block;
  }
}

.margin-630 {
  border-bottom: 20px solid white;
}

@media (max-width: 560px) {

  .hide-560,
  .grey-row .hide-560 {
    display: none;
  }
}

.show-560,
.slick-slider.show-560 {
  display: none;
}

@media (max-width: 560px) {

  .show-560,
  .slick-slider.show-560 {
    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;
}

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: #be1e2d !important;
}

#breadcrumb a {
  color: #363636;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 16px;
}

#breadcrumb a:hover {
  color: #be1e2d;
}

.one_column {
  padding-top: 40px;
}

#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,
#toggleCalendar a {
  background-color: transparent;
  color: #be1e2d;
  padding-left: 0px;
  padding-right: 20px;
  border: 0px !important;
  font-size: 15px;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

#filterbuttons a span,
#toggleCalendar a span {
  font-size: 13px;
}

#filterbuttons a:hover,
#toggleCalendar a:hover {
  color: #363636;
  background-color: white;
}

body.no-filter #filterbuttons {
  display: none;
}

#listblocks {
  margin-top: 40px;
}

#listblocks .block {
  display: table;
  height: 110px;
}

#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #293356;
  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: #080a11;
}

.modal .modal-backdrop.in,
#filtermodal .modal-backdrop.in {
  background-color: #293356;
}

.modal .modal-dialog,
#filtermodal .modal-dialog {
  margin: 10% auto;
}

.modal .modal-dialog .modal-header,
#filtermodal .modal-dialog .modal-header {
  border-bottom: 5px solid #be1e2d;
  padding: 15px 15px 10px;
}

.modal .modal-dialog .modal-content .close,
#filtermodal .modal-dialog .modal-content .close {
  color: #be1e2d;
  opacity: 1;
  font-size: 45px;
}

.modal .modal-dialog .modal-content .modal-body,
#filtermodal .modal-dialog .modal-content .modal-body {
  padding: 35px 15px 15px;
}

.modal .modal-dialog .modal-content .modal-body form select,
#filtermodal .modal-dialog .modal-content .modal-body form select {
  border: 1px solid #c9c9c9;
}

.modal .modal-dialog .modal-content .btn,
#filtermodal .modal-dialog .modal-content .btn {
  font-size: 20px;
}

.modal .modal-dialog .modal-content #keyword,
#filtermodal .modal-dialog .modal-content #keyword,
.modal .modal-dialog .modal-content #search-pod-field,
#filtermodal .modal-dialog .modal-content #search-pod-field,
.modal .modal-dialog .modal-content #search-nominations-field,
#filtermodal .modal-dialog .modal-content #search-nominations-field,
.modal .modal-dialog .modal-content #thomas_search,
#filtermodal .modal-dialog .modal-content #thomas_search {
  width: 100%;
  height: 50px;
  padding: 16px;
  margin-bottom: 20px;
}

#typenav li a {
  color: #363636;
}

#typenav li.active a {
  color: white;
  background-color: #be1e2d;
}

#typenav.affix {
  top: 0;
}

#newscontent .summary a {
  color: #be1e2d;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

#newscontent #press p {
  font-family: 'PT Serif', serif;
  font-weight: 400;
}

#newscontent #press p a {
  color: #be1e2d;
}

#newscontent #press p a:hover {
  text-decoration: underline;
}

.members {
  margin-top: 40px;
  font-family: 'PT Serif', serif;
  font-weight: 400;
}

.members .headshot {
  width: 110px;
  border-radius: 50%;
  border: 1px solid #363636;
  display: inline-block;
  margin: 0 15px;
  margin-right: 50px;
}

@media (max-width: 767px) {
  .members .headshot {
    margin: 0px;
  }
}

.members .name {
  display: inline-block;
  width: auto;
  float: none;
  line-height: 20px;
}

@media (max-width: 991px) {
  .members .name {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  .members .name {
    display: block;
    margin: 10px auto 40px;
    max-width: 100%;
  }
}

.members .party {
  font-size: 16px;
}

.members li {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  height: 150px;
}

@media (max-width: 767px) {
  .members li {
    text-align: center;
  }
}

.members a {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 22px;
}

.members .member {
  font-family: 'PT Serif', serif;
  font-weight: 400;
}

.members .leader {
  padding: 80px 0;
  padding-top: 0px;
  min-height: 0px;
}

@media (max-width: 520px) {
  .members .leader {
    padding-bottom: 50px;
  }
}

.members .leader .table-display {
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .members .leader .table-display {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .members .leader .title {
    font-size: 18px;
    margin-top: 4px;
  }
}

.members .leader .headshot {
  width: 160px;
  margin: 0;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .members .leader .headshot {
    margin: 0;
  }
}

@media (max-width: 400px) {
  .members .leader .headshot {
    width: 110px;
  }
}

@media (max-width: 991px) {
  .members .leader .name {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .members .leader .name {
    display: block;
  }
}

body#newsroom #newscontent.article .main_page_title {
  margin-top: 5px;
}

body#hearing .main_page_title {
  margin-top: 7px;
  margin-bottom: 25px;
}

body#hearing .hearing-meta span.bebas {
  display: inline-block;
  color: #293356;
}

body#hearing section {
  display: inline-block;
  width: 100%;
}

body#hearing #watch-live-now {
  background-color: #be1e2d;
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 26px;
  padding: 5px;
}

body#hearing #watch-live-now:hover {
  background-color: #363636;
}

body#hearing .sectionhead {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 25px;
  margin-top: 40px;
}

body#hearing .sectionhead.small {
  margin-top: 20px;
  display: inline-block;
}

body#hearing .border-box {
  border: 1px solid #c9c9c9;
  padding: 30px 35px;
  margin-bottom: 10px;
}

body#hearing .border-box p:last-child {
  margin-bottom: 0px;
}

body#hearing .border-box.file {
  padding: 15px 35px;
  width: 100%;
  display: block;
  color: #be1e2d;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  word-break: break-all;
}

body#hearing .vcard {
  min-height: 1px;
  margin-bottom: 20px;
  font-style: italic;
  max-width: fit-content;
}

body#hearing .vcard .fn {
  font-weight: normal;
  border-bottom: 1px solid #363636;
  font-style: normal;
  font-size: 20px;
}

body#hearing .vcard .title {
  font-style: italic;
  font-size: 16px;
}

body#hearing .vcard .hearing-pdf {
  color: #be1e2d;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-style: normal;
}

body#hearing .vcard:last-child {
  margin-bottom: 0px;
}

body.hearingvideo {
  text-align: center;
  padding: 50px 0;
  background-color: #293356;
  display: table;
  height: 100%;
}

body.hearingvideo .embed-responsive {
  border-top: 5px solid #be1e2d;
  border-bottom: 5px solid #be1e2d;
  background-color: #f3f3f3;
  padding: 10px 0 14px;
  display: table-cell;
  vertical-align: middle;
}

body.hearingvideo .embed-responsive iframe {
  border: 0px;
}

table.table>tbody>tr>td {
  padding: 20px 30px;
  border-top: 0px;
}

table.table>tbody>tr:nth-child(odd) {
  background-color: #f3f3f3;
}

table.table>tbody>tr>td,
table.table>tbody>tr>th,
table.table>tfoot>tr>td,
table.table>tfoot>tr>th,
table.table>thead>tr>td,
table.table>thead>tr>th {
  border-top: 0px;
}

table#browser_table td {
  padding: 10px 30px;
  border-top: 0px;
}

table#browser_table tr:nth-child(odd) {
  background-color: white;
}

table#browser_table tr:nth-child(even) {
  background-color: #f3f3f3;
}

table#browser_table tr.divider {
  background-color: white;
}

body.divider table.table>tbody>tr>td {
  padding: 20px 30px;
  min-width: 195px;
}

body.divider table.table>tbody>tr.divider {
  background-color: white;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 1px solid #c9c9c9;
  font-size: 20px;
}

body.divider table.table>tbody>tr.divider b {
  font-weight: normal;
}

body.divider table.table>tbody>tr>td {
  padding: 15px 30px;
}

body.legislation .table>tbody>tr>td,
body.legislation .table>tbody>tr>th,
body.legislation .table>tfoot>tr>td,
body.legislation .table>tfoot>tr>th,
body.legislation .table>thead>tr>td,
body.legislation .table>thead>tr>th {
  padding: 15px;
}

@media (max-width: 375px) {

  body.legislation .table>tbody>tr>td,
  body.legislation .table>tbody>tr>th,
  body.legislation .table>tfoot>tr>td,
  body.legislation .table>tfoot>tr>th,
  body.legislation .table>thead>tr>td,
  body.legislation .table>thead>tr>th {
    display: inline-block;
    width: 100%;
  }
}

body.legislation .header_date,
body.legislation .header_bill,
body.legislation .header_title {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  min-width: 121px;
  padding: 0 15px !important;
}

body.legislation #asides {
  padding-top: 21px;
}

aside.list>ul.archive li {
  border-bottom: 0px;
  margin-bottom: 0px;
}

aside.list>ul.archive li a {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  display: block;
  padding: 0 13px;
  height: 45px;
  line-height: 14px;
  color: #be1e2d;
}

aside.list>ul.archive li a:hover {
  color: #363636;
}

.nominations .panel-group .panel-default .panel-heading .panel-title .title {
  font-size: 18px;
  line-height: 26px;
}

.nominations .panel-group .panel-default .panel-heading {
  padding: 15px 30px;
}

.nominations .panel-body b {
  font-weight: normal;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  color: #293356;
  display: inline-block;
  min-width: 140px;
}

.nominations .panel-body p {
  margin-bottom: 0px;
}

.nominations .panel-group .panel-default .panel-heading .panel-title a .date,
.faqs .panel-group .panel-default .panel-heading .panel-title a .date,
.witnesses .panel-group .panel-default .panel-heading .panel-title a .date {
  width: 16%;
}

@media (max-width: 420px) {

  .nominations .panel-group .panel-default .panel-heading .panel-title a .date,
  .faqs .panel-group .panel-default .panel-heading .panel-title a .date,
  .witnesses .panel-group .panel-default .panel-heading .panel-title a .date {
    position: relative;
    left: -17px;
  }
}

.resources h2 {
  margin-top: 60px;
}

.resources ul {
  list-style: none;
  padding: 0;
}

.resources ul li a {
  padding: 20px 30px;
  display: block;
  color: #363636;
}

.resources ul li a:hover {
  color: #be1e2d;
}

.resources ul li:nth-child(odd) a {
  background-color: #f3f3f3;
}

#pagination-container {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.upcoming-hearings {
  text-align: center;
  padding: 20px 0 40px;
}

.upcoming-hearings .col-sm-4.centered {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 32%;
}

@media (max-width: 991px) {
  .upcoming-hearings .col-sm-4.centered {
    width: 100%;
  }
}

.upcoming-hearings .hearing-image {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  max-width: 350px;
  display: block;
  margin-bottom: 15px;
}

.upcoming-hearings a {
  color: #363636;
}

.upcoming-hearings .hearing-title {
  margin-bottom: 25px;
}

.upcoming-hearings .add {
  color: #be1e2d;
  font-size: 14px;
}

table.timeline td {
  padding: 15px 30px;
}

table.timeline td.year {
  border-right: 1px solid #c9c9c9;
  padding-right: 25px;
  vertical-align: top;
  position: relative;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

@media (max-width: 497px) {
  table.timeline td.year {
    padding-left: 10px;
    min-width: 87px;
  }
}

table.timeline td.year:after {
  content: '';
  background-color: white;
  border: 1px solid #c9c9c9;
  height: 8px;
  width: 8px;
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  right: -5px;
  top: 23px;
}

table.timeline .year-label {
  background-color: white;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 20px;
  padding: 4px 10px;
  position: relative;
  left: -30px;
  color: #be1e2d;
  text-transform: none;
}

#faqsets {
  margin-top: 50px;
}

#faqsets .panel {
  box-shadow: 0px 0px 0px;
  border: 0px;
  margin-bottom: 12px;
}

#faqsets .panel-default>.panel-heading {
  background-color: white;
  border: 1px solid #c9c9c9;
  padding: 18px 25px;
  border-radius: 5px;
}

#faqsets .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top: 0px;
  padding: 20px 25px;
  margin-top: -4px;
  background-color: #ebebeb;
}

.witnesses {
  margin-top: 40px;
}

.witnesses .header {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.witnesses .panel-heading h3 a span {
  font-size: 18px;
}

.witnesses .panel-body .clearfix {
  border: 1px solid #c9c9c9;
  padding: 14px 30px;
  margin-bottom: 10px;
  font-size: 18px;
  background-color: white;
}

.witnesses .panel-body .clearfix span {
  float: none !important;
  display: inline-block;
  max-width: calc(100% - 85px);
}

.witnesses .panel-body .clearfix .hearing-date {
  font-size: 16px;
  vertical-align: top;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.witnesses .panel-body .clearfix a:hover {
  color: #be1e2d;
}

.stripes .stripe {
  padding: 20px 30px;
  margin: 0;
}

.stripes .stripe:nth-child(odd) {
  background-color: #f3f3f3;
}

body.subcommittees .instructions {
  padding: 20px 30px 10px;
}

body.subcommittees .stripes {
  margin-bottom: 50px;
}

body.subcommittees .subcommittee {
  padding: 50px 30px 70px;
  margin: 30px 0px;
}

body.subcommittees .subcommittee h2 {
  font-size: 38px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  border-bottom: 5px solid #be1e2d;
  padding-bottom: 5px;
  margin-bottom: 50px;
}

body.subcommittees .subcommittee h3 {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

body.subcommittees .subcommittee h4 {
  margin-bottom: 0;
  font-size: 16px;
  min-height: 0px;
}

body.subcommittees .subcommittee .committee-party {
  margin-bottom: 10px;
}

body.subcommittees .subcommittee .jurisdiction {
  font-size: 16px;
}

body.subcommittees .subcommittee .jurisdiction ul {
  padding-left: 20px;
  padding-top: 20px;
}

body.subcommittees .subcommittee .member-image {
  width: 110px;
  height: 110px;
  border-radius: 160px;
  border: 1px solid #363636;
  background-size: cover;
  margin: 20px auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

@media (max-width: 767px) {
  body.subcommittees .subcommittee .member-image {
    margin: 20px auto 0px;
  }
}

@media (max-width: 767px) {
  body.subcommittees .subcommittee .member-columns {
    text-align: center;
  }
}

body.subcommittees .subcommittee .member-info {
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  body.subcommittees .subcommittee .member-info {
    display: block;
  }
}

body.subcommittees .subcommittee .member-info .name {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 24px;
  position: relative;
  top: 5px;
}

body.subcommittees .subcommittee .member-info .state {
  font-size: 14px;
}

@media (max-width: 767px) {
  body.subcommittees .subcommittee #divide-list {
    margin-bottom: 50px;
  }
}

body.subcommittees .subcommittee #divide-list .member a {
  color: #293356 !important;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 16px;
}

body.hearings {
  max-width: none;
}

body.hearings #header,
body.hearings #content,
body.hearings footer {
  max-width: 1500px;
  margin: 0 auto;
}

body.hearings .table .divider td {
  padding: 35px 0px 10px 30px;
}

#calendar th {
  background-color: #293356;
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  font-weight: normal;
}

#calendar h2 {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

#calendar .fc-view-container .fc-month-view .fc-event-container a {
  color: #363636;
  height: auto;
}

#calendar .fc-toolbar .fc-center h2 {
  color: #363636;
}

#calendar .fc-toolbar {
  background-color: #fff;
}

#calendar .fc-toolbar .fc-left .fc-today-button,
#calendar .fc-toolbar .fc-right .fc-today-button,
#calendar .fc-toolbar .fc-left .fc-month-button,
#calendar .fc-toolbar .fc-right .fc-month-button,
#calendar .fc-toolbar .fc-left .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-right .fc-agendaWeek-button,
#calendar .fc-toolbar .fc-left .fc-agendaDay-button,
#calendar .fc-toolbar .fc-right .fc-agendaDay-button {
  background-color: #b5b5b5 !important;
  color: #fff !important;
  font-weight: normal !important;
  text-shadow: none;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

#calendar .fc-toolbar .fc-left .fc-state-active,
#calendar .fc-toolbar .fc-right .fc-state-active {
  background-color: #363636 !important;
  font-weight: normal !important;
}

.jump {
  background-color: #fff !important;
  padding-top: 10px !important;
  border: 1px solid #c9c9c9;
}

.jump .glyphicon {
  color: #be1e2d !important;
}

.jump label {
  color: #be1e2d;
  font-weight: normal;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  margin-right: 10px;
}

.jump #datePicker {
  border: 1px solid #c9c9c9 !important;
}

#calendar {
  margin: 45px 0 0 0;
  background-color: #fff;
  padding: 0 0px 0px 0px;
}

#calendar .fc-toolbar .fc-left .fc-today-button {
  background-color: #be1e2d !important;
  color: #fff !important;
  border: 1px solid #bedae5;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  text-shadow: none;
  font-weight: normal !important;
}

#calendar .fc-today {
  background-color: #be1e2d;
  border-top: 1px solid #c9c9c9;
  border-left: 1px solid #c9c9c9;
  color: white;
}

#calendar td.fc-day {
  border: 1px solid #c9c9c9;
}

#calendar .fc-day-number {
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

.calendarFooter .row .col .today {
  color: #be1e2d;
}

a.business_meeting:before {
  background-color: #be1e2d !important;
}

.business_meeting.glyphicon {
  color: #be1e2d;
}

#calendar .fc-view-container .fc-month-view .fc-event-container a.executive {
  color: #363636 !important;
}

a.executive:before {
  background-color: #798fd8 !important;
}

.executive.glyphicon {
  color: #798fd8 !important;
}

a.Nomination_Hearing:before {
  background-color: #33be1e !important;
}

.Nomination_Hearing.glyphicon {
  color: #33be1e;
}

a.full:before {
  background-color: #be981e !important;
}

.full.glyphicon {
  color: #be981e;
}

a.sub:before {
  background-color: #798fd8 !important;
}

.sub.glyphicon {
  color: #798fd8;
}

a.Oversight:before {
  background-color: #f96d2b !important;
}

.Oversight.glyphicon {
  color: #f96d2b;
}

a.sub_field:before {
  background-color: #1e99be !important;
}

.sub_field.glyphicon {
  color: #1e99be;
}

body#library .filefilterbuttons {
  position: absolute;
  top: 20px;
  right: 15px;
  display: inline-block;
}

@media (max-width: 767px) {
  body#library .filefilterbuttons {
    position: relative;
    top: 0px;
    right: 0px;
    margin: 0px 0px 10px;
  }
}

input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}

#copyButton {
  top: -3px;
  position: relative;
}

body#media-view #content {
  color: white;
  background: #363636;
}

body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}

@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}

body#media-view #featured-details-header a {
  color: #fff;
}

body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}

body#media-view #featured-details-description {
  color: #fff;
}

body#media-view #featured-details-description .main_page_title {
  color: #fff;
}

body#media-view #featured-details-description p {
  line-height: 25px;
}

body#media-view #share-footer a {
  color: #be1e2d;
}

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 #293356;
}

#multimedia-browser ul.nav-tabs li a:hover {
  background: #be1e2d;
}

#multimedia-browser ul.nav-tabs li.active {
  background-color: #293356;
}

#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: #be1e2d;
  color: #fff;
}

#multimedia-browser .pagination {
  background-color: #293356;
}

#multimedia-browser .row .media-thumbnail a {
  color: #363636;
}

#multimedia-browser .row .media-thumbnail a:hover {
  color: #293356;
}

body#multimedia.new #newscontent.video {
  padding: 0;
}

body#multimedia.new #video-content {
  background-color: #363636;
  padding: 40px 80px;
  position: relative;
}

body#multimedia.new #video-content:after {
  content: '';
  background-color: #363636;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}

body#multimedia.new #video-content:before {
  content: '';
  background-color: #363636;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}

body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}

body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}

@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}

@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}

body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-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: #be1e2d !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 #293356;
  border-bottom: 0px;
  display: none;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #293356 !important;
  font-size: 52px;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #be1e2d;
}

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: #be1e2d;
  color: #fff;
  padding: 0 13px;
  margin-top: -18px;
}

body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #293356;
  text-transform: uppercase;
}

body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  text-transform: uppercase;
  font-size: 13px;
}

body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #363636;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #363636;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #be1e2d;
}

body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #be1e2d;
}

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: #363636;
  height: 165px;
  overflow: hidden;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #293356;
}

body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #363636;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}

body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #293356;
}

body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #293356;
}

@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: #293356;
  color: white;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  padding: 35px 40px 100px;
  background-image: url('/themes/banking/images/footer.jpg');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}

@media (max-width: 560px) {
  body footer {
    padding: 20px 0 10px;
  }
}

body footer .office-left {
  display: inline-block;
  font-size: 12px;
  margin-right: 50px;
  vertical-align: top;
  margin-top: 20px;
}

body footer .office-left p {
  line-height: 21px;
}

@media (max-width: 560px) {
  body footer .office-left {
    width: 100%;
    text-align: center;
  }

  body footer .office-left img {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 13px;
  }

  body footer .office-left .office-info {
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
    text-align: left;
  }

  body footer .office-left .office-info h3 {
    margin-bottom: 4px;
  }
}

body footer .office-right {
  margin-left: 50px;
}

@media (max-width: 560px) {
  body footer .office-right {
    display: none;
  }
}

body footer .office-right h3 {
  text-align: right;
  margin-top: 15px;
}

body footer h3 {
  margin-bottom: 10px;
}

body footer .footer-ul.footernav li {
  padding: 0px 0px;
}

body footer .footer-ul.footernav li a {
  color: white;
  font-size: 15px;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
}

body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}

.member-center {
  display: inline-block;
  width: calc(100% - 450px);
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .member-center {
    display: none;
  }
}

.memberlist {
  display: inline-block;
  width: 50%;
  float: left;
}

#divide-list {
  column-count: 2;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 1300px) {
  #divide-list {
    column-count: 2;
  }
}

@media (max-width: 991px) {
  #divide-list {
    column-count: 2;
  }
}

@media (max-width: 660px) {
  #divide-list {
    column-count: 2;
  }
}

@media (max-width: 449px) {
  #divide-list {
    column-count: 1;
  }
}

#divide-list img {
  display: none;
}

#divide-list .member {
  line-height: 1.8;
  font-size: 14px;
}

#divide-list .member .headshot {
  opacity: 0;
  position: fixed;
  z-index: 1000;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  display: none;
  background-color: #363636;
  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);
}

#divide-list a {
  color: #fff;
  font-size: 12px;
}

#divide-list a:hover {
  text-decoration: underline;
}

#flagForm #flag-options .head {
  background-color: #293356;
  color: #fff;
}

/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}

.hide-on-submit {
  display: none !important;
}

.parent-element {
  overflow-x: hidden;
  margin-right: -2px;
  /* slide out to the left */
  /* slide in from the right */
  /* Animations are cool!  */
}

.parent-element #calendar {
  margin-top: 0px;
  border: 0;
  border-radius: 0px;
}

.parent-element .calendar {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow-y: hidden;
}

.parent-element .calendar .circle {
  width: 37px;
  height: 37px;
  background-color: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  z-index: 25;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

@media (max-width: 1280px) {
  .parent-element .calendar .circle {
    width: 32px;
    height: 32px;
    top: 2px;
  }
}

@media (max-width: 1140px) {
  .parent-element .calendar .circle {
    width: 28px;
    height: 28px;
    top: 2px;
  }
}

.parent-element .calendar .header {
  height: 50px;
  width: 100%;
  background-color: #293356;
  font-family: 'Bebas Neue', cursive;
  font-weight: normal;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 10px;
  height: 55px;
}

.parent-element .calendar .header .month {
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0px;
  font-weight: normal;
  min-height: 1px;
  display: inline-block;
}

.parent-element .calendar .header .year {
  display: none;
}

.parent-element .calendar .header h1 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 50px;
  font-weight: 100;
  letter-spacing: 1px;
}

.parent-element .calendar .legend {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #E9E9E9;
  line-height: 30px;
}

.parent-element .ring-left {
  left: 2em;
  position: absolute;
  margin-top: -8px;
}

.parent-element .ring-right {
  right: 2em;
  position: absolute;
  margin-top: -8px;
}

.parent-element .ring-left,
.parent-element .ring-right {
  display: none;
}

.parent-element .ring-left:after,
.parent-element .ring-right:after,
.parent-element .ring-left:before,
.parent-element .ring-right:before {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25), 0 -1px 1px rgba(0, 0, 0, 0.2);
  content: "";
  display: inline-block;
  margin: 8px;
  height: 32px;
  width: 8px;
}

.parent-element .left,
.parent-element .right {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  top: 50%;
  margin-top: -7.5px;
  cursor: pointer;
}

.parent-element .left {
  border-width: 7.5px 10px 7.5px 0;
  border-color: transparent #FFF transparent transparent;
  left: 20px;
}

.parent-element .right {
  border-width: 7.5px 0 7.5px 10px;
  border-color: transparent transparent transparent #FFF;
  right: 20px;
}

.parent-element .month {
  /*overflow: hidden;*/
  opacity: 0;
  transition: all 0.3s ease;
  padding: 10px 20px 0;
  min-height: 225px;
}

.parent-element .month.new {
  -webkit-animation: fadeIn 1s ease-out;
  opacity: 1;
}

.parent-element .month.new .day {
  height: 40px;
}

.parent-element .month.in.next {
  -webkit-animation: moveFromRightFadeMonth 0.3s ease-out;
  -moz-animation: moveFromRightFadeMonth 0.3s ease-out;
  animation: moveFromRightFadeMonth 0.3s ease-out;
  opacity: 1;
}

.parent-element .month.in.prev {
  -webkit-animation: moveFromLeftFadeMonth 0.3s ease-out;
  -moz-animation: moveFromLeftFadeMonth 0.3s ease-out;
  animation: moveFromLeftFadeMonth 0.3s ease-out;
  opacity: 1;
}

.parent-element .month.out.next {
  -webkit-animation: moveToLeftFadeMonth 0.3s ease-in;
  -moz-animation: moveToLeftFadeMonth 0.3s ease-in;
  animation: moveToLeftFadeMonth 0.3s ease-in;
  opacity: 1;
}

.parent-element .month.out.prev {
  -webkit-animation: moveToRightFadeMonth 0.3s ease-in;
  -moz-animation: moveToRightFadeMonth 0.3s ease-in;
  animation: moveToRightFadeMonth 0.3s ease-in;
  opacity: 1;
}

.parent-element .week-days {
  padding: 17px 20px 0;
  background-color: white;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
  font-size: 16px;
  height: 40px;
}

.parent-element .week-days .day {
  cursor: default;
}

.parent-element .week {
  background-color: #fff;
  /* background: #4A4A4A; */
}

.parent-element .week:last-child {
  border-radius: 10px;
  padding-bottom: 15px;
}

.parent-element .day {
  display: inline-block;
  width: -moz-calc(14.28571429%);
  /* WebKit */
  width: -webkit-calc(14.28571429%);
  /* Opera */
  width: -o-calc(14.28571429%);
  /* Standard */
  width: calc(100%/7);
  padding: 0 7px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  height: 40px;
  /* background: #4A4A4A; */
  position: relative;
  z-index: 100;
}

.parent-element .day.no-events .day-number {
  color: #363636;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

.parent-element .day.no-events .circle {
  transform: scale(1) !important;
  background: white !important;
}

.parent-element .day.other .day-number {
  color: #E9E9E9 !important;
}

.parent-element .day.other .circle {
  background-color: #E9E9E9;
  transform: scale(0, 0) !important;
}

.parent-element .day.today .day-number {
  color: #be1e2d !important;
}

.parent-element .day.today .circle {
  background-color: #fff !important;
  border: 1px solid #be1e2d !important;
}

.parent-element .day .day-events {
  list-style: none;
  margin-top: 3px;
  text-align: center;
  height: 12px;
  line-height: 6px;
  overflow: hidden;
}

.parent-element .day .day-events span {
  vertical-align: top;
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 5px;
  height: 5px;
  line-height: 5px;
  margin: 0 1px;
}

.parent-element .day.has-events .day-number {
  color: #363636;
  text-decoration: underline;
}

.parent-element .day-name {
  font-size: 9px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.7px;
}

.parent-element .day-number {
  font-size: 16px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 30;
  top: 7px;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

.parent-element .blue {
  background: #293356 !important;
}

.parent-element .orange {
  background: #f7a700;
}

.parent-element .green {
  background: #99c66d;
}

.parent-element .yellow {
  background: #f9e900;
}

.parent-element .pink {
  background: #FF009B;
}

.parent-element .details {
  position: absolute;
  z-index: 200;
  background-color: white;
  color: #363636;
  margin-top: 5px;
  border-radius: 2px;
  top: 50px;
  left: 0px;
  width: 100%;
}

.parent-element .details a {
  color: #293356;
}

.parent-element .details.in {
  -webkit-animation: moveFromTopFade 0.5s ease both;
  -moz-animation: moveFromTopFade 0.5s ease both;
  animation: moveFromTopFade 0.5s ease both;
}

.parent-element .details.out {
  -webkit-animation: moveToTopFade 0.5s ease both;
  -moz-animation: moveToTopFade 0.5s ease both;
  animation: moveToTopFade 0.5s ease both;
}

.parent-element .events {
  padding: 7px 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
}

.parent-element .events .close-details {
  text-align: right;
  color: #be1e2d;
}

.parent-element .events.in {
  -webkit-animation: fadeIn 0.3s ease both;
  -moz-animation: fadeIn 0.3s ease both;
  animation: fadeIn 0.3s ease both;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
  height: 300px;
}

.parent-element .details.out .events {
  -webkit-animation: fadeOutShrink 0.4s ease both;
  -moz-animation: fadeOutShink 0.4s ease both;
  animation: fadeOutShink 0.4s ease both;
}

.parent-element .events.out {
  -webkit-animation: fadeOut 0.3s ease both;
  -moz-animation: fadeOut 0.3s ease both;
  animation: fadeOut 0.3s ease both;
}

.parent-element .event {
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.5px;
  padding: 2px 16px;
  vertical-align: top;
  font-family: 'PT Serif Caption', serif;
  font-weight: 400;
}

.parent-element .event.empty {
  color: #eee;
}

.parent-element .event span {
  display: inline-block;
}

.parent-element .event-category {
  height: 10px;
  width: 10px;
  float: left;
  display: inline-block;
  margin: 8px 0 0;
  vertical-align: top;
}

.parent-element .legend {
  bottom: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #E9E9E9;
  line-height: 30px;
}

.parent-element .entry {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 13px;
  display: inline-block;
  line-height: 30px;
  background: transparent;
}

.parent-element .entry:after {
  position: absolute;
  content: '';
  height: 5px;
  width: 5px;
  top: 12px;
  left: 14px;
}

.parent-element .entry.blue:after {
  background: #9ccaeb;
}

.parent-element .entry.orange:after {
  background: #f7a700;
}

.parent-element .entry.green:after {
  background: #99c66d;
}

.parent-element .entry.yellow:after {
  background: #f9e900;
}

@keyframes slideOutLeft {
  to {
    transform: translateX(-200%);
  }
}

@-moz-keyframes slideOutLeft {
  to {
    -moz-transform: translateX(-200%);
  }
}

@-webkit-keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-200%);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(200%);
  }

  to {
    transform: translateX(0);
  }
}

@-moz-keyframes slideInRight {
  from {
    -moz-transform: translateX(200%);
  }

  to {
    -moz-transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(200%);
  }

  to {
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes moveFromTopFade {
  from {
    opacity: 0.3;
    height: 0px;
    margin-top: 0px;
    -webkit-transform: translateY(-100%);
  }
}

@-moz-keyframes moveFromTopFade {
  from {
    height: 0px;
    margin-top: 0px;
    -moz-transform: translateY(-100%);
  }
}

@keyframes moveFromTopFade {
  from {
    height: 0px;
    margin-top: 0px;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveToTopFade {
  to {
    height: 0px;
    margin-top: 0px;
    opacity: 0.3;
    -webkit-transform: translateY(-100%);
  }
}

@-moz-keyframes moveToTopFade {
  to {
    height: 0px;
    -moz-transform: translateY(-100%);
  }
}

@keyframes moveToTopFade {
  to {
    height: 0px;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(-30%) scale(0.95);
  }
}

@-moz-keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }
}

@keyframes moveToTopFadeMonth {
  to {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }
}

@-webkit-keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(30%) scale(0.95);
  }
}

@-moz-keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -moz-transform: translateY(30%);
  }
}

@keyframes moveFromTopFadeMonth {
  from {
    opacity: 0;
    -moz-transform: translateY(30%);
  }
}

@-webkit-keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%) scale(0.95);
  }
}

@-moz-keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%);
  }
}

@keyframes moveToBottomFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateY(30%);
  }
}

@-webkit-keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.95);
  }
}

@-moz-keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%);
  }
}

@keyframes moveToLeftFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(-200%);
  }
}

@-webkit-keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%) scale(0.95);
  }
}

@-moz-keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }
}

@keyframes moveToRightFadeMonth {
  to {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }
}

@-webkit-keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%) scale(0.95);
  }
}

@-moz-keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%);
  }
}

@keyframes moveFromBottomFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30%);
  }
}

@-webkit-keyframes moveFromLeftFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200%) scale(0.95);
  }
}

@-webkit-keyframes moveFromRightFadeMonth {
  from {
    opacity: 0;
    -webkit-transform: translateX(200%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-webkit-keyframes moveToRightFadeMonth {
  to {
    opacity: 1;
    -webkit-transform: translateX(200%);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}

@-moz-keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}

@keyframes fadeOutShink {
  to {
    opacity: 0;
    padding: 0px;
    height: 0px;
  }
}

@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;
}

.ie img {
  max-width: auto;
}

.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;
}


.people>li .files {
  display: flex;
  flex-direction: column;
}

.member-social {
  display: flex;
  gap: 14px;
  padding: 0 14px;
  align-items: center;
  order: -1;
  margin-right: auto;
}
@media (min-width: 767.001px) {
  .member-title > span:first-child {
    display: block;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .member-social {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 10px;
    padding: 0 10px;
    height: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
}
.member-social .social-icon {
  width: 1em;
  height: 1em;
  font-size: 22px;
}
@media (min-width: 767.001px) {
  .member-social .social-icon {
    font-size: 28px;
  }
  .member-social .social-icon path {
    fill: white !important;
  }
}
.member-social .social-link {
  display: inline-flex;
  transition: transform 500ms ease;
  will-change: transform;
}
.member-social .social-link:hover {
  transform: scale(1.2);
}
@media (min-width: 767.001px) {
  .member-social .social-link:hover .social-icon path {
    fill: #be1e2d !important;
  }
}
