/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#logo-container {
  float: left;
}
#nav-container {
  float: right;
  width: 679px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body,
#SearchModal .modal-dialog .modal-content .modal-body,
#ContactModal .modal-dialog .modal-content .modal-body {
  padding-bottom: 20px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li {
  float: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li a,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li a,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li a {
  padding: 0;
  font-size: 28px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu {
  position: static;
  display: block;
  float: none;
  padding-left: 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a {
  display: inline;
  font-size: 18px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:hover,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:hover,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:hover,
#NavMobileModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:focus,
#SearchModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:focus,
#ContactModal .modal-dialog .modal-content .modal-body .nav-pills > li .dropdown-menu li a:focus {
  background: transparent;
  text-decoration: underline;
}
#site-alert-container {
  margin: 0 0 1em 0;
}
#site-alert-container #site-alert {
  position: relative;
  padding: 5px 0;
  border-radius: 0;
  background-color: #fff;
  opacity: 0;
}
#site-alert-container #site-alert .alertIcn {
  width: 47px;
  overflow: hidden;
  font-family: 'Slate W01 Light';
  font-size: 35px;
  color: rgba(37, 37, 37, 0.85);
}
#site-alert-container #site-alert .alertIcn.alert-red {
  color: #9f0a0e;
}
#site-alert-container #site-alert .alertIcn.alert-green {
  color: #2c692b;
}
#site-alert-container #site-alert .headline {
  position: relative;
  top: 6px;
  padding-bottom: .5em;
  font-size: 1.1em;
  line-height: normal;
}
#site-alert-container #site-alert .headline a {
  line-height: 1.2em;
  color: #2c2722;
}
@media (max-width: 767px) {
  #site-alert-container #site-alert .headline {
    padding: 0px 1em;
  }
}
#site-alert-container #site-alert.no-icon {
  padding-bottom: 18px;
}

#site-alerttwo-container {
  margin: 0 0 1em 0;
}

#site-alerttwo-container #site-alerttwo {
  position: relative;
  padding: 5px 0;
  border-radius: 0;
  background-color: #fff;
  opacity: 0;
}
#site-alerttwo-container #site-alerttwo .alertIcn {
  width: 47px;
  overflow: hidden;
  font-family: 'Slate W01 Light';
  font-size: 35px;
  color: rgba(37, 37, 37, 0.85);
}
#site-alerttwo-container #site-alerttwo .alertIcn.alert-red {
  color: #9f0a0e;
}
#site-alerttwo-container #site-alerttwo .alertIcn.alert-green {
  color: #2c692b;
}
#site-alerttwo-container #site-alerttwo .headline {
  position: relative;
  top: 6px;
  padding-bottom: .5em;
  font-size: 1.1em;
  line-height: normal;
}
#site-alerttwo-container #site-alerttwo .headline a {
  line-height: 1.2em;
  color: #2c2722;
}
@media (max-width: 767px) {
  #site-alerttwo-container #site-alerttwo .headline {
    padding: 0px 1em;
  }
}
#site-alerttwo-container #site-alerttwo.no-icon {
  padding-bottom: 18px;
}



body.has-alert #header {
  padding-top: 0;
}
body #header {
  position: relative;
  z-index: 99996;
}
body .navbar {
  position: relative;
  top: 19px;
}
body .navbar .socicons {
  float: right;
  margin-left: 20px;
  font-size: 14px;
  line-height: 21px;
}
body .navbar .socicons li a {
  position: relative;
  top: 4px;
  padding: 5px;
  font-size: 11px;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all ease-in 0.1s;
  -moz-transition: all ease-in 0.1s;
  -o-transition: all ease-in 0.1s;
  -ms-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
}
body .navbar .socicons li a div {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(../images/flickr.png);
  background-position: center center;
  background-repeat: no-repeat;
}
body .navbar .socicons li .facebook {
  padding: 5px 8px;
  border-color: #537bbd;
  color: #fff;
  background-color: #537bbd;
}
body .navbar .socicons li .facebook:hover {
  border-color: #537bbd;
  color: #537bbd;
  background-color: #fff;
}
body .navbar .socicons li .twttr {
  border-color: #78cdf0;
  color: #fff;
  background-color: #78cdf0;
}
body .navbar .socicons li .twttr:hover {
  border-color: #c6c6c5;
  color: #78cdf0;
  background-color: #fff;
}
body .navbar .socicons li .you-tube {
  border-color: #e9654b;
  background-color: #e9654b;
}
body .navbar .socicons li .you-tube:hover {
  color: #e9654b;
  background-color: #fff;
}
body .navbar .socicons li .flickr {
  border-color: #d3d5d8;
  background-color: #fff;
}
body .navbar .socicons li .flickr:hover {
  border-color: #346db4;
}
body .navbar .nav-pills {
  display: inline-block;
  float: left;
  max-width: 480px;
}
body .navbar .nav-pills > li a {
  font: normal normal normal 19px/1 'SlateW01-MediumCondense';
  text-transform: uppercase;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
body .navbar .nav-pills > li:hover a {
  color: #296a28;
}
body .navbar .nav-pills > li:hover .dropdown-menu {
  display: none;
}
body .navbar .nav-pills li.selected a {
  color: #296a28;
}
body .navbar .srchbutton {
  margin-left: 5px;
  padding: 4px 6px;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body.modal-open #header {
  z-index: 999;
}
body #light .navbar .srchbutton {
  background-color: #fff;
  color: #395751;
}
body #light .navbar .srchbutton:hover {
  color: #4d766e;
}
/*#masthead, #home-col { display: none !important; }
body #pattern-bg { box-shadow: none !important; }*/
#home {
  background-image: none;
}
#home.bg-1 {
  background-image: url('/themes/cantwell/images/bg/home/1.jpg');
}
#home.bg-2 {
  background-image: url('/themes/cantwell/images/bg/home/2.jpg');
}
#home.bg-3 {
  background-image: url('/themes/cantwell/images/bg/home/3.jpg');
}
#home.bg-4 {
  background-image: url('/themes/cantwell/images/bg/home/4.jpg');
}
#home.bg-5 {
  background-image: url('/themes/cantwell/images/bg/home/5.jpg');
}
#home #video-bg #big-video-wrap {
  -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;
}
#home #video-bg #big-video-wrap .vjs-poster,
#home #video-bg #big-video-wrap .vjs-loading-spinner,
#home #video-bg #big-video-wrap .vjs-big-play-button,
#home #video-bg #big-video-wrap .vjs-text-track-display,
#home #video-bg #big-video-wrap .vjs-control-bar,
#home #video-bg #big-video-wrap .vjs-error-display,
#home #video-bg #big-video-wrap .vjs-caption-settings {
  display: none;
}
#home #video-bg.loading #big-video-wrap {
  opacity: 0;
}
#home #pattern-bg {
  overflow: hidden;
}
#home #header {
  margin-bottom: 0;
}
#home #home-col {
  position: relative;
}
#home #home-col #featured-item {
  display: block;
  position: absolute;
  right: 0;
  bottom: 50px;
  padding: 0;
  width: 55%;
  background-color: rgba(37, 37, 37, 0.85);
}
#home #home-col #featured-item #featured-item-text {
  float: left;
  width: 85%;
  padding: 15px 20px 10px 20px;
  font-family: 'SlateW01-MediumCondense';
  font-size: 25px;
  line-height: 1.2em;
  color: #fff;
  vertical-align: middle;
}
#home #home-col #featured-item #featured-item-btn {
  float: right;
  width: 10%;
  height: 100%;
  padding: 0 30px;
  background: #296a28 url(/themes/cantwell/images/home/featured-arrow.png) center center no-repeat;
}
#home #home-col #featured-item:hover {
  background-color: #252525;
}
#home #home-col #featured-item.moramessage {
  bottom: 200px;
}
@media (max-width: 991px) {
  #home #home-col #featured-item.moramessage {
    bottom: 240px;
  }
}
#home #home-col #moratorium {
  background-color: rgba(41, 105, 41, 0.76);
  position: absolute;
  right: 0;
  bottom: 50px;
  padding: 0;
}
@media (max-width: 767px) {
  #home #home-col #moratorium {
    background-color: transparent;
    padding: 15px;
  }
}
@media (max-width: 400px) {
  #home #home-col #moratorium {
    position: relative;
    bottom: -80px;
  }
}
#home #home-col #moratorium .message {
  padding: 1em;
  text-align: center;
}
@media (max-width: 767px) {
  #home #home-col #moratorium .message {
    background-color: rgba(41, 105, 41, 0.76);
    padding: 10px;
  }
}
#home #home-col #moratorium .message a {
  color: white;
}
#home #home-col #video-toggle {
  display: none;
  position: absolute;
  bottom: 50px;
}
#home #home-col #video-toggle a {
  cursor: pointer;
  color: #fff;
  -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;
}
#home #home-col #video-toggle a .glyphicon {
  position: relative;
  top: 3px;
  left: -3px;
}
#home #home-col #video-toggle a:hover {
  color: #296a28;
  text-decoration: none;
}
#home #light #home-col #featured-item #featured-item-text {
  color: #303030;
  background-color: rgba(255, 255, 255, 0.9);
}
#home #light #home-col #featured-item:hover #featured-item-text {
  background-color: white;
}
@media (max-width: 740px) {
  #home #popupModal {
    display: none!important;
  }
}
#home #popupModal .modal-dialog {
  height: auto;
  top: 20%;
  text-align: center;
  padding: 40px;
  width: 100%;
}
#home #popupModal .modal-dialog .modal-content {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.27);
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  min-height: 430px;
  position: relative;
  border: 20px solid rgba(41, 83, 123, 0.6);
}
#home #popupModal .modal-dialog .modal-content .modal-header {
  position: relative;
  top: 1px;
}
#home #popupModal .modal-dialog .modal-content .modal-header .close {
  opacity: 1;
  color: #29537b;
  position: absolute;
  top: 0.2em;
  right: 0.5em;
  font-weight: 100;
  font-size: 40px;
}
#home #popupModal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 90px;
  font-family: 'SlateW01-BoldCondensed';
  color: #fff;
  text-shadow: 2px 2px 10px #000;
  line-height: 80px;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  width: 70%;
  display: inline-table;
}
#home #popupModal .modal-dialog .modal-content .modal-body {
  padding: 15px;
  text-align: left;
  font-size: 28px;
}
#home #popupModal .modal-dialog .modal-content .btn {
  background-color: #29537b;
  color: #fff!important;
  border-radius: 10px;
  font-size: 30px;
  bottom: -1em;
  right: -1em;
  float: right;
  font-family: 'SlateW01-LightCondensed';
  text-transform: uppercase;
  position: absolute;
}
#home #popupModal .modal-dialog .modal-content .btn .fa {
  font-size: 30px;
  right: 4em;
  top: 10px;
}
#home #popupModal .modal-dialog .modal-content .btn:hover {
  background-color: #1c3955;
  color: #fff;
}
#home.moratorium #video-bg #pattern-bg {
  overflow: scroll!important;
}
/*
default interior styles

commonly made fixes / tweaks
*/
/*
body.do-backgrounds {
	#pattern-bg {
		//background: url(/themes/cantwell/images/bg-pattern.png);
		background-color: rgba(0, 0, 0, .05);
		.inner-shadow(0, 0, 300px, 0.5);
	}
}

body.do-shadow {
	#pattern-bg {
		.inner-shadow(0, 0, 300px, 0.5);
	}
}

body.small-shadow {
	#pattern-bg {
		.inner-shadow(0, 0, 50px, 0.5);
	}
}

body.do-lines {
	#pattern-bg {
		background: url(/themes/cantwell/images/bg-pattern.png);
	}
}

body.overlay {
	#pattern-bg {
		background-color: rgba(0, 0, 0, .05);
	}
}
*/
body {
  background: #000 url(/themes/cantwell/images/bg/about.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
body.loaded {
  opacity: 1;
}
body .no-gutter {
  padding-left: 0;
  padding-right: 0;
}
body #pattern-bg {
  position: absolute;
  /*overflow-x: hidden;*/
  /*overflow-y: auto;*/
  width: 100%;
  -webkit-box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.5);
}
body #header {
  margin-bottom: 65px;
  padding: 19px 0 0 0;
  background: transparent;
}
body #header .logo {
  margin: 0;
}
body #header .logo a {
  display: block;
  /*width: 278px;
				height: 45px;*/
  width: 450px;
  height: 70px;
  background: url(/themes/cantwell/images/logo.png);
  background-size: 100% 100%;
  text-indent: -10000px;
}
body #header #search {
  display: none;
}
body .main_page_title {
  display: none;
}
body .container {
  max-width: 1170px;
}
body #content {
  margin-left: auto;
  margin-right: auto;
}
body #content .container {
  padding: 0 0 1.5em 0;
}
body.has-alert #pattern-bg {
  -webkit-box-shadow: inset 0 0 400px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 0 400px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 400px rgba(0, 0, 0, 0.5);
}
button#removeClone3 {
  font-size: 14px;
  padding: 5px 25px;
  float: right;
  margin-top: -2px !important;
  margin-right: 52px !important;
}
.datepicker-days {
  color: #A9A9A9;
}
button#clone {
  position: relative;
  display: inline-block;
  left: 14px;
  margin-top: 42px!important;
}
button#clone2 {
  position: relative;
  display: inline-block;
  left: 14px;
  margin-top: 42px!important;
}
body#home #nav-container .srchbutton:hover,
body#home #nav-container #srchbtn:hover,
body#home #nav-container .togglemenu:hover {
  color: #378f36;
}
body#home #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(41, 106, 40, 0.75);
}
body#home #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #296a28;
}
body#about,
body.about {
  background-image: url(/themes/cantwell/images/bg/about.jpg);
  /*#spa-container {
		.item-container {
			box-shadow: inset 500px 0 400px -75px rgba(0, 0, 0, 0.2); // left shadow for subnav
		}
	}*/
  /*#site-alert {
		.headline {
			background-color: @about-box-opacified;

			&:hover {
				background-color: @about-box;
			}
		}
	}*/
}
body#about .navbar .nav-pills li a:hover,
body.about .navbar .nav-pills li a:hover {
  color: #709908;
}
body#about .navbar .nav-pills li.selected a,
body.about .navbar .nav-pills li.selected a {
  color: #709908;
}
body#about .nav-list li a:hover,
body.about .nav-list li a:hover {
  color: #709908;
}
body#about .nav-list li.selected a,
body.about .nav-list li.selected a,
body#about .nav-list li.active a,
body.about .nav-list li.active a {
  color: #709908;
}
body#about .nav-list li.no-spa a,
body.about .nav-list li.no-spa a {
  cursor: default;
}
body#about .nav-list li.no-spa a:hover,
body.about .nav-list li.no-spa a:hover {
  color: #fff;
}
body#about .nav-list li.indented,
body.about .nav-list li.indented {
  padding-left: 1em;
}
body#about #nav-container .srchbutton:hover,
body.about #nav-container .srchbutton:hover,
body#about #nav-container #srchbtn:hover,
body.about #nav-container #srchbtn:hover,
body#about #nav-container .togglemenu:hover,
body.about #nav-container .togglemenu:hover {
  color: #93c90b;
}
body#about #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.about #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(112, 153, 8, 0.75);
}
body#about #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
body.about #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #709908;
}
body#about .translucent a,
body.about .translucent a {
  color: #709908;
}
body#about .translucent h2,
body.about .translucent h2 {
  color: #709908;
}
body#about .translucent ul,
body.about .translucent ul {
  list-style: none;
  padding: 0;
}
body#about .translucent ul li,
body.about .translucent ul li {
  font-weight: bold;
}
body#about .translucent ul li ul,
body.about .translucent ul li ul {
  padding-left: 2em;
}
body#about .translucent ul li ul li,
body.about .translucent ul li ul li {
  font-weight: normal;
  font-size: .85em;
}
body#about .translucent .summary .item-link,
body.about .translucent .summary .item-link {
  background-color: #709908;
}
body#about .translucent .summary .item-link:hover,
body.about .translucent .summary .item-link:hover {
  background-color: #709908;
}
body#about .translucent .summary .item-link .item-link-text span,
body.about .translucent .summary .item-link .item-link-text span {
  color: #709908;
}
body#about .translucent .summary .item-link .item-link-text:hover,
body.about .translucent .summary .item-link .item-link-text:hover {
  color: #709908;
}
body#about .translucent .summary .item-link .item-link-text:hover span,
body.about .translucent .summary .item-link .item-link-text:hover span {
  color: #2c2722;
}
body#about .translucent .pagination .prev,
body.about .translucent .pagination .prev,
body#about .translucent .pagination .next,
body.about .translucent .pagination .next {
  background-color: #709908;
}
body#about .modal .modal-title,
body.about .modal .modal-title {
  color: #709908;
}
body#issues,
body.issues {
  background-image: none;
  /*#site-alert {
		.headline {
			background-color: @issue-box-opacified;

			&:hover {
				background-color: @issue-box;
			}
		}
	}*/
}
body#issues #spa-container .item-container,
body.issues #spa-container .item-container {
  box-shadow: inset 500px 0 400px -75px rgba(0, 0, 0, 0.2);
}
body#issues .navbar .nav-pills li a:hover,
body.issues .navbar .nav-pills li a:hover {
  color: #dc980f;
}
body#issues .navbar .nav-pills li.selected a,
body.issues .navbar .nav-pills li.selected a {
  color: #dc980f;
}
body#issues .nav-list li a:hover,
body.issues .nav-list li a:hover {
  color: #dc980f;
}
body#issues .nav-list li.selected a,
body.issues .nav-list li.selected a,
body#issues .nav-list li.active a,
body.issues .nav-list li.active a {
  color: #dc980f;
}
body#issues #nav-container .srchbutton:hover,
body.issues #nav-container .srchbutton:hover,
body#issues #nav-container #srchbtn:hover,
body.issues #nav-container #srchbtn:hover,
body#issues #nav-container .togglemenu:hover,
body.issues #nav-container .togglemenu:hover {
  color: #f1b02d;
}
body#issues #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.issues #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(220, 152, 15, 0.75);
}
body#issues #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
body.issues #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #dc980f;
}
body#issues .translucent a,
body.issues .translucent a {
  color: #dc980f;
}
body#issues .translucent h2,
body.issues .translucent h2 {
  color: #dc980f;
}
body#issues .translucent .summary .item-link,
body.issues .translucent .summary .item-link {
  background-color: #dc980f;
}
body#issues .translucent .summary .item-link:hover,
body.issues .translucent .summary .item-link:hover {
  background-color: #dc980f;
}
body#issues .translucent .summary .item-link .item-link-text span,
body.issues .translucent .summary .item-link .item-link-text span {
  color: #dc980f;
}
body#issues .translucent .summary .item-link .item-link-text:hover,
body.issues .translucent .summary .item-link .item-link-text:hover {
  color: #dc980f;
}
body#issues .translucent .summary .item-link .item-link-text:hover span,
body.issues .translucent .summary .item-link .item-link-text:hover span {
  color: #2c2722;
}
body#issues .translucent .pagination .prev,
body.issues .translucent .pagination .prev,
body#issues .translucent .pagination .next,
body.issues .translucent .pagination .next {
  background-color: #dc980f;
}
body#issues .modal .modal-title,
body.issues .modal .modal-title {
  color: #dc980f;
}
body#services,
body.services {
  background-image: url(/themes/cantwell/images/bg/services.jpg);
  /*#site-alert {
		.headline {
			background-color: @service-box-opacified;

			&:hover {
				background-color: @service-box;
			}
		}
	}*/
}
body#services .navbar .nav-pills li a:hover,
body.services .navbar .nav-pills li a:hover {
  color: #419c3f;
}
body#services .navbar .nav-pills li.selected a,
body.services .navbar .nav-pills li.selected a {
  color: #419c3f;
}
body#services .nav-list li a:hover,
body.services .nav-list li a:hover {
  color: #419c3f;
}
body#services .nav-list li.selected a,
body.services .nav-list li.selected a,
body#services .nav-list li.active a,
body.services .nav-list li.active a {
  color: #419c3f;
}
body#services #nav-container .srchbutton:hover,
body.services #nav-container .srchbutton:hover,
body#services #nav-container #srchbtn:hover,
body.services #nav-container #srchbtn:hover,
body#services #nav-container .togglemenu:hover,
body.services #nav-container .togglemenu:hover {
  color: #56ba54;
}
body#services #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.services #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(41, 106, 40, 0.75);
}
body#services #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
body.services #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #296a28;
}
body#services .translucent a,
body.services .translucent a {
  color: #419c3f;
}
body#services .translucent h2,
body.services .translucent h2 {
  color: #419c3f;
}
body#services .gridster .gridster-item a,
body.services .gridster .gridster-item a {
  background-color: rgba(41, 106, 40, 0.75);
}
body#services .gridster .gridster-item a:hover,
body.services .gridster .gridster-item a:hover {
  background-color: #296a28;
}
body#services .translucent .summary .item-link,
body.services .translucent .summary .item-link {
  background-color: #419c3f;
}
body#services .translucent .summary .item-link:hover,
body.services .translucent .summary .item-link:hover {
  background-color: #419c3f;
}
body#services .translucent .summary .item-link .item-link-text span,
body.services .translucent .summary .item-link .item-link-text span {
  color: #419c3f;
}
body#services .translucent .summary .item-link .item-link-text:hover,
body.services .translucent .summary .item-link .item-link-text:hover {
  color: #419c3f;
}
body#services .translucent .summary .item-link .item-link-text:hover span,
body.services .translucent .summary .item-link .item-link-text:hover span {
  color: #2c2722;
}
body#services .translucent .pagination .prev,
body.services .translucent .pagination .prev,
body#services .translucent .pagination .next,
body.services .translucent .pagination .next {
  background-color: #419c3f;
}
body#services .modal .modal-title,
body.services .modal .modal-title {
  color: #419c3f;
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
body.openinternet {
  background-image: url('https://www.cantwell.senate.gov/imo/media/image/technology1.jpg');
}
body.openinternet #content a {
  color: #dc980f;
}
body#newsroom,
body.newsroom {
  background-image: url(/themes/cantwell/images/bg/newsroom.jpg);
  /*#site-alert {
		.headline {
			background-color: @newsroom-box-opacified;

			&:hover {
				background-color: @newsroom-box;
			}
		}
	}*/
  /*.modal-dialog {
	    .modal-body {
	    	form {
	    		select{
					margin-bottom: 0;
					height: 42px;
					font-size: 18px;
					border: none;
	    		}
	    	}
	    }
    }*/
}
body#newsroom .navbar .nav-pills li a:hover,
body.newsroom .navbar .nav-pills li a:hover {
  color: #7eb1f0;
}
body#newsroom .navbar .nav-pills li.selected a,
body.newsroom .navbar .nav-pills li.selected a {
  color: #7eb1f0;
}
body#newsroom .nav-list li a:hover,
body.newsroom .nav-list li a:hover {
  color: #7eb1f0;
}
body#newsroom .nav-list li.selected a,
body.newsroom .nav-list li.selected a,
body#newsroom .nav-list li.active a,
body.newsroom .nav-list li.active a {
  color: #7eb1f0;
}
body#newsroom #nav-container .srchbutton:hover,
body.newsroom #nav-container .srchbutton:hover,
body#newsroom #nav-container #srchbtn:hover,
body.newsroom #nav-container #srchbtn:hover,
body#newsroom #nav-container .togglemenu:hover,
body.newsroom #nav-container .togglemenu:hover {
  color: #accdf5;
}
body#newsroom #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.newsroom #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(41, 83, 123, 0.75);
}
body#newsroom #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
body.newsroom #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #29537b;
}
body#newsroom .translucent a,
body.newsroom .translucent a {
  color: #7eb1f0;
}
body#newsroom .translucent h2,
body.newsroom .translucent h2 {
  color: #7eb1f0;
}
body#newsroom .gridster .gridster-item a,
body.newsroom .gridster .gridster-item a {
  background-color: rgba(41, 83, 123, 0.75);
}
body#newsroom .gridster .gridster-item a:hover,
body.newsroom .gridster .gridster-item a:hover {
  background-color: #29537b;
}
body#newsroom .gridster .gridster-item form button:hover,
body.newsroom .gridster .gridster-item form button:hover {
  color: #7eb1f0;
}
body#newsroom .translucent .summary .item-link,
body.newsroom .translucent .summary .item-link {
  background-color: #7eb1f0;
}
body#newsroom .translucent .summary .item-link:hover,
body.newsroom .translucent .summary .item-link:hover {
  background-color: #7eb1f0;
}
body#newsroom .translucent .summary .item-link .item-link-text span,
body.newsroom .translucent .summary .item-link .item-link-text span {
  color: #7eb1f0;
}
body#newsroom .translucent .summary .item-link .item-link-text:hover,
body.newsroom .translucent .summary .item-link .item-link-text:hover {
  color: #7eb1f0;
}
body#newsroom .translucent .summary .item-link .item-link-text:hover span,
body.newsroom .translucent .summary .item-link .item-link-text:hover span {
  color: #2c2722;
}
body#newsroom .translucent .pagination .prev,
body.newsroom .translucent .pagination .prev,
body#newsroom .translucent .pagination .next,
body.newsroom .translucent .pagination .next {
  background-color: #7eb1f0;
}
body#newsroom .modal .modal-title,
body.newsroom .modal .modal-title {
  color: #7eb1f0;
}
body#contact,
body.contact {
  background-image: url(/themes/cantwell/images/bg/contact.jpg);
  /*#site-alert {
		.headline {
			background-color: @contact-box-opacified;

			&:hover {
				background-color: @contact-box;
			}
		}
	}*/
}
body#contact .navbar .nav-pills li a:hover,
body.contact .navbar .nav-pills li a:hover {
  color: #a73b4b;
}
body#contact .navbar .nav-pills li.selected a,
body.contact .navbar .nav-pills li.selected a {
  color: #a73b4b;
}
body#contact .nav-list li a:hover,
body.contact .nav-list li a:hover {
  color: #a73b4b;
}
body#contact .nav-list li.selected a,
body.contact .nav-list li.selected a,
body#contact .nav-list li.active a,
body.contact .nav-list li.active a {
  color: #a73b4b;
}
body#contact #nav-container .srchbutton:hover,
body.contact #nav-container .srchbutton:hover,
body#contact #nav-container #srchbtn:hover,
body.contact #nav-container #srchbtn:hover,
body#contact #nav-container .togglemenu:hover,
body.contact #nav-container .togglemenu:hover {
  color: #c25363;
}
body#contact #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
body.contact #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: rgba(108, 35, 44, 0.75);
}
body#contact #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
body.contact #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #6c232c;
}
body#contact .translucent a,
body.contact .translucent a {
  color: #a73b4b;
}
body#contact .translucent h2,
body.contact .translucent h2 {
  color: #a73b4b;
}
body#contact .translucent .summary .item-link,
body.contact .translucent .summary .item-link {
  background-color: #a73b4b;
}
body#contact .translucent .summary .item-link:hover,
body.contact .translucent .summary .item-link:hover {
  background-color: #a73b4b;
}
body#contact .translucent .summary .item-link .item-link-text span,
body.contact .translucent .summary .item-link .item-link-text span {
  color: #a73b4b;
}
body#contact .translucent .summary .item-link .item-link-text:hover,
body.contact .translucent .summary .item-link .item-link-text:hover {
  color: #a73b4b;
}
body#contact .translucent .summary .item-link .item-link-text:hover span,
body.contact .translucent .summary .item-link .item-link-text:hover span {
  color: #2c2722;
}
body#contact .translucent .pagination .prev,
body.contact .translucent .pagination .prev,
body#contact .translucent .pagination .next,
body.contact .translucent .pagination .next {
  background-color: #a73b4b;
}
body#contact .gridster .gridster-item a,
body.contact .gridster .gridster-item a {
  background-color: rgba(108, 35, 44, 0.75);
}
body#contact .gridster .gridster-item a:hover,
body.contact .gridster .gridster-item a:hover {
  background-color: #6c232c;
}
body#contact .modal .modal-title,
body.contact .modal .modal-title {
  color: #a73b4b;
}
#voting_record .page .row {
  /* ----- */
}
.internbtn a {
  background-color: rgba(47, 183, 138, 0.85);
  color: #fff!important;
  font-size: 18px;
}
.internbtn a:hover {
  color: #fff;
  text-decoration: underline;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
.gridster .gridster-item {
  display: table !important;
  opacity: 0;
}
.gridster .gridster-item.loaded {
  opacity: 1;
}
.gridster .gridster-item a {
  display: table-cell;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  vertical-align: middle;
  text-align: center;
  background-color: rgba(41, 106, 40, 0.75);
  color: #fff;
  font: normal normal normal 37px/1 'SlateW01-MediumCondense';
  text-transform: uppercase;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.gridster .gridster-item a:hover {
  text-decoration: none;
  background-color: #296a28;
}
.gridster .gridster-item a span {
  position: relative;
  top: 7px;
}
.gridster .gridster-item form {
  position: relative;
}
.gridster .gridster-item form label {
  display: none;
}
.gridster .gridster-item form input {
  padding: 18px;
  width: 100%;
  font: normal normal normal 30px/1 'SlateW01-LightCondensed';
  color: #2c2722;
  background-color: #e9e9e9;
}
.gridster .gridster-item form button {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: none;
  font-size: 30px;
  color: #2c2722;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
.gridster .gridster-item form button:hover {
  color: #296a28;
}
/*
body#newsroom, body.newsroom {
	.gridster {
		.gridster-item {
			&.beige {
				a {
					background-color: rgba(138, 123, 81, .75);

					&:hover {
						background-color: #8a7b51;
					}
				}
			}

			&.blue {
				a {
					background-color: rgba(14, 52, 80, .75);

					&:hover {
						background-color: #0e3450;
					}
				}
			}

			&.gray {
				a {
					background-color: rgba(73, 62, 55, .75);

					&:hover {
						background-color: #493e37;
					}
				}
			}

			&.red {
				a {
					background-color: rgba(102, 52, 33, .75);

					&:hover {
						background-color: #663421;
					}
				}
			}
		}
	}
}

body#services, body.services {
	.gridster {
		.gridster-item {
			&.blue {
				a {
					background-color: rgba(26, 42, 58, .75);

					&:hover {
						background-color: #1a2a3a;
					}
				}
			}

			&.brown {
				a {
					background-color: rgba(89, 54, 5, .75);

					&:hover {
						background-color: #593605;
					}
				}
			}

			&.gray {
				a {
					background-color: rgba(78, 72, 69, .75);

					&:hover {
						background-color: #4e4845;
					}
				}
			}

			&.green {
				a {
					background-color: rgba(24, 56, 14, .75);

					&:hover {
						background-color: #18380e;
					}
				}
			}
		}
	}
}

body#contact, body.contact {
	.gridster {
		.gridster-item {
			&.blue {
				a {
					background-color: rgba(18, 33, 66, .75);

					&:hover {
						background-color: #122142;
					}
				}
			}

			&.light-blue {
				a {
					background-color: rgba(51, 80, 120, .75);

					&:hover {
						background-color: #335078;
					}
				}
			}

			&.brown {
				a {
					background-color: rgba(55, 42, 26, .75);

					&:hover {
						background-color: #372a1a;
					}
				}
			}

			&.green {
				a {
					background-color: rgba(38, 50, 30, .75);

					&:hover {
						background-color: #26321e;
					}
				}
			}

			&.red {
				a {
					background-color: rgba(174, 50, 48, .75);

					&:hover {
						background-color: #ae3230;
					}
				}
			}

			&.dark-red {
				a {
					background-color: rgba(108, 35, 44, .75);

					&:hover {
						background-color: #6c232c;
					}
				}
			}
		}
	}
}
*/
.fancybox-wrap {
  z-index: 1000000 !important;
}
.fancybox-overlay {
  z-index: 999999 !important;
}
#spa-container {
  position: absolute;
  overflow: hidden;
}
#spa-container .spa-scroller {
  position: absolute;
  top: 0;
  width: 100%;
}
#spa-container .spa-scroller .item-container {
  background-size: cover;
  overflow: hidden;
}
#spa-container .spa-scroller .item-container .translucent {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99995;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#spa-container .spa-scroller .item-container .translucent h2 {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#spa-container .spa-scroller .item-container .translucent .summary {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#spa-container .spa-scroller .item-container .translucent .summary .item-link {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#spa-container .spa-scroller .un-inited .translucent {
  left: 100px;
  opacity: 0;
}
#spa-container .spa-scroller .un-inited .translucent h2 {
  left: 140px;
}
#spa-container .spa-scroller .un-inited .translucent .summary {
  left: 160px;
}
#spa-container .spa-scroller .un-inited .translucent .summary .item-link {
  left: 180px;
}
.video-col,
.photo-col {
  padding-bottom: 1em;
}
.video-col img,
.photo-col img {
  width: 100%;
}
.video-col a,
.photo-col a {
  font-size: .85em;
}
table.photos .photo {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
}
table.photos .photo img {
  display: none;
}
.scrolling #spa-container .spa-scroller {
  -webkit-transition: top 0.75s ease-in-out;
  -moz-transition: top 0.75s ease-in-out;
  -o-transition: top 0.75s ease-in-out;
  -ms-transition: top 0.75s ease-in-out;
  transition: top 0.75s ease-in-out;
}
.scrolling #spa-container .spa-scroller .item-container .translucent {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scrolling #spa-container .spa-scroller .item-container .translucent h2 {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scrolling #spa-container .spa-scroller .item-container .translucent .summary {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scrolling #spa-container .spa-scroller .item-container .translucent .summary .item-link {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#spa-template {
  opacity: 0;
}
@media (max-width: 1024px) {
  #spa-template {
    opacity: 1;
  }
}
.nav-list li a {
  padding: 0;
  min-height: 26px;
  font: normal normal normal 23px/1 'SlateW01-MediumCondense';
  font-variant: small-caps;
  color: #fff;
  -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;
}
.nav-list li a:hover {
  color: #296a28;
}
.nav-list li.selected a,
.nav-list li.active a {
  font-size: 26px;
  color: #296a28;
}
.nav-list li + li {
  margin-top: 10px;
}
.translucent {
  position: relative;
  padding: 25px 45px;
  background-color: rgba(37, 37, 37, 0.85);
}
.translucent h2 {
  margin: 0 0 10px 0;
  font: normal normal normal 30px/1 'SlateW01-MediumCondense';
  font-variant: small-caps;
  color: #296a28;
}
.translucent a {
  color: #296a28;
}
.translucent .summary {
  font: normal normal normal 20px/1.5em 'Slate W01';
}
.translucent .item-link {
  position: relative;
  float: right;
  display: block;
  padding: 0 40px 0 0;
  background: #296a28 url(/themes/cantwell/images/arrow-small.png) right center no-repeat;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in !important;
  -moz-transition: all 0.1s ease-in !important;
  -o-transition: all 0.1s ease-in !important;
  -ms-transition: all 0.1s ease-in !important;
  transition: all 0.1s ease-in !important;
  border-radius: 7px;
  overflow: hidden;
}
.translucent .item-link .item-link-text {
  display: inline-block;
  padding: 10px 15px;
  font: normal normal normal 18px/1 'SlateW01-MediumCondense';
  color: #2c2722;
  background-color: #fff;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
.translucent .item-link .item-link-text span {
  font-family: 'SlateW01-BlackCondensed';
  color: #296a28;
  -webkit-transition: color 0.1s ease-in;
  -moz-transition: color 0.1s ease-in;
  -o-transition: color 0.1s ease-in;
  -ms-transition: color 0.1s ease-in;
  transition: color 0.1s ease-in;
}
.translucent .item-link:hover {
  left: .5em !important;
  background-color: #378f36;
}
.translucent .item-link:hover .item-link-text {
  color: #296a28;
}
.translucent .item-link:hover .item-link-text span {
  color: #2c2722;
}
.translucent .left-item-link {
  float: left;
}
.icons {
  float: right;
  font-size: 20px;
}
.icons .icon {
  display: inline-block;
  padding-left: 20px;
  font-family: 'Slate W01 Condensed';
  line-height: 14px;
  color: #fff;
}
.icons .filter-icon {
  background: url(/themes/cantwell/images/filter.png) no-repeat;
  color: #fff !important;
}
.resultset {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.resultset.loading span.label {
  opacity: 0;
}
.resultset table {
  margin: 0 0 20px 0;
  width: 100%;
}
.resultset table tr + tr td {
  padding-top: 20px;
}
.resultset table td {
  vertical-align: top;
  font-family: 'Slate W01 Condensed';
  font-size: .9em;
  line-height: 1.1em;
}
.resultset table td a {
  font-family: 'Slate W01 Medium';
  color: #fff !important;
}
.resultset table td .loader {
  position: relative;
  margin: 0 auto;
  height: 50px;
  width: 50px;
  border-left: 7px solid rgba(204, 204, 204, 0.15);
  border-right: 7px solid rgba(204, 204, 204, 0.15);
  border-bottom: 7px solid rgba(204, 204, 204, 0.15);
  border-top: 7px solid rgba(204, 204, 204, 0.8);
  border-radius: 100%;
  -webkit-animation: rotation 1s infinite linear;
  -moz-animation: rotation 1s infinite linear;
  -o-animation: rotation 1s infinite linear;
  animation: rotation 1s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.resultset table td + td {
  padding-left: 20px;
}
.resultset .pagination {
  position: relative;
  float: right;
  margin: 0;
  border-radius: 0;
  background-color: #fff;
  border-radius: 7px;
  overflow: hidden;
}
.resultset .pagination a {
  display: inline-block;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.resultset .pagination a span {
  display: none;
}
.resultset .pagination .prev {
  float: left;
  background: #296a28 url(/themes/cantwell/images/prev.png) center center no-repeat;
}
.resultset .pagination .prev:hover {
  background-color: #378f36;
  background-position: 40% center;
}
.resultset .pagination .label {
  display: inline-block;
  float: left;
  padding: 0 15px;
  height: 50px;
  border-radius: 0;
  font-family: 'Slate W01 Condensed';
  font-size: 18px;
  font-variant: small-caps;
  line-height: 50px;
  color: #2c2722;
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  -ms-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
.resultset .pagination .next {
  float: right;
  background: #296a28 url(/themes/cantwell/images/next.png) center center no-repeat;
}
.resultset .pagination .next:hover {
  background-color: #378f36;
  background-position: 60% center;
}
.modal-body {
  /*input + input, select + select, select + input, input + select {
		margin-top: 15px;
	}*/
}
.datepicker {
  z-index: 999999 !important;
}
.datepicker-dropdown {
  background-color: rgba(37, 37, 37, 0.85);
}
.datepicker-dropdown table tr th,
.datepicker-dropdown table tr td {
  color: #fff;
}
.datepicker-dropdown table tr th:hover,
.datepicker-dropdown table tr td:hover {
  background-color: #000 !important;
}
.datepicker-dropdown table tr td.active {
  border-color: #296a28 !important;
  background-color: #296a28 !important;
}
.datepicker-dropdown:after {
  border-bottom: 6px solid rgba(37, 37, 37, 0.85);
}
.modal {
  z-index: 999999 !important;
}
.modal .modal-backdrop.in {
  background-color: rgba(37, 37, 37, 0.85);
}
.modal h1 {
  margin: 0 0 10px 0;
  font: normal normal normal 30px/1 'SlateW01-MediumCondense';
  font-variant: small-caps;
  color: #296a28;
}
.modal .close {
  font-size: 30px;
  text-shadow: none;
  opacity: 1;
}
.modal legend {
  color: #fff;
}
.modal input[type="text"],
.modal select {
  width: 100%;
  height: 42px;
  border: 1px solid #000;
  border-radius: 0;
  margin-bottom: 0 !important;
  color: #2c2722;
}
.modal input[type="button"] {
  margin: 10px 0 0 0;
  padding: 0 12px;
  font-size: 22px;
  line-height: 36px;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: background 0.15s ease-in-out;
  -moz-transition: background 0.15s ease-in-out;
  -o-transition: background 0.15s ease-in-out;
  -ms-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.modal input[type="button"]:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal .from-date {
  padding-right: 7px;
}
.modal .to-date {
  padding-left: 7px;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 0;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
  font-size: 27px;
  padding: 11px;
  background-color: rgba(41, 106, 40, 0.75);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #296a28;
}
.modal-backdrop {
  background-color: rgba(37, 37, 37, 0.5);
}
.modal-dialog {
  width: 50%;
}
.modal-dialog .modal-content {
  background-color: rgba(37, 37, 37, 0.85);
  box-shadow: none;
  border-radius: 0;
}
.modal-dialog .modal-content .modal-header {
  border: none;
}
.modal-dialog .modal-content .modal-header .close {
  opacity: .8;
  color: #fff;
}
.modal-dialog .modal-content .modal-header .close:hover {
  opacity: 1;
}
.modal-dialog .modal-content .modal-body h4 {
  padding-bottom: 3px;
  border-bottom: 1px solid #666;
}
.modal-dialog .modal-content .modal-body h3 + h4 {
  margin-top: 1em;
}
.modal-dialog .modal-content .modal-body p {
  font-size: .9em;
  line-height: 1.4em;
}
#services .modal-content .modal-body h3,
.services .modal-content .modal-body h3 {
  color: #419c3f;
}
.steps-wizard {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.steps-wizard .steps-container {
  position: absolute;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.steps-wizard .steps-container .step {
  float: left;
  overflow: hidden;
}
.steps-wizard-btns {
  position: relative;
  text-align: center;
}
.steps-wizard-btns .steps-status {
  margin: 0 auto;
  color: #fff;
}
.steps-wizard-btns .btn {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.steps-wizard-btns .btn:hover {
  background-color: #000;
}
.btns-container .btn {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btns-container .btn:hover {
  background-color: #000;
}
.serviceinformationpage .serviceacadinfobutton {
  display: block;
  white-space: normal;
  border-bottom: 1px solid #fff;
  width: 100%;
  font-size: 26px;
  text-align: left;
  color: #fff;
  margin: 5px auto;
}
.serviceinformationpage .serviceacadinfobutton .glyphicon {
  float: right;
  font-size: 20px;
  margin-right: -20px;
}
.serviceinformationpage .serviceacadinfobutton .glyphicon:hover {
  color: #419c3f!important;
}
.serviceinformationpage .serviceacadinfobutton:hover {
  text-decoration: none;
  color: #419c3f!important;
  border-bottom: 1px solid #419c3f;
}
@media (max-width: 767px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 24px;
  }
}
@media (max-width: 620px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 22px;
  }
}
@media (max-width: 510px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 20px;
  }
}
@media (max-width: 414px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 21px;
  }
}
@media (max-width: 320px) {
  .serviceinformationpage .serviceacadinfobutton {
    font-size: 18px;
  }
}
.serviceinformationpage .translucent a {
  color: #fff;
}
body.books-bg {
  background: #000 url(/imo/media/image/education3.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body.books-bg .translucent a {
  color: #7eb1f0;
}
body.books-bg .translucent h2 {
  color: #7eb1f0;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
/*body {
	footer {
		position: absolute;
		bottom: 10px;
		width: 100%;

		.links {
			//text-align: right;

			a {
				color: #fff;

				&:hover {
					color: #fff;
				}
			}
		}
	}
}*/
#flagForm #flag-options {
  color: #fff;
}
#flagForm #flag-options legend {
  color: #fff;
}
#flagForm .payment legend {
  color: #fff;
}
#flagForm .honor legend {
  color: #fff;
}
#flagForm .contact-info legend {
  color: #fff;
}
#flagForm .shipping-address legend {
  color: #fff;
}
#flagForm .shipping_total legend {
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form legend {
  color: #fff;
}
.fc-tbx ul.error-list li p {
  color: #2c2722;
}
.popover-content {
  color: #2c2722;
}
/*
paste available font families here

font-family:'Slate W01 Light';
font-family:'Slate W01 Light Italic';
font-family:'Slate W01 Bk';
font-family:'Slate W01 Bk Italic';
font-family:'Slate W01';
font-family:'Slate W01 Italic';
font-family:'Slate W01 Medium';
font-family:'Slate W01 Medium Italic';
font-family:'Slate W01 Bold';
font-family:'Slate W01 Bold Italic';
font-family:'Slate W01 Black';
font-family:'Slate W01 Black Italic';
font-family:'SlateW01-LightCondensed';
font-family:'Slate W01 Bk Condensed';
font-family:'Slate W01 Condensed';
font-family:'SlateW01-MediumCondense';
font-family:'SlateW01-BoldCondensed';
font-family:'SlateW01-BlackCondensed';
*/
/*define site colors here

  naming conventions
  if we have multiple shades of one color
  number each shade from 1 - n
  with 1 being the lightest and n being the darkest

  @sitecolor:#fff; //example

  @colorshade1 :#examplehex;
  @colorshade2 :#examplehex;
  @colorshade3 :#examplehex;

*/
/* default greens */
/*@green: #2fb78a;
@green-opaque: rgba(47, 183, 138, .85);*/
/*@green: #336633;
@green-opaque: rgba(51, 102, 51, .75);*/
/* section colors */
/*@about-box: #2eb78b;
@about-box-opacified: rgba(46, 183, 139, .75);
@about-link: #2eb78b;*/
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
body {
  font: normal normal normal 18px/1.8em 'Slate W01 Medium';
  color: #fff;
}
/*header styles*/
p {
  margin: 0 0 20px 0;
}
/*anchor stlyes*/
/*button styles*/
/*interior page content default styles */
@media (max-width: 1200px) {
  body #nav-container {
    width: 515px;
  }
  body #nav-container .navbar {
    top: 0;
    width: auto;
  }
  body #nav-container .socicons {
    position: absolute;
    top: 35px;
    right: 0;
    margin-right: 0;
  }
  body .multilink {
    *zoom: 1;
  }
  body .multilink:before {
    display: table;
    content: "";
    line-height: 0;
  }
  body .multilink:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
  }
  body .multilink .summary .item-link,
  body .multilink .summary .left-item-link {
    float: right;
    clear: right;
  }
  body .multilink .summary .item-link + .item-link,
  body .multilink .summary .left-item-link + .item-link {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  body #spa-container {
    display: none;
  }
  body #spa-nav,
  body #content .nav-list {
    display: none;
  }
  body #spa-template {
    opacity: 1;
  }
  body #video-bg,
  body #pattern-bg {
    position: static;
  }
  body #nav-container {
    width: auto;
  }
  body #nav-container .navbar {
    top: 19px;
  }
  body #nav-container .socicons {
    position: static;
    float: left;
  }
  body #nav-container #srchbtn {
    position: relative;
    top: 3px;
    display: inline-block !important;
    float: right;
    margin-left: 1em;
    color: #fff;
    font-size: 18px;
    line-height: 23px;
  }
  body #nav-container .togglemenu {
    position: relative;
    top: 3px;
    float: right;
    margin-left: 1em;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
  }
  body #nav-container .togglemenu .glyphicon {
    position: relative;
    top: 3px;
  }
  body #nav-container .togglemenu .menulabel {
    display: none;
  }
  #home {
    overflow: hidden;
  }
  #home #big-video-wrap {
    left: -999999px;
  }
  #home #video-toggle {
    display: none;
  }
  #home #home-col #featured-item {
    width: 100%;
  }
  .gridster .gridster-item a {
    line-height: normal;
  }
  .gridster .gridster-item a span {
    font-size: 25px;
    line-height: 1.2em;
  }
}
@media (max-width: 767px) {
  body #site-alert .alertIcn {
    position: relative;
    top: 5px;
    left: 10px;
    font-size: 25px;
  }
  body #header #logo-container {
    padding-left: 15px;
    /*.logo {
					a {
						width: 400px;
						height: 62px;
					}
				}*/
  }
  body #header #nav-container {
    padding-right: 15px;
  }
  body #header #nav-container .navbar {
    top: 0;
  }
  body #header #nav-container .socicons {
    position: absolute;
    width: 140px;
    top: 35px;
    right: 0px;
    margin-right: 0;
  }
  body #header #nav-container .srchbutton {
    top: 35px;
  }
  body #header,
  body #content {
    padding: 0 15px;
  }
  body .modal .modal-header {
    padding: 0 20px !important;
  }
  body .modal .modal-body {
    padding: 0 20px !important;
  }
  body .modal .modal-body .from-date {
    padding: 0;
    margin: 0 15px;
  }
  body .modal .modal-body .to-date {
    padding: 0;
    margin: 0 15px;
  }
  body .modal .modal-body .to-date input {
    margin-top: 15px;
  }
  #home #home-col {
    padding-top: 20px;
  }
  #home #home-col #featured-item {
    position: static;
  }
  .gridster .gridster-item a {
    line-height: normal;
  }
  .gridster .gridster-item a span {
    font-size: 20px;
  }
}
@media (max-width: 698px) {
  body #pattern-bg,
  body.has-alert #pattern-bg {
    box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 645px) {
  body #header #logo-container {
    float: none;
  }
  body #header #logo-container .logo {
    text-align: center;
  }
  body #header #logo-container .logo a {
    margin: 0 auto;
  }
  body #header #nav-container {
    float: none;
    margin-top: .5em;
  }
  body #header #nav-container .socicons {
    position: static;
    float: left;
  }
}
@media (max-width: 630px) {
  .gridster .gridster-item {
    width: 90%;
  }
  .gridster .gridster-item a {
    padding: .5em 1em;
    line-height: normal;
  }
  .gridster .gridster-item a span {
    font-size: 37px;
  }
  .nav-tabs > li {
    float: none;
  }
}
@media (max-width: 479px) {
  body #header #logo-container .logo {
    text-align: center;
  }
  body #header #logo-container .logo a {
    margin: 0 auto;
    width: 370px;
    height: 58px;
  }
  #home #home-col #featured-item #featured-item-text {
    width: 100%;
    font-size: 35px;
    line-height: 1.4em;
  }
  #home #home-col #featured-item #featured-item-btn {
    display: none;
  }
}
@media (max-width: 400px) {
  body #header #logo-container .logo a {
    margin: 0;
    width: 325px;
    height: 51px;
  }
}
@media (max-width: 350px) {
  body #header #logo-container .logo a {
    width: 300px;
    height: 47px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie #video-bg,
.ie #pattern-bg {
  -ms-overflow-style: none;
  overflow: auto;
}
.ie .navbar {
  width: 685px;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
@media (max-width: 1200px) {
  .ie .navbar {
    width: auto;
  }
  .ie .navbar .nav-pills {
    width: auto !important;
  }
  .ie .navbar .srchbutton {
    position: relative;
    top: 4px;
    float: right;
  }
}
@media (max-width: 767px) {
  .ie #header #nav-container .navbar .socicons {
    width: 150px;
  }
}
.ie8 #header .logo a,
.ie7 #header .logo a {
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/themes/cantwell/images/logo.png', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/themes/cantwell/images/logo.png',sizingMethod='scale')";
}
.ie8 .translucent,
.ie7 .translucent {
  background-color: #000;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@media print {
  html .quicknav {
    display: none!important;
  }
  html .quicknav .nav {
    display: none !important;
  }
  html .one_column.row {
    float: left !important;
  }
  html #main_column {
    width: 100% !important;
  }
  html #main_container {
    float: left !important;
  }
  html body {
    font-size: 24px;
  }
  html #press h2 {
    font-size: 44px;
  }
  html #press b {
    font-weight: normal;
    font-size: 30px;
  }
}
.coverflow {
  height: 235px;
  /*perspective: 500px;
    -webkit-perspective: 500px;*/
  perspective: 350px;
  -webkit-perspective: 350px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  line-height: 1;
}
.coverflow .coverflow-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  opacity: 0;
  cursor: pointer;
}
.coverflow .coverflow-item img {
  width: 200px;
  border: none;
}
.coverflow .coverflow-item .caption {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  font: normal normal normal 16px/1.2em 'Slate W01';
}
.coverflow .current .caption {
  opacity: 1;
}


#sam-main a{
  color: #7eb1f0;
}
/*# sourceMappingURL=common.css.map */