/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* 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);
  }
}
.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
#NavMobileModal .modal-dialog,
#SearchModal .modal-dialog,
#ContactModal .modal-dialog {
  z-index: 300;
}
#NavMobileModal .modal-dialog .modal-content .close,
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: #556e95 !important;
}
.modal-backdrop.in {
  z-index: 2;
}
body #header {
  position: fixed;
  height: 135px;
  width: 100%;
  z-index: 1039;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.2);
  overflow: visible;
}
body #header #header-alignment {
  text-align: center;
}
body #header #header-content {
  margin: 0 auto;
  width: 1170px;
}
body #header .logo {
  float: left;
  width: 314px;
  height: 112px;
}
body #header .logo a {
  display: block;
  width: 314px;
  height: 112px;
  background: url('/themes/capito/images/logo1.png');
  font: normal normal normal 100px/116px 'Century Gothic W01 Bold';
  letter-spacing: -1.3px;
  background-size: cover;
  color: #556e95;
  text-transform: uppercase;
}
body #header .logo a span {
  position: absolute;
  overflow: hidden;
  top: -1000px;
  height: 0px;
  width: 0px;
}
body #header .logo a:hover,
body #header .logo a:focus {
  background: url('/themes/capito/images/LogoRoll.png');
  background-size: cover;
  text-decoration: none;
}
body #header #header-right {
  float: left;
  width: 856px;
  height: 135px;
}
body #header #header-right-top {
  height: 55px;
}
body #header #header-right-top #newsletter-link {
  display: block;
  float: right;
  padding: 0 10px;
  line-height: 45px;
  background-color: #556e95;
  font-size: 19px;
  color: #fff;
  -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 #header #header-right-top #newsletter-link:hover {
  background-color: #3e567a;
  text-decoration: none;
}
body #header .socicons {
  float: right;
  margin: 12px 15px 0 0;
}
body #header .socicons li {
  padding: 0;
  text-align: center;
}
body #header .socicons li a {
  padding: 4px 6px;
  font-size: 15px;
}
body #header .socicons li .you-tube {
  position: relative;
  left: -3px;
}
body #header .socicons li .newsletter i {
  display: inline-block;
  width: 15px;
  height: 15px;
}
body #header .socicons li + li {
  padding: 0 2px;
}
body #header-offset {
  padding-top: 135px;
}
#newsroom .modal-backdrop.in {
  z-index: 0;
}
body .navbar {
  margin: 38px 0 0 0;
  border: none;
}
body .navbar .nav {
  float: left;
  margin: 0 0 0 15px;
}
body .navbar .nav-pills > li a {
  padding: 0 15px;
  font: normal normal normal 18px/42px 'Century Gothic W01 Bold';
  color: #363636;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu {
  min-width: 100%;
  box-shadow: none;
  border: 1px solid #e4e5e6;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  font-size: 16px;
  color: #363636;
  background-color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  color: #3e567a;
  text-decoration: underline;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #3e567a;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #fff;
  background-color: #3e567a;
}
body .navbar .nav-pills li + li {
  margin: 0;
}
body .navbar .togglemenu {
  float: left;
  position: relative;
  top: 13px;
  font-size: 22px;
  font-weight: 300;
  color: #556e95;
}
body .navbar .togglemenu span {
  top: 3px;
}
body .navbar .togglemenu:hover {
  text-decoration: none;
  color: #7088ad;
}
body .navbar .srchbutton,
body .navbar .srchbuttonmodal {
  float: left;
  margin-left: 10px;
  color: #363636;
}
body .navbar .srchbutton span,
body .navbar .srchbuttonmodal span {
  font-size: 14px;
  line-height: 42px;
}
body .navbar .srchbutton:hover,
body .navbar .srchbuttonmodal:hover {
  color: #6598af;
}
body .navbar #search {
  float: right;
  width: 255px;
}
body .navbar #search #sitesearch {
  width: 100%;
  float: left;
  padding: 0;
  height: 40px;
}
body .navbar #search #sitesearch #search-field {
  float: left;
  border: 1px solid #e4e5e6;
  width: 215px;
  padding: 5px;
  font-size: 15px;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
  filter: none;
}
body .navbar #search #sitesearch button {
  float: left;
  width: 37px;
  height: 36px;
  border: none;
  color: #556e95;
  background-color: #fff;
  -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -moz-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -o-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -ms-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
body .navbar #search #sitesearch button:hover {
  color: #fff;
  background-color: #556e95;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body a {
  font: normal normal normal 20px/50px 'Century Gothic W01 Bold';
  color: #556e95;
  text-transform: uppercase;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  display: block;
  zoom: 1;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  display: inline-block;
  float: left;
  padding: 0 15px;
  line-height: 1;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  position: static;
  display: block;
  float: right;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  float: none;
  padding: 0 15px;
  font: normal normal normal 15px/1 'Century Gothic W01';
  text-align: right;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu li + li {
  margin-top: 1em;
  padding: 0;
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav li + li {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #e4e5e6;
}
body #SearchModal .modal-dialog .modal-content .modal-body #searchpopup #sitesearch #search-field {
  border: 1px solid #e4e5e6;
  line-height: 42px;
}
body #SearchModal .modal-dialog .modal-content .modal-body #searchpopup #sitesearch button {
  height: 64px;
  background-color: #556e95;
}
.no-padding {
  padding: 0;
}
#featured-carousel {
  position: relative;
  height: 590px;
}
#featured-carousel .greenscreen {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: block;
  background-image: url("/themes/capito/images/featuredbg.png");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  opacity: 0.6;
}
#featured-carousel .item {
  height: 590px;
  background-size: cover;
  background-position: center center;
}
#featured-carousel .ticker-tape {
  color: #fff;
  position: absolute;
  display: block;
  top: 40%;
  width: 100%;
  padding: 20px;
  text-align: center;
}
#featured-carousel .ticker-tape h2 {
  margin: 0 auto;
  max-width: 850px;
  font-size: 40px;
}
#featured-carousel .ticker-tape a {
  color: #fff;
}
#services-social-row {
  border-left: 1px solid #e4e5e6;
}
#services-social-row .col {
  height: 455px;
  overflow: hidden;
  border-right: 1px solid #e4e5e6;
  border-bottom: 1px solid #e4e5e6;
}
#services-social-row .no-padding,
#home-featured-issues .no-padding {
  padding: 0;
}
#featured-btns {
  margin: 0;
}
#featured-btns li a {
  display: block;
  padding: 25px 0;
  font: normal normal normal 25px/1 'Century Gothic W01';
  color: #363636;
  text-align: center;
  text-transform: uppercase;
}
#featured-btns li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #3e567a;
}
#featured-btns li + li {
  border-top: 1px solid #e4e5e6;
}
#home-social-btns {
  padding-top: 30px;
  padding-bottom: 25px;
  text-align: center;
  background-color: #e4e5e6;
}
#home-social-btns .socicons {
  margin: 0 auto;
}
#home-social-btns .socicons li {
  padding: 0;
}
#home-social-btns .socicons li a {
  padding: 9px 11px;
  font-size: 20px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  -webkit-transition: background-color cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -moz-transition: background-color cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -o-transition: background-color cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  -ms-transition: background-color cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  transition: background-color cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
#home-social-btns .socicons li a div {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/envelope.png);
}
#home-social-btns .socicons li a:hover div {
  background-position: 0 -20px;
}
#home-social-btns .socicons li + li {
  margin-left: 21px;
}
#home-featured-video {
  height: 224px;
  z-index: 1;
}
#home-featured-video iframe {
  width: 100%;
  height: 224px;
  z-index: 1;
}
#home-instagram {
  padding: 5px;
  overflow: hidden;
  text-align: center;
  background-color: #e4e5e6;
  height: 100%;
}
#home-instagram #instamedia {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}
#home-instagram #instamedia a {
  position: relative;
  top: 50%;
  display: inline-block;
  width: 33%;
  overflow: hidden;
}
#home-instagram #instamedia a img {
  width: 100%;
}
#home-instagram #instamedia a + a {
  margin-left: 5px;
}
iframe#twitter-widget-0.twitter-timeline.twitter-timeline-rendered {
  height: 100%!important;
  margin-left: auto!important;
  margin-right: auto!important;
  display: block!important;
}
iframe.timeline-header h1.summary {
  font-size: 20px!important;
  text-transform: uppercase!important;
}
#home-twitter-feed h2 {
  margin-bottom: 15px;
  font: normal normal normal 25px/1 'Century Gothic W01';
  text-transform: uppercase;
}
#home-twitter-feed h2 a {
  color: #333;
  text-decoration: none;
}
#home-twitter-feed #twitter {
  overflow-y: auto;
}
#home-twitter-feed #twitter ul li {
  font-family: 'Century Gothic W01';
}
#home-twitter-feed #twitter ul li .user {
  margin-bottom: 10px;
}
#home-twitter-feed #twitter ul li .user img {
  float: left;
  margin-right: .5em;
}
#home-twitter-feed #twitter ul li .user .user-meta,
#home-twitter-feed #twitter ul li .user .user-meta + span {
  display: block;
}
#home-twitter-feed #twitter ul li .timePosted {
  margin-bottom: 0;
}
#home-twitter-feed #twitter ul li + li {
  margin-top: 15px;
}
#home-featured-issues .col a {
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  font: normal normal normal 35px 'Century Gothic W01';
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: color ease-out 0.08s;
  -moz-transition: color ease-out 0.08s;
  -o-transition: color ease-out 0.08s;
  -ms-transition: color ease-out 0.08s;
  transition: color ease-out 0.08s;
}
#home-featured-issues .col a:hover .outer {
  background-color: rgba(0, 0, 0, 0);
}
#home-featured-issues .col a .outer {
  display: block;
  position: relative;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color ease-out 0.08s;
  -moz-transition: background-color ease-out 0.08s;
  -o-transition: background-color ease-out 0.08s;
  -ms-transition: background-color ease-out 0.08s;
  transition: background-color ease-out 0.08s;
}
#home-featured-issues .col a .outer .inner {
  position: absolute;
  width: 100%;
  bottom: 30px;
  text-align: center;
}
#bottom {
  background-color: #fff;
  margin: 0px 0;
  margin-bottom: -10em;
}
#bottom #office-locations {
  margin-top: 50px;
  text-align: center;
}
#bottom #office-locations h4 {
  margin: 20px;
  font: normal normal normal 25px/1 'Century Gothic W01';
  text-transform: uppercase;
}
#bottom #office-locations ul {
  margin: 0 auto 15px auto;
}
#bottom #office-locations ul li {
  padding: 20px 25px;
  vertical-align: top;
  text-align: left;
}
#bottom #office-locations ul li h5 {
  margin: 0;
  font: normal normal normal 16px/1.5em 'Century Gothic W01 Bold';
}
#bottom #office-locations ul li a {
  font-weight: bold;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.image-responsive {
  width: 100%;
}
body .modal-backdrop {
  opacity: 1 !important;
}
body#newsroom .modal-dialog .modal-content .close {
  color: black;
}
@media (max-width: 567px) {
  .mobile-hide,
  .hide-mobile {
    display: none;
  }
}
.show-mobile {
  display: none !important;
}
@media (max-width: 567px) {
  .show-mobile {
    display: block !important;
  }
}
.pagination-container {
  margin-top: 3.5em;
  padding: .5em .75em;
  background-color: #556e95;
}
.pagination-container .pagination-right {
  float: left;
  color: #fff;
  font-size: 18px;
  line-height: 33px;
}
.pagination-container .pagination-right select {
  -webkit-appearance: none;
  border-radius: 1px;
  color: #fff;
  background-color: #556E95;
  border: none;
}
.pagination-container .pager {
  float: right;
  margin: 0;
  padding-left: 0;
  text-align: center;
  list-style: none;
  background-color: #556E95;
}
.pagination-container .pager li a {
  padding: 5px 2.5px;
  background-color: transparent;
}
.pagination-container .pager li a:hover {
  background-color: transparent;
  text-decoration: underline;
}
.pagination-container .pager .selected {
  text-decoration: underline;
}
.pagination-container .pager .btn {
  font-size: 18px;
}
.pagination-container .pager .btn:hover {
  background-color: #556E95!important;
  color: #FFFFFF!important;
  cursor: pointer;
  text-decoration: underline;
}
.pagination-container .pager .btn:focus {
  background-color: #556E95!important;
  color: #FFFFFF!important;
  cursor: pointer;
  text-decoration: underline;
}
#voting_record .page .row {
  /* ----- */
}
#photos li .imghold {
  height: 167px;
}
#newscontent hr {
  margin: 25px 0;
}
p.official-photo {
  width: 355px;
}
#asides p.official-photo {
  margin-top: 23px;
}
#asides #presskit {
  margin-top: 10px;
  width: 355px;
}
.videoiframe.smallvid {
  margin-top: 15px;
  width: 100%;
  height: 170px;
}
div#asides {
  display: block;
  bottom: 86px;
}
#asides {
  position: relative;
}
#asides aside.list {
  margin-top: 0px;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
#mainlist li {
  margin-bottom: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}
#mainlist li .pull-left {
  padding-right: 20px;
}
/*
hearing styles */
body #main_container {
  padding: 0 75px;
}
body #content {
  padding-top: 50px;
}
body .socicons li a {
  padding: 6px 8px;
  font-size: 15px;
  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 .socicons li a div {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../images/envelope-sm.png);
  background-position: 0 0;
}
body .socicons li .facebk {
  border-color: #537bbd;
  background-color: #537bbd;
}
body .socicons li .facebk:hover {
  color: #537bbd;
  background-color: #fff;
}
body .socicons li .twttr {
  border-color: #c6c6c5;
  color: #78cdf0;
  background-color: #fff;
}
body .socicons li .twttr:hover {
  border-color: #78cdf0;
  color: #fff;
  background-color: #78cdf0;
}
body .socicons li .you-tube {
  border-color: #e9654b;
  background-color: #e9654b;
}
body .socicons li .you-tube:hover {
  color: #e9654b;
  background-color: #fff;
}
body .socicons li .instagrm {
  border-color: #696a6a;
  background-color: #696a6a;
}
body .socicons li .instagrm:hover {
  color: #696a6a;
  background-color: #fff;
}
body .socicons li .newsletter {
  border-color: #29b377;
  background-color: #29b377;
}
body .socicons li .newsletter:hover {
  background-color: #fff;
}
body .socicons li .newsletter:hover div {
  background-position: 0 -15px;
}
body #filterbuttons {
  margin-bottom: 20px;
}
body p + h1,
body hr + h1,
body ul + h1,
body p + h2,
body hr + h2,
body ul + h2 {
  margin-top: 40px;
}
body .date + h2,
body .date + h3 {
  margin-top: 5px;
}
body .pull-down a {
  color: #556e95;
}
body .pull-down a:hover {
  text-decoration: underline;
}
.newsroom_landing #photos,
.newsroom_landing #videos {
  margin-top: 50px;
}
.newsroom_landing #photos h1 + .date,
.newsroom_landing #videos h1 + .date {
  display: inline-block;
  margin-top: 10px;
}
#mobile-office-hours #mobile-office-hours-container .input-group-addon {
  background-color: transparent;
  border: none;
}
#mobile-office-hours #mobile-office-hours-container .input-group-btn button {
  margin-left: 1em;
}
#mobile-office-hours #mobile-office-hours-container #locations ul {
  margin: 0;
  padding: 0;
}
#mobile-office-hours #mobile-office-hours-container #locations ul li {
  list-style: none;
  margin-top: 1em;
  border-top: 1px solid #eee;
}
#mobile-office-hours #mobile-office-hours-container #locations ul li .map-link {
  display: block;
  margin-top: 25px;
  height: 166px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  #mobile-office-hours #mobile-office-hours-container #locations ul li .map-link {
    height: 136px;
  }
}
@media (max-width: 991px) {
  #mobile-office-hours #mobile-office-hours-container #locations ul li .map-link {
    height: 100px;
  }
}
#mobile-office-hours #mobile-office-hours-container #locations ul li h2,
#mobile-office-hours #mobile-office-hours-container #locations ul li h3,
#mobile-office-hours #mobile-office-hours-container #locations ul li h4 {
  margin-bottom: 0;
}
#mobile-office-hours #mobile-office-hours-container #locations ul li .date {
  margin-bottom: 1em;
  font-size: 14px;
  font-style: italic;
}
#mobile-office-hours #mobile-office-hours-container #form-container {
  display: none;
}
#mobile-office-hours #mobile-office-hours-container .loader {
  position: relative;
  margin: 50px auto 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);
  }
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .multimedia-tools fieldset {
  margin-top: 20px;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  padding: 6px;
  margin-bottom: 10px;
}
#multimedia-browser .pagination {
  background-color: #556e95;
}
body footer {
  background-color: #3e567a;
  margin-top: 10em;
}
body footer #footer-bottom {
  padding: 20px 0;
  padding-top: 30px;
}
body footer #footer-bottom #footer-constraint {
  text-align: center;
}
body footer #footer-bottom #footer-constraint .socicons {
  margin-top: 0 auto;
}
body footer #footer-bottom #footer-constraint .socicons li {
  padding: 0;
  text-align: center;
}
body footer #footer-bottom #footer-constraint .socicons li a {
  padding: 4px 6px;
  font-size: 15px;
}
body footer #footer-bottom #footer-constraint .socicons li .you-tube {
  position: relative;
  left: -2px;
}
body footer #footer-bottom #footer-constraint .socicons li .newsletter i {
  display: inline-block;
  width: 15px;
  height: 15px;
}
body footer #footer-bottom #footer-constraint .socicons li + li {
  padding: 0 2px;
}
body footer #footer-bottom #footer-constraint #footer-links {
  margin: 0 auto;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
}
body footer #footer-bottom #footer-constraint #footer-links a {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
#flagForm legend {
  margin-bottom: 20px;
  line-height: 50px;
}
#flagForm #flag-options .head {
  color: #fff;
  background-color: #556e95;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form h1 {
  font-size: 24px;
}
#content .amend-form-container form .btn {
  background-color: #556e95;
}
#content .amend-form-container form .btn:hover {
  background-color: #3e567a;
  color: #fff;
}
#content .amend-form-container form legend {
  font-size: 19px;
  line-height: 50px;
}
.hide-on-submit {
  display: none !important;
}
/*
font-family:'Kaleko_205 W00 Thin';
font-family:'Kaleko_205 W00 Thin Oblique';
font-family:'Kaleko_205 W00 Light';
font-family:'Kaleko_205 W00 Light Oblique';
font-family:'Kaleko_205 W00 Book';
font-family:'Kaleko_205 W00 Book Oblique';
font-family:'Kaleko_205 W00 Bold';
font-family:'Kaleko_205 W00 Bold Oblique';
font-family:'Kaleko_205 W00 Heavy';
font-family:'Kaleko_205 W00 Heavy Oblique';
font-family:'Kaleko_105 W00 Thin';
font-family:'Kaleko_105 W00 Thin Oblique';
font-family:'Kaleko_105 W00 Light';
font-family:'Kaleko_105 W00 Light Oblique';
font-family:'Kaleko_105 W00 Book';
font-family:'Kaleko_105 W00 Book Oblique';
font-family:'Kaleko_105 W00 Bold';
font-family:'Kaleko_105 W00 Bold Oblique';
font-family:'Kaleko_105 W00 Heavy';
font-family:'Kaleko_105 W00 Heavy Oblique';
font-family:'Century Gothic W01';
font-family:'CenturyGothicW01-Italic';
font-family:'Century Gothic W01 Bold';
font-family:'CenturyGothicW01-BoldIt';
font-family:'Century Gothic W02';
font-family:'CenturyGothicW02-Italic';
font-family:'Century Gothic W02 Bold';
font-family:'CenturyGothicW02-BoldIt';
font-family:'NeueAachenW01-UtlraLigh1094391';
font-family:'NeueAachenW01-UtlraLigh1094394';
font-family:'Neue Aachen W01 Thin';
font-family:'NeueAachenW01-ThinItali';
font-family:'Neue Aachen W01 Light';
font-family:'NeueAachenW01-LightItal';
font-family:'Neue Aachen W01 Book';
font-family:'NeueAachenW01-BookItali';
font-family:'Neue Aachen W01 Regular';
font-family:'Neue Aachen W01 Italic';
font-family:'Neue Aachen W01 Medium';
font-family:'NeueAachenW01-MediumIta';
font-family:'NeueAachenW01-Semibold';
font-family:'NeueAachenW01-SemiboldI';
font-family:'Neue Aachen W01 Bold';
font-family:'NeueAachenW01-BoldItali';
font-family:'Neue Aachen W01 Black';
font-family:'NeueAachenW01-BlackItal';
*/
/*define site colors here

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

  @sitecolor:#fff; //example

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

*/
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
body {
  font: normal normal normal 16px/1.5em 'Century Gothic W01';
}
/*header styles*/
h1,
.h1 {
  font: normal normal normal 27px/1 'Century Gothic W01';
  color: #363636;
  text-transform: uppercase;
}
h1 a,
.h1 a {
  color: #363636;
}
h1 a:hover,
.h1 a:hover {
  color: #556e95;
  text-decoration: none;
}
.h2,
.h3,
.h4,
.h5,
.h6,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Century Gothic W01 Bold';
}
.h2,
h2 {
  font-size: 22px;
}
.h2 a,
h2 a {
  color: #363636;
}
.h2 a:hover,
h2 a:hover {
  color: #556e95;
  text-decoration: none;
}
.h3,
h3 {
  font-size: 19px;
}
.h4,
h4 {
  font-size: 16px;
}
/*anchor stlyes*/
a {
  color: #556e95;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  border: none;
  background-color: #556e95;
  color: #fff;
  white-space: normal;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover {
  background-color: #e4e5e6;
  color: #363636;
}
/*interior page content default styles */
#content .option1 {
  font: normal normal normal 16px/1.5em 'Century Gothic W01';
}
.mobile-only {
  display: none;
}
@media (max-width: 1329px) {
  body #main_container {
    padding: 0 15px;
  }
  body #header #header-right {
    width: 826px;
  }
  body .navbar .nav-pills li a {
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  body #main_container {
    padding: 0px;
  }
  body #header #header-content {
    width: 991px;
  }
  body #header #header-content #header-right {
    width: 625px;
  }
  body #header .navbar .nav-pills > li a {
    padding: 0 15px;
  }
  body #header #search {
    display: none;
  }
  body #home-social-btns .socicons li + li {
    margin-left: 14px;
  }
  body footer .footernav li a {
    padding: 0 15px;
  }
  body #home-featured-issues .col a .outer {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  body #cerabox {
    display: none!important;
  }
  body #cerabox-background {
    display: none!important;
  }
  body #cerabox-loading {
    display: none!important;
  }
}
@media (max-width: 991px) {
  body #cerabox {
    display: none!important;
  }
  body #cerabox-background {
    display: none!important;
  }
  body #cerabox-loading {
    display: none!important;
  }
  body #header #header-content {
    width: 750px;
  }
  body #header #header-content #header-right {
    width: 406px;
  }
  body #header #header-content #header-right #header-right-top #newsletter-link {
    font-size: 14px;
  }
  body #header .navbar {
    float: right;
  }
  body #header .navbar .srchbuttonmodal {
    margin-right: 27px;
    color: #556e95;
  }
  body #header .navbar .srchbuttonmodal span {
    font-size: 22px;
  }
  body #header .navbar .togglemenu {
    top: 8px;
  }
  body iframe#twitter-widget-0.twitter-timeline.twitter-timeline-rendered {
    height: 600px!important;
  }
  body footer #footer-bottom .footernav li a {
    padding: 0 10px;
    font-size: 15px;
  }
  body #home-featured-video {
    height: 100%;
  }
  body #home-featured-video iframe {
    height: 421px;
  }
  body #home-instagram #instamedia a {
    width: 16%;
  }
  body #home-featured-issues .col a .outer {
    font-size: 25px;
  }
  body #services-social-row .col {
    height: auto;
  }
  #asides p.official-photo {
    margin: 0 auto;
    margin-top: 23px;
  }
}
@media (max-width: 767px) {
  body #header #logo-row {
    padding: 0;
  }
  body #header #logo-row #newsletter-link {
    float: none;
  }
  body #header #logo-row #newsletter-link:hover {
    line-height: 48px;
  }
  body #header .socicons {
    display: none;
  }
  body #header #header-content #header-right {
    width: 200px;
    right: 0;
    position: absolute;
  }
  body #header .navbar {
    width: 185px;
  }
  body footer #footer-top {
    margin: 20px 0 0 0;
  }
  body footer #footer-top h4 {
    margin: 0 25px;
  }
  body footer #footer-top ul li {
    padding: 10px 25px;
  }
  body footer #footer-bottom {
    text-align: center;
    padding-bottom: 1em;
    border-bottom: 1px solid #556e95;
  }
  body footer #footer-bottom .footernav {
    margin: 1em 0;
    width: 100%;
  }
  body footer #footer-bottom .footernav li a {
    line-height: normal;
  }
  body footer #footer-bottom .socicons {
    float: none;
    position: static;
    top: 0;
    margin: 0 auto;
  }
  body #home-featured-video iframe {
    height: 421px;
  }
  body #home-featured-issues .col a .outer {
    font-size: 35px;
  }
  body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
    float: none;
  }
  body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
    float: none;
    margin-top: 1em;
  }
  body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li a {
    text-align: left;
  }
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch {
    width: 91%;
  }
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button {
    position: absolute;
    width: 17%;
  }
  .videoiframe.smallvid {
    margin-top: 15px;
    width: 100%;
    height: 170px;
  }
}
@media (max-width: 567px) {
  body #content {
    padding-top: 98px;
  }
  body #header-offset {
    padding-top: 44px;
  }
  body #header {
    background-color: white;
    height: auto;
    padding-top: 40px;
  }
  body #header .logo {
    /*float: right;
				width: 285px;
				height: 63px;*/
    width: 245px;
    height: 65px;
    background: url(/themes/capito/images/mobile/logo.jpg);
    background-size: 100% 100%;
  }
  body #header .logo a {
    display: block;
    width: 245px;
    height: 65px;
    line-height: 1;
    color: #fff;
    background-image: none;
  }
  body #header .logo a:hover {
    background-image: none;
  }
  body #header .logo a span {
    position: static;
    overflow: hidden;
    top: 0;
    height: auto;
    width: auto;
    font-size: 24px;
    line-height: 1;
    display: block;
    text-indent: -10000px;
  }
  body #header .logo a span .hide-from-mobile {
    display: none;
  }
  body #header .logo a span .mobile-only {
    display: inline;
  }
  body #header #header-content {
    width: auto;
  }
  body #header #header-content #header-right {
    float: right;
    width: 100%;
    height: 45px;
    top: -40px;
  }
  body #header #header-right-top {
    /*display: none;*/
  }
  body #header #header-right-top #newsletter-link {
    font-size: 19px !important;
    width: 100%;
    /*text-transform: uppercase;*/
  }
  body #header .navbar {
    margin: 0;
    padding-right: 1em;
    width: auto;
  }
  body #header .navbar .srchbuttonmodal {
    display: none !important;
  }
  body #header .navbar .togglemenu {
    color: #556e95;
  }
  body #header .navbar .togglemenu .glyphicon {
    float: right;
    margin-left: 7px;
    font-size: 40px;
  }
  body #header .navbar .togglemenu .menulabel {
    display: none;
  }
  body #featured-btns li a {
    color: #556e95;
  }
  #home-social-btns .socicons li a {
    padding: 13px 16px;
    border-radius: 50%;
  }
  #featured-carousel {
    height: 387px;
    overflow: visible;
    margin-top: 80px;
  }
  #featured-carousel .carousel-inner {
    overflow: visible;
  }
  #featured-carousel .item {
    height: 301px;
  }
  #featured-carousel .item .greenscreen {
    background-image: none;
  }
  #featured-carousel .ticker-tape {
    background-color: #363636;
    top: 100%;
    position: relative;
  }
  #featured-carousel .ticker-tape h2 {
    font-size: 21px;
  }
  body #home-featured-video iframe {
    height: 295px;
  }
  #featured-btns li:last-child {
    display: none;
  }
  #home-social-btns {
    background-color: white;
  }
  body#home footer {
    margin-top: 0;
    background-color: #556e96;
  }
  body#home footer #footer-constraint {
    display: none;
  }
}
@media (max-width: 479px) {
  body #home-featured-issues {
    display: none;
  }
  body #main_container {
    padding: 0 10px;
  }
  body #drop-top #drop-bar #drop-logo {
    padding: 0 10px;
    font-size: 18px;
  }
  body #drop-top #drop-bar .navbar .nav-pills > li a {
    padding: 0 5px;
    font-size: 18px;
  }
  body #drop-top #drop-bar .navbar .srchbuttonmodal {
    margin-left: 5px;
    color: #fff;
    margin-right: 15px;
    margin-left: 51px;
    margin-top: 0px !important;
  }
  body #drop-top #drop-bar .navbar .srchbuttonmodal span {
    font-size: 18px;
  }
  body #drop-top #drop-bar .togglemenu {
    top: 16px;
    margin: 0;
    font-size: 18px;
    color: #fff;
  }
  body #header .navbar .srchbuttonmodal {
    margin-right: 15px;
    margin-left: 51px;
    margin-top: 0px;
  }
  body #header .navbar .srchbuttonmodal span {
    font-size: 18px;
  }
  body #home-instagram #instamedia a {
    width: 33%;
  }
  #browser_table #home-featured-video iframe {
    height: 217px;
  }
  .controls {
    text-align: center;
  }
  #main_column form .btn {
    float: none;
  }
  #asides p.official-photo {
    margin: 0 auto;
    margin-top: 23px;
  }
  .mobile-col {
    width: 100%;
    text-align: center;
  }
  .videoiframe {
    height: 270px;
  }
  .videoiframe.smallvid {
    width: 80%;
    margin: 0 5%;
  }
  #bottom #office-locations ul li {
    max-width: 226px;
  }
  #multimedia-browser .row .media-thumbnail {
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  #featured-carousel {
    height: 378px;
    overflow: visible;
  }
  #featured-carousel .carousel-inner {
    overflow: visible;
  }
  #featured-carousel .item {
    height: 285px;
  }
  #featured-carousel .ticker-tape {
    background-color: #363636;
    top: 100%;
    height: 94px;
    position: relative;
  }
  #featured-carousel .ticker-tape h2 {
    font-size: 17px;
  }
}
@media (max-width: 375px) {
  #featured-carousel {
    height: 294px;
    overflow: visible;
    margin-top: 80px;
  }
  #featured-carousel .carousel-inner {
    overflow: visible;
  }
  #featured-carousel .item {
    height: 200px;
  }
  #featured-carousel .ticker-tape {
    background-color: #363636;
    top: 100%;
    height: 94px;
    position: relative;
  }
  #featured-carousel .ticker-tape h2 {
    font-size: 17px;
  }
  #featured-btns li a {
    font-size: 20px;
  }
  #home-social-btns .socicons li a {
    padding: 9px 11px;
  }
  body #home-featured-video iframe {
    height: 208px;
  }
}
@media (max-width: 330px) {
  body #header #header-right-top #newsletter-link {
    font-size: 17px !important;
  }
  #featured-carousel {
    height: 275px;
    overflow: visible;
    margin-top: 80px;
  }
  #featured-carousel .carousel-inner {
    overflow: visible;
  }
  #featured-carousel .item {
    height: 182px;
  }
  #featured-carousel .ticker-tape {
    background-color: #363636;
    top: 100%;
    height: 94px;
    padding: 10px;
    position: relative;
  }
  #featured-carousel .ticker-tape h2 {
    font-size: 17px;
  }
  body #header .logo {
    width: 245px;
    height: 67px;
    background: url(/themes/capito/images/mobile/logo.jpg);
    background-size: 69% 71%;
    background-repeat: no-repeat;
    background-position-y: center;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@media print {
  html body .footer {
    display: block!important;
  }
  html body .footer #footer-top {
    margin: 10px 0;
  }
  html body .footer #footer-top #office-locations {
    margin-top: 300px;
    text-align: center;
  }
  html body .footer #footer-bottom {
    display: none;
  }
  html #home-social-btns,
  html .btn {
    display: none;
  }
  html #home-featured-video {
    display: none;
  }
  html #home-featured-issues .col a {
    border-bottom: 1px solid black;
    display: block;
    background-size: cover;
    background-position: center center;
    text-transform: uppercase;
  }
  html #home-featured-issues .col a .outer {
    display: block;
    position: relative;
    height: 70px;
  }
  html #home-featured-issues .col a .outer .inner {
    position: absolute;
    width: 100%;
    bottom: 30px;
    text-align: center;
  }
  html #featured-carousel {
    position: relative;
    height: 350px;
  }
  html #featured-carousel .item {
    height: 300px;
    background-size: cover;
    background-position: center center;
  }
  html #featured-carousel .ticker-tape {
    color: #fff;
    position: absolute;
    display: block;
    bottom: 0px;
    top: 30%;
    width: 100%;
    padding-top: 50px;
    text-align: center;
  }
  html #featured-carousel .ticker-tape h2 {
    margin: 0 auto;
    max-width: 850px;
    font-size: 40px;
  }
  html #services-social-row {
    border-left: 0px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  html #services-social-row .col {
    border-right: 0px solid black;
  }
  html #services-social-row #home-instagram {
    display: none;
  }
  html #services-social-row #home-twitter-feed {
    margin-top: 100px;
  }
  html #services-social-row #home-twitter-feed h2 {
    margin-bottom: 15px;
    font: normal normal normal 25px/1 'Century Gothic W01';
    text-transform: uppercase;
  }
  html #services-social-row #home-twitter-feed h2 a {
    color: #333;
    text-decoration: none;
  }
  html #services-social-row #home-twitter-feed #twitter {
    overflow-y: auto;
  }
  html #services-social-row #home-twitter-feed #twitter ul li {
    font-family: 'Century Gothic W01';
  }
  html #services-social-row #home-twitter-feed #twitter ul li .user {
    margin-bottom: 10px;
  }
  html #services-social-row #home-twitter-feed #twitter ul li .user img {
    float: left;
    margin-right: .5em;
  }
  html #services-social-row #home-twitter-feed #twitter ul li .user .user-meta,
  html #services-social-row #home-twitter-feed #twitter ul li .user .user-meta + span {
    display: block;
  }
  html #services-social-row #home-twitter-feed #twitter ul li .timePosted {
    margin-bottom: 0;
  }
  html #services-social-row #home-twitter-feed #twitter ul li + li {
    margin-top: 15px;
  }
  html #home-featured-issues {
    margin: 30px 0px;
  }
  html #featured-btns {
    margin-top: 70px;
  }
  html #featured-btns li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
  }
  html .container {
    margin: 0px;
  }
  #content .container #main_column {
    margin-top: -230px;
  }
  #content .container #main_column .breakout {
    display: none;
  }
}
/*@import "../cerabox.css";*/
body.option1 {
  background: url("/themes/capito/images/popup.jpg") no-repeat scroll 100%;
  background-size: cover;
  overflow: hidden;
}
.option1 .body {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 29px !important;
  margin: 0px 22px;
  width: 550px;
  height: 465px;
}
.option1 .body #toplogo {
  background-color: #556E95;
  text-align: center;
  margin-top: -13px;
  padding-bottom: 8px;
  margin-left: -9em;
  margin-right: -7em;
  padding-top: 11px;
  opacity: 0.9;
}
.option1 .body #toplogo .emailupdates {
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  font-family: 'Century Gothic W02' !important;
}
.option1 .body #toplogo .emailupdates .shelley {
  font-family: 'Century Gothic W01 Bold' !important;
  font-weight: 900;
}
.option1 .body input[type="text"],
.option1 .body select {
  font-family: 'Century Gothic W01' !important;
  font-size: 16px;
  float: left;
  margin: 0px 4px;
  margin-top: 30px;
  width: 244px;
  height: 36px;
  padding-left: 15px;
}
.option1 .body input[type="last"],
.option1 .body select {
  font-family: 'Century Gothic W01' !important;
  font-size: 16px;
  float: left;
  margin: 0px 4px;
  margin-top: 30px;
  width: 244px;
  height: 36px;
  padding-left: 15px;
}
.option1 .body input[id="email"],
.option1 .body textarea,
.option1 .body select {
  font-size: 16px;
  margin: 9px 5px;
  width: 30.95em;
  height: 36px;
}
.option1 .body input[id="city"],
.option1 .body textarea,
.option1 .body select {
  font-size: 16px;
  margin: 0px 4px;
  height: 36px;
}
.option1 .body select[id="state"],
.option1 .body textarea,
.option1 .body select {
  font-size: 16px;
  margin: 0px 5px;
  border: 1px;
  background: url("/themes/capito/images/dropdown.png") no-repeat 100% center;
  height: 36px;
  width: 242.5px;
  color: #556E96;
  -webkit-appearance: none;
  border-radius: 0px;
  cursor: pointer;
}
.option1 .body p {
  font-size: 32px;
  line-height: 45px;
  margin-top: 2em!important;
  text-align: center;
  margin-left: -40px;
}
.option1 .body input[type="submit"] {
  font-family: 'Century Gothic W01 Bold' !important;
  font-size: 16px;
  width: 88px;
  height: 36;
  margin: 2em 25.76em;
  text-transform: uppercase;
  border: none;
  background-color: #E5EBF5;
  color: #556E96;
  white-space: normal;
  cursor: pointer;
}
.option1 .body input[type="submit"]:hover {
  color: #fff;
  background-color: #556E95;
}
.option1 .body .popuplogo {
  background: url("/themes/capito/images/capitopopuplogo.png") no-repeat center;
  display: block;
  background-size: cover;
  height: 25%;
  width: 59%;
  margin-top: 50px;
  margin-left: 85px;
  margin-bottom: 6px;
}
@-moz-document url-prefix() {
  body.option1 {
    background: transparent url("/themes/capito/images/popup.jpg") no-repeat scroll 100% center / cover;
    overflow: hidden;
    margin-bottom: 20px;
  }
  body.option1 select[id="state"],
  body.option1 textarea,
  body.option1 select {
    -moz-appearance: none;
    cursor: pointer;
  }
  body.option1 #toplogo .emailupdates {
    -moz--osx-font-smoothing: antialiased;
    font-weight: 400!important;
  }
  body.option1 #toplogo .emailupdates .shelley {
    font-weight: 600!important;
  }
}
.ie10 .option1 .body {
  height: 485px;
}
.ie10 .option1 .body select::-ms-expand {
  display: none;
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow,
.fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-size: 18px;
  color: #464646;
}
