/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb {
  height: 25px;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
.page-banner {
  height: 500px;
  position: relative;
  z-index: 2;
  background-size: cover;
  top: -100px;
  background-color: #6C605A;
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .page-banner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .page-banner {
    height: 300px;
    background-position: center;
  }
}
@media (max-width: 497px) {
  .page-banner {
    height: 250px;
  }
}
.page-banner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  display: inline-block;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6e041614', endColorstr='#00e3e4e5', GradientType=0);
  /* IE6-9 */
}
#content.hasbanner {
  margin-top: -100px;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in {
  background-color: #6C605A;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  max-width: 780px;
  z-index: 30000;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  font-size: 70px !important;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch 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"] {
  color: white;
  width: 88%;
  font-size: 78px;
  font-weight: 300;
  border: none;
  padding: 10px;
  float: left;
  background: transparent;
  margin: 0;
  border-bottom: 2px solid white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"]:focus {
  outline: none;
}
#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: #eb4e23;
  border-radius: 7px;
  height: 70px;
  width: 70px;
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #9a2c0e;
}
.alert {
  padding: 0px;
  background-color: #eb4e23;
  border-radius: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
}
.alert span {
  color: white;
  margin-top: 16px;
}
.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #fff;
  margin-top: -1px;
  margin-bottom: -1px;
}
.alert a:hover {
  color: #fff;
}
.alert:hover {
  background-color: #9a2c0e;
  color: #fff;
}
body#home .alert {
  margin-top: 20px;
}
body #header {
  height: 98px;
  width: 100%;
  margin: 0 auto;
  background-color: #6C605A;
  background-image: url(/themes/hirono/images/headerbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 479px) {
  body #header {
    height: 80px;
  }
}
body #header .container {
  position: relative;
  z-index: 3;
}
body #header a.logo-hold {
  width: 40%;
  max-width: 500px;
  min-width: 409px;
  padding: 12px 0px;
  position: absolute;
  display: block;
}
@media (max-width: 1360px) {
  body #header a.logo-hold {
    min-width: 460px;
    width: 460px;
  }
}
@media (max-width: 1200px) {
  body #header a.logo-hold {
    left: 0px;
    margin-left: 25px;
    width: 345px;
    min-width: 345px;
  }
}
@media (max-width: 1020px) {
  body #header a.logo-hold {
    left: 0px;
    margin-top: 5px;
    width: 346px;
    min-width: 346px;
  }
}
@media (max-width: 991px) {
  body #header a.logo-hold {
    min-width: 410px;
    width: 410px;
    margin-top: 5px;
  }
}
@media (max-width: 556px) {
  body #header a.logo-hold {
    min-width: 354px;
    width: 354px;
    margin-top: 5px;
  }
}
@media (max-width: 479px) {
  body #header a.logo-hold {
    min-width: 268px;
    width: 268px;
  }
}
@media (max-width: 375px) {
  body #header a.logo-hold {
    min-width: 257px;
    width: 257px;
    margin-left: 15px!important;
  }
}
@media (max-width: 330px) {
  body #header a.logo-hold {
    min-width: 200px;
    width: 200px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
body#home #header {
  height: 100px;
  width: 100%;
  max-width: 100%;
  background-color: #6C605A;
  background-image: none;
}
body#home #header a.logo-hold {
  position: absolute;
  display: block;
  margin-top: 10px;
  margin-left: 20px;
  padding: 0;
}
@media (max-width: 1088px) {
  body#home #header a.logo-hold {
    width: 333px;
    min-width: 333px;
    margin-top: 23px;
  }
}
@media (max-width: 1020px) {
  body#home #header a.logo-hold {
    left: 0px;
    margin-top: 18px;
  }
}
@media (max-width: 479px) {
  body#home #header a.logo-hold {
    width: 275px;
    min-width: 275px;
    margin-top: 11px;
  }
}
@media (max-width: 385px) {
  body#home #header a.logo-hold {
    width: 200px;
    min-width: 200px;
    margin-top: 15px;
  }
}
body#home #header a.logo-hold img {
  width: 100%;
}
body#home {
  margin-top: -20px;
}
body#home .banner {
  background-image: url(/themes/hirono/images/banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
  width: 100%;
  position: relative;
}
@media (max-width: 1400px) {
  body#home .banner {
    background-position: top center;
  }
}
@media (max-width: 991px) {
  body#home .banner {
    height: 490px;
  }
}
@media (max-width: 767px) {
  body#home .banner {
    height: 400px;
  }
}
@media (max-width: 550px) {
  body#home .banner {
    height: 300px;
  }
}
@media (max-width: 463px) {
  body#home .banner {
    height: 250px;
  }
}
@media (max-width: 400px) {
  body#home .banner {
    height: 230px;
  }
}
@media (max-width: 360px) {
  body#home .banner {
    height: 200px;
  }
}
body#home .banner .container {
  position: relative;
  height: 100%;
}
body#home .banner:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  display: inline-block;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(4, 22, 20, 0.43) 0%, rgba(140, 148, 147, 0) 71%, rgba(227, 228, 229, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6e041614', endColorstr='#00e3e4e5', GradientType=0);
  /* IE6-9 */
}
@media (max-width: 1400px) {
  body#home .banner:before {
    display: none;
  }
}
body#home #header {
  background-color: transparent;
  position: absolute;
  padding: 20px 60px;
  padding: 20px 23px 20px 0px;
  z-index: 2;
}
body#home.bg1 .banner {
  background-image: url(/themes/hirono/images/homepage/1.jpg);
}
body#home.bg2 .banner {
  background-image: url(/themes/hirono/images/homepage/2.jpg);
}
body#home.bg3 .banner {
  background-image: url(/themes/hirono/images/homepage/3.jpg);
}
body#home.bg4 .banner {
  background-image: url(/themes/hirono/images/homepage/4.jpg);
}
body#home.bg5 .banner {
  background-image: url(/themes/hirono/images/homepage/5.jpg);
}
body#home.bg6 .banner {
  background-image: url(/themes/hirono/images/homepage/6.jpg);
}
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;
  display: inline-block;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  padding: 10px 10px !important;
}
@media (max-width: 1200px) {
  body .navbar .nav-pills > li a {
    padding: 10px 7px !important;
    font-size: 16px;
  }
}
body .navbar .nav-pills > li.dropdown:hover a {
  border-radius: 5px 5px 0px 0px !important;
  padding: 10px 10px 15px !important;
}
body .navbar .nav-pills > li:last-child {
  background-color: #eb4e23;
  border-radius: 5px;
  margin-left: 20px;
  padding: 4px;
  margin-right: 0px;
}
body .navbar .nav-pills > li:last-child a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 19px;
  border-bottom: none !important;
  color: #fff !important;
}
body .navbar .nav-pills > li:last-child:hover a,
body .navbar .nav-pills > li:last-child.selected a {
  background-color: transparent;
  color: #6C605A;
}
body .navbar .nav-pills > li .dropdown-menu {
  border: 0px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0px 5px 5px 5px;
  top: 49px;
  overflow: hidden;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  background-color: transparent;
  color: #000;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #6C605A;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:nth-child(3) .dropdown-menu {
  border-radius: 5px 0px 5px 5px;
  right: 0px;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #000000;
  background-color: rgba(255, 255, 255, 0.9);
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
}
@media (max-width: 330px) {
  body .navbar .togglemenu {
    font-size: 19px;
    margin-left: 5px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #fff;
  font-size: 21px;
  position: relative;
  display: inline-block !important;
  font-size: 19px;
}
@media (max-width: 330px) {
  body .navbar .srchbuttonmodal {
    font-size: 17px;
  }
}
body .navbar .srchbuttonmodal:hover span {
  color: #eb4e23;
}
body .navbar .srchbutton {
  color: #fff;
  display: none !important;
}
body .navbar .srchbutton:hover span {
  color: #eb4e23;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  background-color: #eb4e23;
  border-radius: 7px;
  height: 70px;
  width: 70px;
  margin-top: 40px;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header {
  padding: 0 20px;
}
#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: white;
  font-size: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
@media (max-width: 479px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
    font-size: 32px;
  }
}
@media (max-width: 320px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
    font-size: 25px;
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 17px 0;
  float: right;
}
@media (max-width: 1199px) {
  #header .nav-hold.right-slide-search,
  #header .nav-hold.right-search-modal {
    right: 0px;
    position: absolute;
    margin-right: 25px;
  }
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 15px;
  z-index: 2;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #6C605A;
  color: #fff;
  border-bottom: 3px solid #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #fff;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #6C605A;
  color: #fff;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
.slideshow-element {
  width: 100%;
  opacity: 0;
  z-index: 1;
  transition: 1.5s opacity ease-in;
}
.slideshow-element#contact {
  padding: 11px;
  line-height: 24px;
}
@media (max-width: 600px) {
  .slideshow-element#contact {
    padding-top: 18px;
  }
}
.slideshow-element#contact a {
  font-size: 24px !important;
}
.show {
  opacity: 1;
  z-index: 2;
}
.footer-bar {
  background-color: #4e403a;
  height: 54px;
  bottom: 0px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-bar {
    height: auto;
  }
}
.footer-bar .footer-links {
  padding-right: 15px;
}
.footer-bar .footer-links a {
  color: white;
  font-size: 16px;
  padding: 0px 11px;
  font-weight: bolder;
}
.footer-bar .footer-links a:hover {
  color: #eb4e23;
}
.footer-bar .footer-links a + a {
  border-left: 1px solid white;
}
.social {
  display: inline-block;
  padding-left: 15px;
  font-size: 17px;
  color: white;
}
@media (max-width: 767px) {
  .social {
    display: block;
  }
}
.social a {
  color: white;
  padding: 0 10px;
}
.social a:hover {
  color: #eb4e23;
}
@media (max-width: 767px) {
  body#home {
    height: 103%;
  }
}
body#home .bottom {
  position: absolute;
  z-index: 3;
  bottom: 65px;
  text-align: center;
  background-color: rgba(78, 64, 58, 0.8);
  width: 97%;
}
@media (max-width: 600px) {
  body#home .bottom {
    height: 110px;
  }
}
@media (max-width: 479px) {
  body#home .bottom {
    bottom: 75px;
    height: 100px;
  }
}
body#home .bottom .centered {
  width: 98%;
  margin: 0 auto;
  padding: 26px 15px;
  color: white;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
@media (max-width: 479px) {
  body#home .bottom .centered {
    padding: 10px;
    width: 100%;
  }
}
body#home .bottom .centered a {
  color: #eb4e23;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #eb4e23;
}
@media (max-width: 479px) {
  body#home .bottom .centered a {
    white-space: nowrap;
  }
}
body#home .bottom .centered a:hover {
  color: white;
  border-color: white;
}
body#home .bottom .centered h2 {
  font-size: 26px;
  color: #fff;
  margin-top: 0px;
  display: inline-block;
}
@media (max-width: 479px) {
  body#home .bottom .centered h2 {
    font-size: 20px;
  }
}
body#home .bottom .centered h4 {
  line-height: 30px;
  color: #fff;
}
body#home .footer-bar {
  position: relative;
}
body#home #press h2 {
  margin-top: 10px;
  font-size: 26px;
  line-height: 27px;
  color: #fff;
  display: inline-block;
}
@media (max-width: 479px) {
  body#home #press h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 479px) {
  body#home #press h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
body#home #press h2 a {
  color: white;
  text-decoration: none;
  border-bottom: 0;
  text-transform: none;
}
@media (max-width: 479px) {
  body#home #press h2 a {
    white-space: normal;
  }
}
body#home #press h2 a:hover {
  color: #eb4e23;
}
body#home .added-content {
  background-color: #f0efee;
  padding: 60px 0 70px;
}
body#home .added-content .section-header {
  background-color: #6C605A;
  margin: 0;
  padding: 18px 22px;
  color: white;
  position: relative;
}
body#home .added-content .section-header h2 {
  font-size: 22px;
}
body#home .added-content .section-header a {
  color: white;
}
body#home .added-content #twitter-area iframe {
  margin-top: -46px !important;
}
@media (max-width: 1300px) {
  body#home .added-content #twitter-area iframe {
    height: 241px !important;
  }
}
body#home .added-content .social-media {
  list-style: none;
  padding: 0;
  text-align: center;
  padding: 10px 0;
  position: relative;
  margin-top: -54px;
  background-color: white;
  border: 1px solid #f0efee;
}
body#home .added-content .social-media li {
  display: inline-block;
}
body#home .added-content .social-media li a {
  color: white;
  background-color: #6c605a;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 25px;
  text-align: center;
  padding-top: 4px;
}
body#home .added-content .social-media li a:hover {
  background-color: #eb4e23;
}
body#home .added-content .hide-p p {
  font-size: 0px;
}
body#home footer {
  display: none;
}
body#home .navbar .nav-pills > li:-child a {
  font-size: 25px;
}
.header-icon {
  background-color: #eb4e23;
  color: white;
  width: 67px;
  height: 67px;
  border-radius: 67px;
  text-align: center;
  font-size: 36px;
  padding-top: 3px;
  position: relative;
  top: -29px;
  display: inline-block;
  border: 6px solid white;
}
@media (max-width: 479px) {
  .header-icon {
    padding-top: 9px;
  }
}
.header-icon:hover {
  background-color: #9a2c0e;
  color: white;
}
.banner {
  background-color: #6C605A;
  background-size: cover;
}
@media (max-width: 644px) {
  .banner {
    height: 300px;
  }
}
@media (max-width: 400px) {
  .banner {
    height: 230px;
  }
}
@media (max-width: 360px) {
  .banner {
    height: 200px;
  }
}
.twitter-area {
  background-color: #F0EFEE;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .twitter-area {
    margin-top: 50px;
  }
}
.twitter-area .tweet {
  max-width: 700px;
  margin: 0 auto;
  font-size: 27px;
}
.twitter-area .interact {
  margin-top: 30px;
}
.twitter-area .interact a {
  color: #6C605A;
  margin: 0 40px;
}
.twitter-area .interact a:hover {
  color: #eb4e23;
}
.instagram-area {
  text-align: center;
  padding-bottom: 50px;
}
.instagram-area #instamedia {
  text-align: center;
}
.instagram-area #instamedia a {
  display: inline-block;
  margin: 15px;
}
.instagram-area #instamedia a .img {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  .instagram-area #instamedia a .img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .instagram-area #instamedia a .img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 560px) {
  .instagram-area #instamedia a .img {
    width: 250px;
    height: 250px;
  }
}
.instagram-area .header-icon {
  top: 47px;
}
.press-item {
  padding: 70px 0px 90px;
}
@media (max-width: 767px) {
  .press-item {
    padding: 40px 0px 0px;
  }
}
.press-item h2 {
  margin-top: 0px;
  font-size: 22px;
  line-height: 37px;
}
@media (max-width: 991px) {
  .press-item h2 {
    font-size: 20px;
    line-height: 34px;
  }
}
.press-item a {
  color: #6C605A;
}
.press-item a:hover {
  color: #eb4e23;
}
.press-item .date {
  font-size: 16px;
}
.featured-video {
  padding-bottom: 50px;
  color: white;
  background-color: #4e403a;
}
@media (max-width: 644px) {
  .featured-video {
    height: auto;
  }
}
.featured-video .event-video,
.featured-video .multi-video {
  position: relative;
  padding-top: 15px;
  padding-bottom: 20px;
}
.featured-video .event-video img,
.featured-video .multi-video img {
  width: 40%;
}
@media (max-width: 644px) {
  .featured-video .event-video img,
  .featured-video .multi-video img {
    width: 60%;
    margin: 0 auto;
  }
}
.featured-video .event-video iframe,
.featured-video .multi-video iframe {
  position: absolute;
  right: 0px;
  top: 25px;
  width: 50% !important;
  height: 300px !important;
}
@media (max-width: 644px) {
  .featured-video .event-video iframe,
  .featured-video .multi-video iframe {
    position: relative;
    width: 90% !important;
  }
}
@media (max-width: 644px) {
  .featured-video .event-video iframe,
  .featured-video .multi-video iframe {
    height: 230px !important;
  }
}
@media (max-width: 500px) {
  .featured-video .event-video iframe,
  .featured-video .multi-video iframe {
    height: 180px !important;
  }
}
.featured-video .event-video #sam-main,
.featured-video .multi-video #sam-main {
  margin-top: 13px;
}
.featured-video .event-video p,
.featured-video .multi-video p {
  width: 35%;
  margin-left: 35px;
  line-height: 30px;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 1200px) {
  .featured-video .event-video p,
  .featured-video .multi-video p {
    width: 40%;
    margin-left: 12px;
  }
}
@media (max-width: 700px) {
  .featured-video .event-video p,
  .featured-video .multi-video p {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 644px) {
  .featured-video .event-video p,
  .featured-video .multi-video p {
    width: 100%;
  }
}
.featured-video .event-video .link-container,
.featured-video .multi-video .link-container {
  width: 40%;
  text-align: center;
  position: absolute;
  bottom: -3px;
}
@media (max-width: 644px) {
  .featured-video .event-video .link-container,
  .featured-video .multi-video .link-container {
    position: relative;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: 10px;
    width: auto;
  }
}
.featured-video .event-video a.see,
.featured-video .multi-video a.see {
  position: absolute;
  bottom: -31px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  background: #eb4e23;
  color: white;
  left: 0px;
  right: 0;
  font-size: 16px;
  display: block;
  padding: 10px 15px;
  border-radius: 6px;
  width: 231px;
  margin: 0 auto;
}
@media (max-width: 644px) {
  .featured-video .event-video a.see,
  .featured-video .multi-video a.see {
    position: relative;
    margin: 15px auto;
    bottom: 0;
  }
}
.featured-video .event-video a.see:hover,
.featured-video .multi-video a.see:hover {
  background-color: #eb4e23;
  color: white;
}
@media (max-width: 644px) {
  .multi-video {
    padding: 20px;
  }
}
.multi-video h2 {
  width: 40%;
  text-align: center;
}
@media (max-width: 644px) {
  .multi-video h2 {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .multi-video h2 {
    width: 90%;
  }
}
.multi-video h2 a {
  color: white;
}
.multi-video h2 a:hover {
  color: #eb4e23;
}
@media (max-width: 644px) {
  .multi-video iframe {
    top: 0 !important;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
/*
default interior styles

commonly made fixes / tweaks
*/
#main_container {
  padding-bottom: 50px;
  padding-right: 60px;
  padding-left: 60px;
  overflow: auto;
}
@media (max-width: 991px) {
  #main_container {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  #main_container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#main_container #main_column {
  padding-top: 15px;
}
.modal-backdrop {
  z-index: 1;
}
.modal-backdrop.fade.in {
  background-color: #6C605A;
}
#filtermodal .modal-backdrop {
  z-index: 1;
}
#filtermodal .modal-backdrop.fade.in {
  background-color: #6C605A;
}
#filtermodal .modal-dialog .modal-content .modal-body label {
  display: none;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
li.previous {
  margin-right: 10px;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #6C605A;
}
.main_page_title {
  margin-bottom: 30px;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons {
  margin-bottom: 30px;
}
#filterbuttons a {
  background-color: transparent;
  color: #6C605A;
  padding-left: 0px;
  padding-right: 20px;
}
#filterbuttons a:hover {
  color: #342f2c;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #eb4e23;
  font-weight: bold;
  color: white;
  transition: 0.3s background-color ease-in;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #9a2c0e;
}
body#help-blocks #listblocks {
  margin-top: 40px;
}
body#help-blocks #listblocks li {
  margin-bottom: 30px;
}
body#help-blocks #listblocks .block {
  display: block;
  height: auto;
  background-color: #fff;
  margin-bottom: 0px;
}
body#help-blocks #listblocks .block a {
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #6C605A;
  color: white;
  transition: 0.3s background-color ease-in;
  padding: 0px;
  cursor: pointer;
  min-height: 490px;
}
@media (max-width: 1200px) {
  body#help-blocks #listblocks .block a {
    min-height: 545px;
  }
}
@media (max-width: 991px) {
  body#help-blocks #listblocks .block a {
    min-height: 490px;
  }
}
@media (max-width: 767px) {
  body#help-blocks #listblocks .block a {
    min-height: auto;
  }
}
body#help-blocks #listblocks .block a .media-heading {
  padding: 20px;
  color: #6C605A;
  width: 100%;
  float: none;
  top: 0px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
}
body#help-blocks #listblocks .block a .media-heading.withimg {
  left: 0px;
}
body#help-blocks #listblocks .block a img {
  float: none;
}
body#help-blocks #listblocks .block a:hover {
  background-color: #eb4e23;
}
body#help-blocks #listblocks .block a:hover img {
  opacity: 0.5;
}
body#help-blocks #listblocks .block a:hover .desc {
  color: #fff;
}
body#help-blocks #listblocks .block a:hover .media-heading {
  color: #fff;
}
body#help-blocks #listblocks .block a .desc {
  padding: 0px 20px 20px 20px;
  color: #6C605A;
  font-weight: normal;
  min-height: auto;
}
body#help-blocks #listblocks .block a .desc p {
  line-height: 28px;
  font-size: 18px;
}
legend {
  color: #6C605A;
}
#grey-column {
  position: relative;
}
#typenav {
  float: none;
  padding: 60px 17px;
}
@media (max-width: 1280px) {
  #typenav {
    padding: 60px 10px;
  }
}
@media (max-width: 1225px) {
  #typenav {
    padding: 60px 0px;
  }
}
#typenav li a {
  color: #000;
  text-align: center;
  padding: 10px 50px;
}
@media (max-width: 991px) {
  #typenav li a {
    padding: 10px 20px;
    font-size: 16px;
  }
}
#typenav li.active a {
  color: white;
  background-color: #6C605A;
  border-radius: 8px !important;
}
#typenav.affix {
  top: 0;
}
#asides {
  padding: 0 20px;
  padding-top: 85px;
  background-color: #F0EFEE;
}
@media (max-width: 991px) {
  #asides {
    padding: 0px;
  }
}
@media (max-width: 991px) {
  #asides .amend-textarea {
    padding: 20px 30px 0px;
  }
}
#asides h1 {
  font-size: 32px;
}
#asides ul {
  line-height: 35px;
}
#asides:before {
  width: 100%;
  content: '';
  display: inline-block;
  height: 400px;
  position: absolute;
  top: -300px;
  background: #F0efee;
  left: -1px;
  z-index: -1;
}
@media (max-width: 991px) {
  #asides:before {
    height: 0;
  }
}
#asides:after {
  width: 100%;
  content: '';
  display: inline-block;
  height: 15000px;
  position: absolute;
  bottom: -14900px;
  background: #F0efee;
  left: -1px;
  z-index: -1;
}
body#newsroom-landing .news-block {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  display: inline-block;
  color: #6C605A;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  padding: 20px 30px;
}
body#newsroom-landing .news-block:hover {
  background-color: #eb4e23;
  color: white;
}
body#newsroom-landing #newscontent {
  margin-top: 50px;
  height: auto;
}
body#newsroom-landing #newscontent .social-row {
  margin: 10px auto;
  position: relative;
}
body#newsroom-landing #newscontent .newsroombox {
  height: auto;
}
body#newsroom-landing #newscontent .newsroombox .carousel {
  height: 330px;
  overflow: hidden;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-inner .item {
  text-align: center;
  padding: 30px 40px;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-inner .item .title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 45px;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-inner .item .title a {
  color: #6C605A;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-inner .item .title a:hover {
  color: #342f2c;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-inner .item p {
  line-height: 30px;
  font-size: 24px;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-control.left,
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-control.right {
  font-size: 60px;
  background-image: none;
  text-shadow: none;
  color: #eb4e23;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-control.right i {
  position: absolute;
  top: 50%;
  right: 0;
}
body#newsroom-landing #newscontent .newsroombox .carousel .carousel-control.left i {
  position: absolute;
  top: 50%;
  left: 0;
}
body#newsroom-landing #newscontent .newsroombox #facebook-carousel .carousel-inner .item a {
  font-size: 24px;
  color: #6C605A;
}
body#newsroom-landing #newscontent .newsroombox #facebook-carousel .carousel-inner .item a:hover {
  color: #342f2c;
}
body#newsroom-landing #newscontent .newsroombox #youtube-carousel {
  height: auto;
}
body#newsroom-landing #newscontent .newsroombox #twitter-carousel .carousel-inner .item {
  font-size: 24px;
}
body#newsroom-landing #newscontent .newsroombox #twitter-carousel .carousel-inner .item a {
  font-size: 24px;
}
body#newsroom-landing #newscontent .sectiontitle {
  display: block;
  padding: 15px;
  margin: 20px auto;
  border: 1px solid #eb4e23;
  text-align: center;
}
body#newsroom-landing #newscontent .sectiontitle h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #eb4e23;
}
body#newsroom-landing #newscontent .sectiontitle:hover {
  background-color: #eb4e23;
}
body#newsroom-landing #newscontent .sectiontitle:hover h2 {
  color: #fff;
}
body.no-title .main_page_title {
  display: none;
}
body#multimedia #main_container {
  padding-right: 0;
  padding-left: 0;
}
body.press-release .main_page_title {
  margin-top: 0;
}
body.press-release .date {
  margin-top: 20px;
  display: inline-block;
}
body.news-article .main_page_title {
  margin-bottom: 0;
  margin-top: 0;
}
body.news-article .source {
  margin-bottom: 30px;
}
body.news-article .dateline {
  margin-top: 20px;
  display: inline-block;
}
body#biography #main_container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  body#biography #main_container {
    padding-bottom: 0;
  }
}
body#biography #rightside {
  padding-right: 60px;
  padding-left: 50px;
}
body#biography #rightside .biolinetop {
  border-top: 15px solid #716661;
  width: 100%;
  max-width: 165px;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}
body#biography #rightside .biolinebottom {
  border-bottom: 15px solid #716661;
  width: 100%;
  max-width: 165px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
body#biography #rightside .bottomicon {
  background-image: url(/themes/hirono/images/biobottomicon.jpg);
  background-size: contain;
  height: 100px;
  background-repeat: no-repeat;
  width: 100%;
}
@media (max-width: 991px) {
  body#biography #rightside {
    padding-right: 15px;
    padding-left: 15px;
  }
}
body#biography #leftside {
  margin-top: -45px;
  padding-top: 45px;
  background-color: #f0efee;
}
body#biography #leftside .leftpod .fighting {
  margin-left: -15px;
  margin-right: -15px;
}
body#biography #leftside .leftpod .fighting a {
  background-color: #6C605A;
  color: white;
  padding: 35px;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
body#biography #leftside .leftpod .fighting a:hover {
  background-color: #342f2c;
}
body#biography #leftside .leftpod .amend-textarea {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  body#biography #leftside .leftpod .amend-textarea {
    margin-bottom: 0;
  }
}
body#biography #leftside .leftpod .amend-textarea strong {
  color: #6C605A;
}
body#biography #leftside .leftpod .amend-textarea li {
  margin-bottom: 10px;
}
body#biography #leftside .leftpod #sam-fastfacts {
  padding-left: 50px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  body#biography #leftside .leftpod #sam-fastfacts {
    padding-right: 15px;
    padding-left: 15px;
  }
}
body#biography #leftside .leftpod #sam-committeeassignments {
  padding-left: 50px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  body#biography #leftside .leftpod #sam-committeeassignments {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
  }
}
body#biography #leftside .leftpod #sam-committeeassignments ul li {
  margin-bottom: 30px;
}
body#biography #leftside .leftpod #sam-committeeassignments ul li a {
  color: #eb4e23;
}
body#biography #leftside .leftpod #sam-committeeassignments ul li a:hover {
  color: #342f2c;
}
body#biography #leftside .leftpod #sam-officialphoto {
  margin-left: -15px;
  margin-right: -15px;
}
body#biography #leftside .leftpod #sam-officialphoto .downloadbutton a {
  background-color: #6C605A;
  color: white;
  padding: 35px;
  font-size: 28px;
  border-radius: 0;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
body#biography #leftside .leftpod #sam-officialphoto .downloadbutton a:hover {
  background-color: #342f2c;
}
body.no-bottom .bottom {
  display: none;
}
body#stories {
  background-color: #e2dfde;
}
body#stories .bottom {
  display: none;
}
body#stories .stories-logo {
  margin-top: -100px;
}
@media (max-width: 767px) {
  body#stories .stories-logo {
    margin-top: 20px;
  }
}
body#stories #content {
  position: relative;
}
body#stories .main_page_title {
  display: none;
}
body#stories svg {
  width: 95%;
  margin: 0 auto;
  display: block;
}
body#stories svg path {
  cursor: pointer;
}
body#stories svg path:hover {
  fill: #eb4e23;
}
body#stories svg g:before {
  content: 'Nihue';
  display: inline-block;
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767px) {
  body#stories svg {
    display: none;
  }
}
body#stories .map-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 70px 50px;
  background-color: rgba(226, 223, 222, 0.6);
  display: none;
}
body#stories .map-popup .close-button {
  position: relative;
  top: -42px;
  border: none;
  background-color: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
body#stories .map-popup .close-button:hover {
  color: #ccc7c5;
}
body#stories .popover {
  right: 0 !important;
  left: 0 !important;
  margin: 0 auto !important;
  top: 30% !important;
  width: 430px;
  max-width: 430px;
  padding: 27px 15px 35px;
  border: 0;
}
body#stories .popover .arrow {
  display: none;
}
body#stories .popover .close {
  margin-right: 7px;
  position: absolute;
  bottom: 0;
  opacity: 1;
  background-color: #E9E8E6;
  color: #796E69;
  width: 100%;
  border: 0;
  padding: 7px;
  margin-left: -15px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
body#stories .popover .close:hover {
  background-color: #ccc7c5;
}
body#stories .popover .desc iframe {
  width: 100%;
  height: 210px;
  margin-top: 20px;
}
.flip-container {
  perspective: 1000;
  margin-bottom: 30px;
}
/* flip the pane when hovered */
.flip-container:hover .flipper,
.flip-container.hover .flipper {
  transform: rotateY(180deg);
}
.flip-container,
.front,
.back {
  width: 100%;
  height: 350px;
}
@media (max-width: 1300px) {
  .flip-container,
  .front,
  .back {
    height: 375px;
  }
}
#content {
  max-width: 1330px;
  margin: 0 auto;
}
/*#main_container{
	padding: 0 65px;
}*/
/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
.mobile-priority {
  padding: 20px 54px;
  background-color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
}
@media (max-width: 330px) {
  .mobile-priority {
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.85);
  }
}
.mobile-priority p {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 330px) {
  .mobile-priority p {
    font-size: 15px;
    line-height: 22px;
  }
}
.mobile-priority h2 {
  font-size: 25px;
}
@media (max-width: 330px) {
  .mobile-priority h2 {
    font-size: 22px;
  }
}
/* hide back of pane during swap */
.front,
.back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
#front h2 {
  padding: 86px 20px;
  color: white;
  line-height: 43px;
  letter-spacing: 2px;
  font-weight: 700;
}
#front h2.long {
  padding: 58px 15px;
}
#back p {
  font-size: 21px;
  padding: 30px 15px;
}
#back.gray p {
  font-size: 20px;
  padding: 15px 15px;
  line-height: 32px;
}
.gray {
  background-color: #6c605a;
}
/* front pane, placed above back */
.front {
  z-index: 3;
  overflow: hidden;
  -moz-overflow: hidden;
  /* for firefox 31 */
  display: table;
  transform: rotateY(0deg);
}
.front .priority-block {
  display: table-cell;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.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: #6c605a;
  margin: 0;
  z-index: 6;
  height: 350px;
  padding: 0 47px;
  line-height: 40px;
  position: relative;
  padding-top: 40%;
}
@media (max-width: 1300px) {
  .front .priority-block .filter h2 {
    height: 375px;
  }
}
.front .priority-block .filter h2#filter {
  background-color: rgba(255, 255, 255, 0.78);
}
.front .priority-block img {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.block-container {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.block-container #listblocks .block {
  /*background-color: black;
			color: white;*/
}
.block-container #listblocks .block a {
  background-color: #6c605a;
}
.block-container #listblocks .block a:hover {
  background-color: #6c605a;
}
.block-container #listblocks .block .desc {
  font-size: 18px;
}
/* back, initially hidden pane */
.back {
  transform: rotateY(180deg);
  padding: 20px;
  z-index: 2;
  background-color: #6c605a;
  padding-top: 0;
}
.back p {
  margin-bottom: 15px;
}
.back h3 {
  font-size: 24px;
  color: white;
  display: none;
}
.back p {
  color: white;
  font-size: 16px;
  line-height: 24px;
}
.block-container {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.block-container #listblocks .block {
  /*background-color: black;
			color: white;*/
}
.block-container #listblocks .block a {
  background-color: #eb4e23;
}
.block-container #listblocks .block a:hover {
  background-color: #eb4e23;
}
.block-container #listblocks .block .desc {
  font-size: 18px;
}
/* back, initially hidden pane */
.back {
  transform: rotateY(180deg);
  padding: 20px;
  z-index: 2;
}
.back h3 {
  font-size: 24px;
  color: white;
  display: none;
}
.back p {
  color: white;
  font-size: 16px;
  line-height: 24px;
}
body.stretch-center #content {
  min-height: 70vh;
  display: table;
}
@media (max-width: 767px) {
  body.stretch-center #content {
    width: 80%;
  }
}
body.stretch-center #main_container {
  display: table-cell;
  vertical-align: middle;
}
body.stretch-center #main_column {
  padding-bottom: 30vh;
}
@media (max-width: 767px) {
  body.stretch-center #main_column {
    padding-bottom: 2vh;
  }
}
body.stretch {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
body.stretch #header {
  background: none;
}
body.stretch footer .bottom {
  display: none;
}
body.stretch {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
body.stretch .stretch-bg {
  height: 100%;
  background-repeat: no-repeat;
  width: 100%;
  position: fixed;
  background-size: cover;
}
body.stretch #header {
  background: none;
}
body.stretch footer .bottom {
  display: none;
}
@media (max-width: 991px) {
  body.stretch .footer-bar {
    position: relative !important;
  }
}
body.stretch #main_container .col-sm-6,
body.stretch #main_container .col-sm-7,
body.stretch #main_container .col-sm-5,
body.stretch #main_container .col-sm-12 {
  padding-left: 12px;
  padding-right: 12px;
}
html {
  height: 100%;
}
body#help .main_page_title {
  display: none;
}
html {
  height: 100%;
}
.block-btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  color: #6C605A;
  padding: 0 20px;
  display: table;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.block-btn span {
  display: table-cell;
  vertical-align: middle;
}
.block-btn:hover {
  background-color: #eb4e23;
  color: white;
}
.block-btn.skinny {
  height: 80px;
}
.block-btn.skinny.modified {
  height: 100px;
}
.block-btn.fat {
  height: 180px;
}
.block-btn.fat.modified {
  height: 220px;
}
.block-btn.facebook,
.block-btn.twitter {
  background-color: rgba(78, 64, 58, 0.9);
  color: white;
  text-transform: none;
  padding: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.block-btn.facebook a,
.block-btn.twitter a {
  color: white;
}
.block-btn.facebook a:hover,
.block-btn.twitter a:hover {
  color: #eb4e23;
}
.block-btn.stories-btn {
  background-color: #eb4e23;
  color: white;
  text-transform: none;
  height: 220px;
}
.block-btn.stories-btn h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 479px) {
  .block-btn.stories-btn h2 {
    font-size: 32px;
  }
}
@media (max-width: 320px) {
  .block-btn.stories-btn h2 {
    font-size: 27px;
  }
}
.block-btn.stories-btn h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  padding: 8px 60px;
  line-height: 25px;
  font-size: 18px;
}
@media (max-width: 479px) {
  .block-btn.stories-btn h3 {
    padding: 8px 0px;
  }
}
.block-btn.stories-btn img {
  display: inline-block;
  width: 50px;
}
.block-btn.stories-btn:hover {
  color: white;
  background-color: #342f2c;
}
.added-margin {
  margin-top: 100px;
}
body#contact .stretch-bg {
  background-image: url('/themes/hirono/images/boat.jpg');
  background-position: bottom;
}
body#contact .main_page_title {
  display: none;
}
body#contact #breadcrumb {
  display: none;
}
body#contact #sam-main {
  color: white;
}
body#contact .footer-bar {
  position: relative !important;
}
body#newsroom-landing .stretch-bg {
  background-image: url('/themes/hirono/images/waterfall.jpg');
}
@media (max-width: 991px) {
  body#office .office {
    padding: 40px 0px !important;
  }
}
body#priorities .stretch-bg {
  background-image: url('/themes/hirono/images/fighting.jpg');
  background-position: 31% top;
}
body#priorities .main_page_title {
  display: none;
}
body#priorities #breadcrumb {
  display: none;
}
body#priorities .footer-bar {
  position: relative !important;
}
body#priorities #main_column {
  padding-bottom: 2vh;
}
body#priorities #priobutton a {
  background-color: #4e403a;
}
body#priorities #priobutton a:hover {
  background-color: #342f2c;
}
.section-header {
  text-align: center;
  background-image: url(/themes/hirono/images/biobottomicon.jpg);
  background-position: center center;
  margin-bottom: 35px;
}
.section-header a {
  padding: 10px;
  background-color: white;
  color: #6C605A;
}
.section-header a:hover {
  color: #eb4e23;
}
body#news #breadcrumb {
  display: none;
}
body#news #main_container {
  width: 100%;
  max-width: 1500px;
  padding-right: 0;
  padding-bottom: 0;
}
body#news #main_column {
  padding-top: 0px;
}
body#news #main_column > .row {
  background-color: #F0EFEE;
}
body#news #main_column > .row .col-sm-9 {
  background-color: white;
  padding-top: 40px;
  padding-right: 50px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  body#news #main_column > .row .col-sm-9 {
    padding-left: 45px;
  }
}
body#meeting .mobile-priority {
  background-color: #F0EFEE;
  color: #6C605A;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  height: 95px;
}
body#meeting .mobile-priority h2 {
  margin: 0;
}
body#meeting .mobile-priority:hover {
  background-color: #6C605A;
  color: white;
}
body#meeting .around {
  background-color: #eb4e23;
  color: white;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  height: 95px;
  text-align: center;
  height: 115px;
}
body#meeting .around h2 {
  font-size: 40px;
}
@media (max-width: 767px) {
  body#meeting .around h2 {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  body#meeting .around h2 {
    font-size: 22px;
  }
}
body#meeting .around img {
  width: 100px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -70px;
}
@media (max-width: 550px) {
  body#meeting .around img {
    width: 50px;
    margin-left: -50px;
  }
}
@media (max-width: 320px) {
  body#meeting .around img {
    display: none;
  }
}
body#meeting .around:hover {
  background-color: #9a2c0e;
}
#listblocks .block {
  background-color: transparent;
}
#listblocks .block:hover {
  background-color: transparent;
}
#listblocks .block.noimg a {
  background-color: #F0EFEE;
  color: #6C605A;
  border-radius: 12px;
}
#listblocks .block.noimg a:hover {
  background-color: #6C605A;
  color: white;
}
.btn-block.active {
  background-color: #9a2c0e !important;
}
body#issue .one_column .breakout {
  border: 0px;
}
body#issue .one_column .breakout #issueFeed > li {
  border: 0;
  margin: 0;
  padding: 20px 0;
}
body#issue .issuebody ul li {
  margin-bottom: 25px;
  line-height: 35px;
}
#press .main_page_title {
  margin-top: 7px;
}
#press > .date.black {
  display: inline-block;
  margin-top: 30px;
}
@media (max-width: 767px) {
  body#fedresources blockquote h2 {
    font-size: 18px;
    text-align: left!important;
  }
}
@media (max-width: 767px) {
  body#fedresources #sam-main p {
    font-size: 16px;
  }
}
body#fedresources #fedresults #accordion .panel {
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
}
body#fedresources #fedresults #accordion .panel .panel-heading {
  background-color: transparent;
  border-bottom: 1px solid #eb4e23;
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading {
    border: 1px solid #eb4e23;
    background-color: #eb4e23;
    border-radius: 10px;
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading:hover {
    border: 1px solid #9a2c0e;
    background-color: #9a2c0e;
  }
}
body#fedresources #fedresults #accordion .panel .panel-heading .panel-title {
  font-size: 24px;
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-title {
    color: #fff;
    text-align: center;
  }
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-title a {
    color: #fff;
  }
}
body#fedresources #fedresults #accordion .panel .panel-heading .panel-title .linktorule {
  float: right;
  position: relative;
  top: -5px;
}
body#fedresources #fedresults #accordion .panel .panel-heading .panel-title .linktorule a {
  color: #eb4e23;
  font-size: 16px;
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-collapse .panel-body {
    font-size: 16px;
    padding: 15px 0px;
  }
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-collapse .panel-body h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-collapse .panel-body a {
    word-wrap: break-word;
  }
}
body#fedresources #fedresults #accordion .panel .panel-heading .panel-collapse .panel-body .btn {
  font-size: 18px;
}
@media (max-width: 520px) {
  body#fedresources #fedresults #accordion .panel .panel-heading .panel-collapse .panel-body .btn {
    font-size: 16px;
  }
}
#media-view dl#tags {
  display: none;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#multimedia #content {
  overflow: hidden;
}
body#media-view #content {
  color: white;
  position: relative;
  background: #544741;
}
body#media-view #content:after {
  content: '';
  background-color: #544741;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#media-view #content:before {
  content: '';
  background-color: #544741;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#media-view .btn-xs {
  border-radius: 3px;
}
body#media-view #breadcrumb a:hover {
  color: #eb4e23;
}
body#media-view #main_container {
  background-color: transparent;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #eb4e23;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #6C605A;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #eb4e23;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #6C605A;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #eb4e23;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #6C605A;
}
#multimedia-browser .row .media-thumbnail a {
  color: #000;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #eb4e23;
}
body#multimedia.new #breadcrumb {
  display: none;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #main_container {
  overflow: visible;
}
body#multimedia.new #main_container #main_column {
  padding-top: 0;
}
body#multimedia.new #video-content {
  background-color: #544741;
  padding: 40px 80px;
  position: relative;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content {
    padding: 40px;
  }
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #544741;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #544741;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #eb4e23 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 4px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #6C605A;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #6C605A !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #eb4e23;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #eb4e23;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #eb4e23;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #807e7e;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #807e7e;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #eb4e23;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #eb4e23;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #000;
  height: 165px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #eb4e23;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #000;
  height: 116px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #eb4e23;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #eb4e23;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 85px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 85px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 460px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 85px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 63%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 30px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 85px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #6C605A;
  display: inline-block;
  height: 47px;
  width: 100%;
}
body footer .footer-ul.footernav {
  text-align: center;
}
body footer .footer-ul.footernav li {
  padding: 30px 35px 20px;
  text-align: center;
}
body footer .footer-ul.footernav li a {
  color: white;
  font-size: 20px;
}
body footer .footer-ul.footernav li a:hover {
  text-decoration: underline;
}
body footer .subfooternav {
  /*float:left;*/
  background-color: #342f2c;
}
body footer .subfooternav a {
  color: white;
}
body footer .subfooternav a:hover {
  text-decoration: underline;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body .newsletter-signup {
  display: inline-block;
}
@media (max-width: 767px) {
  body .newsletter-signup {
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
body .newsletter-signup .form-inline .form-control {
  background: #6c605a;
  color: white;
  border: 0;
  width: 200px;
}
@media (max-width: 767px) {
  body .newsletter-signup .form-inline .form-control {
    width: 68%;
    float: left;
  }
}
body .newsletter-signup .form-inline .form-control ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
}
body .newsletter-signup .form-inline .form-control ::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
body .newsletter-signup .form-inline .form-control :-ms-input-placeholder {
  /* IE 10+ */
  color: white;
}
body .newsletter-signup .form-inline .form-control :-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
body .newsletter-signup .btn {
  margin-bottom: 0;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  background-color: transparent;
}
body:not(#home) footer .bottom {
  bottom: 0;
  position: relative;
  margin: 0 auto;
  height: 150px;
}
body:not(#home) footer .bottom .centered {
  width: auto;
}
body:not(#home) footer .footer-bar {
  position: relative;
}
.social a {
  color: white;
  padding: 3px 0px;
  height: 30px;
  width: 30px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  background-color: #eb4e23;
}
.social a:hover {
  background-color: #eb4e23;
  color: white;
}
.social .newsletter {
  font-size: 16px;
}
.social .newsletter:hover {
  background-color: white;
  color: #eb4e23;
}
.social .facebook {
  background-color: #537bbd;
}
.social .twitter {
  background-color: #78cdf0;
}
.social .instagram {
  background-color: #696a6a;
}
.footer-bar .footer-links {
  display: inline-block;
  padding-right: 15px;
}
.footer-bar .footer-links a {
  color: white;
  font-size: 13px;
  padding: 0px 11px;
  text-transform: uppercase;
}
.footer-bar {
  background-color: #4e403a;
  height: 54px;
  bottom: 0px;
  width: 100%;
  padding: 9px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-bar {
    height: auto;
  }
}
#flagForm #flag-options .head {
  background-color: #6C605A;
  color: #fff;
}
/**********************
 *CSS Animations by:
 *http://codepen.io/vivinantony
***********************/
.spinner1 {
  width: 40px;
  height: 40px;
  position: relative;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner2 {
  width: 40px;
  height: 40px;
  position: relative;
}
.container1 > div,
.container2 > div,
.container3 > div {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner2 .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.circle1 {
  top: 0;
  left: 0;
}
.circle2 {
  top: 0;
  right: 0;
}
.circle3 {
  right: 0;
  bottom: 0;
}
.circle4 {
  left: 0;
  bottom: 0;
}
.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner3 {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}
.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner4 {
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.spinner5 {
  width: 32px;
  height: 32px;
  position: relative;
}
.cube1,
.cube2 {
  background-color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}
.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
@-webkit-keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
.spinner6 {
  width: 50px;
  height: 30px;
  text-align: center;
}
.spinner6 > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  margin-left: 2px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner6 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner6 .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner6 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner6 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner7 {
  width: 90px;
  height: 30px;
  text-align: center;
}
.spinner7 > div {
  background-color: #fff;
  height: 15px;
  width: 15px;
  margin-left: 3px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 0.7s infinite ease-in-out;
  animation: stretchdelay 0.7s infinite ease-in-out;
}
.spinner7 .circ2 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner7 .circ3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner7 .circ4 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.spinner7 .circ5 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: translateY(-10px);
  }
  20% {
    -webkit-transform: translateY(-20px);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
  20% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
}
/* collapse ------------------------------- */
body#scheduling form #appointment.active,
body#scheduling form #event.active {
  background-color: #9a2c0e;
}
body#scheduling form input[disabled] {
  filter: blur(1px);
}
body#scheduling form select[disabled] {
  filter: blur(1px);
}
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
@media (max-width: 767px) {
  #content .amend-form-container form fieldset legend {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #content .amend-form-container form label {
    font-size: 18px;
  }
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
font-family:'ITC Franklin Gothic LT W01MdCn';
font-family:'ITC Franklin Gothic LT W01 Md';
font-family:'ITC Franklin Gothic LT W01BkCn';
font-family:'ITC Franklin GothicLTW01BkCmIt';
font-family:'ITC Franklin GothicLTW01DmCnIt';
font-family:'ITC Franklin Gothic LT W01BkIt';
font-family:'ITC Franklin GothicLTW01DmCmIt';
font-family:'ITC Franklin GothicLTW01BkCnIt';
font-family:'ITC Franklin Gothic LT W01MdIt';
font-family:'ITC Franklin Gothic LT W01 Bk';
font-family:'ITC Franklin Gothic LT W01DmCm';
font-family:'ITC Franklin GothicLTW01MdCnIt';
font-family:'ITC Franklin Gothic LT W01BkCm';

font-family:'ITC Avant Garde GothicW01BdObl';
font-family:'ITC Avant Garde GothicW01DmObl';
font-family:'ITC Avant Garde Gothic W01 Md';
font-family:'ITC Avant GardeGothicW01XLtObl';
font-family:'ITC Avant Garde GothicW01BkObl';
font-family:'ITC Avant Garde Gothic W01 Dm';
font-family:'ITC Avant Garde Gothic W01 XLt';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde GothicW01MdObl';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde Gothic W01BdCn';
font-family:'ITCAvantGardeGothicW01XLtCnObl';
font-family:'ITC AvantGardeGothicW01BdCnObl';
font-family:'ITC Avant Garde GothicW01XLtCn';
font-family:'ITC AvantGardeGothicW01BkCnObl';
font-family:'ITC Avant Garde Gothic W01BkCn';
font-family:'ITC AvantGardeGothicW01DmCnObl';
font-family:'ITC Avant Garde Gothic W01DmCn';
font-family:'ITC Avant Garde Gothic W01MdCn';
font-family:'ITC AvantGardeGothicW01MdCnObl';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.sans {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.medium {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.book {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.demi {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
body {
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #6C605A;
}
@media (max-width: 479px) {
  body {
    font-size: 18px;
    line-height: 30px;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.h1,
h1,
.main_page_title {
  font-size: 36px;
}
.h2,
h2 {
  font-size: 28px;
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #eb4e23;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #9a2c0e;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 34px;
  word-break: break-word;
}
h2.title {
  margin-top: 7px;
}
h2.title a {
  color: #6C605A;
}
h2.title a:hover {
  color: #eb4e23;
}
body:not(.stretch) #main_container {
  overflow: hidden;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-default,
.btn:visited,
.btn-default:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #eb4e23;
  color: white;
  border-radius: 10px;
  margin-bottom: 10px;
}
.pager li .btn:hover,
.btn:hover,
.btn-default:hover,
.btn:visited:hover,
.btn-default:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #9a2c0e;
  color: white;
}
.btn-block {
  font-size: 22px;
  padding: 20px;
  white-space: pre-line;
}
.btn-xs {
  border-radius: 2px;
  margin-bottom: 0;
}
.btn.more {
  border-radius: 6px;
}
/*interior page content default styles */
img {
  width: 100%;
  display: block;
  height: auto;
}
a {
  cursor: pointer;
}
.macron-a:before {
  content: "\101";
  display: inline;
  font-weight: inherit;
  font-family: inherit;
}
.macron-A:before {
  content: "\100";
  display: inline;
  font-weight: inherit;
  font-family: inherit;
}
.macron-o:before {
  content: "\14d";
  display: inline;
  font-weight: inherit;
  font-family: inherit;
}
.macron-O:before {
  content: "\14c";
  display: inline;
  font-weight: inherit;
  font-family: inherit;
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.map-entry {
  background: white;
  padding: 40px 30px 20px;
  margin-bottom: 40px;
  position: relative;
}
.map-entry iframe {
  width: 100%;
}
.map-entry span.event-type {
  position: absolute;
  top: 15px;
  display: inline-block;
  padding: 3px 10px 1px;
  border-radius: 10px;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  right: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.map-entry.grant span.event-type {
  background-color: #6C605A;
  color: white;
}
.map-entry.event span.event-type {
  background-color: #FAE911;
  color: #6C605A;
}
.map-entry.general_event span.event-type {
  background-color: #eb4e23;
  color: white;
}
@media (min-width: 600px) {
  .map-entry .note-video-clip {
    height: 250px;
  }
}
.travels {
  /* extra small devices (phones, less than 768px); no media query since this is the default in bootstrap */
}
.travels #nihue-map-container,
.travels #kauai-map-container,
.travels #oahu-map-container,
.travels #molokai-map-container,
.travels #lanai-map-container,
.travels #maui-map-container,
.travels #kahoolawe-map-container,
.travels #big-island-map-container {
  position: relative;
  height: 666px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .travels #nihue-map-container,
  .travels #kauai-map-container,
  .travels #oahu-map-container,
  .travels #molokai-map-container,
  .travels #lanai-map-container,
  .travels #maui-map-container,
  .travels #kahoolawe-map-container,
  .travels #big-island-map-container {
    height: 666px;
  }
}
.travels #nihue-map-container #nihue-map,
.travels #kauai-map-container #nihue-map,
.travels #oahu-map-container #nihue-map,
.travels #molokai-map-container #nihue-map,
.travels #lanai-map-container #nihue-map,
.travels #maui-map-container #nihue-map,
.travels #kahoolawe-map-container #nihue-map,
.travels #big-island-map-container #nihue-map,
.travels #nihue-map-container #kauai-map,
.travels #kauai-map-container #kauai-map,
.travels #oahu-map-container #kauai-map,
.travels #molokai-map-container #kauai-map,
.travels #lanai-map-container #kauai-map,
.travels #maui-map-container #kauai-map,
.travels #kahoolawe-map-container #kauai-map,
.travels #big-island-map-container #kauai-map,
.travels #nihue-map-container #oahu-map,
.travels #kauai-map-container #oahu-map,
.travels #oahu-map-container #oahu-map,
.travels #molokai-map-container #oahu-map,
.travels #lanai-map-container #oahu-map,
.travels #maui-map-container #oahu-map,
.travels #kahoolawe-map-container #oahu-map,
.travels #big-island-map-container #oahu-map,
.travels #nihue-map-container #molokai-map,
.travels #kauai-map-container #molokai-map,
.travels #oahu-map-container #molokai-map,
.travels #molokai-map-container #molokai-map,
.travels #lanai-map-container #molokai-map,
.travels #maui-map-container #molokai-map,
.travels #kahoolawe-map-container #molokai-map,
.travels #big-island-map-container #molokai-map,
.travels #nihue-map-container #lanai-map,
.travels #kauai-map-container #lanai-map,
.travels #oahu-map-container #lanai-map,
.travels #molokai-map-container #lanai-map,
.travels #lanai-map-container #lanai-map,
.travels #maui-map-container #lanai-map,
.travels #kahoolawe-map-container #lanai-map,
.travels #big-island-map-container #lanai-map,
.travels #nihue-map-container #maui-map,
.travels #kauai-map-container #maui-map,
.travels #oahu-map-container #maui-map,
.travels #molokai-map-container #maui-map,
.travels #lanai-map-container #maui-map,
.travels #maui-map-container #maui-map,
.travels #kahoolawe-map-container #maui-map,
.travels #big-island-map-container #maui-map,
.travels #nihue-map-container #kahoolawe-map,
.travels #kauai-map-container #kahoolawe-map,
.travels #oahu-map-container #kahoolawe-map,
.travels #molokai-map-container #kahoolawe-map,
.travels #lanai-map-container #kahoolawe-map,
.travels #maui-map-container #kahoolawe-map,
.travels #kahoolawe-map-container #kahoolawe-map,
.travels #big-island-map-container #kahoolawe-map,
.travels #nihue-map-container #big-island-map,
.travels #kauai-map-container #big-island-map,
.travels #oahu-map-container #big-island-map,
.travels #molokai-map-container #big-island-map,
.travels #lanai-map-container #big-island-map,
.travels #maui-map-container #big-island-map,
.travels #kahoolawe-map-container #big-island-map,
.travels #big-island-map-container #big-island-map {
  display: none;
  right: 0px;
  width: 450px;
  height: 317px;
  top: 0;
  overflow: hidden;
  position: absolute;
  background-image: url('/themes/hirono/images/Nihue.png');
  background-size: 100% 100%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
}
@media (min-width: 420px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 450px;
    height: 317px;
  }
}
@media (min-width: 548px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 550px;
    height: 367px;
  }
}
@media (min-width: 700px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 650px;
    height: 458px;
  }
}
@media (min-width: 767px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 650px;
    height: 458px;
  }
}
@media (min-width: 991px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 800px;
    height: 563px;
  }
}
@media (min-width: 1200px) {
  .travels #nihue-map-container #nihue-map,
  .travels #kauai-map-container #nihue-map,
  .travels #oahu-map-container #nihue-map,
  .travels #molokai-map-container #nihue-map,
  .travels #lanai-map-container #nihue-map,
  .travels #maui-map-container #nihue-map,
  .travels #kahoolawe-map-container #nihue-map,
  .travels #big-island-map-container #nihue-map,
  .travels #nihue-map-container #kauai-map,
  .travels #kauai-map-container #kauai-map,
  .travels #oahu-map-container #kauai-map,
  .travels #molokai-map-container #kauai-map,
  .travels #lanai-map-container #kauai-map,
  .travels #maui-map-container #kauai-map,
  .travels #kahoolawe-map-container #kauai-map,
  .travels #big-island-map-container #kauai-map,
  .travels #nihue-map-container #oahu-map,
  .travels #kauai-map-container #oahu-map,
  .travels #oahu-map-container #oahu-map,
  .travels #molokai-map-container #oahu-map,
  .travels #lanai-map-container #oahu-map,
  .travels #maui-map-container #oahu-map,
  .travels #kahoolawe-map-container #oahu-map,
  .travels #big-island-map-container #oahu-map,
  .travels #nihue-map-container #molokai-map,
  .travels #kauai-map-container #molokai-map,
  .travels #oahu-map-container #molokai-map,
  .travels #molokai-map-container #molokai-map,
  .travels #lanai-map-container #molokai-map,
  .travels #maui-map-container #molokai-map,
  .travels #kahoolawe-map-container #molokai-map,
  .travels #big-island-map-container #molokai-map,
  .travels #nihue-map-container #lanai-map,
  .travels #kauai-map-container #lanai-map,
  .travels #oahu-map-container #lanai-map,
  .travels #molokai-map-container #lanai-map,
  .travels #lanai-map-container #lanai-map,
  .travels #maui-map-container #lanai-map,
  .travels #kahoolawe-map-container #lanai-map,
  .travels #big-island-map-container #lanai-map,
  .travels #nihue-map-container #maui-map,
  .travels #kauai-map-container #maui-map,
  .travels #oahu-map-container #maui-map,
  .travels #molokai-map-container #maui-map,
  .travels #lanai-map-container #maui-map,
  .travels #maui-map-container #maui-map,
  .travels #kahoolawe-map-container #maui-map,
  .travels #big-island-map-container #maui-map,
  .travels #nihue-map-container #kahoolawe-map,
  .travels #kauai-map-container #kahoolawe-map,
  .travels #oahu-map-container #kahoolawe-map,
  .travels #molokai-map-container #kahoolawe-map,
  .travels #lanai-map-container #kahoolawe-map,
  .travels #maui-map-container #kahoolawe-map,
  .travels #kahoolawe-map-container #kahoolawe-map,
  .travels #big-island-map-container #kahoolawe-map,
  .travels #nihue-map-container #big-island-map,
  .travels #kauai-map-container #big-island-map,
  .travels #oahu-map-container #big-island-map,
  .travels #molokai-map-container #big-island-map,
  .travels #lanai-map-container #big-island-map,
  .travels #maui-map-container #big-island-map,
  .travels #kahoolawe-map-container #big-island-map,
  .travels #big-island-map-container #big-island-map {
    width: 945px;
    height: 666px;
  }
}
.travels #nihue-map-container #nihue-map .circle-icon,
.travels #kauai-map-container #nihue-map .circle-icon,
.travels #oahu-map-container #nihue-map .circle-icon,
.travels #molokai-map-container #nihue-map .circle-icon,
.travels #lanai-map-container #nihue-map .circle-icon,
.travels #maui-map-container #nihue-map .circle-icon,
.travels #kahoolawe-map-container #nihue-map .circle-icon,
.travels #big-island-map-container #nihue-map .circle-icon,
.travels #nihue-map-container #kauai-map .circle-icon,
.travels #kauai-map-container #kauai-map .circle-icon,
.travels #oahu-map-container #kauai-map .circle-icon,
.travels #molokai-map-container #kauai-map .circle-icon,
.travels #lanai-map-container #kauai-map .circle-icon,
.travels #maui-map-container #kauai-map .circle-icon,
.travels #kahoolawe-map-container #kauai-map .circle-icon,
.travels #big-island-map-container #kauai-map .circle-icon,
.travels #nihue-map-container #oahu-map .circle-icon,
.travels #kauai-map-container #oahu-map .circle-icon,
.travels #oahu-map-container #oahu-map .circle-icon,
.travels #molokai-map-container #oahu-map .circle-icon,
.travels #lanai-map-container #oahu-map .circle-icon,
.travels #maui-map-container #oahu-map .circle-icon,
.travels #kahoolawe-map-container #oahu-map .circle-icon,
.travels #big-island-map-container #oahu-map .circle-icon,
.travels #nihue-map-container #molokai-map .circle-icon,
.travels #kauai-map-container #molokai-map .circle-icon,
.travels #oahu-map-container #molokai-map .circle-icon,
.travels #molokai-map-container #molokai-map .circle-icon,
.travels #lanai-map-container #molokai-map .circle-icon,
.travels #maui-map-container #molokai-map .circle-icon,
.travels #kahoolawe-map-container #molokai-map .circle-icon,
.travels #big-island-map-container #molokai-map .circle-icon,
.travels #nihue-map-container #lanai-map .circle-icon,
.travels #kauai-map-container #lanai-map .circle-icon,
.travels #oahu-map-container #lanai-map .circle-icon,
.travels #molokai-map-container #lanai-map .circle-icon,
.travels #lanai-map-container #lanai-map .circle-icon,
.travels #maui-map-container #lanai-map .circle-icon,
.travels #kahoolawe-map-container #lanai-map .circle-icon,
.travels #big-island-map-container #lanai-map .circle-icon,
.travels #nihue-map-container #maui-map .circle-icon,
.travels #kauai-map-container #maui-map .circle-icon,
.travels #oahu-map-container #maui-map .circle-icon,
.travels #molokai-map-container #maui-map .circle-icon,
.travels #lanai-map-container #maui-map .circle-icon,
.travels #maui-map-container #maui-map .circle-icon,
.travels #kahoolawe-map-container #maui-map .circle-icon,
.travels #big-island-map-container #maui-map .circle-icon,
.travels #nihue-map-container #kahoolawe-map .circle-icon,
.travels #kauai-map-container #kahoolawe-map .circle-icon,
.travels #oahu-map-container #kahoolawe-map .circle-icon,
.travels #molokai-map-container #kahoolawe-map .circle-icon,
.travels #lanai-map-container #kahoolawe-map .circle-icon,
.travels #maui-map-container #kahoolawe-map .circle-icon,
.travels #kahoolawe-map-container #kahoolawe-map .circle-icon,
.travels #big-island-map-container #kahoolawe-map .circle-icon,
.travels #nihue-map-container #big-island-map .circle-icon,
.travels #kauai-map-container #big-island-map .circle-icon,
.travels #oahu-map-container #big-island-map .circle-icon,
.travels #molokai-map-container #big-island-map .circle-icon,
.travels #lanai-map-container #big-island-map .circle-icon,
.travels #maui-map-container #big-island-map .circle-icon,
.travels #kahoolawe-map-container #big-island-map .circle-icon,
.travels #big-island-map-container #big-island-map .circle-icon {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  background-color: white;
  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;
}
.travels #nihue-map-container #nihue-map .circle-icon:before,
.travels #kauai-map-container #nihue-map .circle-icon:before,
.travels #oahu-map-container #nihue-map .circle-icon:before,
.travels #molokai-map-container #nihue-map .circle-icon:before,
.travels #lanai-map-container #nihue-map .circle-icon:before,
.travels #maui-map-container #nihue-map .circle-icon:before,
.travels #kahoolawe-map-container #nihue-map .circle-icon:before,
.travels #big-island-map-container #nihue-map .circle-icon:before,
.travels #nihue-map-container #kauai-map .circle-icon:before,
.travels #kauai-map-container #kauai-map .circle-icon:before,
.travels #oahu-map-container #kauai-map .circle-icon:before,
.travels #molokai-map-container #kauai-map .circle-icon:before,
.travels #lanai-map-container #kauai-map .circle-icon:before,
.travels #maui-map-container #kauai-map .circle-icon:before,
.travels #kahoolawe-map-container #kauai-map .circle-icon:before,
.travels #big-island-map-container #kauai-map .circle-icon:before,
.travels #nihue-map-container #oahu-map .circle-icon:before,
.travels #kauai-map-container #oahu-map .circle-icon:before,
.travels #oahu-map-container #oahu-map .circle-icon:before,
.travels #molokai-map-container #oahu-map .circle-icon:before,
.travels #lanai-map-container #oahu-map .circle-icon:before,
.travels #maui-map-container #oahu-map .circle-icon:before,
.travels #kahoolawe-map-container #oahu-map .circle-icon:before,
.travels #big-island-map-container #oahu-map .circle-icon:before,
.travels #nihue-map-container #molokai-map .circle-icon:before,
.travels #kauai-map-container #molokai-map .circle-icon:before,
.travels #oahu-map-container #molokai-map .circle-icon:before,
.travels #molokai-map-container #molokai-map .circle-icon:before,
.travels #lanai-map-container #molokai-map .circle-icon:before,
.travels #maui-map-container #molokai-map .circle-icon:before,
.travels #kahoolawe-map-container #molokai-map .circle-icon:before,
.travels #big-island-map-container #molokai-map .circle-icon:before,
.travels #nihue-map-container #lanai-map .circle-icon:before,
.travels #kauai-map-container #lanai-map .circle-icon:before,
.travels #oahu-map-container #lanai-map .circle-icon:before,
.travels #molokai-map-container #lanai-map .circle-icon:before,
.travels #lanai-map-container #lanai-map .circle-icon:before,
.travels #maui-map-container #lanai-map .circle-icon:before,
.travels #kahoolawe-map-container #lanai-map .circle-icon:before,
.travels #big-island-map-container #lanai-map .circle-icon:before,
.travels #nihue-map-container #maui-map .circle-icon:before,
.travels #kauai-map-container #maui-map .circle-icon:before,
.travels #oahu-map-container #maui-map .circle-icon:before,
.travels #molokai-map-container #maui-map .circle-icon:before,
.travels #lanai-map-container #maui-map .circle-icon:before,
.travels #maui-map-container #maui-map .circle-icon:before,
.travels #kahoolawe-map-container #maui-map .circle-icon:before,
.travels #big-island-map-container #maui-map .circle-icon:before,
.travels #nihue-map-container #kahoolawe-map .circle-icon:before,
.travels #kauai-map-container #kahoolawe-map .circle-icon:before,
.travels #oahu-map-container #kahoolawe-map .circle-icon:before,
.travels #molokai-map-container #kahoolawe-map .circle-icon:before,
.travels #lanai-map-container #kahoolawe-map .circle-icon:before,
.travels #maui-map-container #kahoolawe-map .circle-icon:before,
.travels #kahoolawe-map-container #kahoolawe-map .circle-icon:before,
.travels #big-island-map-container #kahoolawe-map .circle-icon:before,
.travels #nihue-map-container #big-island-map .circle-icon:before,
.travels #kauai-map-container #big-island-map .circle-icon:before,
.travels #oahu-map-container #big-island-map .circle-icon:before,
.travels #molokai-map-container #big-island-map .circle-icon:before,
.travels #lanai-map-container #big-island-map .circle-icon:before,
.travels #maui-map-container #big-island-map .circle-icon:before,
.travels #kahoolawe-map-container #big-island-map .circle-icon:before,
.travels #big-island-map-container #big-island-map .circle-icon:before {
  content: '';
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  background-size: cover;
  margin-top: 2px;
  margin-left: 2px;
}
.travels #nihue-map-container #nihue-map .circle-icon:hover,
.travels #kauai-map-container #nihue-map .circle-icon:hover,
.travels #oahu-map-container #nihue-map .circle-icon:hover,
.travels #molokai-map-container #nihue-map .circle-icon:hover,
.travels #lanai-map-container #nihue-map .circle-icon:hover,
.travels #maui-map-container #nihue-map .circle-icon:hover,
.travels #kahoolawe-map-container #nihue-map .circle-icon:hover,
.travels #big-island-map-container #nihue-map .circle-icon:hover,
.travels #nihue-map-container #kauai-map .circle-icon:hover,
.travels #kauai-map-container #kauai-map .circle-icon:hover,
.travels #oahu-map-container #kauai-map .circle-icon:hover,
.travels #molokai-map-container #kauai-map .circle-icon:hover,
.travels #lanai-map-container #kauai-map .circle-icon:hover,
.travels #maui-map-container #kauai-map .circle-icon:hover,
.travels #kahoolawe-map-container #kauai-map .circle-icon:hover,
.travels #big-island-map-container #kauai-map .circle-icon:hover,
.travels #nihue-map-container #oahu-map .circle-icon:hover,
.travels #kauai-map-container #oahu-map .circle-icon:hover,
.travels #oahu-map-container #oahu-map .circle-icon:hover,
.travels #molokai-map-container #oahu-map .circle-icon:hover,
.travels #lanai-map-container #oahu-map .circle-icon:hover,
.travels #maui-map-container #oahu-map .circle-icon:hover,
.travels #kahoolawe-map-container #oahu-map .circle-icon:hover,
.travels #big-island-map-container #oahu-map .circle-icon:hover,
.travels #nihue-map-container #molokai-map .circle-icon:hover,
.travels #kauai-map-container #molokai-map .circle-icon:hover,
.travels #oahu-map-container #molokai-map .circle-icon:hover,
.travels #molokai-map-container #molokai-map .circle-icon:hover,
.travels #lanai-map-container #molokai-map .circle-icon:hover,
.travels #maui-map-container #molokai-map .circle-icon:hover,
.travels #kahoolawe-map-container #molokai-map .circle-icon:hover,
.travels #big-island-map-container #molokai-map .circle-icon:hover,
.travels #nihue-map-container #lanai-map .circle-icon:hover,
.travels #kauai-map-container #lanai-map .circle-icon:hover,
.travels #oahu-map-container #lanai-map .circle-icon:hover,
.travels #molokai-map-container #lanai-map .circle-icon:hover,
.travels #lanai-map-container #lanai-map .circle-icon:hover,
.travels #maui-map-container #lanai-map .circle-icon:hover,
.travels #kahoolawe-map-container #lanai-map .circle-icon:hover,
.travels #big-island-map-container #lanai-map .circle-icon:hover,
.travels #nihue-map-container #maui-map .circle-icon:hover,
.travels #kauai-map-container #maui-map .circle-icon:hover,
.travels #oahu-map-container #maui-map .circle-icon:hover,
.travels #molokai-map-container #maui-map .circle-icon:hover,
.travels #lanai-map-container #maui-map .circle-icon:hover,
.travels #maui-map-container #maui-map .circle-icon:hover,
.travels #kahoolawe-map-container #maui-map .circle-icon:hover,
.travels #big-island-map-container #maui-map .circle-icon:hover,
.travels #nihue-map-container #kahoolawe-map .circle-icon:hover,
.travels #kauai-map-container #kahoolawe-map .circle-icon:hover,
.travels #oahu-map-container #kahoolawe-map .circle-icon:hover,
.travels #molokai-map-container #kahoolawe-map .circle-icon:hover,
.travels #lanai-map-container #kahoolawe-map .circle-icon:hover,
.travels #maui-map-container #kahoolawe-map .circle-icon:hover,
.travels #kahoolawe-map-container #kahoolawe-map .circle-icon:hover,
.travels #big-island-map-container #kahoolawe-map .circle-icon:hover,
.travels #nihue-map-container #big-island-map .circle-icon:hover,
.travels #kauai-map-container #big-island-map .circle-icon:hover,
.travels #oahu-map-container #big-island-map .circle-icon:hover,
.travels #molokai-map-container #big-island-map .circle-icon:hover,
.travels #lanai-map-container #big-island-map .circle-icon:hover,
.travels #maui-map-container #big-island-map .circle-icon:hover,
.travels #kahoolawe-map-container #big-island-map .circle-icon:hover,
.travels #big-island-map-container #big-island-map .circle-icon:hover {
  position: absolute;
  content: "";
  display: block;
  border: 2px solid white;
  background-color: white;
  transform: scale(1.2);
  -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;
}
.travels #nihue-map-container #kauai-map,
.travels #kauai-map-container #kauai-map,
.travels #oahu-map-container #kauai-map,
.travels #molokai-map-container #kauai-map,
.travels #lanai-map-container #kauai-map,
.travels #maui-map-container #kauai-map,
.travels #kahoolawe-map-container #kauai-map,
.travels #big-island-map-container #kauai-map {
  background-image: url('/themes/hirono/images/Kauai.png');
}
.travels #nihue-map-container #oahu-map,
.travels #kauai-map-container #oahu-map,
.travels #oahu-map-container #oahu-map,
.travels #molokai-map-container #oahu-map,
.travels #lanai-map-container #oahu-map,
.travels #maui-map-container #oahu-map,
.travels #kahoolawe-map-container #oahu-map,
.travels #big-island-map-container #oahu-map {
  background-image: url('/themes/hirono/images/Oahu.png');
}
.travels #nihue-map-container #molokai-map,
.travels #kauai-map-container #molokai-map,
.travels #oahu-map-container #molokai-map,
.travels #molokai-map-container #molokai-map,
.travels #lanai-map-container #molokai-map,
.travels #maui-map-container #molokai-map,
.travels #kahoolawe-map-container #molokai-map,
.travels #big-island-map-container #molokai-map {
  background-image: url('/themes/hirono/images/Molokai.png');
}
.travels #nihue-map-container #lanai-map,
.travels #kauai-map-container #lanai-map,
.travels #oahu-map-container #lanai-map,
.travels #molokai-map-container #lanai-map,
.travels #lanai-map-container #lanai-map,
.travels #maui-map-container #lanai-map,
.travels #kahoolawe-map-container #lanai-map,
.travels #big-island-map-container #lanai-map {
  background-image: url('/themes/hirono/images/Lanai.png');
}
.travels #nihue-map-container #maui-map,
.travels #kauai-map-container #maui-map,
.travels #oahu-map-container #maui-map,
.travels #molokai-map-container #maui-map,
.travels #lanai-map-container #maui-map,
.travels #maui-map-container #maui-map,
.travels #kahoolawe-map-container #maui-map,
.travels #big-island-map-container #maui-map {
  background-image: url('/themes/hirono/images/Maui.png');
}
.travels #nihue-map-container #kahoolawe-map,
.travels #kauai-map-container #kahoolawe-map,
.travels #oahu-map-container #kahoolawe-map,
.travels #molokai-map-container #kahoolawe-map,
.travels #lanai-map-container #kahoolawe-map,
.travels #maui-map-container #kahoolawe-map,
.travels #kahoolawe-map-container #kahoolawe-map,
.travels #big-island-map-container #kahoolawe-map {
  background-image: url('/themes/hirono/images/Kahoolawe.png');
}
.travels #nihue-map-container #big-island-map,
.travels #kauai-map-container #big-island-map,
.travels #oahu-map-container #big-island-map,
.travels #molokai-map-container #big-island-map,
.travels #lanai-map-container #big-island-map,
.travels #maui-map-container #big-island-map,
.travels #kahoolawe-map-container #big-island-map,
.travels #big-island-map-container #big-island-map {
  background-image: url('/themes/hirono/images/BigIsland.png');
}
.travels #map-restrictor {
  display: none;
  border: 1px solid #ededed;
  background-color: #ededed;
}
@media (min-width: 767px) {
  .travels #map-restrictor {
    padding: 25px 25px 10px 25px;
  }
}
@media (min-width: 992px) {
  .travels #map-restrictor {
    padding: 20px 60px 10px 60px;
  }
}
@media (min-width: 1200px) {
  .travels #map-restrictor {
    margin: 0 0px 0 0;
  }
}
.travels #map-restrictor h3 {
  display: inline-block;
  color: #636363;
  font-weight: 500;
}
@media (min-width: 767px) {
  .travels #map-restrictor h3 {
    margin: 0 0 20px;
    font-size: 19px;
  }
}
.travels #map-restrictor .form-inline {
  display: inline-block;
  position: relative;
  top: -4px;
}
.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) {
  .travels #map-restrictor .form-inline label {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .travels #map-restrictor .form-inline label {
    font-size: 18px;
  }
}
.travels #map-restrictor .form-inline input[type="text"],
.travels #map-restrictor .form-inline input[type="email"],
.travels #map-restrictor .form-inline textarea,
.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) {
  .travels #map-restrictor .form-inline input[type="text"],
  .travels #map-restrictor .form-inline input[type="email"],
  .travels #map-restrictor .form-inline textarea,
  .travels #map-restrictor .form-inline select {
    width: 95px;
  }
}
.travels #map-restrictor .form-inline select {
  font-size: 18px;
}
.travels #map-restrictor .form-inline .btn {
  position: relative;
  margin: 0em 0 0 1em;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  color: #eb4e23;
  text-transform: uppercase;
  letter-spacing: 0px;
  height: 42px;
  font-weight: bold;
  font-family: 'Gill Sans Nova W01 SemiBold';
}
@media (min-width: 767px) {
  .travels #map-restrictor .form-inline .btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .travels #map-restrictor .form-inline .btn {
    font-size: 17px;
  }
}
.travels #map-restrictor .form-inline .btn:hover {
  background-color: #eb4e23;
  color: white;
}
.travels #map-restrictor .form-inline #map-reset {
  margin: 0;
  padding: 0px 20px;
}
.travels #map-restrictor .form-inline .btn-primary {
  margin: 0 0 0 1em;
  padding: 0.5em 1em;
  background-color: #eb4e23;
  color: #fff;
  border: 0;
}
.travels #map-listing {
  display: none;
}
.travels #map-listing .map-entry {
  padding: 25px 0;
  font-size: 15px;
}
@media (min-width: 767px) {
  .travels #map-listing .map-entry {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .travels #map-listing .map-entry {
    padding: 25px 60px;
  }
}
.travels #map-listing .map-entry h3 {
  margin: 0 0 0.1em 0;
  color: #6a6a6a;
}
.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;
}
.travels #map-listing .map-entry .address-entry,
.travels #map-listing .map-entry .desc-entry {
  margin-top: 1em;
}
.travels #map-listing .map-entry .address-entry a,
.travels #map-listing .map-entry .desc-entry a {
  font-size: 13px;
  font-weight: bold;
}
.travels #map-listing .map-entry .address-entry .map-entry-link,
.travels #map-listing .map-entry .desc-entry .map-entry-link {
  display: none;
}
@media (min-width: 767px) {
  .travels #map-listing .map-entry .address-entry .map-entry-link,
  .travels #map-listing .map-entry .desc-entry .map-entry-link {
    display: block;
  }
}
.travels #map-listing .map-entry + .map-entry {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #dadada;
}
@media (min-width: 767px) {
  .travels #map-listing .visible {
    display: block;
  }
  .travels #map-listing .map-entry + .visible {
    border-top: none;
  }
}
@media (min-width: 767px) {
  .travels .visible {
    display: block;
  }
  .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: white !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: #eb4e23;
}
.popover-map .popover-title,
.popover .popover-title {
  margin: 0;
  padding: 18px 14px 7px 14px;
  background: none;
  font-size: 22px;
  line-height: 1;
  border: none;
  color: black;
  text-transform: uppercase;
}
.popover-map .close,
.popover .close {
  margin-right: 7px;
}
.popover-map .popover-content,
.popover .popover-content {
  font-size: 12px;
  line-height: 1.3em;
  color: black;
}
.popover-map .popover-content .popover-date,
.popover .popover-content .popover-date {
  position: relative;
  top: -8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.popover-map .popover-content a,
.popover .popover-content a {
  color: #eb4e23;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.popover-map .popover-content a:hover,
.popover .popover-content a:hover {
  color: #eb4e23;
}
.popover-map .popover-content p,
.popover .popover-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3em;
}
.popover-map .popover-content p + p,
.popover .popover-content p + p {
  margin-top: 5px;
}
.popover-map .popover-content .popover-img,
.popover .popover-content .popover-img {
  margin: 0 1em 0 0;
  height: 240px;
  text-align: center;
  overflow: hidden;
}
.popover-map .popover-content .popover-img img,
.popover .popover-content .popover-img img {
  width: 100%;
}
.circle-icon.event {
  background-color: #f8e915 !important;
}
.circle-icon.grant {
  background-color: #6C605A !important;
}
.type-event {
  position: absolute;
  top: 15px;
  display: inline-block;
  padding: 3px 10px 1px;
  border-radius: 10px;
  color: white;
  text-transform: uppercase;
  right: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.type-event.event {
  background-color: #FAE911;
  color: #6C605A;
}
.type-event.general_event {
  background-color: #eb4e23;
  color: white;
}
.type-event.grant {
  background-color: #6C605A;
  color: white;
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .flip-container:hover .flipper,
.ie .flip-container.hover .flipper {
  transition: 0s;
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back,
.ie .flip-container:hover .flipper .front,
.ie .flip-container.hover .flipper .front {
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back {
  z-index: 10;
}
.ie svg {
  height: 600px;
}
.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 .slideshow-element#press {
  display: none !important;
}
.ie9 .slideshow-element#contact {
  display: block !important;
  opacity: 1 !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
