/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #fff;
}
#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: #21b37c;
}
#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: #115d40;
}
body #header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 3;
}
body #header a.logo-hold {
  width: 300px;
  display: inline-block;
}
@media (max-width: 479px) {
  body #header a.logo-hold {
    width: 270px;
  }
}
@media (max-width: 375px) {
  body #header a.logo-hold {
    width: 245px;
  }
}
@media (max-width: 338px) {
  body #header a.logo-hold {
    width: 200px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
@media (max-width: 375px) {
  body #header a.logo-hold img {
    width: 200px;
  }
}
body #header .donate-button {
  float: right;
  width: 134px;
  font-size: 19px;
  border-radius: 6px;
  margin: 1px 0px 10px 30px;
  padding: 8px;
  color: #252525;
  background-color: white;
  border: 1px solid #252525;
}
@media (max-width: 600px) {
  body #header .donate-button {
    display: none;
  }
}
body #header .donate-button:hover {
  border: 1px solid #21b37c;
  background-color: #21b37c;
  color: white;
}
body #content {
  padding-top: 109px !important;
}
body #header .container {
  border-bottom: 1px solid #e0e0e0;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
@media (max-width: 991px) {
  body .navbar {
    margin: 10px 0px;
  }
}
@media (max-width: 320px) {
  body .navbar {
    margin: 0;
    top: 10px;
  }
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #252525;
  text-transform: uppercase;
  padding: 10px 0px 20px;
  margin: 0px 15px;
  border-radius: 0;
  font-size: 18px;
  font-family: 'Slate W01 Bold', sans-serif;
}
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
  border-bottom: 1px solid #252525;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  min-width: 300px;
  top: 106%;
  border-radius: 10px;
  border: 1px solid black;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 2px 15px;
  border-radius: 8px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #252525;
  text-transform: uppercase;
  border: none;
  padding: 5px 5px;
  font-family: 'Slate W01 Bold', sans-serif;
  font-size: 16px;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #252525;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
  font-family: 'Slate W01 Bold', sans-serif;
}
body .navbar .nav-pills > li .dropdown-menu:before {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #252525;
  content: '';
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 28px;
}
body .navbar .nav-pills > li .dropdown-menu:after {
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 15px solid white;
  content: '';
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 29px;
}
body .navbar .nav-pills > li:last-child .dropdown-menu:before {
  right: 29px;
  left: auto;
}
body .navbar .nav-pills > li:last-child .dropdown-menu:after {
  right: 30px;
  left: auto;
}
body .navbar .togglemenu {
  color: #252525;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #252525;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #252525;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black !important;
  font-size: 60px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Playfair Display', serif;
  color: #252525;
  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 > a:hover {
  text-decoration: none;
  color: #21b37c;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Slate W01 Bold', sans-serif;
  color: #252525;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: none;
  color: #21b37c;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding-top: 35px;
  float: right;
}
@media (max-width: 375px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    padding-top: 24px;
  }
}
@media (max-width: 338px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    padding-top: 14px;
  }
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 0px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  position: relative;
  font-size: 18px;
  display: inline-block;
  top: 10px;
  float: right;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 495px;
  border: none;
  background-color: #fff;
  color: #252525;
  border-bottom: 3px solid #252525;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #252525;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #252525;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #252525;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #252525;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #fff;
  color: #252525;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
.press-date {
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Slate W01 Bold', sans-serif;
}
.library {
  width: 100%;
  padding: 20px;
  font-size: 28px;
  text-transform: none !important;
  margin-top: 40px;
  border: 1px solid #252525;
  white-space: normal;
  color: #252525 !important;
  background-color: white !important;
}
@media (max-width: 479px) {
  .library {
    font-size: 24px;
  }
}
.library:hover {
  color: white !important;
  background-color: #21b37c !important;
  border-color: #21b37c;
}
.library img {
  width: 40px;
}
.slick-next,
.slick-prev {
  background-color: white !important;
  color: #252525 !important;
  height: 36px !important;
  width: 36px !important;
  border-radius: 36px;
  font-size: 30px !important;
  opacity: 1;
  top: 49% !important;
}
.slick-next:before,
.slick-prev:before {
  content: '';
  display: none;
}
.slick-dots li button:before {
  font-size: 40px;
  background-color: white;
  border: 1px solid #252525;
  border-radius: 40px;
  color: white !important;
  top: 3px !important;
  width: 14px !important;
  height: 14px !important;
}
.tag-banner {
  padding: 7px 15px 7px 30px;
  position: absolute;
  bottom: 30px;
  left: 0px;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Slate W01 Bold', sans-serif;
  transition: 0.2s padding-left ease-in-out;
}
.tag-banner a {
  color: white;
}
.tag-banner a:hover {
  color: white;
}
.tag-banner.justice {
  background-color: #5b514f;
}
.tag-banner.economy {
  background-color: #006c49;
}
.tag-banner.environment {
  background-color: #5b514f;
}
.tag-banner.education {
  background-color: #e1a64c;
}
.tag-banner.government {
  background-color: #005f92;
}
.tag-banner.healthcare {
  background-color: #f04e58;
}
.tag-banner.social {
  background-color: #5b514f;
}
.tag-banner.peace {
  background-color: #e1a64c;
}
.tag-banner.racial {
  background-color: #005f92;
}
.tag-banner.immigration {
  background-color: #55b4e6;
}
.tag-banner.native {
  background-color: #167243;
}
.tag-banner.veterans {
  background-color: #f04e58;
}
.tag-banner.military {
  background-color: #55b4e6;
}
.tag-banner.sustainable {
  background-color: #55b4e6;
}
.tag-banner.book {
  background-color: #21b37c;
}
.banner {
  position: relative;
  width: 70%;
  float: left;
  height: 470px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1200px) {
  .banner {
    height: auto;
    width: 100%;
    max-height: 470px;
  }
  .banner img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .banner {
    max-height: 350px;
  }
}
@media (max-width: 530px) {
  .banner {
    max-height: 280px;
  }
}
.carousel-indicators {
  left: 30%;
  width: 30%;
  bottom: 0px;
}
@media (max-width: 1200px) {
  .carousel-indicators {
    left: 50%;
    width: 60%;
  }
}
.carousel-indicators li {
  background-color: white;
  border-color: #252525;
  width: 14px;
  height: 14px;
}
.carousel-indicators li.active {
  background-color: #363636 !important;
  width: 14px !important;
  height: 14px !important;
  border-color: white !important;
}
.slide iframe {
  height: 470px;
  width: 70%;
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
}
@media (max-width: 1200px) {
  .slide iframe {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .slide iframe {
    height: 350px;
  }
}
@media (max-width: 530px) {
  .slide iframe {
    height: 280px;
  }
}
.carousel-control {
  width: 4%;
}
.press-area {
  position: relative;
  left: 0;
  top: 0;
  padding: 6px 0px 30px 22px;
  width: 30%;
  min-width: 330px;
  height: 100%;
  height: 470px;
  float: left;
  border: 28px solid #252525;
  border-bottom: 40px solid #252525;
  overflow: hidden;
  background-color: #252525;
}
@media (max-width: 1200px) {
  .press-area {
    position: relative;
    padding: 0px;
    width: 100%;
    background-color: #252525;
    height: auto;
  }
}
@media (max-width: 767px) {
  .press-area {
    display: inline-block;
  }
}
@media (max-width: 479px) {
  .press-area {
    min-width: auto;
  }
}
.press-area h2 {
  font-size: 32px;
}
@media (max-width: 1200px) {
  .press-area h2 {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  .press-area h2 {
    font-size: 24px;
  }
}
.press-area .press-title a {
  color: white;
  font-family: 'Slate W01 Bold', sans-serif;
  margin-top: 0;
  line-height: 38px;
}
@media (max-width: 479px) {
  .press-area .press-title a {
    line-height: 29px;
  }
}
.press-area .press-date {
  color: white;
}
.press-area .press-date.not-date {
  text-transform: none;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Slate W01', sans-serif;
}
@media (max-width: 479px) {
  .press-area .press-date.not-date {
    font-size: 17px;
    line-height: 23px;
  }
}
.press {
  margin-top: 50px;
  display: inline-block;
}
@media (max-width: 600px) {
  .press {
    margin-top: 20px;
  }
}
.press .press-image {
  height: 300px;
  width: 100%;
  position: relative;
}
@media (max-width: 479px) {
  .press .press-image {
    height: 230px;
  }
}
.press .press-image .tag-banner.inequality {
  background-color: #f04e58;
}
.press .press-title h2 a {
  color: black;
  font-size: 22px;
  font-family: 'Slate W01 Bold', sans-serif;
}
.press .press-title h2 a:hover {
  color: #21b37c;
}
@media (max-width: 767px) {
  .press .press-summary {
    margin-bottom: 30px;
  }
}
.newsletter {
  background-image: url('/themes/sanders-institute/images/new-newsletter2.jpg');
  background-size: cover;
  height: 769px;
  margin-top: 50px;
  color: white;
  padding: 40px 30px;
  position: relative;
  margin-bottom: 100px;
  background-position: center center;
}
@media (max-width: 1200px) {
  .newsletter {
    height: 610px;
  }
}
@media (max-width: 991px) {
  .newsletter {
    height: 480px;
  }
}
@media (max-width: 535px) {
  .newsletter {
    margin-bottom: 0;
  }
}
.newsletter h1 {
  font-size: 53px;
  margin-top: 0;
  font-family: 'Slate W01 Bold', sans-serif;
}
@media (max-width: 1200px) {
  .newsletter h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .newsletter h1 {
    font-size: 32px;
  }
}
.newsletter .bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 22px;
  line-height: 34px;
  width: 88%;
}
.newsletter .bottom button {
  width: 100%;
  font-family: 'Slate W01 Bold', sans-serif;
  background-color: #00aeef;
  padding: 10px;
  font-size: 25px;
  border: 0;
  text-transform: uppercase;
  margin-top: 30px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .newsletter .bottom button {
    width: 96%;
  }
}
.newsletter .bottom input {
  margin-top: 30px;
  height: 75px;
  font-size: 30px;
  padding-left: 15px;
  color: black;
}
@media (max-width: 1200px) {
  .newsletter .bottom input {
    height: 65px;
  }
}
@media (max-width: 991px) {
  .newsletter .bottom input {
    height: 50px;
    font-size: 23px;
  }
}
@media (max-width: 479px) {
  .newsletter .bottom input {
    font-size: 18px;
  }
}
.newsletter .bottom input.email {
  width: 60%;
}
@media (max-width: 991px) {
  .newsletter .bottom input.email {
    width: 58%;
  }
}
.newsletter .bottom input.zip {
  width: 37%;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .newsletter .bottom input.zip {
    width: 35%;
  }
}
.newsletter.altered {
  background-image: none;
  background-color: #252525;
}
@media (max-width: 540px) {
  .hidden-xs.xs {
    display: block !important;
  }
}
@media (max-width: 540px) {
  .visible-xs.xs {
    display: none !important;
  }
}
.donate-button.mobile {
  margin-top: 15px;
  font-size: 19px;
  display: none;
  padding: 10px 30px;
}
@media (max-width: 600px) {
  .donate-button.mobile {
    display: block;
    width: 100%;
    border: 1px solid #252525;
    color: #252525 !important;
    background-color: white !important;
  }
  .donate-button.mobile:hover {
    background-color: #21b37c !important;
    color: white !important;
    border: 1px solid #21b37c;
  }
}
@media (max-width: 479px) {
  .donate-button.mobile {
    float: left !important;
  }
}
.twitter {
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 5px;
  border: 1px solid #b7b7b7;
}
@media (max-width: 1200px) {
  .twitter iframe {
    height: 592px !important;
  }
}
@media (max-width: 991px) {
  .twitter iframe {
    height: 463px !important;
  }
}
@media (max-width: 767px) {
  .twitter iframe {
    height: 350px !important;
  }
}
#welcomeModal .fade.in {
  background-color: #252525;
}
#welcomeModal .modal-content {
  border: 0;
}
#welcomeModal .modal-dialog {
  margin: 13% auto;
  width: 70%;
}
#welcomeModal .modal-dialog .modal-body {
  padding: 0;
}
#welcomeModal .modal-dialog .modal-body iframe {
  width: 1005;
}
/*
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;
}
.latestheader {
  margin-bottom: 50px;
}
.fellow-twitter {
  color: #1DA1F2;
}
.fellow-twitter:hover {
  color: #252525;
}
.side-button {
  transform: rotate(270deg);
  position: fixed;
  right: 0;
  top: 317px;
  border-radius: 5px 5px 0px 0px !important;
  border: 0;
  right: -78px;
  transition: 0.2s all ease-in;
}
@media (max-width: 600px) {
  .side-button {
    display: none;
  }
}
.side-button:hover {
  padding-bottom: 30px;
  top: 308px;
}
.sidebutton.mobile {
  display: none;
}
@media (max-width: 600px) {
  .sidebutton.mobile {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
  }
}
li.previous {
  margin-right: 10px;
}
img.banner {
  float: none;
}
#breadcrumb {
  margin-top: 30px;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #21b37c;
}
body.constrained #main_column {
  max-width: 900px;
  margin: 0 auto;
  float: none;
}
body.constrained #breadcrumb {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 30px;
}
#listblocks .block a {
  background-color: white !important;
  border: 2px solid #252525;
  color: #252525 !important;
  font-family: 'Slate W01 Bold', sans-serif;
  font-weight: normal !important;
  text-transform: uppercase;
  transition: 0.3s all ease-in !important;
}
#listblocks .block a:hover {
  background-color: #21b37c !important;
  border-color: #21b37c;
  color: white!important;
}
.cover-thumbnail {
  margin-right: 20px;
  height: 250px;
  width: 25%;
  background-image: cover;
  float: left;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 20px 0px;
  background-position: center center;
  transition: 0.3s ease-in width;
}
@media (max-width: 991px) {
  .cover-thumbnail {
    width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .cover-thumbnail {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .cover-thumbnail {
    width: 100%;
  }
}
.cover-thumbnail.colllapse {
  width: 0;
}
.modal .cover-thumbnail {
  width: 25% !important;
}
.book-modal .fade.in {
  background-color: #252525;
  opacity: 0.8;
}
.book-modal .modal-content {
  padding: 25px 30px;
  min-height: 370px;
}
.book-modal .modal-content .cover-thumbnail {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .book-modal .modal-content .cover-thumbnail {
    margin-right: 20px;
  }
}
.book-modal .modal-dialog {
  margin: 10% auto;
}
.book-modal .modal-header {
  border: 0;
}
.book-modal .modal-header .close {
  font-weight: 100;
  line-height: 0.3;
  font-size: 48px;
}
.book-modal .summary {
  margin-left: 250px;
}
@media (max-width: 991px) {
  .book-modal .summary {
    margin-left: 0;
  }
}
.book-modal .buy-link {
  width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}
#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;
}
select#sort-by-tag {
  width: 183px;
  height: 44px;
  font-size: 18px;
  margin-top: -37px;
}
#filterbuttons a {
  background-color: transparent;
  color: #21b37c;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #115d40;
}
.span8 dt,
.span8 dd {
  display: inline-block;
}
.breakout#tags li {
  padding: 40px 0px;
  border-bottom: 1px solid #e3e3e3;
}
.blog_entry iframe,
.blog-entry iframe,
#issue .one_column .breakout #issueFeed > li iframe,
#issueFeed > li iframe {
  width: 100%;
  height: 500px;
}
@media (max-width: 991px) {
  .blog_entry iframe,
  .blog-entry iframe,
  #issue .one_column .breakout #issueFeed > li iframe,
  #issueFeed > li iframe {
    height: 400px;
  }
}
@media (max-width: 570px) {
  .blog_entry iframe,
  .blog-entry iframe,
  #issue .one_column .breakout #issueFeed > li iframe,
  #issueFeed > li iframe {
    height: 350px;
  }
}
@media (max-width: 400px) {
  .blog_entry iframe,
  .blog-entry iframe,
  #issue .one_column .breakout #issueFeed > li iframe,
  #issueFeed > li iframe {
    height: 300px;
  }
}
.blog_entry img,
.blog-entry img,
#issue .one_column .breakout #issueFeed > li img,
#issueFeed > li img {
  width: 90%;
  height: auto;
}
@media (max-width: 630px) {
  .blog_entry img,
  .blog-entry img,
  #issue .one_column .breakout #issueFeed > li img,
  #issueFeed > li img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 630px) {
  .blog_entry img,
  .blog-entry img,
  #issue .one_column .breakout #issueFeed > li img,
  #issueFeed > li img {
    width: 90%;
    height: auto;
  }
}
@media (max-width: 570px) {
  .blog_entry img,
  .blog-entry img,
  #issue .one_column .breakout #issueFeed > li img,
  #issueFeed > li img {
    width: 80%;
    height: auto;
  }
}
@media (max-width: 400px) {
  .blog_entry img,
  .blog-entry img,
  #issue .one_column .breakout #issueFeed > li img,
  #issueFeed > li img {
    width: 70%;
    height: auto;
  }
}
.breakout li .title a {
  color: #21b37c;
}
.breakout li .title a:hover {
  color: #115d40;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #21b37c;
  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: #115d40;
}
body#issues .main_page_title {
  display: none;
}
.issue-block {
  height: 185px;
  width: 100%;
  margin-bottom: 30px;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .issue-block {
    height: 100px;
    margin-bottom: 25px;
  }
}
.issue-block h2 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-family: 'Slate W01 Bold', sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  transition: 0.2s ease-in background-color;
}
@media (max-width: 991px) {
  .issue-block h2 {
    font-size: 22px;
    padding: 25px;
  }
}
.issue-block h2.democracy {
  background-color: #55b4e6;
}
.issue-block h2:hover {
  padding-left: 40px;
}
.issue-block h2.justice {
  transition: 0.2s ease-in background-color;
  background-color: rgba(91, 81, 79, 0.85);
}
.issue-block h2.justice:hover {
  background-color: #5b514f;
}
.issue-block h2.economy {
  transition: 0.2s ease-in background-color;
  background-color: rgba(0, 108, 73, 0.85);
}
.issue-block h2.economy:hover {
  background-color: #006c49;
}
.issue-block h2.environment {
  transition: 0.2s ease-in background-color;
  background-color: rgba(91, 81, 79, 0.85);
}
.issue-block h2.environment:hover {
  background-color: #5b514f;
}
.issue-block h2.education {
  transition: 0.2s ease-in background-color;
  background-color: rgba(225, 166, 76, 0.85);
}
.issue-block h2.education:hover {
  background-color: #e1a64c;
}
.issue-block h2.government {
  transition: 0.2s ease-in background-color;
  background-color: rgba(0, 95, 146, 0.85);
}
.issue-block h2.government:hover {
  background-color: #005f92;
}
.issue-block h2.healthcare {
  transition: 0.2s ease-in background-color;
  background-color: rgba(240, 78, 88, 0.85);
}
.issue-block h2.healthcare:hover {
  background-color: #f04e58;
}
.issue-block h2.social {
  transition: 0.2s ease-in background-color;
  background-color: rgba(91, 81, 79, 0.85);
}
.issue-block h2.social:hover {
  background-color: #5b514f;
}
.issue-block h2:hover {
  padding-left: 40px;
}
.issue-block h2.peace {
  transition: 0.2s ease-in background-color;
  background-color: rgba(225, 166, 76, 0.85);
}
.issue-block h2.peace:hover {
  background-color: #e1a64c;
}
.issue-block h2.racial {
  transition: 0.2s ease-in background-color;
  background-color: rgba(0, 95, 146, 0.85);
}
.issue-block h2.racial:hover {
  background-color: #005f92;
}
.issue-block h2.immigration {
  transition: 0.2s ease-in background-color;
  background-color: rgba(85, 180, 230, 0.85);
}
.issue-block h2.immigration:hover {
  background-color: #55b4e6;
}
.issue-block h2.native {
  transition: 0.2s ease-in background-color;
  background-color: rgba(22, 114, 67, 0.85);
}
.issue-block h2.native:hover {
  background-color: #167243;
}
.issue-block h2.veterans {
  transition: 0.2s ease-in background-color;
  background-color: rgba(240, 78, 88, 0.85);
}
.issue-block h2.veterans:hover {
  background-color: #f04e58;
}
.issue-block h2.military {
  transition: 0.2s ease-in background-color;
  background-color: rgba(85, 180, 230, 0.85);
}
.issue-block h2.military:hover {
  background-color: #55b4e6;
}
.issue-block h2.sustainable {
  transition: 0.2s ease-in background-color;
  background-color: rgba(85, 180, 230, 0.85);
}
.issue-block h2.sustainable:hover {
  background-color: #55b4e6;
}
.issue-block h2:hover {
  padding: 0;
}
.issuebody img {
  width: 100%;
  height: auto;
}
#typenav li a {
  color: #252525;
  font-family: 'Slate W01 Bold', sans-serif;
}
#typenav li.active a {
  color: white;
  background-color: #21b37c;
}
#typenav.affix {
  top: 0;
}
ul.related-feed li {
  padding: 20px 0px 30px;
  border-bottom: 1px solid #cecece;
}
.person {
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 579px) {
  .person .pull-left {
    float: none!important;
    margin-left: 15px;
    margin-bottom: 30px;
  }
}
.person .image-thumbnail {
  width: 250px;
  height: 250px;
  background-size: cover;
  margin-right: 20px;
  margin-top: 10px;
}
@media (max-width: 580px) {
  .person .image-thumbnail {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .person .image-thumbnail {
    width: 100%;
    height: 350px;
  }
}
.person .person-name {
  margin-top: 5px;
  font-family: 'Playfair Display', serif;
}
.person .person-name a {
  color: black;
}
.person .person-name a:hover {
  color: #21b37c;
}
.person .person-title {
  font-family: 'Slate W01 Bold', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  color: #999;
}
.events-table {
  margin-top: 30px;
}
.events-table td {
  width: 33%;
  vertical-align: text-top;
}
@media (max-width: 991px) {
  .events-table td {
    width: 50%;
    display: inline-block;
  }
}
.events-table .event {
  border: 1px solid #b7b7b7;
  padding: 20px;
  display: block;
  min-height: 423px;
  color: black;
  margin-bottom: 30px;
  transition: 0.2s all ease-in-out;
}
.events-table .event h2 {
  margin-top: 0px;
  font-family: 'Playfair Display', serif;
}
.events-table .event time {
  font-family: 'Slate W01 Bold', sans-serif;
  color: #999;
  text-transform: uppercase;
}
.events-table .event:hover {
  border-color: #21b37c;
}
.events-table .event:hover h2 {
  color: #21b37c;
}
.events-table td + td {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .events-table td + td {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .events-table td:nth-child(even) {
    padding-left: 20px;
  }
}
.event-detail h1 {
  font-family: 'Playfair Display', serif;
}
.event-detail h3 {
  font-family: 'Playfair Display', serif;
}
.event-detail h3.event-date {
  font-size: 18px;
  font-family: 'Slate W01 Bold', sans-serif;
  color: #999;
  text-transform: uppercase;
}
.newsroom-section {
  font-family: 'Slate W01 Bold', sans-serif;
  border-bottom: 1px solid black;
}
#press .date.black,
#books .date.black,
#photos .date.black,
#videos .date.black {
  display: inline-block;
  margin-top: 20px;
}
.blog-entry h2 a {
  color: #252525;
}
.blog-entry h2 a:hover {
  color: #21b37c;
}
.blog-entry p {
  margin-bottom: 15px !important;
  line-height: 25px;
}
@media (max-width: 700px) {
  .person .col-xs-5 {
    width: 49%;
  }
}
@media (max-width: 620px) {
  .person .col-xs-5 {
    width: 56%;
  }
}
@media (max-width: 520px) {
  .person .col-xs-5 {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .person .col-xs-5 .image-thumbnail {
    margin-bottom: 20px;
  }
}
#actions .btn-xs {
  width: auto;
  padding-top: 0;
}
#actions .btn-xs:focus {
  padding-top: 0;
  width: auto;
}
#actions #fb-li .btn-xs {
  padding-top: 0;
  background-color: #3B5998;
}
#actions #fb-li .btn-xs .fa-facebook {
  margin-right: 2px;
}
#actions #fb-li .btn-xs:hover {
  background-color: #2d4373;
}
#actions #googleplus-li .btn-xs {
  padding-top: 0;
  background-color: #d34836;
}
#actions #googleplus-li .btn-xs .fa-google-plus {
  margin-right: 3px;
}
#actions #googleplus-li .btn-xs:hover {
  background-color: #b03626;
}
body.search .textsearchspot {
  margin-top: 30px;
  font-size: 22px!important;
}
body.search #searchresultslist .searchresultitem {
  padding: 10px 0px;
  font-size: 24px;
}
body.search #searchresultslist .searchresultitem .rank {
  margin-right: 10px;
  display: inline-block;
  width: 40px;
}
body#video-detail .video {
  padding-top: 0;
}
body#video-detail #copyButton {
  position: absolute;
}
body#video-detail #share-buttons input[type="text"] {
  width: 60px;
}
body#video-detail #featured-details-description {
  max-width: 900px;
  margin: 0 auto;
}
body#video-detail #share-buttons {
  padding: 0;
}
#newscontent.video {
  padding: 0;
}
body#multimedia #breadcrumb {
  display: none;
}
body#multimedia #main_container {
  width: 100%;
  padding: 0;
}
#video-content {
  background-color: #181818;
  padding: 40px 80px;
}
#video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
#video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
#video-content #featured-details-header {
  color: white;
  font-family: 'Slate W01 Bold', sans-serif;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  #video-content #featured-details-header {
    font-size: 26px;
  }
}
#video-content #featured-details-header a {
  color: white;
}
#video-content #featured-details-header a:hover {
  color: #21b37c;
}
#video-content #featured-details-description {
  color: white;
}
#video-content #featured-details-description p {
  line-height: 25px;
  display: none;
}
#video-content #featured-details-description p:first-child {
  display: block;
}
#video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
.media-header {
  font-family: 'Slate W01 Bold', sans-serif;
  color: #21b37c !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
#share-buttons {
  float: right;
  padding: 18px;
}
#share-buttons #share-youtube a {
  color: white;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-button-container {
  display: grid;
}
#multimedia-browser {
  padding: 50px 80px;
}
#multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #252525;
  border-bottom: 0px;
  display: none;
}
#multimedia-browser ul.nav-tabs li a {
  font-family: 'Slate W01 Bold', sans-serif;
  color: #21b37c !important;
  font-size: 52px;
  text-transform: uppercase;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #5b514f;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
#multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
#multimedia-browser legend {
  display: none;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #21b37c;
  color: #fff;
  font-family: 'Slate W01 Bold', sans-serif;
  padding: 0 13px;
  margin-top: -18px;
}
#multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Slate W01 Bold', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}
#multimedia-browser .multimedia-tools .date-btn,
#multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #21b37c;
  text-transform: uppercase;
}
#multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Slate W01 Bold', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  width: 75%;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Slate W01 Bold', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}
#multimedia-browser .pagination {
  background-color: white;
  color: #252525;
}
#multimedia-browser .pagination .listing-increment a {
  color: #252525;
}
#multimedia-browser .pagination .listing-increment a:hover {
  color: #21b37c;
}
#multimedia-browser .pagination .listing-increment a.selected {
  color: #21b37c;
}
#multimedia-browser .pagination.first-one {
  display: none !important;
}
#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;
}
#multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
#multimedia-browser .media-thumbnail .image a {
  color: #252525;
  height: 165px;
  overflow: hidden;
  font-family: 'Slate W01 Bold', sans-serif;
  display: inline-block;
}
#multimedia-browser .media-thumbnail .image a:hover {
  color: #21b37c;
}
#multimedia-browser .media-thumbnail a {
  color: #252525;
  font-family: 'Slate W01 Bold', sans-serif;
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
#multimedia-browser .media-thumbnail a:hover {
  color: #21b37c;
}
#multimedia-browser .media-thumbnail:hover a {
  color: #21b37c;
}
@media (max-width: 1300px) {
  #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -21px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -9px;
  }
}
@media (max-width: 900px) {
  #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -28px;
  }
  #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  #share-buttons {
    padding: 0;
  }
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  #share-buttons {
    padding: 0;
  }
  #multimedia-browser {
    padding: 50px 70px;
  }
  #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #252525;
}
@media (max-width: 767px) {
  body footer {
    text-align: center;
  }
}
body footer .footer-ul.footernav {
  text-align: center;
  float: left;
}
@media (max-width: 767px) {
  body footer .footer-ul.footernav {
    float: none;
    text-align: center !important;
  }
}
body footer .footer-ul.footernav li {
  padding: 70px 5px 50px;
  text-align: center;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav li {
    padding: 70px 0px 50px;
  }
}
@media (max-width: 767px) {
  body footer .footer-ul.footernav li {
    padding: 30px 6px 10px;
  }
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-family: 'Slate W01', sans-serif;
  text-transform: uppercase;
  padding: 10px 0px 6px;
  margin: 0px 15px;
  border-radius: 0;
  font-size: 18px;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav li a {
    font-size: 17px;
    margin: 0 10px;
  }
}
@media (max-width: 479px) {
  body footer .footer-ul.footernav li a {
    margin: 0;
  }
}
@media (max-width: 350px) {
  body footer .footer-ul.footernav li a {
    font-size: 14px;
  }
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: none;
  border-bottom: 1px solid white;
}
body footer .subfooternav {
  /*float:left;*/
  display: inline-block;
}
@media (max-width: 767px) {
  body footer .subfooternav {
    float: none !important;
  }
}
body footer .subfooternav .subfooternodes {
  float: left;
}
body footer .subfooternav a {
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  padding-bottom: 3px;
  font-family: 'Playfair Display', serif;
  font-family: 'Slate W01', sans-serif;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
@media (max-width: 350px) {
  body footer .subfooternav a {
    font-size: 14px;
  }
}
body footer .subfooternav a:hover {
  text-decoration: none;
  border-bottom: 1px solid white;
}
body footer .subfooternav li {
  padding-top: 3px;
  padding: 70px 5px 50px;
}
@media (max-width: 767px) {
  body footer .subfooternav li {
    padding: 26px 5px 30px;
  }
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body footer .donate-button {
  float: right;
  width: 134px;
  font-size: 19px !important;
  border-radius: 6px;
  margin: 1px 0px 10px 30px;
  padding: 8px !important;
  font-family: 'Slate W01 Bold', sans-serif !important;
  text-transform: uppercase;
  border: 1px solid white;
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 991px) {
  body footer .donate-button {
    margin: 60px 0px 10px 15px;
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  body footer .donate-button {
    margin-top: 20px;
  }
}
@media (max-width: 350px) {
  body footer .donate-button {
    font-size: 16px !important;
  }
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 50px;
}
#flagForm #flag-options .head {
  background-color: #21b37c;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~ FONT FAMILIES ~~~~~~~~~~~~~~~~~

font-family:'Slate W01 Light';
font-family:'Slate W01 Light Italic';
font-family:'Slate W01 Bk';
font-family:'Slate W01 Bk Italic';
font-family:'Slate W01';
font-family:'Slate W01 Italic';
font-family:'Slate W01 Medium';
font-family:'Slate W01 Medium Italic';
font-family:'Slate W01 Bold';
font-family:'Slate W01 Bold Italic';
font-family:'Slate W01 Black';
font-family:'Slate W01 Black Italic';
font-family:'SlateW01-LightCondensed';
font-family:'Slate W01 Bk Condensed';
font-family:'Slate W01 Condensed';
font-family:'SlateW01-MediumCondense';
font-family:'SlateW01-BoldCondensed';
font-family:'SlateW01-BlackCondensed';
font-family: 'Playfair Display', serif;

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Playfair Display', serif;
}
.sans {
  font-family: 'Slate W01', sans-serif;
}
.slate {
  font-family: 'Slate W01', sans-serif;
}
.slate-bold {
  font-family: 'Slate W01 Bold', sans-serif;
}
body {
  font-size: 18px;
  font-family: 'Slate W01', sans-serif;
}
.breakout p {
  margin-bottom: 10px !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}
.section-header {
  font-family: 'Playfair Display', serif;
  margin-top: 30px;
}
p,
p span {
  margin-bottom: 30px !important;
  line-height: 28px;
  font-size: 18px !important;
  font-family: 'Slate W01', sans-serif !important;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #21b37c;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #115d40;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: #252525;
  border: 1px solid #252525;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
#press .date,
.blog-entry .date,
.breakout .date,
.author-type,
.pubdate,
.date.black {
  text-transform: uppercase;
  font-family: 'Slate W01 Bold', sans-serif;
}
h2.title,
h3.title {
  margin-top: 7px;
  color: #252525;
  font-family: 'Playfair Display', serif;
}
h2.title a,
h3.title a {
  color: #252525;
}
h2.title a:hover,
h3.title a:hover {
  color: #21b37c;
}
.main_page_title {
  font-family: 'Playfair Display', serif;
}
/*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: #21b37c;
  color: white;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: 'Slate W01 Bold', sans-serif;
}
.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: #115d40;
  color: white;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .flip-container:hover .flipper,
.ie .flip-container.hover .flipper {
  transition: 0s;
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back,
.ie .flip-container:hover .flipper .front,
.ie .flip-container.hover .flipper .front {
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back {
  z-index: 10;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
