/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
@import url(https://fonts.googleapis.com/css?family=Oswald:400,700);
#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);
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  color: black;
  margin-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close:hover,
#SearchModal .modal-dialog .modal-content .modal-header .close:hover,
#ContactModal .modal-dialog .modal-content .modal-header .close:hover {
  color: #6bb336;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  border: 3px solid black;
}
#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: black;
  height: 74px;
}
body #header {
  display: none;
}
body #interior-header {
  background-color: #6bb336;
  height: 65px;
  margin-bottom: 20px;
}
body #interior-header .logo-hold {
  width: 220px;
  margin-top: 15px;
  display: inline-block;
}
@-moz-document url-prefix() {
  body #interior-header .logo-hold {
    top: -18px;
    position: relative;
  }
}
body #interior-header .logo-hold img {
  width: 100%;
}
body #interior-header .nav-hold {
  display: inline-block;
  width: 62%;
  position: relative;
  top: -32px;
  right: -42px;
}
@-moz-document url-prefix() {
  body #interior-header .nav-hold {
    top: 5px;
  }
}
@media (max-width: 991px) {
  body #interior-header .nav-hold {
    position: absolute;
    right: 0;
    top: 15px;
  }
}
body #interior-header .nav-hold .navbar {
  display: flex;
  max-height: 55px;
}
body #interior-header .nav-hold .navbar .srchbutton {
  position: absolute;
  top: 14px;
  right: 0px;
}
body #interior-header .nav-hold .navbar .nav-pills {
  max-height: 55px;
}
body #interior-header .mail {
  background-image: url('/themes/lee/images/interior-mail.png');
  float: right;
  width: 155px;
  height: 36px;
  margin-top: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  position: relative;
}
@media (max-width: 991px) {
  body #interior-header .mail {
    display: none;
  }
}
body#home #interior-header {
  display: none;
}
body#home #header {
  display: block;
  background-color: white;
  box-shadow: 5px 5px rgba(99, 96, 96, 0.2);
  z-index: 20;
  position: relative;
}
body#home #header .top .logo {
  margin-top: 20px;
  width: 400px;
  display: inline-block;
  z-index: 10;
  position: relative;
}
@media (max-width: 708px) {
  body#home #header .top .logo {
    width: 330px;
  }
}
@media (max-width: 479px) {
  body#home #header .top .logo {
    width: 100%;
  }
}
body#home #header .top .logo img {
  width: 100%;
}
body#home #header .top .social {
  float: right;
  margin-top: 25px;
}
body#home #header .top .social .social-list {
  display: inline-block;
}
body#home #header .top .social .social-list a {
  color: white;
  background-color: black;
  display: inline-block;
  height: 28px;
  width: 28px;
  padding-top: 4px;
  border-radius: 20px;
  text-align: center;
  font-size: 15px;
}
body#home #header .top .social .social-list a:hover {
  background-color: #6bb336;
}
body#home #header .top .social .translate {
  margin-left: 20px;
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid black;
  color: black;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
body#home #header .top .social .translate:hover {
  background-color: #6bb336;
  border: 1px solid #6bb336;
  color: white;
}
@media (max-width: 640px) {
  body#home #header .top .social {
    display: none;
  }
}
body#home #header .bottom .navHold {
  float: left;
  margin-top: -27px;
  z-index: 1;
  position: relative;
}
body#home #header .bottom .mail {
  background-image: url('/themes/lee/images/mail.jpg');
  float: right;
  margin-top: 60px;
  width: 155px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 30;
}
body#home #header .bottom .mail:hover {
  background-image: url('/themes/lee/images/mail-hover.jpg');
}
body .navbar {
  background-color: #6bb336;
  width: 660px;
  display: inline-block;
}
@media (max-width: 991px) {
  body .navbar {
    width: 125px;
    text-align: right;
    float: right;
  }
}
@media (max-width: 479px) {
  body .navbar {
    width: 50px;
    margin-right: 9px;
  }
}
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 {
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 20px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: white;
  border-top: none;
  top: 101%;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #fdda03;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: black;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #fdda03;
}
body .navbar .nav-pills > li.selected:after,
body .navbar .nav-pills > li:hover:after {
  content: '';
  position: relative;
  top: -10px;
  right: -19%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid white;
  border-color: transparent transparent white transparent;
}
body .navbar .nav-pills > li:nth-child(3).selected:after,
body .navbar .nav-pills > li:nth-child(6).selected:after {
  right: -28%;
}
body .navbar .nav-pills > li:nth-child(2).selected:after {
  right: -26%;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .togglemenu .menulabel {
  font-family: 'Oswald', sans-serif;
}
@media (max-width: 479px) {
  body .navbar .togglemenu .menulabel {
    display: none;
  }
}
body .navbar .srchbuttonmodal {
  color: white;
  font-size: 21px;
  position: relative;
  top: 2px;
  margin-right: 8px;
  width: 30px;
  float: left;
}
@media (max-width: 479px) {
  body .navbar .srchbuttonmodal {
    width: 30px;
    float: left;
    display: none !important;
  }
}
body .navbar .srchbutton {
  position: relative;
  top: -7px;
}
body .navbar .srchbutton span {
  color: white;
  font-size: 20px;
}
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 {
  /*position: absolute;*/
  width: 575px;
  border: none;
  background-color: #6BB336;
  color: white;
  border-bottom: 3px solid white;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: white;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: white;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Older versions of Firefox */
  color: white;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: white;
}
body .navbar #search #sitesearch button {
  background-color: #6bb336;
  color: white;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
}
body#home .navbar {
  background-color: white;
  width: auto;
  display: flex;
  width: 125%;
  margin-top: 69px;
  height: 53px;
  float: left;
}
@media (max-width: 991px) {
  body#home .navbar {
    width: 125%;
    margin-top: 77px;
    height: 42px;
  }
}
body#home .navbar .nav-pills {
  /*opacity: 1 !important;*/
  display: inline-block !important;
  width: auto;
}
@media (max-width: 991px) {
  body#home .navbar .nav-pills {
    display: none !important;
  }
}
body#home .navbar .nav-pills > li {
  width: auto;
}
body#home .navbar .nav-pills > li a {
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 30px;
  color: black;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
body#home .navbar .nav-pills > li .dropdown-menu {
  background-color: black;
  top: 101%;
  border-top: 10px solid white;
}
body#home .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body#home .navbar .nav-pills > li .dropdown-menu li a {
  color: white;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body#home .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: white;
  color: black;
}
body#home .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: black;
  background-color: transparent;
}
body#home .navbar .nav-pills > li:hover a {
  color: #6bb336;
}
body#home .navbar .nav-pills > li:hover:after {
  content: none;
}
body#home .navbar .togglemenu {
  color: black;
  font-size: 26px;
}
body#home .navbar .togglemenu .menulabel {
  font-family: 'Oswald', sans-serif;
}
body#home .navbar .srchbuttonmodal {
  right: -11px;
  position: absolute;
  color: black;
  font-size: 23px;
  top: 3px;
  display: none !important;
}
body#home .navbar .srchbutton {
  position: relative;
  top: 13px;
  zoom: 1;
}
body#home .navbar .srchbutton span {
  color: black;
  font-size: 22px;
}
body#home .navbar .srchbutton:hover span {
  color: #6bb336;
}
body#home .navbar #search {
  width: 0%;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  left: 0;
  /*float: left;*/
}
body#home .navbar #search.showme {
  width: 725px;
  height: 55px;
}
body#home .navbar #search #sitesearch {
  /*float: left;
				background-color: white;
				padding:10px 5px;*/
  padding: 0px;
  position: absolute;
  left: 0;
  width: 100%;
}
body#home .navbar #search #sitesearch #search-field {
  border-bottom: 2px solid black;
  background-color: white;
  padding: 7px;
  position: relative;
  left: -5px;
  width: 667px;
  color: black;
}
body#home .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: black;
}
body#home .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: black;
}
body#home .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Older versions of Firefox */
  color: black;
}
body#home .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: black;
}
body#home .navbar #search #sitesearch button {
  border: none;
  color: black;
  background-color: white;
  width: 40px;
  height: 42px;
  position: relative;
  left: -10px;
  top: 6px;
}
body#home .navbar #search #sitesearch button:hover {
  color: #6bb336;
}
#NavMobileModal {
  border: 4px solid black;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: black;
  margin-right: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: black;
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}
#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: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu:last-child {
  display: none;
}
@media (max-width: 479px) {
  .visible-xs {
    display: none !important;
  }
}
@media (max-width: 479px) {
  .visible-xs.searchbuttonmodalxs {
    display: block !important;
  }
}
.banner {
  margin-top: -4px;
  z-index: 10;
  position: relative;
}
.banner img {
  width: 100%;
}
@media (max-width: 640px) {
  .banner img {
    width: auto;
    height: 320px;
    left: -70px;
    position: relative;
  }
}
@media (max-width: 497px) {
  .banner img {
    left: -90px;
  }
}
@media (max-width: 400px) {
  .banner img {
    height: 270px;
  }
}
.no-padding {
  padding: 0px;
}
.contact {
  margin: 50px 0px;
  display: block;
  width: 100%;
  border: 1px solid black;
  color: black;
  text-align: center;
  font-size: 24px;
  padding: 15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.contact span {
  font-size: 26px;
  position: relative;
  top: 2px;
}
.contact:hover {
  background-color: #6bb336;
  border: 1px solid #6bb336;
  color: white;
  text-decoration: none;
}
iframe#media-player {
  width: 100%;
  height: 500px;
}
.wrap {
  height: 360px;
  margin-bottom: 100px;
}
.wrap.with-img {
  cursor: pointer;
}
.wrap.with-img .press-image {
  height: 222px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrap.with-img .caption {
  border: 1px solid black;
  border-top: none;
  padding: 14px;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
  color: black;
  height: 140px;
  transition: all 0.5s ease-in;
}
.wrap.with-img .caption a {
  color: black;
  transition: all 0.5s ease-in;
}
.wrap.with-img:hover .caption {
  background-color: #6bb336;
  color: white;
  border: 1px solid #6bb336;
  border-top: none;
}
.wrap.with-img:hover .caption a {
  color: white;
}
.wrap.all-text {
  background-color: #6bb336;
  color: white;
  font-size: 25px;
  padding: 15px 20px;
  border: 1px solid #6bb336;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
  transition: all 0.5s ease;
}
.wrap.all-text a {
  color: white;
}
.wrap.all-text:hover {
  background-color: white;
  border: 1px solid black;
}
.wrap.all-text:hover a {
  color: black;
}
.wrap date {
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
.youtube {
  padding: 0px 15px;
}
.youtube .innervideo {
  background-color: black;
}
.youtube iframe {
  width: 100%;
  /*height: 480px;*/
  /*	@media(max-width: 1200px){height:500px};
		@media(max-width: 991px){height:430px};*/
}
@media (max-width: 767px) {
  .youtube iframe {
    height: 380px;
  }
}
@media (max-width: 580px) {
  .youtube iframe {
    height: 290px;
  }
}
.youtube .txt {
  padding: 10px 25px 15px;
  margin-bottom: 15px;
}
.youtube .txt date {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Bd', 'Muli', sans-serif;
  text-transform: uppercase;
}
.youtube .txt h3 {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
  margin: 0;
  font-size: 18px;
}
.youtube .txt h3 a {
  color: white;
}
.instagram {
  margin-left: 5px;
}
.instagram #instamedia a {
  width: 25%;
  display: inline-block;
}
@media (max-width: 550px) {
  .instagram #instamedia a {
    width: 50%;
  }
}
.instagram #instamedia a .instaimage {
  padding: 15px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .instagram #instamedia a .instaimage {
    padding-bottom: 30px;
  }
}
.instagram #instamedia a .instaimage img {
  width: 100%;
  outline: 5px solid #d0d0d0;
  margin-right: 15px;
}
.twitter-header {
  background-color: black;
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Bd', 'Muli', sans-serif;
  font-size: 18px;
  padding: 10px 15px;
  font-weight: 700;
}
.twitter-header a {
  color: white;
}
.twitter-header a:hover {
  color: #fdda03;
}
.black-bar {
  background-color: black;
  width: 100%;
  height: 19px;
}
.action {
  background-image: url('/themes/lee/images/ural.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 650px;
  width: 100%;
  margin: 100px 0px;
}
@media (max-width: 560px) {
  .action {
    height: 422px;
    margin: 60px 0px;
  }
}
.action img {
  width: 100%;
}
.action .buttons {
  width: 33.333333%;
  float: right;
  height: 100%;
}
@media (max-width: 479px) {
  .action .buttons {
    width: 48%;
  }
}
.action .buttons .button {
  background-color: rgba(91, 176, 29, 0.9);
  border-bottom: 1px solid white;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 22px;
  padding: 10% 0;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
  height: 16.666666%;
}
.action .buttons .button:last-child {
  border-bottom: none;
}
@media (max-width: 560px) {
  .action .buttons .button {
    padding: 13% 0%;
    font-size: 18px;
  }
}
.action .buttons .button:hover {
  background-color: white;
  color: black;
}
.office-container {
  background-color: #f3f3f3;
  display: -webkit-box;
  position: relative;
  margin-top: 50px;
  display: inline-block;
  height: 591px;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
@media (max-width: 991px) {
  .office-container {
    height: auto;
  }
}
.office-container .padding {
  padding: 0px;
  height: 100%;
}
.office-container .no-padding {
  padding-left: 40px;
}
.office-container .no-padding h2 {
  margin-top: 40px;
}
.office-container .main-offices {
  background-color: #6bb336;
  height: 100%;
  padding: 20px 40px;
  color: white;
}
@media (max-width: 991px) {
  .office-container .main-offices {
    height: auto;
    width: 100%;
    display: inline-block;
  }
}
.office-container .main-offices h2 {
  margin-top: 20px;
}
.office-container strong {
  font-family: 'ITC Avant Garde Gothic W01 Bd', 'Muli', sans-serif;
}
.office-container h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.office-container.interior {
  width: 100%;
  padding: 20px 55px;
  height: auto;
}
@media (max-width: 479px) {
  .office-container.interior {
    padding: 20px 35px;
  }
  .office-container.interior .office.main {
    width: 100%;
    min-height: 188px;
  }
}
.office-container.interior h2 {
  margin-bottom: 15px;
}
.office-container.interior .no-padding {
  padding-left: 0px;
}
.office {
  float: left;
  width: 50%;
  font-size: 17px;
  min-height: 216px;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
@media (max-width: 1200px) {
  .office {
    font-size: 16px;
  }
}
@media (max-width: 415px) {
  .office {
    min-height: 260px;
  }
}
.office.main {
  width: 100%;
}
@media (max-width: 991px) {
  .office.main {
    width: 50%;
  }
}
.office-pic {
  width: 100%;
  height: 591px;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.lee-block {
  background-color: white;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  color: black;
}
.lee-block a {
  padding: 25px;
  display: block;
  margin: 7px 0px;
  border: 1px solid black;
  color: black;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
.lee-block:hover a {
  background-color: #6bb336;
  border-color: #6bb336;
  color: white;
}
#breadcrumb {
  margin-top: 0px;
  color: #f3f3f3;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
#breadcrumb a {
  color: #cccccc;
}
#breadcrumb a:hover {
  color: #6bb336;
}
.press-release-title {
  margin-top: 60px;
}
.press-release-title a {
  color: black;
}
.press-release-title:first-child {
  margin-top: 20px;
}
.press-release-summary {
  margin-top: 10px !important;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
.vote-btn {
  background-color: #6bb336;
  color: white;
  border: none;
}
.vote-btn:hover {
  background-color: #588e30;
}
#voting_record .bill a {
  color: black;
}
#voting_record .bill a:hover {
  color: #6bb336;
}
#asides li {
  margin-bottom: 20px;
}
#asides li time {
  margin-right: 5px;
}
#asides li a {
  color: black;
}
#asides li a:hover {
  color: #6bb336;
}
body#biography .white {
  background-color: #f3f3f3;
}
body#biography h2 {
  margin-top: 0px;
}
body#biography #early,
body#biography #staff,
body#biography #legislator,
body#biography #representative {
  padding: 20px 30px;
}
.affix {
  position: fixed;
  width: 29%;
  top: 30px;
}
/*body styles*/
body.no-breadcrumbs #breadcrumb {
  display: none;
}
/*asides*/
#asides {
  margin-top: 21px;
}
#asides .amend-textarea {
  background-color: #f3f3f3;
  margin-bottom: 15px;
}
#asides .amend-textarea .aside-text {
  padding: 25px 20px;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
#asides .amend-textarea .aside-text h3 {
  margin-top: 0;
}
/*helping you landing page*/
body#helping-you #listblocks,
body #listblocks {
  margin-top: 50px;
}
body#helping-you .block,
body .block {
  background-color: white !important;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  border: 1px solid black;
  color: black;
  display: inline-block;
  text-align: center;
}
body#helping-you .block a,
body .block a {
  background-color: transparent !important;
  min-height: 150px !important;
  color: black !important;
  display: block;
  font-size: 27px !important;
  padding: 35px !important;
}
body#helping-you .block:hover,
body .block:hover {
  border: 1px solid #6bb336;
  background-color: #6bb336 !important;
}
body#helping-you .block:hover a,
body .block:hover a {
  background-color: #6bb336;
  color: white !important;
}
/*newsroom landing page*/
body#newsroom-landing .office-container {
  display: none;
}
body#newsroom-landing h1 {
  color: black;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  width: 100%;
  border-bottom: 1px solid black;
}
body#newsroom-landing h1 a {
  color: black;
  font-family: 'Oswald', sans-serif;
}
body#newsroom-landing h1 a:hover {
  color: #6bb336;
}
body#newsroom-landing .press-item {
  margin-bottom: 40px;
}
body#newsroom-landing h3.title a {
  color: black;
}
body#newsroom-landing h3.title a:hover {
  color: #6bb336;
}
body#newsroom-landing span.date {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
}
body#newsroom-landing h4 p {
  line-height: 27px;
  font-size: 16px;
}
span.date {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
}
/*newsroom*/
body#newsroom .modal-dialog,
.modal-dialog {
  margin: 10% auto;
  position: relative;
  z-index: 10000;
}
body#newsroom .modal-dialog .modal-content .close,
.modal-dialog .modal-content .close {
  color: black;
}
body#newsroom .modal-dialog select,
.modal-dialog select {
  padding: 5px 15px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid black !important;
  border-radius: 0px;
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right white;
  -webkit-appearance: none;
  background-size: s;
  background-position-x: 98%;
}
/*Contact page*/
body#contact .contact-container {
  margin-bottom: 60px;
  display: inline-block;
}
body#contact .office {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body#contact .lee-block {
  background-color: white;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  color: black;
}
body#contact .lee-block a {
  padding: 25px;
  display: block;
  margin: 7px 0px;
  border: 1px solid black;
  color: black;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
body#contact .lee-block:first-child {
  margin-top: 80px;
}
body#contact .lee-block:hover a {
  background-color: #6bb336;
  border-color: #6bb336;
  color: white;
}
/*ISsues landig page*/
body#meeting .lee-block a {
  padding: 38px;
}
/*13th district*/
.flip-container {
  perspective: 1000;
  margin-bottom: 80px;
}
/* flip the pane when hovered */
.flip-container:hover .flipper,
.flip-container.hover .flipper {
  transform: rotateY(180deg);
}
@media (max-width: 500px) {
  .flip-container:hover .flipper,
  .flip-container.hover .flipper {
    transform: none;
  }
}
.flip-container,
.front,
.back {
  width: 100%;
  height: 335px;
  overflow: none;
}
@media (max-width: 500px) {
  .flip-container,
  .front,
  .back {
    height: auto;
  }
}
#content {
  max-width: 1330px;
  margin: 0 auto;
  min-height: 600px !important;
}
/*#main_container{
	padding: 0 65px;
}*/
div#main_container {
  margin-top: 75px;
}
/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
@media (max-width: 500px) {
  .flipper {
    transform-style: none;
  }
}
/* hide back of pane during swap */
.front,
.back {
  backface-visibility: hidden;
  background-color: #6bb336;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  overflow: hidden;
  -moz-overflow: hidden;
}
@media (max-width: 500px) {
  .front,
  .back {
    position: relative;
  }
}
.front {
  z-index: 3;
  /* for firefox 31 */
  display: table;
  transform: rotateY(0deg);
}
.front .priority-block {
  display: table-cell;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}
.front .priority-block img {
  /*clip: rect(0px 46em 335px 0px);*/
}
.front .priority-block .filter {
  width: 100%;
  display: inline;
  text-align: center;
}
.front .priority-block .filter h2 {
  color: white;
  letter-spacing: 2px;
  margin: 0;
  z-index: 6;
  height: 335px;
  position: relative;
  padding-top: 41%;
}
.front .priority-block .filter h2#filter {
  background-color: rgba(48, 48, 48, 0.4);
}
.front .priority-block img {
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (max-width: 500px) {
  .front .priority-block {
    display: block;
  }
}
@media (max-width: 500px) {
  .front {
    transform: none;
    display: inline-block;
  }
}
.back {
  transform: rotateY(180deg);
  background-color: #6bb336;
  padding: 20px;
  z-index: 2;
  display: table;
}
.back h3 {
  font-size: 24px;
  color: white;
}
.back p {
  color: white;
  font-size: 18px;
  line-height: 32px;
  vertical-align: middle;
  display: table-cell;
}
@media (max-width: 500px) {
  .back {
    transform: none;
    display: inline-block;
    margin-top: -6px;
  }
}
.flipper.hover .front .priority-block {
  background: none !important;
}
/*Biography*/
.bionav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: table;
}
.bionav a {
  text-decoration: none;
}
.bionav a:hover {
  text-decoration: none;
}
body#biography .affix {
  width: 403px;
}
@media (max-width: 1330px) {
  body#biography .affix {
    width: 359px;
  }
}
@media (max-width: 1200px) {
  body#biography .affix {
    width: 293px;
  }
}
@media (max-width: 991px) {
  body#biography .affix {
    width: 219px;
  }
}
.sidepod li {
  padding-right: 20px;
}
.sidepod li:nth-child(2) .lead,
.sidepod li:last-child .lead {
  padding-top: 10px;
}
@media (max-width: 1200px) {
  .sidepod li:nth-child(2) .lead,
  .sidepod li:last-child .lead {
    padding-top: 15px;
  }
}
@media (max-width: 991px) {
  .sidepod li:nth-child(2) .lead,
  .sidepod li:last-child .lead {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .sidepod li:nth-child(3) .lead {
    padding-top: 20px;
  }
}
.sidepod li:hover {
  padding-right: 0px;
}
.sidepod .lead {
  background-color: #fdda03;
  color: black;
  font-family: 'ITC Avant Garde Gothic W01 Bd', 'Muli', sans-serif;
  font-size: 24px;
  padding-left: 0px;
  height: 87px;
  padding-top: 27px;
  width: 100%;
  display: block;
}
@media (max-width: 1200px) {
  .sidepod .lead {
    font-size: 20px;
    padding-top: 32px;
  }
}
@media (max-width: 991px) {
  .sidepod .lead {
    height: 95px;
    padding-top: 35px;
    font-size: 19px;
  }
}
.sidepod .lead:hover {
  background-color: #fdda03;
  padding-left: 20px;
}
.sidepod .lead:focus {
  background-color: #fdda03;
}
.sidepod li:before {
  height: 87px;
  background-color: #fdda03;
  width: 800px;
  content: "";
  position: absolute;
  left: -785px;
  z-index: -1;
}
@media (max-width: 991px) {
  .sidepod li:before {
    height: 95px;
  }
}
/*Committee and Caucues*/
body#caucus h3 {
  font-size: 26px;
  color: black;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  width: 100%;
  border-bottom: 1px solid black;
  margin-top: 30px;
  display: inline-block;
}
body#caucus .front,
body#caucus .back {
  height: 300px;
}
body#caucus .flip-container {
  margin-bottom: 0px;
}
body#caucus .caucus-block {
  display: table;
  height: 300px;
  text-align: center;
  background-color: #6bb336;
  color: white;
  width: 100%;
  font-size: 24px;
  padding: 15px 20px;
}
body#caucus .caucus-block h2 {
  font-size: 25px;
}
body#caucus .caucus-block .filter {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 500px) {
  body#caucus .front .caucus-block {
    background-color: white;
    color: black;
    height: auto;
  }
}
@media (max-width: 500px) {
  body#caucus .front {
    height: auto !important;
  }
}
.col-md-4.last {
  float: none;
  display: table;
  margin: 0 auto;
  text-align: center;
}
body#biography p {
  line-height: 30px;
}
/*Awards page*/
.timeline-header {
  /* ---- Timeline elements ---- */
}
.timeline-header ul {
  position: relative;
  display: block;
  margin: 100px auto;
  height: 4px;
  background: #6bb336;
  overflow: visible;
  z-index: 999;
}
.timeline-header ul::before,
.timeline-header ul::after {
  content: "";
  position: absolute;
  top: -8px;
  display: block;
  width: 0;
  height: 0;
  border-radius: 10px;
  border: 10px solid #6bb336;
}
.timeline-header ul::after {
  left: -5px;
}
.timeline-header ul::before {
  right: -10px;
  border: 10px solid transparent;
  border-right: 0;
  border-left: 20px solid #6bb336;
  border-radius: 3px;
}
.timeline-header ul {
  width: 80%;
  /* ---- Hover effects ---- */
}
@media (max-width: 530px) {
  .timeline-header ul {
    width: 97%;
  }
}
.timeline-header ul li {
  position: relative;
  left: -5px;
  top: -62px;
  display: inline-block;
  float: left;
  width: 10%;
  overflow: visible;
  white-space: nowrap;
  transform: rotate(-45deg);
  font: bold 14px arial;
}
@media (max-width: 1300px) {
  .timeline-header ul li {
    top: -58px;
  }
}
@media (max-width: 1200px) {
  .timeline-header ul li {
    top: -53px;
  }
}
@media (max-width: 991px) {
  .timeline-header ul li {
    top: -46px;
  }
}
@media (max-width: 650px) {
  .timeline-header ul li {
    top: -44px;
  }
}
@media (max-width: 450px) {
  .timeline-header ul li {
    top: -40px;
  }
}
.timeline-header ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -29px;
  display: block;
  width: 6px;
  height: 6px;
  border: 4px solid #6bb336;
  border-radius: 10px;
  background: #eee;
}
.timeline-header ul .timeline-links {
  display: none !important;
}
.timeline-header ul li:hover {
  cursor: pointer;
  color: #28e;
}
.timeline-header ul li:hover a {
  color: black;
}
.timeline-header ul li:hover::before {
  border-color: #6bb336;
}
.timeline-header ul li:hover .details {
  color: #444;
}
.timeline-main {
  list-style: none;
  padding-left: 0px;
}
.timeline-main li {
  padding: 15px 40px;
}
.timeline-main li h3 {
  font-size: 26px;
  color: black;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  width: 100%;
  border-bottom: 1px solid black;
}
.timeline-main li:nth-child(even) {
  background-color: #f3f3f3;
}
.opEds {
  top: 20px;
  display: block;
  position: relative;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  background-color: #6bb336;
}
.dcBlock {
  display: block;
  position: absolute;
  margin-top: 0px;
}
p.visitDC {
  line-height: 33px;
}
/*Issue Detail Page*/
body#issue .issuebody {
  line-height: 28px;
}
body#issue .issuebody h2 {
  font-size: 26px;
  color: black;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  width: 100%;
  border-bottom: 1px solid black;
  margin-top: 30px;
  display: inline-block;
}
body#issue .one_column .breakout {
  border-top: none;
}
body#issue .one_column .breakout #issueFeed > li {
  width: 72%;
  padding-bottom: 0px;
  margin-top: 20px;
}
body#issue .latestheader {
  font-size: 26px;
  color: black;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  width: 100%;
  border-bottom: 1px solid black;
  margin-top: 30px;
  display: inline-block;
}
body#issue .news {
  border-bottom: none !important;
}
body#issue .news .date {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
body#issue .news .title {
  margin-top: 0px;
}
body#issue .news .title a {
  color: black;
}
#video-content #media-player iframe {
  min-height: 440px;
}
label[for="src_yr-video"] {
  display: none;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid black;
  display: block !important;
  opacity: 1 !important;
  display: none !important;
}
#multimedia-browser ul.nav-tabs li a {
  color: black;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background-color: #6bb336;
  color: white;
}
#multimedia-browser ul.nav-tabs li.active a {
  background-color: black;
}
#multimedia-browser .tab-content {
  margin-top: 40px;
}
#multimedia-browser legend {
  border-bottom: none;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #fdda03;
}
#multimedia-browser .status p {
  color: black;
}
#multimedia-browser .status a {
  color: #6bb336;
}
#multimedia-browser .pagination {
  background-color: black;
}
#multimedia-browser .row .media-thumbnail a {
  color: black;
}
body footer {
  display: inline-block;
  margin-top: 50px;
  padding: 10px;
  background-color: black;
  width: 100%;
}
@media (max-width: 991px) {
  body footer .footernav {
    text-align: center;
    float: none !important;
  }
}
body footer .footernav li {
  color: white;
  padding: 10px;
}
body footer .footernav li a {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}
body footer .footernav li a:hover {
  color: #6bb336;
}
body footer .social-list {
  float: right;
  padding: 10px;
}
@media (max-width: 991px) {
  body footer .social-list {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
body footer .social-list a {
  height: 40px;
  margin-right: 6px;
  width: 40px;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  padding: 7px;
  font-size: 20px;
  color: black;
  background-color: white;
}
body footer .social-list a:hover {
  background-color: #6bb336;
  color: white;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*

font-family:'AvantGardeGothicITC W08 Book';
font-family:'AvantGardeGothicITC W08 Bold';
font-family:'AvantGardeGothicITCBdItalicW08';
font-family:'AvantGardeGothicITCBkItalicW08';
font-family:'Desire W03_0';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde GothicW01BkObl';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde GothicW01BdObl';
font-family:'ITC Avant Garde Gothic W01 XLt';
font-family:'ITC Avant GardeGothicW01XLtObl';

paste available font families here
*/
/*define site colors here

  naming conventions
  if we have multiple shades of one color
  number each shade from 1 - n
  with 1 being the lightest and n being the darkest

  @sitecolor:#fff; //example

  @colorshade1 :#examplehex;
  @colorshade2 :#examplehex;
  @colorshade3 :#examplehex;

*/
@font-face {
  font-family: 'socicon';
  src: url('/themes/lee/fonts/social/socicon.eot');
  src: url('/themes/lee/fonts/social/socicon.eot?#iefix') format('embedded-opentype'), url('/themes/lee/fonts/social/socicon.woff') format('woff'), url('/themes/lee/fonts/social/socicon.woff2') format('woff2'), url('/themes/lee/fonts/social/socicon.ttf') format('truetype'), url('/themes/lee/fonts/social/socicon.svg#sociconregular') format('svg');
  font-weight: normal;
  font-style: normal;
  text-transform: initial;
}
.socicon {
  font-family: 'socicon' !important;
}
.socicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.socicon:empty {
  width: 1em;
}
.socicon-twitter:before {
  content: "a";
}
.socicon-facebook:before {
  content: "b";
}
.socicon-google:before {
  content: "c";
}
.socicon-youtube:before {
  content: "r";
}
.socicon-instagram:before {
  content: "x";
}
/*set up serif font quick class if we have one*/
.oswald {
  font-family: 'Oswald', sans-serif;
}
.oswald-bold {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.avante {
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
.avante-bold {
  font-family: 'ITC Avant Garde Gothic W01 Bd', 'Muli', sans-serif;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
body {
  font-size: 18px;
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
/*anchor stlyes*/
a {
  color: #588e30;
}
a:hover {
  color: #6bb336;
  text-decoration: none;
}
cite,
var,
address,
dfn {
  font-style: normal !important;
}
i,
em {
  font-style: italic;
}
p {
  margin-bottom: 20px;
}
/*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: #6bb336;
  color: white;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  color: white;
  background-color: #588e30;
}
#filterbuttons {
  float: right;
}
#filterbuttons a {
  margin-right: 8px;
  background-color: white;
  border: 1px solid black;
  color: black;
}
#filterbuttons a span {
  color: black;
}
.pager .previous {
  margin-right: 8px;
}
.pagination-right .form-inline {
  font-family: 'ITC Avant Garde Gothic W01 Bk', 'Muli', sans-serif;
}
.pagination-right .form-inline select {
  padding: 5px 15px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid black;
  border-radius: 0px;
  /*background: url(//cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right white;*/
  -webkit-appearance: none;
  background-size: 25%;
  background-position-x: 89%;
}
/*interior page content default styles */
@media (max-width: 1200px) {
  .flip-container,
  .front,
  .back {
    width: 100%;
    height: 330px;
  }
}
@media (max-width: 991px) {
  body#home .press .col-sm-4 {
    width: 50%;
  }
  body#home .press .col-sm-4:first-child {
    width: 100%;
  }
  body#home .press .col-sm-4:first-child .wrap {
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .press-image {
    width: 50%;
    float: left;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .caption {
    width: 50%;
    float: left;
    display: inline-block;
    height: 222px;
    border-top: 1px solid black;
    border-left: none;
  }
  body#home .press .col-sm-4:first-child .wrap:hover.with-img .caption {
    border-top: 1px solid #6bb336;
  }
  .front .priority-block img {
    top: -100px;
    clip: rect(100px 46em 435px 0px);
  }
  .front .priority-block .filter h2 {
    padding-top: 22%;
  }
}
@media (max-width: 767px) {
  body#home .press .col-sm-4 {
    width: 100%;
  }
  body#home .press .col-sm-4 .wrap {
    height: auto;
    margin-bottom: 30px;
  }
  body#home .press .col-sm-4 .wrap.all-text {
    padding-bottom: 20px;
  }
  body#home .press .col-sm-4 .wrap.with-img .caption {
    height: auto;
  }
  body#home .press .col-sm-4:first-child {
    width: 100%;
  }
  body#home .press .col-sm-4:first-child .wrap {
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .press-image {
    width: 50%;
    float: left;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .caption {
    width: 50%;
    float: left;
    display: inline-block;
    height: 222px;
    border-top: 1px solid black;
    border-left: none;
  }
  body#home .press .col-sm-4:first-child .wrap:hover.with-img .caption {
    border-top: 1px solid #6bb336;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
@media (max-width: 479px) {
  body#home .press .col-sm-4:first-child {
    width: 100%;
  }
  body#home .press .col-sm-4:first-child .wrap {
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .press-image {
    width: 100%;
    float: left;
    display: inline-block;
  }
  body#home .press .col-sm-4:first-child .wrap.with-img .caption {
    width: 100%;
    float: left;
    display: inline-block;
    height: auto;
    border-top: none;
    border-left: 1px solid black;
  }
  body#home .press .col-sm-4:first-child .wrap:hover.with-img .caption {
    border-left: 1px solid #6bb336;
  }
}
@media (max-width: 500px) {
  .flip-container,
  .front,
  .back {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 479px) {
  .front .priority-block img {
    top: 0px;
    clip: rect(0px 46em 335px 0px);
  }
  .front .priority-block .filter h2 {
    padding-top: 40%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ieold .timeline-header {
  display: none;
}
.ie {
  /*	body#home .navbar .srchbutton {
		top:-8px;
	}*/
}
.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;
}
.ie body #interior-header .logo-hold {
  position: relative;
  top: -20px;
}
.ie body #interior-header .nav-hold {
  top: 0px;
}
.ie :root body#home .navbar .srchbutton {
  top: -8px;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
.ie10 body#home .navbar .srchbutton {
  top: -8px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body#home .navbar .srchbutton {
    top: 12px;
  }
}
/*_:-ms-fullscreen, :root .ie11up .ie body#home .navbar .srchbutton { top:12px; }
*/
/*@media all and (-ms-high-contrast:none){
  
     *::-ms-backdrop .ie body#home .navbar .srchbutton { top:12px; } 
   }*/
