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

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
.alert {
  max-width: 1300px;
  width: 100%;
  background: #91b01f;
  margin: 0 auto;
  border-radius: 0px;
}
.alert .alertIcn .glyphicon {
  color: #fff;
  top: 4px;
}
.alert .headline a {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearchmodal,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearchmodal {
  padding: 40px 40px 0px 0px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearchmodal input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearchmodal input[type="search"] {
  height: 69px;
  color: rgba(0, 0, 0, 0.8);
  width: 88%;
  font-size: 34px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  margin: 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearchmodal button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearchmodal button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearchmodal button {
  height: 69px;
  border: none;
    font-size: 28px;
    padding: 14px;
    width: 12%;
}
.lime-bar {
  background-color: #91b01f;
  height: 60px;
  padding: 1px 15px;
}
.interior-travels img {
  height: 48px!important;
  margin-top: 6px;
}
body #header {
  background-color: transparent;
  /*background-color: transparent;*/
}
body #header .lime-bar {
  background-color: #91b01f;
  height: 60px;
  padding: 1px 15px;
}
body #header .green-bar {
  background-color: #265e58;
  height: 60px;
}
body #header .left,
body #header .right {
  background-color: #306c65;
  height: 100%;
  padding: 15px 12px;
  z-index: 100;
  position: relative;
}
@media (max-width: 726px) {
  body #header .interior-travels {
    display: none;
  }
}
body #header .togglemenu,
body #header .srchbuttonmodal {
  color: white;
  font-size: 30px;
}
body #header .srchbuttonmodal {
  font-size: 22px;
}
body .interior-travels-mid {
  margin: 0 auto;
  display: none;
  position: absolute;
  height: 50px;
  right: 0px;
  left: 0px;
  margin-top: 3px;
  text-align: center;
}
body .interior-travels-mid img {
  width: auto;
  height: 50px;
}
@media (max-width: 434px) {
  body .interior-travels-mid img {
    margin-top: 10px;
    height: 35px;
  }
}
body .interior-logo img {
  height: 57px!important;
}
@media (max-width: 330px) {
  body .interior-logo img {
    height: 48px!important;
  }
}
body .interior-travels img {
  height: 48px!important;
  margin-top: 6px;
}
body .congress-years {
  width: auto;
  color: #91b01f;
  font-size: 10px;
  font-family: 'Gill Sans Nova W01 Light';
  float: left;
  text-transform: uppercase;
  font-weight: bolder;
  text-align: center;
  line-height: 13px;
  padding: 13px;
  padding-top: 15px;
}
body .congress-years span {
  font-size: 13px;
}
body .stats-contianer {
  width: 1040px;
  position: relative;
  float: left;
  height: 60px;
}
@media (max-width: 1330px) {
  body .stats-contianer {
    width: 910px;
  }
}
@media (max-width: 1200px) {
  body .stats-contianer {
    width: 843px;
  }
}
@media (max-width: 1088px) {
  body .stats-contianer {
    width: 750px;
  }
}
@media (max-width: 997px) {
  body .stats-contianer {
    display: none;
  }
}
body .stats-contianer .stat-container {
  width: 25%;
  float: left;
  padding: 15px 0px 15px;
}
@media (max-width: 1200px) {
  body .stats-contianer .stat-container {
    width: 250px;
  }
}
@media (max-width: 1088px) {
  body .stats-contianer .stat-container {
    width: 212px;
  }
}
body .stats-contianer .stat-container .stat-icon {
  background-color: #306c65;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  font-size: 17px;
  padding-top: 3px;
  float: left;
  color: #104943;
}
body .stats-contianer .stat-container .stat-icon i {
  color: #104943;
}
body .stats-contianer .stat-container .stat {
  font-size: 20px;
  color: white;
  font-weight: bold;
  display: inline-block;
  float: left;
  margin: 0px 6px;
}
body .stats-contianer .stat-container .stat-name {
  font-size: 10px;
  color: white;
  display: inherit;
  line-height: auto;
  font-weight: bold;
  margin-left: 4px;
  top: 4px;
  line-height: 3mm;
  position: relative;
}
@media (max-width: 1330px) {
  body .stats-contianer .stat-container:nth-child(1) .stat-name {
    top: 4px;
  }
}
@media (max-width: 1088px) {
  body .stats-contianer .stat-container:nth-child(1) .stat-name {
    top: -2px;
  }
}
@media (max-width: 1200px) {
  body .stats-contianer .stat-container:nth-child(3),
  body .stats-contianer .stat-container:nth-child(4) {
    width: 160px;
  }
}
body .stats-contianer .stat-container:nth-child(3) .stat-name,
body .stats-contianer .stat-container:nth-child(4) .stat-name {
  top: 9px;
}
@media (max-width: 1200px) {
  body .stats-contianer .stat-container:nth-child(3) .stat-name,
  body .stats-contianer .stat-container:nth-child(4) .stat-name {
    top: 2px;
  }
}
body .stats-contianer .stat-container:hover .stat-icon {
  color: white;
}
body .stats-contianer .stat-container:hover .stat-icon i {
  color: white;
}
body .stats-contianer .stat-container:hover .stat-name {
  color: white;
  text-decoration: underline;
}
.office-container {
  margin-top: 40px;
}
body#home .office-container {
  margin-top: -6px;
}
#newsroom .modal-dialog .modal-content .modal-body form select {
  height: auto;
}
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-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: white;
}
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: @yellow;
								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: @yellow;*/
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
body .navbar .srchbuttonmodal {
  color: white;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
body .navbar #search {
  display: none;
}
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 .container {
  padding: 0;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-backdrop.in {
  background-color: #265e58;
}
#NavMobileModal .modal-dialog {
  margin-top: 30px;
  max-width: 90%;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
  font-size: 80px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
@media (max-width: 539px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body {
    padding: 15px;
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: left;
  width: 100%;
  display: inline-block;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Gill Sans Nova W15 Cond Light';
  font-size: 120px;
  line-height: 50px;
  display: inline-block;
  float: left;
  text-transform: uppercase;
}
@media (max-width: 539px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
    white-space: nowrap;
    font-size: 33px;
    line-height: 0px;
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  color: #91b01f;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 35px 0 20px 0;
  padding: 0;
  position: relative;
  display: inline-block !important;
  /*display: block !important;*/
  overflow: hidden;
  max-height: 0px;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
  transition: all ease-in 0.5s;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Gill Sans Nova W01 Light';
  font-size: 45px;
}
@media (max-width: 539px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
    font-size: 24px;
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  color: #91b01f;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu.open {
  max-height: 700px;
  transition: all ease-in 0.5s;
}
#SearchModal .modal-backdrop.in {
  background-color: #265e58;
}
#SearchModal button[type="submit"] {
  background-color: #91b01f;
}
.banner-container {
  height: 680px;
  transition: 0.4s;
}
@media (max-width: 1200px) {
  .banner-container {
    height: 620px;
  }
}
@media (max-width: 1080px) {
  .banner-container {
    height: 570px;
  }
}
@media (max-width: 991px) {
  .banner-container {
    height: 500px;
  }
}
@media (max-width: 850px) {
  .banner-container {
    height: 440px;
  }
}
@media (max-width: 767px) {
  .banner-container {
    height: 400px;
  }
}
@media (max-width: 680px) {
  .banner-container {
    height: 325px;
  }
}
@media (max-width: 520px) {
  .banner-container {
    height: 275px;
  }
}
@media (max-width: 470px) {
  .banner-container {
    height: 250px;
  }
}
@media (max-width: 400px) {
  .banner-container {
    height: 230px;
  }
}
.banner-container .home-banner {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 440px) {
  .banner-container .home-banner {
    background-position-x: -30px;
  }
}
@media (max-width: 340px) {
  .banner-container .home-banner {
    background-position-x: -70px;
  }
}
.banner-container .home-banner .logo {
  width: 40%;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media (max-width: 1330px) {
  .banner-container .home-banner .logo {
    width: 50%;
  }
}
.banner-container .home-banner .travels {
  position: absolute;
  width: 20%;
  bottom: 30px;
  right: 20px;
}
.banner-container .home-banner .travels img {
  width: 100%;
}
.press {
  background-color: #f6f6f6;
  padding: 30px 20px;
  height: 100%;
}
.press .presstype {
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: underline;
  font-size: 15px;
  color: #555555;
  text-transform: uppercase;
  width: 100%;
}
.press h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #555555;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 0px;
}
.press .clearfix {
  margin-bottom: 25px;
}
.press .read-more {
  color: #265e58;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.press .read-more:hover {
  color: #306c65;
}
.newsletter {
  background-color: #91b01f;
  display: inline-block;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.newsletter img {
  width: 75%;
}
.newsletter:hover {
  background-color: #008456;
}
.twitter-feed-col {
  position: relative;
}
.twitter-feed-col #twitter-posts {
  padding: 15px 15px;
}
.twitter-feed-col .fa {
  position: absolute;
  top: 16px;
  right: 15px;
  color: #1da1f2;
}
.twitter-feed-col .fb-header {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #555555;
  font-size: 18px;
}
.twitter-feed-col #fb-time {
  font-size: 15px;
}
.twitter-feed-col .fb-img {
  margin-right: 6px;
}
.twitter-feed-col a {
  color: #555555;
  font-size: 16px;
}
.twitter-feed-col a:hover {
  color: #306c65;
}
#twitter {
  height: auto;
  position: relative;
  display: table;
  width: 100%;
  vertical-align: middle;
}
#twitter #twitter-posts {
  overflow: hidden;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  height: 100%;
}
#twitter .header {
  display: table;
  width: 100%;
}
#twitter .tweet {
  padding: 3rem 0;
  font-weight: bold;
}
#twitter p {
  margin: 0;
}
.youtube iframe {
  width: 100%;
  height: 275px;
}
body#home .office-container {
  padding: 30px 20px;
  position: relative;
  display: inline-block;
  background-image: url('/themes/kilmer/images/offices.jpg');
  background-size: cover;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  margin-top: -6px;
}
body#home .office-container h2 {
  margin-left: 15px;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: white;
}
body#home .office-container a {
  color: #91b01f;
}
body#home .office-container a:hover {
  color: white;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
.no-padding {
  padding: 0;
}
li.previous {
  margin-right: 10px;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
select {
  height: auto!important;
}
aside {
  margin-top: 0;
}
#asides {
  margin-top: 75px;
}
#search-thomas-pod h3 {
  margin-top: 0px;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: auto;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #306c65;
}
.blog-entry,
.blog_entry {
  padding: 10px 75px;
}
.blog-entry .date,
.blog_entry .date,
.blog-entry .pubdate,
.blog_entry .pubdate {
  margin-top: 20px;
  display: inline-block;
}
.blog-entry .date,
.blog_entry .date,
.blog-entry .byline,
.blog_entry .byline,
.blog-entry .pubdate,
.blog_entry .pubdate {
  font-family: 'Gill Sans Nova W01 Light';
}
.blog-entry .byline,
.blog_entry .byline {
  margin-bottom: 30px;
  display: inline-block;
}
.blog-entry h2,
.blog_entry h2 {
  margin-top: 10px;
}
.blog-entry footer,
.blog_entry footer {
  background-color: transparent;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #91b01f;
}
#newscontent #press .date {
  margin-top: 25px;
  display: block;
}
#newscontent #press .title {
  margin-top: 6px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #265e58;
  font-weight: bold;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #91b01f;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
.table {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.no-breadcrumbs .main_page_title {
  margin-top: 75px;
}
.no-breadcrumbs #breadcrumb {
  display: none;
}
body.newsroom_landing .container {
  padding: 0;
}
body.newsroom_landing #breadcrumb {
  display: none;
}
body.newsroom_landing #asides {
  margin-top: 24px;
}
@media (max-width: 991px) {
  body.newsroom_landing #asides {
    text-align: center;
  }
}
@media (max-width: 991px) {
  body.newsroom_landing #asides img {
    display: inline;
  }
}
body.newsroom_landing #main_container {
  background-color: #F6F6F6;
}
body.newsroom_landing #main_container #main_column {
  background-color: white;
}
body.newsroom_landing h1 {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
  margin-top: 50px;
}
body.newsroom_landing .date {
  font-size: 16px;
}
body.newsroom_landing .title {
  margin-bottom: 3px;
  font-size: 28px;
}
body.newsroom_landing #newscontent {
  margin-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
}
body.newsroom_landing .press-section {
  border-bottom: 10px solid #f6f6f6;
}
body.newsroom_landing .read-more {
  color: #306c65;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  top: -10px;
}
body.newsroom_landing .read-more:hover {
  color: #265e58;
}
body.newsroom_landing .more {
  color: #306c65;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 15px;
  display: block;
}
body.newsroom_landing .more:hover {
  color: #265e58;
}
body.newsroom_landing .download-link {
  color: #265e58;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
body.newsroom_landing .press-item {
  margin-bottom: 40px;
  padding-right: 120px;
  display: inline-block;
}
@media (max-width: 991px) {
  body.newsroom_landing .press-item {
    padding-right: 0px;
  }
}
body.newsroom_landing p,
body.newsroom_landing h4 {
  font-family: 'Roboto' !important;
  font-size: 18px !important;
  margin: 0 0 10px !important;
  font-weight: 300 !important;
  padding: 0 !important;
  line-height: 26px !important;
  max-width: 100% !important;
}
.listblock-landing .main_page_title {
  margin-top: 55px;
}
body#meeting .main_page_title {
  margin-top: 54px;
}
.office-container {
  margin-top: 50px;
  padding: 30px 20px;
  display: inline-block;
  background-image: url('/themes/kilmer/images/offices.jpg');
  background-size: cover;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
}
.office-container h2 {
  margin-left: 15px;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: white;
}
.office-container a {
  color: #91b01f;
}
.office-container a:hover {
  color: white;
}
@media (max-width: 479px) {
  .office-container .office {
    width: 100%;
  }
}
.prt-btn {
  background-color: #306c65;
}
.prt-btn:hover {
  background-color: #91b01f;
}
.issue-image {
  height: 250px;
  padding: 30px;
  background-size: cover;
}
.issue-image h2 {
  color: white;
  font-family: 'Gill Sans Nova W01 Light';
  letter-spacing: 3px;
  text-shadow: 1px 0px 17px black;
}
.issue-body {
  margin-bottom: 80px;
}
body#issues #content #main_container .one_column {
  max-width: 900px;
  margin: 0 auto;
}
body#voting #asides {
  margin-top: 5px;
}
body#voting .vote-btn {
  background-color: #306c65;
  color: white;
  border: none;
}
body#voting .vote-btn:hover {
  color: white;
  background-color: #91b01f;
}
.big-stat-icon {
  background-color: #306c65;
  width: 80px;
  margin-top: 12px;
  height: 80px;
  border-radius: 80px;
  display: inline-block;
  text-align: center;
  font-size: 37px;
  padding-top: 12px;
  padding-left: 10px;
  float: left;
  color: white;
}
body#podcast #asides {
  margin-top: 0px;
}
body#podcast .podcasttitleimage img {
  width: 100%;
}
body#podcast .main_page_title {
  position: absolute;
  top: 276px;
  width: 60%;
  left: 30px;
  color: #fff;
}
@media (max-width: 1329px) {
  body#podcast .main_page_title {
    top: 260px;
  }
}
@media (max-width: 1098px) {
  body#podcast .main_page_title {
    top: 220px;
    width: 70%;
  }
}
@media (max-width: 991px) {
  body#podcast .main_page_title {
    top: 270px;
    width: 60%;
  }
}
@media (max-width: 750px) {
  body#podcast .main_page_title {
    top: 230px;
    width: 70%;
  }
}
@media (max-width: 680px) {
  body#podcast .main_page_title {
    top: 200px;
    width: 80%;
  }
}
@media (max-width: 610px) {
  body#podcast .main_page_title {
    top: 150px;
    width: 80%;
  }
}
@media (max-width: 490px) {
  body#podcast .main_page_title {
    top: 75px;
    width: 80%;
  }
}
@media (max-width: 400px) {
  body#podcast .main_page_title {
    top: 30px;
    width: 100%;
  }
}
body#podcast #bodypodcast {
  margin-top: 15px;
}
body#podcast audio {
  width: 100%;
}
body#podcast #itunesbutton {
  width: 200px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  float: none;
  margin-bottom: 10px;
}
body#podcast #itunesbutton img {
  width: 100%;
}
body#podcast #actualpodcastarea {
  width: 95%;
  margin: 0 auto;
}
body#podcast #actualpodcastarea #showstitle {
  margin-left: 0px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  padding: 10px;
  background-color: #265E58;
}
body#podcast #actualpodcastarea #podcastlist {
  margin-left: 0px;
  overflow-y: scroll;
  height: 300px;
  margin-bottom: 10px;
  display: block;
  border: 5px solid #265E58;
}
body#podcast #actualpodcastarea #downloadpodcast .podcastplayer-holder {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
body#podcast #actualpodcastarea #downloadpodcast .podcastplayer-holder audio {
  width: calc(100% - 120px) !important;
  position: relative;
}
body#podcast #actualpodcastarea #downloadpodcast .podcastplayer-holder #podcastdownloadlink {
  position: absolute;
  top: 10px;
  right: 0px;
}
body#podcast #actualpodcastarea #downloadpodcast .podcasttitle {
  margin: -5px 0px 10px 0px;
  font-size: 14px!important;
  color: #fff;
  background-color: #434343;
  padding: 5px;
  border-radius: 9px;
  border: 1px solid black;
}
body#livewebcast .main_page_title {
  display: none;
}
body#livewebcast iframe .host_title {
  display: none!important;
}
body#guestbook #header {
  display: none;
}
body#guestbook #main_container {
  background-color: #f6f6f6;
  position: relative;
  top: 0em;
  padding-bottom: 3em;
}
body#guestbook .guestbooklogo {
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  left: 0px;
  top: 0px;
  padding: 20px;
  background: #265e58;
}
body#guestbook .guestbooklogo img {
  width: 100%;
  max-width: 300px;
}
body#guestbook .main_page_title {
  display: none;
}
body#guestbook #sam-main {
  padding-top: 6em;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser {
  margin-top: 15px;
}
#multimedia-browser ul.nav-tabs {
  display: none;
}
#multimedia-browser .tab-content {
  margin-top: 30px;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #91b01f;
  color: white;
}
#multimedia-browser .pagination {
  background-color: #306c65;
}



body footer {
  text-align: center;
  background-color: #f3f4f6;
}
body footer .footernav li {
  padding: 30px 35px 20px;
}
body footer .footernav li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #555555;
  font-size: 20px;
  text-transform: uppercase;
}
body footer .footernav li a:hover {
  color: #265e58;
}
.subfooter {
  /*float:left;*/
  margin-top: -10px;
  text-align: center;
  padding: 6px;
  background-color: #265e58;
}
.subfooter a {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}
.subfooter a:hover {
  color: #91b01f;
}
.subfooter li {
  padding: 0px 30px;
}
.subfooter li:first-child {
  padding-right: 30px;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form select {
  height: 50px!important;
}
.hide-on-submit {
  display: none !important;
}
/*



font-family:'CheltenhamITCW01-Light';
font-family:'CheltenhamITCW01-LtItal';
font-family:'Cheltenham ITC W01 Book';
font-family:'CheltenhamITCW01-BookIt';
font-family:'Cheltenham ITC W01 Bold';
font-family:'CheltenhamITCW01-BoldIt';
font-family:'CheltenhamITCW01-Ultra';
font-family:'CheltenhamITCW01-UltIta';
font-family:'CheltenhamITCW01-LightC_812355';
font-family:'CheltenhamITCW01-LightC_812358';
font-family:'CheltenhamITCW01-BookCn_812343';
font-family:'CheltenhamITCW01-BookCn_812346';
font-family:'CheltenhamITCW01-BoldCn_812331';
font-family:'CheltenhamITCW01-BoldCn_812334';
font-family:'CheltenhamITCW01-UltraC_812367';
font-family:'CheltenhamITCW01-UltraC_812370';
font-family:'Gill Sans Nova W15 Cond Light';
font-family:'Gill Sans Nova W01 Light';

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;

*/
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
.roboto {
  font-family: 'Roboto', sans-serif;
}
.roboto-bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.gill {
  font-family: 'Gill Sans Nova W01 Light';
}
.gill-con {
  font-family: 'Gill Sans Nova W15 Cond Light';
}
.roboto-con {
  font-family: 'Roboto Condensed', sans-serif;
}
/*body color and font*/
body {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #555555;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: inherit;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #555555;
}
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #91b01f;
}
select {
  background: #fff;
  width: 55px;
  height: 28px;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
.modal select {
  height: 40px;
}
/*anchor stlyes*/
a {
  color: #91b01f;
}
a:hover {
  text-decoration: none;
  color: #306c65;
}
/*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: #306c65;
  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: #91b01f;
}
/*interior page content default styles */
@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 961px) {
  #header .green-bar .center .congress-years,
  #header .green-bar .center .stats-contianer {
    display: none;
  }
}
@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 .stats-contianer .stat-container .stat-name {
  display: inline-block;
  width: 50%;
  line-height: 3mm;
}
.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;
}
#main_column #kilmer-travels {
  /* extra small devices (phones, less than 768px); no media query since this is the default in bootstrap */
}
#main_column #kilmer-travels #map-container {
  position: relative;
  background-image: url(/themes/kilmer/images/map-background.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 0;
}
@media (min-width: 768px) {
  #main_column #kilmer-travels #map-container {
    padding: 0;
    height: 802px;
  }
}
@media (min-width: 992px) {
  #main_column #kilmer-travels #map-container {
    height: 900px;
  }
}
@media (min-width: 1200px) {
  #main_column #kilmer-travels #map-container {
    height: 1100px;
  }
}
#main_column #kilmer-travels #map-container #map {
  display: none;
  position: absolute;
  background-image: url(/themes/kilmer/images/map.png);
  background-size: 100% 100%;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-container #map {
    display: block;
    left: 90px;
    top: 107px;
    width: 600px;
    height: 632px;
  }
}
@media (min-width: 991px) {
  #main_column #kilmer-travels #map-container #map {
    display: block;
    left: 120px;
    top: 107px;
    width: 684px;
    height: 727px;
  }
}
@media (min-width: 1200px) {
  #main_column #kilmer-travels #map-container #map {
    display: block;
    left: 0px;
    top: 140px;
    width: 846px;
    height: 901px;
  }
}
#main_column #kilmer-travels #map-container #map .circle-icon {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: #91b01f;
  border: 2px solid white;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
#main_column #kilmer-travels #map-container #map .circle-icon:hover {
  position: absolute;
  content: "";
  display: block;
  background-color: #91b01f;
  border: 2px solid white;
  transform: scale(1.6);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
#main_column #kilmer-travels #map-restrictor {
  display: none;
  border: 1px solid #ededed;
  background-color: #ededed;
  font-family: 'Gill Sans Nova W01 Light';
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-restrictor {
    display: block;
    padding: 25px 25px 10px 25px;
  }
}
@media (min-width: 992px) {
  #main_column #kilmer-travels #map-restrictor {
    padding: 20px 60px 10px 60px;
  }
}
@media (min-width: 1200px) {
  #main_column #kilmer-travels #map-restrictor {
    margin: 0 0px 0 0;
  }
}
#main_column #kilmer-travels #map-restrictor h3 {
  display: inline-block;
  color: #636363;
  font-weight: 500;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-restrictor h3 {
    margin: 0 0 20px;
    font-size: 19px;
  }
}
#main_column #kilmer-travels #map-restrictor .form-inline {
  display: inline-block;
  position: relative;
  top: -4px;
}
#main_column #kilmer-travels #map-restrictor .form-inline label {
  color: #6a6a6a;
  font-weight: 200;
  font-family: 'Gill Sans Nova W07 Book';
  margin-left: 20px;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-restrictor .form-inline label {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  #main_column #kilmer-travels #map-restrictor .form-inline label {
    font-size: 18px;
  }
}
#main_column #kilmer-travels #map-restrictor .form-inline input[type="text"],
#main_column #kilmer-travels #map-restrictor .form-inline input[type="email"],
#main_column #kilmer-travels #map-restrictor .form-inline textarea,
#main_column #kilmer-travels #map-restrictor .form-inline select {
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: none;
  height: 42px;
  text-align-last: center;
  font-family: 'Gill Sans Nova W07 Book';
  text-align: center;
  width: 150px;
  padding: 10px;
  vertical-align: baseline;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-restrictor .form-inline input[type="text"],
  #main_column #kilmer-travels #map-restrictor .form-inline input[type="email"],
  #main_column #kilmer-travels #map-restrictor .form-inline textarea,
  #main_column #kilmer-travels #map-restrictor .form-inline select {
    width: 95px;
  }
}
#main_column #kilmer-travels #map-restrictor .form-inline select {
  font-size: 18px;
}
#main_column #kilmer-travels #map-restrictor .form-inline .btn {
  position: relative;
  margin: 0em 0 0 1em;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  color: #265e58;
  text-transform: uppercase;
  letter-spacing: 0px;
  height: 42px;
  font-weight: bold;
  font-family: 'Gill Sans Nova W01 SemiBold';
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-restrictor .form-inline .btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  #main_column #kilmer-travels #map-restrictor .form-inline .btn {
    font-size: 17px;
  }
}
#main_column #kilmer-travels #map-restrictor .form-inline .btn:hover {
  background-color: #91b01f;
  color: white;
}
#main_column #kilmer-travels #map-restrictor .form-inline #map-reset {
  margin: 0;
  padding: 0px 20px;
}
#main_column #kilmer-travels #map-restrictor .form-inline .btn-primary {
  margin: 0 0 0 1em;
  padding: 0.5em 1em;
  background-color: #306c65;
  color: #fff;
  border: 0;
}
#main_column #kilmer-travels #map-listing .map-entry {
  padding: 25px 0;
  font-size: 15px;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-listing .map-entry {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  #main_column #kilmer-travels #map-listing .map-entry {
    padding: 25px 60px;
  }
}
#main_column #kilmer-travels #map-listing .map-entry h3 {
  margin: 0 0 0.1em 0;
  color: #6a6a6a;
}
#main_column #kilmer-travels #map-listing .map-entry h4 {
  margin: 0 0 0.2em 0;
  font: normal normal bold 18px/1 'Helvetica Neue LT W06_55 Roman';
  color: #6a6a6a;
}
#main_column #kilmer-travels #map-listing .map-entry .address-entry,
#main_column #kilmer-travels #map-listing .map-entry .desc-entry {
  margin-top: 1em;
}
#main_column #kilmer-travels #map-listing .map-entry .address-entry a,
#main_column #kilmer-travels #map-listing .map-entry .desc-entry a {
  font-size: 13px;
  font-weight: bold;
}
#main_column #kilmer-travels #map-listing .map-entry .address-entry .map-entry-link,
#main_column #kilmer-travels #map-listing .map-entry .desc-entry .map-entry-link {
  display: none;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-listing .map-entry .address-entry .map-entry-link,
  #main_column #kilmer-travels #map-listing .map-entry .desc-entry .map-entry-link {
    display: block;
  }
}
#main_column #kilmer-travels #map-listing .map-entry + .map-entry {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #dadada;
}
@media (min-width: 767px) {
  #main_column #kilmer-travels #map-listing .visible {
    display: block;
  }
  #main_column #kilmer-travels #map-listing .map-entry + .visible {
    border-top: none;
  }
}
@media (min-width: 767px) {
  #main_column #kilmer-travels .visible {
    display: block;
  }
  #main_column #kilmer-travels .map-entry + .visible {
    border-top: none;
  }
}
.map-title {
  margin-top: 50px;
  margin-bottom: 40px;
}
.popover-map,
.popover {
  width: 250px;
  font-size: 12px;
  z-index: 999999 !important;
  background-color: #35726b !important;
  border: 8px solid white;
  border-radius: 0;
}
.popover-map.top,
.popover.top {
  margin-top: -20px;
}
.popover-map.top > .arrow,
.popover.top > .arrow {
  bottom: -50px;
  margin-left: -20px;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-width: 21px;
}
.popover-map.top > .arrow:after,
.popover.top > .arrow:after {
  border-width: 20px;
  bottom: -19px;
  margin-left: -21px;
}
.popover-map .fade.in,
.popover .fade.in {
  background-color: #306c65;
}
.popover-map .popover-title,
.popover .popover-title {
  margin: 0;
  padding: 18px 14px 7px 14px;
  background: none;
  font-family: 'Gill Sans Nova W07 Book';
  font-size: 22px;
  line-height: 1;
  border: none;
  color: white;
  text-align: center;
}
.popover-map .close,
.popover .close {
  margin-right: 7px;
}
.popover-map .popover-content,
.popover .popover-content {
  font-size: 12px;
  line-height: 1.3em;
  color: white;
}
.popover-map .popover-content .popover-date,
.popover .popover-content .popover-date {
  position: relative;
  top: -5px;
  text-align: center;
}
.popover-map .popover-content a,
.popover .popover-content a {
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.popover-map .popover-content a:hover,
.popover .popover-content a:hover {
  color: #91b01f;
}
.popover-map .popover-content p,
.popover .popover-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3em;
}
.popover-map .popover-content p + p,
.popover .popover-content p + p {
  margin-top: 1em;
}
.popover-map .popover-content .popover-img,
.popover .popover-content .popover-img {
  margin: 0 1em 0 0;
  height: 115px;
  text-align: center;
  overflow: hidden;
}

#pagination-container .pagination-right #showing-page{
  padding: 10px 10px 10px 5px;
}


#popupModal .modal-backdrop.in{
  background-color: rgb(15 30 30 / 75%);
}

#popupModal .modal-dialog {
  max-width: 800px !important;
  margin: 10% auto !important;
}
#popupModal .modal-dialog .modal-content {
  background-color: #265e58;
  padding: 2rem;
}
#popupModal .modal-dialog .modal-content .close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: white;
  opacity: 1;
  padding: 0rem;
  text-shadow: none;
  background-color: #91b01f;
  border-radius: 100%;
  width: 40px;
  text-align: center;
  height: 40px;
}
#popupModal .modal-dialog .modal-content .close:hover {
  background-color: #008456;
}
#popupModal .modal-dialog .modal-content .modal-area {
  border: 2px solid #306c65;
  padding: 1rem;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-header .modal-logoholder {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-header .modal-logoholder .modal-logo {
  width: 100%;
  display: block;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-body .popupbody {
  color: #fff !important;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}
#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder .btn{
  background-color: #91b01f!important;
}

#popupModal .modal-dialog .modal-content .modal-area .modal-btnholder .btn:hover{
  background-color: #008456!important;
}

/*# sourceMappingURL=common.css.map */