@charset 'UTF-8';
/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#kiosk #kiosklogohold {
  background-color: #fff;
  width: 100%;
  position: relative;
  display: block;
  padding: 45px 0px 49px;
}
#kiosk #kiosklogohold .logo {
  margin: 0px;
  text-transform: uppercase;
  display: block;
  float: none;
  margin: 0 auto;
  width: 563px;
  height: 104px;
  overflow: hidden;
}
#kiosk #kiosklogohold .logo .name {
  color: #466496;
  font-size: 80px;
  font-family: 'Slate W01 Black';
  display: block;
  line-height: 60px;
  margin: 0px 0px 12px 0px;
  padding: 0px;
  letter-spacing: -1.3px;
}
#kiosk #kiosklogohold .logo .name .c {
  color: #c80404;
  position: relative;
  z-index: 1;
}
#kiosk #kiosklogohold .logo .name .c:before {
  content: " ";
  position: absolute;
  top: 31px;
  left: 15px;
  height: 28px;
  width: 28px;
  display: block;
  background-color: #ffd700;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  z-index: 2;
}
#kiosk #kiosklogohold .logo .title {
  font-family: 'SlateW01-MediumCondense';
  font-size: 38px;
  line-height: 37px;
  color: #252525;
  display: block;
  margin: 0px;
  padding: 0px;
  letter-spacing: -0.23px;
  position: relative;
  left: 4px;
}
#kiosk #kiosklogohold .logo:hover {
  text-decoration: none;
}
#kiosk #header {
  text-align: center;
}
#kiosk #header #navhold {
  display: none!important;
}
#kiosk #header #logohold {
  display: none!important;
}
#kiosk h1 {
  font-size: 48px;
}
body #header {
  text-align: center;
}
body #header #logohold {
  background-color: #fff;
  width: 100%;
  position: relative;
  display: block;
  padding: 45px 0px 49px;
}
body #header #logohold .logo {
  margin: 0px;
  text-transform: uppercase;
  display: block;
  float: none;
  margin: 0 auto;
  width: 563px;
  height: 104px;
  overflow: hidden;
}
body #header #logohold .logo .name {
  color: #466496;
  font-size: 80px;
  font-family: 'Slate W01 Black';
  display: block;
  line-height: 60px;
  margin: 0px 0px 12px 0px;
  padding: 0px;
  letter-spacing: -1.3px;
}
body #header #logohold .logo .name .c {
  color: #c80404;
  position: relative;
  z-index: 1;
}
body #header #logohold .logo .name .c:before {
  content: " ";
  position: absolute;
  top: 31px;
  left: 15px;
  height: 28px;
  width: 28px;
  display: block;
  background-color: #ffd700;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  z-index: 2;
}
body #header #logohold .logo .title {
  font-family: 'SlateW01-MediumCondense';
  font-size: 38px;
  line-height: 37px;
  color: #252525;
  display: block;
  margin: 0px;
  padding: 0px;
  letter-spacing: -0.23px;
  position: relative;
  left: 4px;
}
body #header #logohold .logo:hover {
  text-decoration: none;
}
body #header #logohold .logo:hover .title {
  color: #466496;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
body #header #navhold {
  width: 100%;
  display: block;
  background-color: #466496;
}
.modal-backdrop.in {
  background-color: #304973;
}
body .news-alert {
  background: #e8e8e8;
}

body .news-alert .banner{
  display: table;
  width: 100%;
  max-width: 991px;
  margin: 0 auto;
  vertical-align: middle;
}
body .news-alert #update {
  font-family: 'Slate W01 Bold';
  color: white;
  background-color: #c80404;
  text-align: center;
  padding: 7px 10px;
  display: table-cell;
  vertical-align: middle;
  width: 20%;
}
body .news-alert #news-alert-featured {
  display: table-cell;
  vertical-align: middle;
}

body .news-alert #news-alert-featured a {
  color: black;
  font-family: 'Slate W01 Light';
}

body .news-alert #news-alert-featured a:hover {
  text-decoration: underline;
}

body .news-alert.two{
  background-color: #c80404;
}

body .news-alert.two #update{
  background-color: #c80404;
}

body .news-alert.two #update .alertIcn{
  color: #ffd700;
}




body .news-alert.two #news-alert-featured a {
  color: #fff;
 
}

body .news-alert.three{
  background-color: #ffd700;
}

body .news-alert.three #update{
  background-color: #ffd700;
  color: black;
}

body .news-alert.three #news-alert-featured a {
  color: black;
 
}


body .navbar {
  border: none;
  width: 71%;
  margin: 0 auto;
  height: 50px;
}
body .navbar .nav-pills {
  float: left;
}
body .navbar .nav-pills > li a {
  text-transform: uppercase;
  font-family: 'Slate W01 Bold';
  font-size: 24px;
  padding: 8px 20px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
body .navbar .nav-pills > li .dropdown-menu {
  border: none;
  background-color: rgba(42, 42, 66, 0.8);
}
body .navbar .nav-pills > li .dropdown-menu li a {
  background-color: transparent;
  font-family: 'Slate W01 Bk';
  text-transform: capitalize;
  font-size: 24px;
  padding: 0px 20px;
  color: #fff;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  text-decoration: underline;
}
body .navbar .nav-pills > li:hover a {
  background-color: #304973;
  color: #ffd700;
}
body .navbar .nav-pills > li.selected a {
  background-color: #304973;
  color: #ffd700;
}
body .navbar .togglemenu {
  float: left;
  color: #fff;
  font-size: 24px;
  padding: 6px 0px 0px;
}
body .navbar .togglemenu .menulabel {
  position: relative;
  top: -2px;
  font-family: 'Slate W01 Bold';
  font-size: 30px;
}
body .navbar .togglemenu:hover {
  text-decoration: none;
  color: #ffd700;
}
body .navbar .srchbutton {
  font-size: 17px;
  color: #ffffff;
  display: block;
  float: right;
  padding: 15px 20px 0px;
}
body .navbar .srchbutton:hover {
  color: #ffd700;
}
body .navbar #search {
  float: left;
  width: 0;
  position: absolute;
  right: 78px;
  top: 5px;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search.showme {
  width: 75%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search #sitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
  border: 1px solid #466496;
}
body .navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}
body .navbar #search #sitesearch button {
  position: absolute;
  background-color: #466496;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body .navbar #search #sitesearch button:hover {
  color: #ffd700;
}
body #NavMobileModal .modal-backdrop {
  opacity: 1;
}
body #NavMobileModal .modal-dialog .modal-content .close {
  opacity: 1;
  margin-right: 30px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  font-size: 26px;
  padding: 5px 15px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  position: relative;
  display: block;
  background-color: #304973;
  color: #fff;
  float: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 20px;
  padding: 1px 0;
  margin: 0;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  display: block;
}
#top {
  width: 100%;
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: left center;
}
#top .text {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  bottom: 40px;
}
#top .text a {
  font-family: 'Slate W01 Medium';
  font-size: 44px;
  line-height: 46px;
  color: #fff;
}
#top .text a:hover {
  color: #ffd700;
}
#top .text date {
  font-family: 'Slate W01 Bk';
  display: block;
  font-size: 26px;
  line-height: 28px;
  color: #fff;
}
#newsletter {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 25px;
  padding: 0px;
  background-color: #f5f5f5;
}
#newsletter form {
  display: block;
  width: 100%;
  padding: 0px 0px;
  background-color: #fff;
  margin: 42px 0px;
}
#newsletter form .form-group {
  width: 80%;
}
#newsletter form .form-group input {
  border: none;
  background-color: transparent;
  font-size: 24px;
  line-height: 24px;
  width: 100%;
  height: 65px;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
#newsletter form .form-group input:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
#newsletter form button {
  float: right;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  padding: 20px 10px;
  border: none;
  height: 65px;
}
#newsletter form button:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
#newsletter .social-list {
  background-color: #e8e8e8;
  width: 100%;
  display: block;
  padding: 40px 0px;
  text-align: center;
  margin: 0px;
}
#newsletter .social-list li a {
  font-size: 30px;
  color: #e8e8e8;
  display: block;
  background-color: #bbbbbb;
  height: 70px;
  width: 70px;
  text-align: center;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  border-radius: 70px;
  padding-top: 17px;
}
#newsletter .social-list li a:hover {
  background-color: #c80404;
  color: #fff;
}
#newsletter .social-list li a.facebook:hover {
  background-color: #3b5998;
  color: #fff;
}
#newsletter .social-list li a.twitter:hover {
  background-color: #4099ff;
  color: #fff;
}
#newsletter .social-list li a.instagram:hover {
  background-color: #3f729b;
  color: #fff;
}
#poll {
  width: 100%;
  margin: 20px 0px;
  height: 123px;
  margin-top: -5px;
  text-align: center;
}
#poll a {
  font-family: 'Slate W01 Bold';
  font-size: 60px;
  color: white;
  height: 100%;
  padding: 20px;
  background: url("/themes/gardner/images/pattern.png") repeat scroll 0 0 transparent;
  background-color: #466496;
  /*&:hover{
			text-decoration: none;
			background-color:rgba(120,148,195,.8);
			&:after{
				content: url('/themes/gardner/images/redcheckmark.png');
			}

		}*/
}
#poll a:after {
  position: relative;
  content: url('/themes/gardner/images/Checkmark.png');
  top: 2px;
  left: -102px;
  margin: 0 5px;
}
#poll .custom-poll:after {
  left: 0px !important;
}
.lower {
  margin-bottom: 90px;
}
.lower .grid-row .featured-box {
  font-family: 'Slate W01 Bold';
  font-size: 38px;
  color: white;
  text-align: left;
  padding-bottom: 6px;
}
.lower .grid-row .featured-box:hover {
  color: #ffd700;
}
.lower .grid-row .featured-box date {
  font-size: 16px;
  display: block;
}
.lower .grid-row .featured-box p {
  line-height: 40px;
  width: 350px;
  font-family: 'Slate W01 Medium';
}
.lower .grid-row .featured-box .box-item {
  height: 352px;
  overflow: hidden;
}
.lower .grid-row .featured-box .box-item img {
  width: 100%;
  height: auto;
  display: block;
}
.lower .grid-row .featured-box #press-top {
  background-color: #466496;
}
.lower .grid-row .featured-box #press-top a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px 10px 15px;
  color: #fff;
}
.lower .grid-row .featured-box #press-top a date {
  text-transform: uppercase;
  font-size: 16px;
}
.lower .grid-row .featured-box #press-top:hover a {
  text-decoration: none;
  color: #ffd700;
}
.lower .grid-row .featured-box #press-top:hover a date {
  color: #fff;
}
.lower .grid-row .featured-box #press-top:hover a p {
  text-decoration: underline;
}
.lower .grid-row .featured-box #video-top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.lower .grid-row .featured-box #video-top a img {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 0;
}
.lower .grid-row .featured-box #video-top a .text {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #e1e1e1;
  padding: 15px 10px 10px 15px;
  z-index: 1;
}
.lower .grid-row .featured-box #video-top a .text .type {
  text-transform: uppercase;
  color: #252525;
  display: block;
  font-size: 16px;
}
.lower .grid-row .featured-box #video-top a .text .icon {
  text-transform: uppercase;
  color: #252525;
  position: absolute;
  bottom: 20px;
  display: block;
  right: 20px;
  color: #e1e1e1;
  background-color: #466496;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 3px 5px 5px 6px;
}
.lower .grid-row .featured-box #video-top a .text .icon span {
  font-size: 16px;
  display: block;
}
.lower .grid-row .featured-box #video-top a:hover .text {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lower .grid-row .featured-box #instagram-lower {
  overflow: hidden;
}
.lower .grid-row .featured-box #instagram-lower a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}
.lower .grid-row .featured-box #instagram-lower a .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  z-index: 5;
}
.lower .grid-row .featured-box #instagram-lower:hover a .icon {
  color: #ffd700;
}
.lower .grid-row .featured-box #instagram-lower img {
  width: auto;
  height: auto;
  position: absolute;
  display: block;
  z-index: 1;
  max-height: 372px;
  left: -70px;
}
@media (max-width: 991px) {
  .lower .grid-row .featured-box #instagram-lower img {
    width: 100%;
    position: relative;
    max-height: 100%;
    left: 0px;
  }
}
.lower .grid-row .featured-box #press-lower {
  background-color: #c80404;
}
.lower .grid-row .featured-box #press-lower a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px 10px 15px;
  color: #fff;
}
.lower .grid-row .featured-box #press-lower a date {
  text-transform: uppercase;
  font-size: 16px;
}
.lower .grid-row .featured-box #press-lower:hover a {
  text-decoration: none;
  color: #ffd700;
}
.lower .grid-row .featured-box #press-lower:hover a date {
  color: #fff;
}
.lower .grid-row .featured-box #press-lower:hover a p {
  text-decoration: underline;
}
.lower .grid-row .featured-box:nth-child(odd) {
  padding-right: 3px;
  min-height: 138px;
}
.lower .grid-row .featured-box:nth-child(even) {
  padding-left: 3px;
  min-height: 138px;
}
.lower .twitter {
  border-top: 5px solid #e1e1e1;
  border-bottom: 5px solid #e1e1e1;
  height: 711px;
  text-align: center;
}
.lower .twitter #twit-title {
  font-family: 'Slate W01 Medium';
  color: #466496;
  font-size: 20px;
  text-transform: uppercase;
}
.lower .twitter .twitcon {
  text-align: center;
  display: inline-block;
  background-color: white;
}
.lower .twitter #twitter-feed {
  overflow: scroll;
  font-size: 18px;
  height: 673px;
}
.lower .twitter #twitter-feed ul {
  list-style: none;
  padding: 0;
}
.lower .twitter #twitter-feed ul li {
  margin-top: 28px;
}
.lower .twitter #twitter-feed ul li a:hover {
  text-decoration: none;
  word-wrap: break-word;
}
.lower .twitter #twitter-feed ul li img {
  width: 33px;
}
.lower .twitter #twitter-feed ul li span[data-scribe="element:name"] {
  font-family: 'Slate W01 Bold';
  color: #252525;
  font-size: 14px;
  vertical-align: top;
  padding-left: 6px;
}
.lower .twitter #twitter-feed ul li span[data-scribe="element:verified_badge"] {
  display: none;
}
.lower .twitter #twitter-feed ul li span[data-scribe="element:screen_name"] {
  font-family: 'Slate W01';
  color: #466496;
  font-size: 13px;
  position: relative;
  left: -110px;
  top: 9px;
}
.lower .twitter #twitter-feed ul li span[data-scribe="element:screen_name"]:hover {
  color: #ffd700;
}
.lower .twitter #twitter-feed ul li .date {
  float: right;
  position: relative;
  right: 32px;
  top: -32px;
}
.lower .twitter #twitter-feed ul li .tweet {
  margin-top: 4px;
}
.lower .twitter #twitter-feed ul li .tweet a {
  word-wrap: break-word;
}


#office-locations,
#office-locations-interior {
  background-color: #f5f5f5;
  width: 100%;
  margin: 0;
  padding: 85px 0px 125px 0px;
}

#office-locations{
  padding: 85px 0px 15px 0px;
}
#office-locations .location,
#office-locations-interior .location {
  position: absolute;
  top: 0px;
  left: 0px;
}
#office-locations .location .circle-icon:before,
#office-locations-interior .location .circle-icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: #466496;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -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;
}
#office-locations .location:hover .circle-icon:before,
#office-locations-interior .location:hover .circle-icon:before,
#office-locations .location.hover .circle-icon:before,
#office-locations-interior .location.hover .circle-icon:before {
  position: absolute;
  content: '';
  display: block;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  background-color: #c80404;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -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;
}
#office-locations .location .big-circle,
#office-locations-interior .location .big-circle {
  position: absolute;
  content: '';
  display: block;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  -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;
  background-color: #c80404;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
#office-locations .location:hover .big-circle,
#office-locations-interior .location:hover .big-circle,
#office-locations .location.hover .big-circle,
#office-locations-interior .location.hover .big-circle {
  position: absolute;
  content: "";
  display: block;
  background-color: #ffd700;
}
#office-locations .location#colorado-springs,
#office-locations-interior .location#colorado-springs {
  top: 220px;
  left: 358px;
}
@media (max-width: 1200px) {
  #office-locations .location#colorado-springs,
  #office-locations-interior .location#colorado-springs {
    top: 202px;
    left: 332px;
  }
}
#office-locations .location#pueblo,
#office-locations-interior .location#pueblo {
  top: 282px;
  left: 365px;
}
@media (max-width: 1200px) {
  #office-locations .location#pueblo,
  #office-locations-interior .location#pueblo {
    top: 262px;
    left: 340px;
  }
}
#office-locations .location#denver,
#office-locations-interior .location#denver {
  top: 130px;
  left: 345px;
  z-index: 1;
}
@media (max-width: 1200px) {
  #office-locations .location#denver,
  #office-locations-interior .location#denver {
    top: 120px;
    left: 320px;
  }
}
#office-locations .location#grand-junction,
#office-locations-interior .location#grand-junction {
  left: 51px;
  top: 196px;
}
@media (max-width: 1200px) {
  #office-locations .location#grand-junction,
  #office-locations-interior .location#grand-junction {
    top: 180px;
    left: 45px;
  }
}
#office-locations .location#greeley,
#office-locations-interior .location#greeley {
  left: 363px;
  top: 56px;
}
@media (max-width: 1200px) {
  #office-locations .location#greeley,
  #office-locations-interior .location#greeley {
    top: 50px;
    left: 340px;
  }
}
#office-locations .location#yuma,
#office-locations-interior .location#yuma {
  left: 525px;
  top: 87px;
}
@media (max-width: 1200px) {
  #office-locations .location#yuma,
  #office-locations-interior .location#yuma {
    top: 80px;
    left: 488px;
  }
}
#office-locations .location#fort-collins,
#office-locations-interior .location#fort-collins {
  top: 35px;
  left: 329px;
}
@media (max-width: 1200px) {
  #office-locations .location#fort-collins,
  #office-locations-interior .location#fort-collins {
    top: 30px;
    left: 304px;
  }
}
#office-locations .location#durango,
#office-locations-interior .location#durango {
  top: 385px;
  left: 100px;
}
@media (max-width: 1200px) {
  #office-locations .location#durango,
  #office-locations-interior .location#durango {
    top: 356px;
    left: 95px;
  }
}
#office-locations #offices,
#office-locations-interior #offices {
  font-size: 18px;
}
#office-locations #offices li,
#office-locations-interior #offices li {
  display: block;
  float: left;
  width: 48%;
  /*padding-bottom:8px;*/
  /*margin-bottom: 0px;*/
  min-height: 180px;
  padding: 5px;
  margin-bottom: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#office-locations #offices li h4,
#office-locations-interior #offices li h4 {
  font-size: 18px;
  margin: 0px;
  color: #466496;
  font-family: 'Slate W01 Medium';
}
#office-locations #offices li:hover,
#office-locations-interior #offices li:hover,
#office-locations #offices li.hover,
#office-locations-interior #offices li.hover {
  background-color: #c80404;
  color: #fff;
}
#office-locations #offices li:hover .coming-soon,
#office-locations-interior #offices li:hover .coming-soon,
#office-locations #offices li.hover .coming-soon,
#office-locations-interior #offices li.hover .coming-soon {
  color: white;
}
#office-locations #offices li a,
#office-locations-interior #offices li a {
  font-family: 'SlateW01-BoldCondensed';
}
#office-locations #offices li:hover h4,
#office-locations-interior #offices li:hover h4,
#office-locations #offices li.hover h4,
#office-locations-interior #offices li.hover h4 {
  color: #fff;
  text-decoration: underline;
}
#office-locations #offices li:hover a,
#office-locations-interior #offices li:hover a,
#office-locations #offices li.hover a,
#office-locations-interior #offices li.hover a {
  color: #fff;
  text-decoration: underline;
}
#office-locations #offices li:nth-child(even),
#office-locations-interior #offices li:nth-child(even) {
  float: right;
}
#office-locations #offices li.washington-dc,
#office-locations-interior #offices li.washington-dc {
  margin-right: 0px !important;
}
#office-locations #offices li.washington-dc h4,
#office-locations-interior #offices li.washington-dc h4 {
  color: #252525;
  text-decoration: none;
}
#office-locations #offices li.washington-dc h4:hover,
#office-locations-interior #offices li.washington-dc h4:hover,
#office-locations #offices li.washington-dc h4.hover,
#office-locations-interior #offices li.washington-dc h4.hover {
  color: #252525;
  text-decoration: none;
}
.coming-soon {
  margin: 0;
  color: #c80404;
}
.modal-content {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.modal-content .modal-header .close {
  float: right;
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  filter: alpha(opacity=100);
  opacity: 1;
}
.modal-content .modal-body iframe {
  width: 100%;
  height: 488px;
}
li.fort-collins {
  clear: both !important;
}
#home .amend-form-container {
  margin-bottom: 20px;
}
#home .amend-form-container input[type="submit"] {
  margin-top: 20px;
  padding: 5px 10px;
  width: 100%;
  background: url("/themes/gardner/images/pattern.png") repeat scroll 0 0 transparent;
  background-color: #466496;
  font-size: 35px;
  text-align: center;
}
#home #press-lower .text {
  padding: 15px 10px 10px 15px;
  font-size: 14px;
  color: #fff;
}
#home #press-lower .text h5 {
  margin: 0 0 10px 0;
  font-family: 'Slate W01 Bold';
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
}
#home #press-lower .text .amend-form-container {
  font-size: 25px;
}
#home #press-lower .text .amend-form-container .loader {
  position: relative;
  margin: 25% auto;
  height: 50px;
  width: 50px;
  border-left: 7px solid rgba(255, 255, 255, 0.15);
  border-right: 7px solid rgba(255, 255, 255, 0.15);
  border-bottom: 7px solid rgba(255, 255, 255, 0.15);
  border-top: 7px solid rgba(255, 255, 255, 0.8);
}
#home #press-lower .text .amend-form-container input[type="submit"] {
  background-color: #fff;
  background-image: none;
  color: #c80404;
  font-size: 22px;
  -webkit-transition: 0.1s ease-in all;
  -moz-transition: 0.1s ease-in all;
  -o-transition: 0.1s ease-in all;
  -ms-transition: 0.1s ease-in all;
  transition: 0.1s ease-in all;
}
#home #press-lower .text .amend-form-container input[type="submit"]:hover {
  background-color: #c80404;
  color: #fff;
}
#home #press-lower .text .amend-form-container ol {
  list-style: none;
  position: relative;
  top: -10px;
  padding: 0;
}
#home #press-lower .text .amend-form-container ol li p {
  margin: 0;
  width: auto;
  font-family: 'Slate W01';
  font-size: 16px;
  line-height: 22px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
#content {
  margin-bottom: 60px;
}
.explore .cycle-banner {
  margin-bottom: 20px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  height: 400px;
  overflow: hidden;
  background-color: black;
}
.explore .cycle-banner .cycle-image {
  top: -10px;
  position: relative;
}
.explore .cycle-banner #alt-caption {
  position: absolute;
  bottom: 0px;
  color: #fff;
  font-size: 18px;
  z-index: 100;
  left: 0px;
  width: 100%;
  height: 45px;
  background: rgba(69, 98, 148, 0.8);
  padding: 10px;
}
body#newsroom #filtermodal .modal-dialog {
  margin: 10% auto;
}
body#newsroom #filtermodal .modal-dialog .modal-content {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  background-color: #fff;
  border: none;
  color: #000;
}
body#newsroom #filtermodal .modal-dialog .modal-content .close {
  color: #fff;
  text-shadow: none;
}
body#newsroom #filtermodal .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0px;
  margin: 0px;
}
body#newsroom #filtermodal .modal-dialog .modal-content .modal-body {
  padding: 0px;
  margin: 0px;
}
body#newsroom #filtermodal .modal-dialog .modal-content .modal-body form {
  width: 100%;
}
body#newsroom #filtermodal .modal-dialog .modal-content .modal-body form select {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}
.newsroomlanding #photos li .imghold {
  height: 167px;
}
#voting_record .page .row {
  /* ----- */
}
#browser_table thead tr th {
  padding-top: 0px;
}
#asides {
  margin-top: 61px;
}
aside {
  float: left;
  width: 100%;
  display: block;
  padding-bottom: 20px;
}
aside form {
  margin-top: 20px;
}
aside form select {
  width: 100%;
  color: #000;
  border: 2px solid #eee;
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 100;
  height: 40px;
}
aside form + form {
  margin-top: 0px;
}
aside #twitter ul {
  list-style: none;
  padding: 0;
}
aside #twitter ul li {
  margin-top: 28px;
}
aside #twitter ul li a:hover {
  text-decoration: none;
}
aside #twitter ul li img {
  width: 33px;
}
aside #twitter ul li span[data-scribe="element:name"] {
  font-family: 'Slate W01 Bold';
  color: #252525;
  font-size: 14px;
  vertical-align: top;
  padding-left: 6px;
}
aside #twitter ul li span[data-scribe="element:verified_badge"] {
  display: none;
}
aside #twitter ul li span[data-scribe="element:screen_name"] {
  font-family: 'Slate W01';
  color: #466496;
  font-size: 13px;
  position: relative;
  left: -110px;
  top: 9px;
}
aside #twitter ul li span[data-scribe="element:screen_name"]:hover {
  color: #ffd700;
}
aside #twitter ul li .date {
  float: right;
  position: relative;
  right: 32px;
  top: -32px;
}
aside #twitter ul li .tweet {
  margin-top: 4px;
}
aside #instamedia {
  text-align: center;
  float: left;
  width: 100%;
  display: block;
}
aside #instamedia a {
  display: block;
  float: left;
  width: 31%;
  margin-bottom: 10px;
  margin-right: 10px;
}
aside #instamedia a img {
  width: 100%;
  display: block;
  height: auto;
}
aside #instamedia a:hover img {
  opacity: 0.5;
}
aside #instamedia a:nth-child(3n) {
  margin-right: 0px;
}
.pagination-right {
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
#sam-statefactspod {
  line-height: 31px;
}
.state-pics {
  text-align: center;
  padding: 26px 0px 26px 0px;
  border-bottom: 5px solid #e1e1e1;
  border-top: 5px solid #e1e1e1;
  position: relative;
  height: 234px;
  margin: 37px 0px;
}
.state-pics img {
  width: 100%;
}
#office-locations-interior {
  display: none !important;
}
#filterbuttons {
  margin-bottom: 30px;
}
body#newsroom .article #press-body img {
  max-width: 100%;
}
@media (max-width: 767px) {
  body#newsroom .article #press-body img {
    width: 100%!important;
    height: auto!important;
    min-height: 0!important;
  }
}
#video-content .facebook-unplayed {
  background: url(../../default_v3/images/play-button.png) no-repeat center center;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #304973;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #304973;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: rgba(0, 0, 0, 0);
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #304973;
}
#multimedia-browser .pagination {
  background-color: #466496;
}
#multimedia-browser .row .media-thumbnail {
  margin: 0 20px 20px 0;
  width: 18.5%;
  height: 175px;
}
#multimedia-browser .row .media-thumbnail .image {
  height: 120px;
  overflow: hidden;
}
#multimedia-browser .row .media-thumbnail .image img {
  width: 100%;
}
body footer {
  background-color: #466496;
  padding: 40px 0px;
}
body footer .footernav {
  margin: 0;
}
body footer .footernav > li {
  padding: 0px 20px;
}
body footer .footernav > li a {
  font-family: 'Slate W01 Bold';
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
}
body footer .footernav > li a:hover {
  color: #ffd700;
  text-decoration: none;
}
body footer .footer-right {
  float: left;
}
body footer .footersearch {
  font-size: 16px;
  color: #fff;
  display: block;
  float: right;
  padding: 5px 20px 0px;
}
body footer .footersearch:hover {
  color: #ffd700;
}
body footer .footersearch .glyphicon-remove {
  padding: 5px;
}
body footer #footersearch {
  float: left;
  width: 0;
  position: absolute;
  left: 15%;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body footer #footersearch.footershowme {
  width: 40%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body footer #footersearch #footersitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
  border: 1px solid #466496;
}
body footer #footersearch #footersitesearch #footer-search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}
body footer #footersearch #footersitesearch #footer-search-field:focus {
  outline: none;
  border: none;
  filter: none;
}
body footer #footersearch #footersitesearch button {
  position: absolute;
  background-color: #466496;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body footer #footersearch #footersitesearch button:hover {
  color: #ffd700;
}
body footer .social-list {
  float: right;
  display: block;
  text-align: center;
  margin: 4px ;
}
body footer .social-list li {
  padding-right: 10px;
}
body footer .social-list li a {
  font-size: 12px;
  color: #466496;
  display: block;
  background-color: #fff;
  height: 24px;
  width: 24px;
  text-align: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  padding-top: 4px;
}
body footer .social-list li a:hover {
  background-color: #ffd700;
}
#flagForm #flag-options .head {
  background-color: #f5f5f5;
}
/* collapse ------------------------------- */
.amend-form-container .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);
  }
}
.amend-form-container form {
  /*input[type="submit"] {
			padding: .25em .5em;
			font-size: 1.3em;
		}*/
}
.amend-form-container form h2 {
  margin: 0 0 1em 0;
  font-size: 25px;
  font-weight: bold;
}
.amend-form-container form h3 {
  margin: 0 0 1em 0;
  font-size: 20px;
}
.amend-form-container form input[type="text"],
.amend-form-container form input[type="email"],
.amend-form-container form select {
  height: 50px;
}
.amend-form-container form input[type="text"],
.amend-form-container form input[type="email"],
.amend-form-container form textarea,
.amend-form-container form select {
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.amend-form-container form select {
  padding: 10px;
  height: 50px;
}
.amend-form-container form textarea {
  min-height: 125px;
}
.amend-form-container form input[type="checkbox"] + label,
.amend-form-container form input[type="radio"] + label {
  display: inline;
  position: relative;
  top: 2px;
  left: 0.5em;
}
.amend-form-container form .checkbox input[type="checkbox"] {
  margin-left: 0;
}
.amend-form-container form .checkbox input[type="checkbox"] + label {
  top: -1px;
  left: 0.25em;
}
.amend-form-container form .control-group + .control-group,
.amend-form-container form .control-group + .row,
.amend-form-container form .row + .control-group,
.amend-form-container form .row + .row {
  margin-top: 1em;
}
/*
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';


paste available font families here
*/
/*define site colors here

	naming conventions
	if we have multiple shades of one color
	number each shade from 1 - n
	with 1 being the lightest and n being the darkest

*/
/*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-family: 'Slate W01';
  font-size: 20px;
  color: #252525;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Slate W01 Medium';
}
aside .h1,
aside .h2,
aside .h3,
aside .h4,
aside .h5,
aside .h6,
aside h1,
aside h2,
aside h3,
aside h4,
aside h5,
aside h6 {
  font-family: 'Slate W01 Medium';
  text-transform: uppercase;
  margin-top: 10px;
}
aside h1,
aside .h1 {
  font-size: 32px;
}
aside h2,
aside .h2 {
  font-size: 28px;
}
aside h3,
aside .h3 {
  font-size: 24px;
}
aside h4,
aside .h4 {
  font-size: 20px;
}
/*anchor stlyes*/
a {
  color: #466496;
}
a:hover {
  color: #ffd700;
  text-decoration: underline;
}
a:focus,
a:visited,
a:link {
  outline: none;
  border: none;
  filter: none;
  text-decoration: none;
}
/*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,
#listblocks .block a {
  font-family: 'Slate W01 Bold';
  background-color: #466496;
  color: #fff;
  border: none;
}
.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,
#listblocks .block a:hover {
  background-color: #466496;
  color: #ffd700;
}
.pattern {
  background: url("/themes/gardner/images/pattern.png") repeat scroll 0 0 transparent;
}
/*interior page content default styles */
@media (max-width: 1200px) {
  body .navbar {
    border: none;
    width: 75%;
  }
  body .navbar .nav-pills {
    float: left;
  }
  body .navbar .nav-pills > li a {
    padding: 8px 10px;
  }
  body .navbar .srchbutton {
    padding: 15px 5px 0px;
  }
  body .lower .twitter {
    height: 300px%;
    margin: 30px 0px;
    background-color: #e1e1e1;
  }
  body .lower .twitter #twitter-feed {
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
  }
  body .lower .twitter #twitter-feed ul {
    list-style: none;
    padding: 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  body #office-locations #offices li {
    min-height: 200px;
    width: 50%;
  }
  body #office-locations #map img {
    width: 100%;
  }
  .newsroomlanding #photos li .imghold {
    height: 137px;
  }
}
@media (max-width: 991px) {
  body .navbar {
    border: none;
    width: 100%;
  }
  body .navbar .nav-pills {
    float: left;
  }
  body .navbar .nav-pills > li a {
    padding: 8px 10px;
  }
  body .navbar .srchbutton {
    padding: 15px 5px 0px;
  }
  body footer .footernav li {
    padding: 0px 13px;
  }
  body footer #footersearch {
    left: 11%;
  }
  #newsletter form {
    margin: 32px 0px;
  }
  #newsletter form .form-group {
    width: 77%;
  }
  #newsletter form .form-group input {
    font-size: 17px;
    padding: 20px;
  }
  #newsletter .social-list li a {
    font-size: 24px;
    height: 50px;
    width: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding-top: 11px;
  }
  .lower .grid-row .featured-box .box-item {
    height: auto;
  }
  .lower .grid-row .featured-box #video-top a img {
    position: relative;
  }
  .lower .grid-row .featured-box #video-top a .text {
    position: relative;
  }
  .lower .grid-row .featured-box #video-top a:hover {
    color: #466496;
  }
  .lower .grid-row .featured-box #video-top a:hover .text {
    opacity: 1;
  }
  .lower .grid-row .featured-box:nth-child(odd) {
    padding-right: 15px;
  }
  .lower .grid-row .featured-box:nth-child(even) {
    padding-left: 15px;
  }
  .lower .twitter {
    background-color: #e1e1e1;
  }
  .newsroomlanding #photos li .imghold {
    height: 350px;
  }
  #photos li .imghold {
    height: 350px;
  }
}
@media (max-width: 767px) {
  body #newsletter form {
    height: 65px;
  }
  body #newsletter form .form-group {
    float: left;
  }
  .newsroomlanding #photos li .imghold {
    height: auto;
  }
  #photos li .imghold {
    height: auto;
  }
}
@media (max-width: 600px) {
  #kiosk #kiosklogohold .logo {
    width: 100%;
    height: auto;
  }
  #kiosk #kiosklogohold .logo .name {
    font-size: 12vw;
    line-height: 8vw;
  }
  #kiosk #kiosklogohold .logo .name .c {
    color: #c80404;
    position: relative;
    z-index: 1;
  }
  #kiosk #kiosklogohold .logo .name .c:before {
    content: none;
    display: none;
  }
  #kiosk #kiosklogohold .logo .name .o {
    color: #c80404;
  }
  #kiosk #kiosklogohold .logo .title {
    font-size: 5.7vw;
    line-height: 6vw;
  }
  

  body #header #logohold .logo {
    width: 100%;
    height: auto;
  }
  body #header #logohold .logo .name {
    font-size: 13vw;
    line-height: 8vw;
  }
  body #header #logohold .logo .name .c {
    color: #c80404;
    position: relative;
    z-index: 1;
  }
  body #header #logohold .logo .name .c:before {
    content: none;
    display: none;
  }
  body #header #logohold .logo .name .o {
    color: #c80404;
  }
  body #header #logohold .logo .title {
    font-size: 6vw;
    line-height: 6vw;
  }
  body .lower .twitter {
    height: 100%;
    margin: 30px 0px;
  }
  body .lower .twitter #twitter-feed {
    -webkit-column-count: 1	;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1	;
    /* Firefox */
    column-count: 1	;
  }
  #top {
    transition: height 0.3s ease 0s;
    background-position: 25% bottom;
  }
  #newsletter form .form-group {
    float: left;
    width: 71%;
  }
}
@media (max-width: 479px) {
  #office-locations #offices li {
    width: 50%;
    min-height: 200px;
  }
  body#contact-page #office-locations-interior .address {
    font-size: 14px;
  }
body .news-alert #update{
  width: 30%;
  font-size: 16px;
}
  body .news-alert .container #news-alert-featured a {
    font-size: 16px;
  }
  #poll {
    position: relative;
    height: auto;
    background: url("/themes/gardner/images/pattern.png") repeat scroll 0 0 transparent;
    background-color: #466496;
  }
  #poll a {
    font-family: 'Slate W01 Bold';
    font-size: 46px;
    color: white;
    margin-top: 0px;
  }
  #poll a:after {
    position: relative;
    content: url('/themes/gardner/images/Checkmark.png');
    left: 0px;
    margin: 0 0px;
    top: 2px;
  }
  #poll a:hover {
    text-decoration: none;
  }
  #poll a:hover:after {
    content: url('/themes/gardner/images/redcheckmark.png');
  }
  .footer {
    text-align: center;
  }
  .footer .footernav {
    text-align: center;
  }
  .footer .social-list {
    float: right;
    margin-right: 0px;
  }
}
@media (max-width: 425px) {
  #office-locations #offices {
    font-size: 16px;
  }
  #office-locations #offices li {
    width: 40%;
  }
}
@media (max-width: 330px) {
  body footer .footernav {
    text-align: center;
  }
  #newsletter form .form-group {
    width: 66%;
  }
  #newsletter form .form-group input {
    font-size: 10px;
  }
  #newsletter .social-list li a {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
  }
}
.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;
}
.ie8 body #header #logohold .logo {
  overflow: visible;
}
.ie8 body .navbar .nav-pills > li .dropdown-menu {
  background-color: #466496;
}
.ie8 body #top {
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 600px) {
  .ie9 body #header #logohold .logo .name {
    font-size: 80px;
  }
  .ie9 #newsletter form .form-group input {
    width: 120%;
    font-size: 14px;
  }
}
.ie10 body #header #logohold .logo {
  overflow: visible;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('./fonts/slick.eot');
  src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -25px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
/* Dots */
.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}


.faqsection{
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  display: table;
  width: 100%;
  padding: 1rem 0rem;
  margin-bottom: 2rem;

}

@media (max-width:767px){
  .faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

.faqsection .faqheader{

  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 34px;
  font-weight: bold;
  color: #363636;

}

.faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


.faqsection .panel-heading{
  color: #363636;
  background-color: transparent;
  border-color: #466496;
  border-radius: 0;
  border: 0;
  border-bottom: 5px solid #466496;
}
.faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  color: #027cc3;
  display: table;
  vertical-align: middle;
  width: 100%;
}

.faqsection .panel-title .itemtitle{
  display: table-cell;
  width: 95%;
  vertical-align: middle;
}
.faqsection .panel-title .iconitem{
  display: table-cell;
  width: 5%;
  text-align: center;
  vertical-align: middle;
}

@media(max-width:991px){
  .faqsection .panel-title{
  font-size: 26px;
  }
}

.faqsection .panel-heading a{

  text-decoration: none;
  display: block;

}

.faqsection .panel-heading a:hover .panel-title{
  color: #c80404
}

.faqsection .panel-heading .panel-title{
  color:#363636;
}

.faqsection .panel-heading .panel-title .pull-right .fa{
  color: #363636;
}

.faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

.faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


.faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}

#moratorium{
padding: 3rem 5rem;
background-color: #ffd800;
}
#moratorium .message a:hover{
  color: #252525;
  text-decoration: underline;
}


.issuebody img{
width: 100%;
display: block;
height: auto;
}

.issuebody .youtube{
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 37%;
  max-width: 750px;
  margin-bottom: 1.5rem;
}

@media(max-width:  1191px){
  .issuebody .youtube{
    padding-top: 45%;
  }
}

@media(max-width:  767px){
  .issuebody .youtube{
    max-width: 100%;
    padding-top: 50%;
  }
}

.issuebody .youtube iframe{
  
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

}

.services .servicesholder{

display: block;
background-color: #f5f5f5;
margin-bottom: 2rem;

}

.services .servicesholder .servicesbox{

display: table;
width: 100%;
padding-top: 0;
padding: 2rem;
height: auto;
opacity: 1;
position: relative;

}

.services .servicesholder .servicesbox .servicesimg{

position: relative;
width: 100%;
height: 100%;

}

.services .servicesholder.imagehere .servicesbox{

display: table;
width: 100%;
padding: 0;
padding-top: 20%;
opacity: 1;
position: relative;
overflow: hidden;

}

.services .servicesholder.imagehere .servicesbox .servicesimg{

position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
transition: all .2s ease-in-out;

}

.services .servicesholder.imagehere .servicesbox:hover .servicesimg{
transform: scale(1.1);

}



.services .servicesholder .servicesbox .servicestitle{
  display: block;
  width: 100%;
  font-size: 22px;
  color: #456495;
  font-family: 'Slate W01 Medium';
  text-align: center;
}

.services .servicesholder .servicesbox:hover .servicestitle{
  color: #ffd800;
}


/*# sourceMappingURL=common.css.map */