/* 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: #4b545c;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  max-width: 69%;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  opacity: 1 !important;
  font-size: 80px !important;
  margin-bottom: 80px;
}
@media (max-width: 479px) {
  #NavMobileModal .modal-dialog .modal-content .close,
  #SearchModal .modal-dialog .modal-content .close,
  #ContactModal .modal-dialog .modal-content .close {
    margin-bottom: 40px;
    font-size: 60px !important;
  }
}
#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: #11c198;
  font-size: 75px;
}
@media (max-width: 850px) {
  #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 {
    font-size: 50px;
  }
}
@media (max-width: 525px) {
  #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 {
    font-size: 35px;
  }
}
@media (max-width: 479px) {
  #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 {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  #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 {
    font-size: 24px;
  }
}
#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: #09634e;
}
#SearchModal .fade.in {
  background-color: #4b545c;
}
#SearchModal .modal-dialog {
  max-width: 69%;
}
#SearchModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#SearchModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  background-color: transparent;
  color: white;
  border-bottom: 2px solid white;
  outline: none;
  font-size: 75px;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white !important;
  opacity: 1;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  color: white !important;
  opacity: 1;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:-ms-input-placeholder {
  /* IE 10+ */
  color: white !important;
  opacity: 1;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  opacity: 1;
}
@media (max-width: 850px) {
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    font-size: 50px;
  }
}
@media (max-width: 525px) {
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    font-size: 35px;
  }
}
@media (max-width: 479px) {
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    font-size: 24px;
  }
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: transparent;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: transparent;
}
/*
body{


	#header{
    height: 60px;
    width: 100%;

	background-color: @header-bg;

		a.logo-hold{
					color: @black;
					font-size: 38px;
					.serif;
					text-decoration: none !important;
					@media (max-width: 479px) {font-size: 27px;position: relative;}
					@media (max-width: 380px) {font-size: 23px;}
				.headerlogo{
					color: @bluegray;
					@media (max-width: 380px) {position: relative;top:5px;}
					.smallheaderlogo{
						font-size: 20px;
						margin-top: -8px;
						display: block;
						@media (max-width: 479px) {font-size: 16px;position: relative;top: 4px;}
						@media (max-width: 380px) {font-size: 14px;}
					}
				}

			img{

			}
			&.top-left{

			}
		}
		a{

			&:hover{

			}
			&:focus{


			}
		}
		.nav-hold{

		}

	}



	#content{

	}

}
*/
body .alert {
  padding: 8px;
  border: none;
  border-radius: 0px;
  position: relative;
  background-color: #B41026;
  max-width: 1500px;
  margin: 0 auto;
}

body .alert.two{
  background-color: #87A4C1!important;
}
body .alert .container {
  padding-top: 5px;
  padding: 5px;
}
body .alert .container .alertIcn {
  color: #fff;
}
body .alert .container .alertIcn .glyphicon {
  top: 4px;
}
body .alert .container .headline a {
  color: #fff;
  text-decoration: none;
  font-family: 'Century Gothic WGL W01 Bold';
}
body .alert .container .headline a:hover {
  text-decoration: underline;
}
body #header {
  padding: 6px 0px 0;
  height: auto;
  background-color: #fff;
  max-width: 1500px;
  margin: 0 auto;
}
body #header .container {
  border-bottom: 1px solid #dadee1;
  padding-bottom: 15px;
  padding-top: 7px;
}
@media (max-width: 991px) {
  body #header .container {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
body #header .container .notranslate.btn {
  margin-top: -5px;
  margin-left: 5px;
}
body #header .container a.logo-hold {
  color: #000;
  font-size: 26.8px;
  position: relative;
  top: 10px;
  font-family: 'Century Gothic WGL W01 Regular';
  text-decoration: none !important;
}
@media (max-width: 991px) {
  body #header .container a.logo-hold {
    font-size: 34px;
  }
}
@media (max-width: 550px) {
  body #header .container a.logo-hold {
    font-size: 27px;
  }
}
@media (max-width: 380px) {
  body #header .container a.logo-hold {
    font-size: 23px;
  }
}
body #header .container a.logo-hold .headerlogo {
  color: #4b545c;
}
@media (max-width: 380px) {
  body #header .container a.logo-hold .headerlogo {
    position: relative;
    top: 5px;
  }
}
body #header .container a.logo-hold .headerlogo .smallheaderlogo {
  font-size: 20px;
  margin-top: -8px;
  display: block;
}
@media (max-width: 991px) {
  body #header .container a.logo-hold .headerlogo .smallheaderlogo {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  body #header .container a.logo-hold .headerlogo .smallheaderlogo {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  body #header .container a.logo-hold .headerlogo .smallheaderlogo {
    font-size: 14px;
  }
}
body #header .navbar {
  margin-top: 11px;
}
@media (max-width: 550px) {
  body #header .navbar {
    margin-top: 0px;
  }
}
@media (max-width: 479px) {
  body #header .navbar .togglemenu {
    margin-top: 14px;
    position: relative;
    left: 1em;
  }
}
@media (max-width: 479px) {
  body #header .navbar .srchbuttonmodal {
    top: 7px;
  }
}
@media (max-width: 479px) {
  body #header .navbar {
    width: 100%;
  }
}
@media (max-width: 479px) {
  body #header a.logo-hold {
    position: relative;
    float: left!important;
    text-align: left;
    display: block;
    margin: 0 auto;
    z-index: 100;
  }
}
@media (max-width: 479px) {
  body #header .nav-hold {
    width: auto;
    position: relative;
    top: 0px;
  }
}
@media (max-width: 479px) {
  body #header .nav-hold .srchbuttonmodal {
    right: 1em;
    left: unset;
    position: absolute;
  }
}
body #header .header-top {
  background-color: #4b545c;
  margin-top: -6px;
}
body #header .header-top .container {
  padding-bottom: 8px;
  border-bottom: 0px;
  padding-top: 0;
}
body #header .header-top a {
  color: white;
}
body #header .header-top .right {
  padding: 0;
  padding-top: 5px;
  margin-right: 12px;
}
body #header .header-top .right .social-list {
  margin: 0;
}
body #header .header-top .right .social-list li .espanol {
  margin-right: 5px;
  font-size: 15px;
}
body #header .header-top .right .social-list li a .fa {
  border: 1px solid;
  height: 23px;
  background-color: white;
  color: #4b545c;
  text-align: center;
  width: 24px;
  border-radius: 25px;
  /* padding-left: 3px; */
  font-size: 12px;
  padding-top: 5px;
}
body #header .header-top .right .social-list li a .fa:hover {
  background-color: #4b545c;
  color: white;
}
@media (max-width: 479px) {
  body #header .header-top .right {
    float: none;
    margin-right: 0px;
    text-align: center;
  }
}
body #header .header-top.engage {
  height: auto;
}
body#home .alert {
  padding: 8px;
  border: none;
  border-radius: 0px;
  position: relative;
  background-color: #B41026;
}
body#home .alert .container {
  padding-top: 5px;
  padding: 5px;
}
body#home .alert .container .alertIcn {
  color: #fff;
}
body#home .alert .container .alertIcn .glyphicon {
  top: 4px;
}
body#home .alert .container .headline a {
  color: #fff;
  text-decoration: none;
  font-family: 'Century Gothic WGL W01 Bold';
}
body#home .alert .container .headline a:hover {
  text-decoration: underline;
}
body#home #header {
  background-color: transparent;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  transition: 0.4s ease-in background-color;
}
body#home #header .container {
  border-bottom: 0px;
}
body#home #header .navbar .nav-pills > li a {
  border-bottom: 2px solid transparent;
}
body#home #header .navbar .nav-pills > li a:hover {
  border-bottom: 2px solid #4b545c;
}
body#home #header:hover {
  background-color: white;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  border-radius: 0px;
}
body .navbar .nav-pills > li a {
  color: #4b545c;
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  border-radius: 0px;
  padding: 16px 0px 1px;
  margin: 0 15px;
  text-decoration: none !important;
  border-bottom: 2px solid white;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #000;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #4b545c;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  border-bottom: 2px solid #4b545c;
}
body .navbar .togglemenu {
  color: #4b545c;
  font-size: 23px;
  float: left;
  margin-top: 16px;
  margin-left: 0px !important;
  margin-right: 18px;
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #4b545c;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar .srchbutton {
  color: #4b545c;
}
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;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
  margin-bottom: 20px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 0px;
}
#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;
  text-decoration: none;
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 0px 0;
  float: left;
}
@media (max-width: 991px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    margin-right: 30px;
  }
}
@media (max-width: 479px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    float: right!important;
    margin-right: 0px;
  }
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
  height: 60px;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 10px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .srchbutton .glyphicon,
#header .nav-hold.right-search-modal .srchbutton .glyphicon {
  top: 0px;
}
#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: 100%;
  border: none;
  background-color: #fff;
  color: #4b545c;
  border-bottom: 3px solid #4b545c;
}
#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: #4b545c;
}
#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: #4b545c;
}
#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: #4b545c;
}
#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: #4b545c;
}
#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: #4b545c;
  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: 15px;
  top: -8px;
  left: -18px;
}
@media (max-width: 991px) {
  #header .nav-hold.right-search-modal .srchbuttonmodal {
    font-size: 20px;
    top: 15px;
    left: 0px;
  }
}
#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;
}
#header .right {
  float: right;
  padding: 28px 0px 0px;
}
@media (max-width: 991px) {
  #header .right {
    padding: 25px 0px 0px;
  }
}
@media (max-width: 550px) {
  #header .right {
    padding: 15px 0px 0px;
  }
}
@media (max-width: 479px) {
  #header .right {
    display: none;
  }
}
#header .right .social-list li {
  padding-left: 1px;
}
#header .right .social-list li .espanol {
  font-size: 16px;
  margin-right: 15px;
  padding: 5px;
  border-radius: 0px;
  text-decoration: none;
}
@media (max-width: 535px) {
  #header .right .social-list li .espanol {
    margin-right: 0px;
  }
}
#header .right .social-list li .espanol:hover {
  border-bottom: 1px solid;
}
#header .right .social-list li a {
  color: #4b545c;
  border-radius: 25px;
}
#header .right .social-list li a .fa {
  border: 1px solid;
  height: 25px;
  text-align: center;
  width: 26px;
  border-radius: 25px;
  /* padding-left: 3px; */
  font-size: 14px;
  padding-top: 5px;
}
#header .right .social-list li a:hover .fa {
  color: #fff;
  background-color: #4b545c;
}
#home .fc-tbx {
  z-index: 1000;
  display: none!important;
}
#home #header {
  background-color: transparent;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
#home .toparea {
  position: relative;
  width: 100%;
  max-width: 1500px;
  background-color: #4b545c;
  margin: 0 auto;
}
#home .toparea .banner {
  background-image: url('/themes/harris/images/homebanner.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  position: relative;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 1450px) {
  #home .toparea .banner {
    height: 750px;
  }
}
@media (max-width: 991px) {
  #home .toparea .banner {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #home .toparea .banner {
    height: 430px;
  }
}
@media (max-width: 535px) {
  #home .toparea .banner {
    height: 350px;
  }
}
@media (max-width: 345px) {
  #home .toparea .banner {
    height: 300px;
  }
}
#home .toparea .banner .logo {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  bottom: 3em;
  line-height: 60px;
  font-family: 'Century Gothic WGL W01 Regular';
}
@media (max-width: 535px) {
  #home .toparea .banner .logo {
    bottom: 2em;
  }
}
@media (max-width: 345px) {
  #home .toparea .banner .logo {
    bottom: 1em;
  }
}
#home .toparea .banner .logo .name {
  font-size: 72px;
  display: block;
  width: 100%;
  text-shadow: 0px 0px 30px black;
}
@media (max-width: 991px) {
  #home .toparea .banner .logo .name {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  #home .toparea .banner .logo .name {
    font-size: 45px;
  }
}
@media (max-width: 460px) {
  #home .toparea .banner .logo .name {
    font-size: 36px;
  }
}
@media (max-width: 345px) {
  #home .toparea .banner .logo .name {
    font-size: 30px;
  }
}
#home .toparea .banner .logo .senator {
  font-size: 42px;
  display: block;
  width: 100%;
  text-shadow: 0px 0px 30px black;
}
@media (max-width: 991px) {
  #home .toparea .banner .logo .senator {
    font-size: 35px;
    margin-top: -8px;
  }
}
@media (max-width: 767px) {
  #home .toparea .banner .logo .senator {
    font-size: 23px;
    margin-top: -20px;
  }
}
@media (max-width: 460px) {
  #home .toparea .banner .logo .senator {
    font-size: 20px;
    margin-top: -29px;
  }
}
@media (max-width: 345px) {
  #home .toparea .banner .logo .senator {
    font-size: 18px;
    margin-top: -32px;
  }
}
#home .toparea .banner.itworked {
  opacity: .1;
  transition: opacity 1s ease-in;
  z-index: 100;
}
#home .toparea .banner.itworked .logo {
  display: none;
}
#home .toparea .banner.itworkedagain {
  opacity: .1;
}
#home .toparea .banner.itworkedagain .logo {
  display: none;
}
#home .toparea .new-homeform {
  position: absolute;
  top: 33%;
  left: 80px;
  z-index: 101;
  text-align: center;
  max-width: 520px;
}
#home .toparea .new-homeform h1 {
  text-shadow: 0px 2px 11px white;
  font-size: 40px;
  font-family: 'Century Gothic WGL W01 Regular';
}
#home .toparea .new-homeform h3 {
  font-family: 'Century Gothic WGL W01 Regular';
  text-shadow: 0px 2px 11px white;
  margin-bottom: 42px;
}
#home .toparea .new-homeform button {
  background-color: #4b545c;
  color: white;
  border-radius: 4px;
  padding: 15px 25px;
  border: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Century Gothic WGL W01 Bold';
}
#home .toparea .homeform {
  position: absolute;
  top: 8em;
  display: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 50px 70px;
  max-height: 600px;
  height: 100%;
  z-index: 0;
}
#home .toparea .homeform .closebutton {
  opacity: 0;
  transition: opacity 1s ease-in;
  position: absolute;
  right: 1em;
  top: -25px;
}
#home .toparea .homeform .closebutton #formcloser {
  font-size: 22px;
  color: #fff;
}
#home .toparea .homeform .closebutton #formcloser:hover {
  color: #4b545c;
}
#home .toparea .homeform .closebutton.showingbutton {
  opacity: 1;
}
#home .toparea .homeform #formarea {
  width: 100%;
  position: relative;
}
#home .toparea .homeform #formarea .amend-form-container #rightside {
  margin-top: 48px;
}
@media (max-width: 1040px) {
  #home .toparea .homeform #formarea .amend-form-container #rightside {
    margin-top: 47px;
  }
}
#home .toparea .homeform #formarea .amend-form-container #rightside .formtitle {
  color: white;
  font-family: 'Century Gothic WGL W01 Regular';
  font-size: 34px;
  position: absolute;
  top: -2em;
  width: 100%;
  text-align: center;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .second {
  padding-left: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .third {
  padding-left: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .fourth {
  padding-right: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .fifth {
  padding-right: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .sixth {
  padding-right: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside .seventh {
  padding-right: 0px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form {
  height: 0px;
  opacity: 0;
  transition: all 1s ease-in;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form textarea {
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
  padding: 15px 21px;
  height: 350px;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form label {
  display: none;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form .controls input {
  width: 100%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form .controls select {
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 50px;
  color: inherit;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0px 0px 10px;
  padding: 10px 10px 10px 10px;
  vertical-align: bottom;
  font-size: 16px;
  border: 1px solid;
}
#home .toparea .homeform #formarea .amend-form-container #rightside.hidden-form.show-form {
  opacity: 1;
  transition: all 1s ease-in;
  height: 360px;
}
#home .toparea .homeform #formarea .amend-form-container input[type=button],
#home .toparea .homeform #formarea .amend-form-container input[type=submit] {
  opacity: 0;
  transition: opacity	1.4s;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
  margin-top: 20px;
  padding: 0px;
  margin-right: 30px;
  font-size: 38px;
  float: right;
  background-color: rgba(255, 255, 255, 0);
  color: #FFF;
  border: none;
}
#home .toparea .homeform #formarea .amend-form-container input[type=button]:hover,
#home .toparea .homeform #formarea .amend-form-container input[type=submit]:hover {
  background-color: transparent;
  color: #fff;
  border-bottom: 2px solid #fff;
}
#home .toparea .homeform #formarea .amend-form-container input[type=button].showbutton,
#home .toparea .homeform #formarea .amend-form-container input[type=submit].showbutton {
  opacity: 1;
  transition: opacity	1s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
#home .toparea .homeform #formarea .amend-form-container input[type=button].dissapear,
#home .toparea .homeform #formarea .amend-form-container input[type=submit].dissapear {
  opacity: 0;
  transition: opacity	1s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
#home .toparea .homeform #formarea .amend-form-container .fc-field-error {
  border: 1px solid #ca1d1d!important;
  border-radius: 0px;
  position: relative;
  box-shadow: 0px 0px 10px 2px #ca1d1d;
}
#home .toparea .homeform #formarea .amend-form-container .fc-field-error:before {
  display: block;
  position: absolute;
  color: red;
  top: 1px;
  left: 1px;
}
#home .toparea .homeform #formarea.submitted {
  float: left;
  position: relative;
  padding: 4em 5em;
  margin-top: 4em;
  background-color: rgba(76, 85, 92, 0.81);
  border-radius: 40px;
  width: 100%;
  max-width: 500px;
  left: 0px;
}
#home .toparea .homeform.showthis {
  z-index: 102;
  display: block;
}
#home .toparea .homeform.remove {
  z-index: 0;
  display: none;
}
.social-area {
  text-align: center;
  background-color: rgba(75, 84, 92, 0.05);
  padding-bottom: 67px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
.social-area .social-title {
  margin-top: 50px;
  margin-bottom: 30px;
}
.officelocations {
  padding: 30px 0px;
  border-bottom: 2px solid #4b545c;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
.officelocations .locationstitle {
  text-align: center;
  font-size: 24px;
  font-family: 'Century Gothic WGL W01 Bold';
  margin: 1em 0px 2em 0px;
}
.officelocations #topoffices .office,
.officelocations #bottomoffices .office {
  text-align: center;
  min-height: 270px;
  margin-bottom: 4em;
}
.officelocations #topoffices .office figure,
.officelocations #bottomoffices .office figure {
  margin: 0;
  position: relative;
}
.officelocations #topoffices .office figure img,
.officelocations #bottomoffices .office figure img {
  display: block;
  position: relative;
  z-index: 10;
  max-width: 100%;
  height: 200px;
  transition: all 0.3s;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .officelocations #topoffices .office figure img,
  .officelocations #bottomoffices .office figure img {
    transform-origin: top;
    transform: scale(0.4);
  }
}
.officelocations #topoffices .office figure .title,
.officelocations #bottomoffices .office figure .title {
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 991px) {
  .officelocations #topoffices .office figure .title,
  .officelocations #bottomoffices .office figure .title {
    opacity: 0;
  }
}
.officelocations #topoffices .office figure figcaption,
.officelocations #bottomoffices .office figure figcaption {
  display: block;
  position: absolute;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  bottom: 0px;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .officelocations #topoffices .office figure figcaption,
  .officelocations #bottomoffices .office figure figcaption {
    opacity: 1;
    bottom: -25px;
  }
}
.officelocations #topoffices .office figure figcaption .address,
.officelocations #bottomoffices .office figure figcaption .address {
  margin-bottom: 10px;
  display: block;
}
.officelocations #topoffices .office figure figcaption .phone,
.officelocations #bottomoffices .office figure figcaption .phone {
  display: block;
  margin-bottom: 10px;
}
.officelocations #topoffices .office figure figcaption .directions,
.officelocations #bottomoffices .office figure figcaption .directions {
  font-size: 12px;
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  color: #4b545c;
}
.officelocations #topoffices .office figure figcaption .directions:hover,
.officelocations #bottomoffices .office figure figcaption .directions:hover {
  text-decoration: underline;
}
.officelocations #topoffices .office figure figcaption .mobiletitle,
.officelocations #bottomoffices .office figure figcaption .mobiletitle {
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
}
.officelocations #topoffices .office:hover img,
.officelocations #bottomoffices .office:hover img {
  transform-origin: top;
  transform: scale(0.4);
}
.officelocations #topoffices .office:hover .title,
.officelocations #bottomoffices .office:hover .title {
  opacity: 0;
}
.officelocations #topoffices .office:hover figcaption,
.officelocations #bottomoffices .office:hover figcaption {
  opacity: 1;
}
/*
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;
}
legend {
  color: #4b545c;
  font-family: 'Century Gothic WGL W01 Bold';
}
.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;
}
.daca-ticker {
  background-color: #2b3035;
  color: white;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  padding: 30px 15px;
}
.daca-ticker h2 {
  font-size: 50px;
  color: white;
  min-width: 330px;
}
@media (max-width: 1356px) {
  .daca-ticker h2 {
    font-size: 40px;
    min-width: 280px;
  }
}
@media (max-width: 1088px) {
  .daca-ticker h2 {
    font-size: 36px;
  }
}
@media (max-width: 1050px) {
  .daca-ticker h2 {
    font-size: 31px;
    min-width: 220px;
  }
}
@media (max-width: 350px) {
  .daca-ticker h2 {
    font-size: 30px;
  }
}
.daca-ticker h2 .not-loaded {
  color: #2b3035;
}
.daca-ticker h2 .digit {
  background-color: #ff6538;
  color: white;
  margin-left: 5px;
  border-radius: 5px;
  padding: 8px 15px 3px;
}
@media (max-width: 1050px) {
  .daca-ticker h2 .digit {
    padding: 8px 10px 3px;
  }
}
.daca-ticker h2 .comma {
  margin-left: 7px;
}
.daca-ticker h3 {
  color: white;
  font-size: 31px;
  font-family: 'Century Gothic WGL W01 Regular';
}
@media (max-width: 1241px) {
  .daca-ticker h3 {
    font-size: 24px;
  }
}
@media (max-width: 985px) {
  .daca-ticker h3 {
    font-size: 19px;
  }
}
@media (max-width: 640px) {
  .daca-ticker h3 {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .daca-ticker h3 {
    font-size: 14px;
  }
}
.daca-ticker.horizontal {
  padding-bottom: 20px;
}
.daca-ticker.horizontal h2,
.daca-ticker.horizontal h3 {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 935px) {
  .daca-ticker.horizontal h2,
  .daca-ticker.horizontal h3 {
    display: block;
  }
}
.daca-ticker.horizontal h3 {
  margin-left: 23px;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 0px;
  vertical-align: middle;
}
@media (max-width: 1050px) {
  .daca-ticker.horizontal h3 {
    margin-bottom: 0px;
  }
}
@media (max-width: 985px) {
  .daca-ticker.horizontal h3 {
    margin-top: 15px;
  }
}
@media (max-width: 935px) {
  .daca-ticker.horizontal h3 {
    margin-top: 12px;
    text-align: center;
  }
}
.daca-ticker.horizontal .hashtag {
  font-family: 'Century Gothic WGL W01 Bold';
  font-size: 50px;
  margin-left: 26px;
  position: relative;
  top: 16px;
  color: #fe6438;
  border-left: 2px solid white;
  padding-left: 21px;
  padding-bottom: 5px;
  line-height: 60px;
  display: inline-block;
}
@media (max-width: 1386px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 40px;
    line-height: 50px;
    top: 10px;
  }
}
@media (max-width: 1241px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (max-width: 985px) {
  .daca-ticker.horizontal .hashtag {
    font-size: 24px;
    line-height: 35px;
    padding-left: 15px;
    margin-left: 10px;
  }
}
@media (max-width: 935px) {
  .daca-ticker.horizontal .hashtag {
    border-left: 0px;
    padding: 0px;
  }
}
img.banner {
  max-width: 1500px;
  margin: 0 auto;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #11c198 !important;
}
#breadcrumb a {
  color: #dadee1;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
#breadcrumb a:hover {
  color: #4b545c;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#form_thomas_search h3 {
  font-family: 'Century Gothic WGL W01 Regular';
  font-size: 18px;
}
#form_thomas_search #side-search-btn {
  padding: 2px;
  margin: 0px;
  font-weight: normal;
  border-width: 1px;
}
#form_thomas_search input {
  border: 1px solid #4b545c;
}
#search-thomas-pod .vote-btn {
  margin: 0px 0px;
  padding: 0px;
  font-size: 20px;
  background-color: none;
  background: none;
}
#search-thomas-pod h3 {
  font-family: 'Century Gothic WGL W01 Regular';
  font-size: 18px;
}
#search-thomas-pod h1 {
  font-size: 26px;
  font-family: 'Century Gothic WGL W01 Regular';
  margin-top: 25px;
}
#voting_record .pagination .pages {
  width: auto;
  float: left;
}
#voting_record .pagination .pages_nav {
  width: auto;
  clear: none;
}
#voting_record a {
  text-decoration: none;
}
#filter-legislation {
  margin-top: 100px;
}
#filter-legislation h3 {
  margin-top: 0;
  font-family: 'Century Gothic WGL W01 Regular';
  font-size: 18px;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
  border: 1px solid #4b545c;
}
.legislationtable th {
  font-size: 18px !important;
}
.legislationtable td {
  padding: 18px 13px !important;
}
.legislationtable .alt_row {
  background-color: #f8f8f8;
}
#browser_table a {
  text-decoration: none;
}
#browser_table td {
  padding: 18px 13px !important;
}
#filterbuttons {
  margin-bottom: 40px;
}
#filterbuttons a {
  background-color: transparent;
  color: #4b545c;
  padding-left: 0px;
  padding-right: 20px;
  text-decoration: none;
  border: 0px;
  padding: 0px;
  padding-right: 40px;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
}
#filterbuttons a:hover {
  color: #1d2124;
}
.no-margin {
  margin-top: 0 !important;
}
.main_page_title {
  text-align: center;
  font-family: 'Century Gothic WGL W01 Bold';
  font-size: 26px;
  margin-bottom: 30px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 135px;
}
@media (max-width: 767px) {
  #listblocks .block {
    height: 120px;
    margin-bottom: 25px;
  }
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #fff;
  font-weight: bold;
  color: #4b545c;
  transition: 0.3s background-color ease-in;
  border: 2px solid #4b545c;
  padding: 20px 80px;
  text-decoration: none;
  height: 145px !important;
}
@media (max-width: 1200px) {
  #listblocks .block a {
    padding: 20px 60px;
  }
}
@media (max-width: 991px) {
  #listblocks .block a {
    padding: 20px;
    font-size: 20px;
  }
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #4b545c;
  color: white;
}
#typenav .main_page_title {
  text-align: left;
  padding-left: 15px;
  font-size: 30px;
}
#typenav li a {
  color: #000;
  text-decoration: none;
  font-family: 'Century Gothic WGL W01 Regular';
}
#typenav li.active a {
  color: #4b545c;
  background-color: #fff;
}
#typenav li.active a:after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 147px;
  position: absolute;
  background-color: #dbdddf;
  right: -147px;
  top: 22px;
}
@media (max-width: 1330px) {
  #typenav li.active a:after {
    width: 114px;
    right: -115px;
  }
}
@media (max-width: 1200px) {
  #typenav li.active a:after {
    width: 65px;
    right: -65px;
  }
}
@media (max-width: 991px) {
  #typenav li.active a:after {
    width: 16px;
    right: -16px;
  }
}
#typenav.affix {
  top: 0;
}
.newsroom_landing .col-sm-9 {
  border-left: 1px solid #dbdddf;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .newsroom_landing .col-sm-9 {
    padding-left: 15px;
  }
}
.newsroom_landing hr {
  border-color: white;
}
.newsroom_landing .more {
  font-weight: bold;
  text-decoration: none;
  margin-top: 30px;
}
#newscontent #press hr {
  border-color: white;
}
@media (max-width: 991px) {
  #newscontent #videos .videoiframe {
    height: 350px;
  }
}
@media (max-width: 767px) {
  #newscontent #videos .videoiframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  #newscontent #videos .videoiframe {
    height: 220px;
  }
}
#newscontent.article .main_page_title {
  text-align: left;
  font-size: 30px;
  line-height: 41px;
  margin-top: 0px;
}
#newscontent.article .date.black {
  margin-top: 65px;
  display: block;
}
body.restrict #main_container,
body.newsroom #main_container,
body#newsroom #main_container {
  max-width: 900px;
  padding: 0 30px;
}
body#about .main_page_title {
  display: none;
}
body#about .section-header {
  margin-top: 70px;
}
body#about .about-footer {
  margin-top: 50px;
}
body#about #sam-main {
  padding: 0 30px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
body#about .about-buttons {
  margin-bottom: 20px;
}
body#about .about-buttons a {
  font-weight: bold;
  color: #4b545c;
  text-decoration: none;
}
body#about .about-buttons a:hover {
  color: #fff;
}
.spaceitout {
  padding: 20px;
  background-color: #efefef;
}
.spaceitout a {
  word-break: break-word;
}
body#contact .col-sm-6 {
  display: block;
  margin: 0 auto;
  float: none;
}
body#multimedia {
  overflow-x: hidden;
  width: 100%;
  display: table;
}
body#multimedia #content {
  overflow: hidden;
}
body#offices .officelocations {
  padding: 30px 0px;
  border-bottom: 2px solid #4b545c;
}
body#offices .officelocations .locationstitle {
  text-align: center;
  font-size: 24px;
  font-family: 'Century Gothic WGL W01 Bold';
  margin: 1em 0px 2em 0px;
}
body#offices .officelocations #topoffices .office,
body#offices .officelocations #bottomoffices .office {
  text-align: center;
  min-height: 270px;
  margin-bottom: 4em;
}
body#offices .officelocations #topoffices .office figure,
body#offices .officelocations #bottomoffices .office figure {
  margin: 0;
  position: relative;
}
body#offices .officelocations #topoffices .office figure img,
body#offices .officelocations #bottomoffices .office figure img {
  display: block;
  position: relative;
  z-index: 10;
  max-width: 100%;
  height: 200px;
  transition: all 0.3s;
  margin: 0 auto;
}
@media (max-width: 991px) {
  body#offices .officelocations #topoffices .office figure img,
  body#offices .officelocations #bottomoffices .office figure img {
    transform-origin: top;
    transform: scale(0.4);
  }
}
body#offices .officelocations #topoffices .office figure .title,
body#offices .officelocations #bottomoffices .office figure .title {
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 991px) {
  body#offices .officelocations #topoffices .office figure .title,
  body#offices .officelocations #bottomoffices .office figure .title {
    opacity: 0;
  }
}
body#offices .officelocations #topoffices .office figure figcaption,
body#offices .officelocations #bottomoffices .office figure figcaption {
  display: block;
  position: absolute;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  bottom: 0px;
  opacity: 0;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  body#offices .officelocations #topoffices .office figure figcaption,
  body#offices .officelocations #bottomoffices .office figure figcaption {
    opacity: 1;
    bottom: -25px;
  }
}
body#offices .officelocations #topoffices .office figure figcaption .address,
body#offices .officelocations #bottomoffices .office figure figcaption .address {
  margin-bottom: 10px;
  display: block;
}
body#offices .officelocations #topoffices .office figure figcaption .phone,
body#offices .officelocations #bottomoffices .office figure figcaption .phone {
  display: block;
  margin-bottom: 10px;
}
body#offices .officelocations #topoffices .office figure figcaption .directions,
body#offices .officelocations #bottomoffices .office figure figcaption .directions {
  font-size: 12px;
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  color: #4b545c;
}
body#offices .officelocations #topoffices .office figure figcaption .directions:hover,
body#offices .officelocations #bottomoffices .office figure figcaption .directions:hover {
  text-decoration: underline;
}
body#offices .officelocations #topoffices .office figure figcaption .mobiletitle,
body#offices .officelocations #bottomoffices .office figure figcaption .mobiletitle {
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
}
body#offices .officelocations #topoffices .office:hover img,
body#offices .officelocations #bottomoffices .office:hover img {
  transform-origin: top;
  transform: scale(0.4);
}
body#offices .officelocations #topoffices .office:hover .title,
body#offices .officelocations #bottomoffices .office:hover .title {
  opacity: 0;
}
body#offices .officelocations #topoffices .office:hover figcaption,
body#offices .officelocations #bottomoffices .office:hover figcaption {
  opacity: 1;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  position: relative;
}
#copyButton:hover {
  background-color: #dbdddf;
  color: #4b545c;
}
body#media-view #tags {
  display: none;
}
body#media-view .main_page_title {
  text-align: left;
}
body#media-view #content {
  color: white;
  background: #4b545c;
}
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: #11c198;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons li a {
  font-size: 12px;
  border-radius: 4px;
}
#share-buttons .you a i,
#share-buttons .you .btn i {
  font-size: 12px;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-button-container .btn {
  border-radius: 4px;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #4b545c;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #11c198;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #4b545c;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser input[type="button"] {
  font-size: 13px !important;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #11c198;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #4b545c;
}
#multimedia-browser .row .media-thumbnail a {
  color: #000;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #4b545c;
}
body#multimedia.new #breadcrumb {
  height: 25px;
  position: absolute;
  z-index: 1;
  padding: 0 80px;
}
@media (max-width: 991px) {
  body#multimedia.new #breadcrumb {
    padding-left: 0px;
    padding-right: 0px;
  }
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #4b545c;
  padding: 40px 80px;
  position: relative;
  padding-top: 80px;
}
@media (max-width: 991px) {
  body#multimedia.new #video-content {
    padding-left: 0px;
    padding-right: 0px;
  }
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #4b545c;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #4b545c;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Century Gothic WGL W01 Bold';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: .5px 5px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #4b545c !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 0 ;
}
body#multimedia.new #share-buttons #share-youtube {
  background-color: #4b545c;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: #4b545c;
}
body#multimedia.new #share-buttons #share-youtube a:hover {
  background-color: #dbdddf;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
@media (max-width: 991px) {
  body#multimedia.new #multimedia-browser {
    padding-left: 0px;
    padding-right: 0px;
  }
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #4b545c;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #4b545c !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #11c198;
}
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: #4b545c;
  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: #fff;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn:hover,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn:hover {
  background-color: #4b545c;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #4b545c;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid #4b545c;
  width: 42%;
  margin-right: 12px;
}
@media (max-width: 1200px) {
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 40%;
  }
}
body#multimedia.new #multimedia-browser .multimedia-tools select#yr-video {
  margin-right: 0px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #4b545c;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid #4b545c;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #000;
  text-decoration: none;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #4b545c;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #4b545c;
}
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: #000;
  height: 165px;
  overflow: hidden;
  font-family: 'Century Gothic WGL W01 Bold';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #4b545c;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #000;
  font-family: 'Century Gothic WGL W01 Bold';
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #4b545c;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #4b545c;
}
@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%;
    text-align: center;
  }
  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 0px;
  }
  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: #fff;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}
body footer .footer-social {
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
body footer .footer-social .social-list li a {
  color: #4b545c;
  border-radius: 25px;
}
body footer .footer-social .social-list li a .fa {
  border: 1px solid;
  height: 25px;
  text-align: center;
  width: 26px;
  border-radius: 25px;
  /* padding-left: 3px; */
  font-size: 14px;
  padding-top: 5px;
}
body footer .footer-social .social-list li a:hover .fa {
  color: #fff;
  background-color: #4b545c;
}
body footer .footer-ul.footernav {
  text-align: center;
  display: inline;
}
body footer .footer-ul.footernav li {
  padding: 30px 10px;
  text-align: center;
}
@media (max-width: 430px) {
  body footer .footer-ul.footernav li {
    padding: 30px 4px;
  }
}
body footer .footer-ul.footernav li a {
  color: #4b545c;
  font-size: 16px;
  font-family: 'Century Gothic WGL W01 Bold';
  text-transform: uppercase;
  border-radius: 0px;
  padding: 5px;
  text-decoration: none;
}
@media (max-width: 430px) {
  body footer .footer-ul.footernav li a {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  body footer .footer-ul.footernav li a {
    font-size: 13px;
  }
}
body footer .footer-ul.footernav li a:hover {
  border-bottom: 2px solid;
}
body footer .subfooternav {
  display: inline-block;
  margin-left: 30px;
}
body footer .subfooternav a {
  color: #4b545c;
  font-family: 'Century Gothic WGL W01 Regular';
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  padding: 5px;
  text-decoration: none;
}
@media (max-width: 430px) {
  body footer .subfooternav a {
    font-size: 13px;
  }
}
body footer .subfooternav a:hover {
  border-bottom: 2px solid;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 50px;
}
#flagForm #flag-options .head {
  background-color: #4b545c;
  color: #fff;
}
/* collapse ------------------------------- */
.fc-tbx {
  padding: 0px 15px;
}
.fc-tbx .error-list li:nth-of-type(2) {
  display: none!important;
}
.fc-tbx .error-list li p {
  font-size: 14px;
}
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

paste available font families here



font-family:'Century Gothic W01';
font-family:'Century Gothic WGL W01 Bold';
font-family:'Century Gothic WGL W01 Regular';
font-family:'Century Gothic Pro Cyr W01 BdI';
font-family:'Century Gothic WGL W01 Bold It';
font-family:'Century Gothic W01 Bold';
font-family:'CenturyGothicW01-Italic';
font-family:'CenturyGothicW01-BoldIt';
font-family:'Century Gothic WGL W01 Italic';


font-family:'Palatino LT W01 Roman';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif,
.regular {
  font-family: 'Century Gothic WGL W01 Regular';
}
.bold {
  font-family: 'Century Gothic WGL W01 Bold';
}
.palatino {
  font-family: 'Palatino LT W01 Roman';
}
body {
  font-size: 18px;
  font-family: 'Palatino LT W01 Roman';
  color: #4b545c;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Century Gothic WGL W01 Bold';
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
.section-header {
  font-family: 'Century Gothic WGL W01 Regular';
  font-family: 'Century Gothic WGL W01 Bold';
  color: #4b545c;
  text-align: left;
  font-size: 24px;
  border-bottom: 1px solid #dbdddf;
  width: 100%;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 25px;
}
.section-header a {
  color: #4b545c;
  text-align: center;
  text-decoration: none;
}
.section-header.small {
  font-size: 24px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #4b545c;
  text-decoration: underline;
}
a:hover,
.light-bg-link:hover {
  color: #95afbc;
}
/* 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-size: 15px;
}
h2.title {
  margin-top: 7px;
}
h2.title a {
  color: #4b545c;
  font-family: 'Century Gothic WGL W01 Regular';
  text-decoration: none;
}
#sam-main ul li,
#sam-main ol li {
  margin-bottom: 25px;
}
#sam-main ul li ul,
#sam-main ol li ul,
#sam-main ul li ol,
#sam-main ol li ol {
  margin-top: 25px;
}
h2.subtitle {
  font-family: 'Century Gothic WGL W01 Regular';
  font-size: 22px;
  line-height: 35px;
}
/*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,
.block a {
  background-color: #fff;
  color: #4b545c;
  border: 1px solid #4b545c;
  transition: 0.2s ease-in all;
  font-family: 'Century Gothic WGL W01 Regular';
  text-decoration: none;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
#main_column form .btn:active,
.block a:active,
.pager li .btn:focus,
.btn:focus,
.btn-defualt:focus,
.btn:visited:focus,
.btn-defualt:visited:focus,
btn:focus:focus,
.btn-default:focus:focus,
.search-media-btn:focus,
#main_column form .btn:focus,
.block a:focus,
.pager li .btn:visited,
.btn:visited,
.btn-defualt:visited,
.btn:visited:visited,
.btn-defualt:visited:visited,
btn:focus:visited,
.btn-default:focus:visited,
.search-media-btn:visited,
#main_column form .btn:visited,
.block a:visited {
  background-color: #fff;
  color: #4b545c;
  border: 1px solid #4b545c;
  transition: 0.2s ease-in all;
  text-decoration: none;
}
.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,
.block a:hover {
  background-color: #4b545c;
  color: white;
}
.btn-block {
  font-weight: bold;
  border: 2px solid #4b545c;
  margin: 20px 0px;
  padding: 34px;
  font-size: 20px;
  white-space: normal !important;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}


.subissues .subissueitem{

margin-bottom: 1.5rem;
font-size: 20px;
padding: 1rem 0;
border-bottom: 1px solid #e4e4e4;

}

.subissues .subissueitem .subissuetitle{
font-weight: bold;
}

.subissues .subissueitem .subissuebuttonholder{
width: 100%;
max-width: 400px;
}

.subissues .subissueitem .subissuebuttonholder a{
  padding: 1rem;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #4b545c;
  margin: 20px 0px;
}

.snippetsection .snippetheader{

font-weight: bold;
font-size: 20px;
border-bottom: 5px solid #4b545c;
margin-bottom: 3rem;
text-transform: uppercase;

}