/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb > ol li:first-child {
  display: inline-block;
}
#issue-banner {
  display: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #222d63;
  padding: 16px;
}
.alert {
  padding: 5px;
  padding-left: 10px;
  border-radius: 0px;
  color: #fff;
  background-color: #7da743;
}
.alert .alertIcn {
  display: none;
}
.alert a {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
}
.alert a:hover {
  color: #fff;
}
body #header {
  background-color: transparent!important;
}
body #header .logo.mobile a {
  display: block;
  padding: 0 0 0 20px;
}

@media (max-width:500px){
  body #header .logo.mobile a {
    display: block;
    padding: 0;
   
  }
  body #header .logo.mobile a img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
   
  }
}
/* THESE ARE SEPERATE CSS FILES --------------------------------------------------------------------- 
	
styles/fall.css
styles/spring.css
styles/winter.css
styles/summer.css


	
html:not(:hover), 
body:not(:hover),
body.fall{
	background-color:#f7f7f7;
	background-image: url('/themes/stabenow/images/fall-background.jpg');
	background-repeat:  no-repeat;
	background-size: 100% auto;
}



html:not(:hover), 
body:not(:hover),
body.spring{
	background-color:#f7f7f7;
	background-image: url('/themes/stabenow/images/spring-background.jpg');
	background-repeat:  no-repeat;
	background-size: 100% auto;
}

html:not(:hover), 
body:not(:hover),
body.winter{
	background-color:#f7f7f7;
	background-image: url('/themes/stabenow/images/winter-background.jpg');
	background-repeat:  no-repeat;
	background-size: 100% auto;
}

html:not(:hover), 
body:not(:hover),
body.summer{
	background-color:#f7f7f7;
	background-image: url('/themes/stabenow/images/summer-background.jpg');
	background-repeat:  no-repeat;
	background-size: 100% auto;
}

*/
/* ------------------ interior pages nav ------------------------------*/
body .navbar {
  background-color: #3B5A10;
  width: 100%;
  height: 55px;
  margin-top: 4px;
}
body .navbar .col-xs-8 {
  padding-right: 0px;
}
body .navbar .nav-pills {
  width: 102%;
  height: 55px;
}
body .navbar .nav-pills > li {
  height: 55px !important;
  padding: 0px !important;
  width: auto;
  vertical-align: bottom;
}
body .navbar .nav-pills > li:first-child a {
  padding-left: 35px;
}
body .navbar .nav-pills > li.selected {
  background-color: #417129;
}
body .navbar .nav-pills > li a {
  color: #fff;
  font-size: 20px;
  height: 54px;
  padding-right: 25px;
  padding-top: 13px;
  padding-left: 25px;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}
body .navbar .nav-pills > li:last-child a {
  padding-right: 72px;
}
body .navbar .nav-pills > li .dropdown-menu {
  border: none;
  box-shadow: none;
  top: 100%;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  border-radius: 0px;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: #417129;
  color: #fff;
}
body .navbar .nav-pills > li:hover a {
  background-color: #3B5A10;
  color: #fff;
}
body .navbar .togglemenu {
  display: block;
  color: #FFF;
  padding: 8px 10px 0 20px;
  font-size: 22px;
  margin: 0;
}
body .navbar .togglemenu .menulabel {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: #fff;
}
body .navbar .srchbutton {
  display: none;
}
body .navbar #search {
  width: 92%;
  display: inline-block;
  float: right;
  margin-right: 50px;
}
body .navbar #search #sitesearch {
  padding: 0px;
}
body .navbar #search #sitesearch #search-field {
  border: none;
  background-color: #E2E2E2;
  color: #417129;
  text-transform: uppercase;
  height: 51px;
  padding: 0px 33px;
  vertical-align: middle;
  float: right;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-top: 4px;
  width: 17em;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 20px;
}
body .navbar #search #sitesearch button {
  color: #417129;
  height: 51px;
  top: 4px;
  padding-top: 9px;
  border: none;
  width: 50px;
  position: absolute;
  font-size: 22px;
  right: 15px;
  background-color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
body .navbar #search #sitesearch button:hover {
  cursor: pointer;
}
body #NavMobileModal .modal-backdrop,
body #SearchModal .modal-backdrop {
  background-color: #7499d7;
  opacity: 1;
  pointer-events: none;
}
body #NavMobileModal .modal-dialog,
body #SearchModal .modal-dialog {
  margin: 20px auto;
}
body #NavMobileModal .modal-dialog .modal-content,
body #SearchModal .modal-dialog .modal-content {
  font-family: 'Raleway', sans-serif;
  color: #FFF;
  overflow-x: hidden;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header,
body #SearchModal .modal-dialog .modal-content .modal-header {
  padding: 0 25px 0 25px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header button.close,
body #SearchModal .modal-dialog .modal-content .modal-header button.close {
  font-size: 36px;
  box-shadow: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li,
body #SearchModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
  font-size: 30px;
  background-color: transparent;
  padding: 10px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child,
body #SearchModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a,
body #SearchModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: #FFF;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu,
body #SearchModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  display: block !important;
  background-clip: none;
  background-color: #7499d7;
  position: relative;
  border: none;
  box-shadow: none;
  float: none;
  margin: 0;
  padding: 0;
  min-width: auto;
  text-align: center;
  top: 0;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a,
body #SearchModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: #FFF;
  font-size: 20px;
}
@-moz-document url-prefix() {
  body .navbar .nav-pills > li a {
    height: 55px!important;
    padding-top: 12px!important;
  }
  body .navbar .nav-pills > li:last-child a {
    padding-right: 62px!important;
  }
}
/* ------------------ menu open ------------------------------*/
body.modal-open {
  position: fixed;
  overflow: hidden;
  right: 0;
  left: 0;
}
/* ------------------ home pages nav ------------------------------*/
body#home .navbar {
  border-top: 5px solid #417129;
  background-color: #fff;
  width: 100%;
  height: 55px;
  display: table;
}
body#home .navbar .col-xs-8 {
  padding-right: 0px;
}
body#home .navbar .nav-pills {
  margin-top: -4px;
  width: 102%;
}

body#home .navbar .nav-pills > li:first-child a {
  padding-left: 35px;
}
body#home .navbar .nav-pills > li a {
  color: #417129;
  font-size: 20px;
  height: 54px;
  text-transform: uppercase;
  padding-top: 13px;
  padding-left: 25px;
}
body#home .navbar .nav-pills > li:last-child a {
  padding-right: 70px;
}
body#home .navbar .nav-pills > li .dropdown-menu {
  border: none;
  box-shadow: none;
  top: 100%;
}
body#home .navbar .nav-pills > li .dropdown-menu li a {
  color: #fff;
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: #417129;
  padding-top: 12px;
  padding-bottom: 12px;
}
body#home .navbar .nav-pills > li:hover a {
  color: #fff;
  background-color: #3B5A10;
  padding-top: 12px;
  padding-bottom: 12px;
}
body#home .navbar .srchbutton {
  color: #FFF;
  display: none;
}
body#home .navbar #search {
  width: 92%;
  display: inline-block;
  float: right;
  margin-right: 50px;
}
body#home .navbar #search #sitesearch {
  padding: 0px;
}
body#home .navbar #search #sitesearch #search-field {
  border: none;
  background-color: #E2E2E2;
  color: #417129;
  text-transform: uppercase;
  height: 51px;
  padding: 0px 33px;
  vertical-align: middle;
  float: right;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-top: 0px;
  width: 17em;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 20px;
}
body#home .navbar #search #sitesearch button {
  color: #417129;
  height: 46px;
  padding-top: 4px;
  border: none;
  width: 50px;
  position: absolute;
  font-size: 22px;
  right: 15px;
  background-color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
body#home .navbar #search #sitesearch button:hover {
  cursor: pointer;
}
/* what does this do */
.navbar {
  border: 0px solid transparent;
}
#home .content {
  background-color: #fff;
}
#home #featured-area {
  height: 470px;
  width: 100%;
  background-color: #fff;
}
#home #featured-area .inner {
  width: 100%;
}
#home #featured-area .inner .img-items {
  position: relative;
  float: left;
  width: 760px;
  height: 445px;
  overflow: hidden;
  margin-left: 20px;
}
#home #featured-area .inner .img-items .all-imgs {
  position: absolute;
  top: 0;
  left: 0;
}
#home #featured-area .inner .img-items .all-imgs .img-itm {
  float: left;
  width: 760px;
  height: 445px;
  background-size: cover;
  background-position: center center;
}
#home #featured-area .inner .txt-items {
  position: relative;
  float: left;
  width: 370px;
  height: 445px;
  overflow: hidden;
  background-color: #222d63;
  margin-right: 20px;
}
#home #featured-area .inner .txt-items .all-txt {
  position: absolute;
  top: 0;
  left: 0;
}
#home #featured-area .inner .txt-items .all-txt .txt-itm {
  box-sizing: border-box;
  height: 445px;
  float: left;
  width: 370px;
}
#home #featured-area .inner .txt-items .all-txt .txt-itm a {
  display: block;
  margin: 15px;
  color: #7499d7;
}
#home #featured-area .inner .txt-items .all-txt .txt-itm a:hover {
  color: #fff;
}
#home #featured-area .inner .txt-items .all-txt .txt-itm .featuredsummary {
  color: #fff;
  margin: 15px;
  font-size: 18px;
  line-height: 22px;
}
#home #featured-area .inner .txt-items .all-txt .txt-itm .featuredsummary a {
  display: initial!important;
  margin: 0px!important;
}
#home #featured-area .inner .txt-items .press-nav {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  left: 0;
  bottom: 0;
  background-color: #7499d7;
  text-transform: uppercase;
  font-size: 16px;
  padding: 16px;
}
#home #featured-area .inner .txt-items .press-nav .nav {
  box-sizing: border-box;
  margin: 0;
  float: left;
  color: #fff;
  user-select: none;
  text-align: center;
  width: 33%;
}
#home #featured-area .inner .txt-items .press-nav .nav .label {
  font-size: 14px;
}
#home #featured-area .inner .txt-items .press-nav .nav.left:hover,
#home #featured-area .inner .txt-items .press-nav .nav.right:hover {
  text-decoration: none;
  color: #222d63;
}
#home #featured-area .inner .txt-items .press-nav .presscurrentpage {
  font-family: 'Merriweather', serif;
  font-size: 17px;
}
#home #featured-area .inner .txt-items .press-nav .nav.left.disable,
#home #featured-area .inner .txt-items .press-nav .nav.right.disable {
  opacity: 0.25;
  pointer-events: none;
}
#home .homegreen {
  background-color: #417129;
  padding: 5px;
}
#home #press {
  padding: 0 30px;
  margin: 0 0 10px 0;
  border-right: 1px solid #F9F9F8;
  border-left: 1px solid #F9F9F8;
  display: table;
  width: 100%;
}
#home #press a {
  margin-top: 50px;
  font-size: 26px;
  color: #222d63;
}
#home #press a:hover {
  color: #7499d7;
}
#home #press .summary {
  line-height: 1.5;
}
#home #press .summary .date {
  display: none;
}
#home #press .summary a {
  font-size: 14px;
  font-weight: 600;
  color: #417129 !important;
  font-style: italic;
  font-family: 'Lexia W01 Regular1114997';
}
#home #press .h3,
#home #press h3 {
  line-height: 1.4;
}
#home #morebutton {
  float: right;
  margin-bottom: 15px;
  margin-right: 20px;
}
#home #morebutton a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #222d63;
  font-size: 18px;
  text-align: center;
}
#home #morebutton a:hover {
  color: #7499d7;
}
#home #morebutton .glyphicon {
  font-size: 12px;
}
#home #announcement {
  padding: 0 30px;
}
#home #mich-brief {
  height: 322px;
  background-color: #222d63;
  background: url('/themes/stabenow/images/michbg.jpg') no-repeat 0 0 transparent;
}
#home #mich-brief .michlogo {
  float: left;
  width: 286px;
  margin: 110px 0 0 65px;
}
#home #mich-brief .michlogo img {
  width: 100%;
  height: auto;
}
#home #mich-brief .briefbox {
  border: 1px solid #4c80a5;
  margin-right: 15px;
  margin-top: 30px;
  height: 265px;
  width: 64%;
  float: right;
  overflow: hidden;
}
#home #mich-brief .briefbox .briefboxing {
  position: relative;
  border: 1px solid green;
  width: 50%;
  height: 265px;
  border: none;
  padding: 10px;
  background-color: #4c80a5;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  float: left;
}
#home #mich-brief .briefbox .briefboxing .img-container {
  height: 225px;
}
#home #mich-brief .briefbox .briefboxing .img-container .brief-img {
  margin-left: -1000;
  opacity: 0;
  width: 353px;
  overflow: hidden;
  box-shadow: inset 0px 0px 50px 3px black;
  /* something is overiding the bg here and i am not sure whart it is */
  background-size: cover !important;
  background-position: center center !important;
  transition: opacity 1.5s ease;
}
#home #mich-brief .briefbox .briefboxing .img-container .brief-img.active {
  margin-left: -1000;
  height: 225px;
  opacity: 1;
}
#home #mich-brief .briefbox .briefboxing .nav-container {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  position: absolute;
  background-color: #7499d7;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 30px;
}
#home #mich-brief .briefbox .briefboxing .nav-container .nav.left,
#home #mich-brief .briefbox .briefboxing .nav-container .nav.right {
  text-decoration: none;
  border-color: #222d63;
  border-style: solid;
  width: 50%;
  height: 30px;
  text-align: center;
  padding-top: 5px;
  box-sizing: border-box;
  display: block;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
#home #mich-brief .briefbox .briefboxing .nav-container .nav.left:hover,
#home #mich-brief .briefbox .briefboxing .nav-container .nav.right:hover {
  color: #222d63;
}
#home #mich-brief .briefbox .briefboxing .nav-container .nav.left.disable,
#home #mich-brief .briefbox .briefboxing .nav-container .nav.right.disable {
  opacity: 0.25;
  pointer-events: none;
}
#home #mich-brief .briefbox .briefboxing .nav-container .nav.left {
  border-width: 1px 1px 1px 0;
  float: left;
}
#home #mich-brief .briefbox .briefboxing .nav-container .nav.right {
  padding-left: 1px;
  border-width: 1px 0 1px 0;
  float: right;
}
#home #mich-brief .briefbox .briefboxtitle {
  position: relative;
  width: 50%;
  height: 265px;
  font-size: 23px;
  float: right;
}
#home #mich-brief .briefbox .briefboxtitle .txt-container {
  position: relative;
  height: 265px;
  box-sizing: border-box;
}
#home #mich-brief .briefbox .briefboxtitle .txt-container a {
  font-family: 'Open Sans', sans-serif;
  position: absolute;
  display: block;
  top: 0;
  right: -1000px;
  width: 100%;
  padding: 20px;
  opacity: 0;
  color: #fff;
  transition: opacity 1.5s ease;
}
#home #mich-brief .briefbox .briefboxtitle .txt-container a:hover {
  color: #7499d7;
}
#home #mich-brief .briefbox .briefboxtitle .txt-container a.active {
  left: 0;
  opacity: 1;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl {
  text-decoration: none;
  font-size: 18px;
  margin: 0 15px 10px 0;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #FFF;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl .glyphicon-pause {
  display: none;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl .glyphicon-play {
  display: block;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl:hover {
  color: #7499d7;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl.on .glyphicon-pause {
  display: block;
}
#home #mich-brief .briefbox .briefboxtitle .cntrl.on .glyphicon-play {
  display: none;
}
.signup {
  display: table;
  width: 100%;
  vertical-align: middle;
  background-color: #7499d7;
}
.signup__text {
  color: white;
  background-color: #222d63;
  display: table-cell;
  padding: 0 3rem;
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 991px) {
  .signup__text {
    padding: 1rem;
    display: block;
  }
}
.signup__text--top {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  display: block;
  font-size: 34px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .signup__text--top {
    font-size: 28px;
  }
}
.signup__text--bottom {
  font-family: 'Open Sans', sans-serif;
  display: block;
}
.signup__formholder {
  display: table-cell;
  padding: 3rem;
  vertical-align: middle;
  width: 80%;
}
@media (max-width: 1200px) {
  .signup__formholder {
    padding: 3rem 2rem;
  }
}
@media (max-width: 991px) {
  .signup__formholder {
    display: block;
    width: 100%;
  }
}
.signup__field {
  width: 100%;
  height: 40px;
  padding: 5px;
  border: 0;
}
@media (max-width: 991px) {
  .signup__field {
    margin-bottom: 10px;
  }
}
.signup__submit {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  background-color: #222d63;
  color: white;
  height: 40px;
  border: 1px solid #222d63;
  width: 100%;
  padding: 0;
  text-transform: uppercase;
}
.signup__submit:hover {
  background-color: #7499d7;
  border: 1px solid #222d63;
}
@media (max-width: 1200px) {
  .signup__submit {
    padding: 0;
  }
}
.signup__firstfield,
.signup__secondfield,
.signup__thirdfield {
  padding-right: 0;
}
@media (max-width: 991px) {
  .signup__firstfield,
  .signup__secondfield,
  .signup__thirdfield {
    padding-right: 15px;
  }
}
.signup__lastfield {
  padding-left: 0;
  padding-right: 5px;
}
@media (max-width: 991px) {
  .signup__lastfield {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.signup__confirmation span {
  color: #fff;
  font-size: 26px;
  font-family: 'Open Sans', sans-serif;
}
.twitter-bar {
  text-align: center;
  background-image: url("/themes/stabenow/images/twitter/bg1.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  display: table;
  position: relative;
  margin: 2rem 0;
}
.twitter-bar .twitter-bird {
  color: white;
  font-size: 36px;
  z-index: 200;
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  margin: 0 auto;
}
.twitter-bar .twitter-bird:hover {
  color: #0193da;
}
.twitter-bar .twitter-bird .twitter-tagline {
  font-size: 24px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: white;
  padding-left: 15px;
}
.twitter-bar #twitter-carousel {
  position: relative;
}
.twitter-bar #twitter-carousel #carousel {
  height: 380px;
  display: table;
  vertical-align: middle;
  width: 100%;
}
.twitter-bar #twitter-carousel #carousel:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-color: rgba(34, 44, 98, 0.5);
  left: 0;
  top: 0;
}
.twitter-bar #twitter-carousel #carousel .carousel-inner {
  text-align: center;
  top: 12rem;
}
@media (max-width: 991px) {
  .twitter-bar #twitter-carousel #carousel .carousel-inner {
    top: 11rem;
  }
}
.twitter-bar #twitter-carousel #carousel .carousel-inner .item {
  margin: 0 auto;
  color: white;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 991px) {
  .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 20px;
  }
}
.twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
  color: white;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.twitter-bar #twitter-carousel #carousel .carousel-inner .item a:hover {
  color: white;
}
.twitter-bar #twitter-carousel #carousel .carousel-inner .item .tweet {
  word-break: break-word;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 630px) {
  .twitter-bar #twitter-carousel #carousel {
    height: 500px;
  }
}
/*body.bg1{
		.twitter-bar {
			background-image: url("/themes/stabenow/images/officebg.jpg");
		}
	}

	body.bg2{
		.twitter-bar {
			background-image: url("/themes/stabenow/images/twitter/bg1.jpg");
		}
	}

	body.bg3{
		.twitter-bar {
			background-image: url("/themes/stabenow/images/twitter/bg2.jpg");
		}
	}

	body.bg4{
		.twitter-bar {
			background-image: url("/themes/stabenow/images/twitter/bg3.jpg");
		}
	}*/
.instagram__holder {
  display: table;
  width: 100%;
  padding: 3rem;
  margin-bottom: 2rem;
}
.instagram__row {
  display: block;
  width: 100%;
}
.instagram__title {
  color: #222d63;
  font-size: 24px;
  text-align: center;
  width: 100%;
  padding-bottom: 2rem;
  display: block;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  position: relative;
}
.instagram__title:hover {
  color: #7499d7;
  text-decoration: underline;
}
.instagram__title .instaicon {
  margin-right: 10px;
}
.instagram__title .instaicon:after {
  content: '|';
  display: inline-block;
}
.instagram__title .instagramtext {
  font-size: 38px;
  padding-left: 5px;
}
.instagram__col {
  margin-bottom: 1rem;
}
.instagram__image img {
  width: 100%;
  transition: transform 0.2s ease-in-out;
}
.instagram__image:hover img {
  transform: scale(1.1);
}
/*
default interior styles

commonly made fixes / tweaks
*/
body,
html {
  border-top: 1px solid #7da743;
  background-color: #f7f7f7;
}
/* FIREFOX */
@-moz-document url-prefix() {
  .socicon {
    top: 0px !important;
  }
}
.container {
  max-width: 1170px;
  padding-right: 0px;
  padding-left: 0px;
}
.smallHeader {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 15px;
}
.smallpressHeader {
  width: 100%;
  display: block;
  margin-top: 15px;
  margin-bottom: -20px;
}
#content {
  min-height: 610px;
  margin-left: auto;
  margin-right: auto;
}
#content .container {
  background-color: #fff;
  padding-left: 45px;
  padding-right: 45px;
  min-height: 980px;
  padding-bottom: 5em;
  padding-top: 1.5em;
}
.social {
  margin: 5px 0 0 0;
  width: 350px;
  float: left;
}
.social ul {
  float: left;
}
.social ul li a.icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #417129;
  margin: 20px 0 0 2px;
  padding: 5px 0 0 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #417129;
  color: #FFF;
}
.social ul li a.icon:hover {
  border: 1px solid #417129;
  color: #417129;
  background-color: #FFF;
}
.social a.icon.icons {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #417129;
  margin: 20px 0 0 2px;
  padding: 5px 0 0 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #417129;
  color: #FFF;
}
.social a.icon.icons:hover {
  border: 1px solid #417129;
  color: #417129;
  background-color: #FFF;
}
.social .fb_iframe_widget {
  top: 20px;
}
span.key-button {
  width: 35px !important;
  height: 35px;
  border: 1px solid #fff;
  background-color: #417129;
  border-radius: 25px;
  display: inline-block;
  position: relative;
  padding: 8px 0px;
  text-align: center;
  color: #fff;
  top: 13px !important;
}
span.key-button:hover {
  background-color: #3B5A13;
}
.social.ki-social-share.grant-funding {
  float: right;
  margin: 0px 0px 0px 0px;
  width: 65px;
}
.fb-like.fb_iframe_widget.grant-fund {
  margin: 0px;
  position: relative;
  display: block;
  top: 4px;
}
a.icon.icons {
  margin: 0px 0px !important;
}
.gprfa-page-social {
  height: 0px;
  padding: 5px 0px 35px 0px;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  margin: 20px 0px;
}
h3.related-links {
  padding-bottom: 20px;
}
.fb_iframe_widget {
  display: inline-block;
  position: relative;
  margin: 5px 0px 0px 15px;
  top: 10px;
}
.pluginCountButton {
  border: transparent;
}
#asides {
  margin-top: 36px;
}
#asides #search-thomas {
  margin-bottom: 60px;
}
#asides #filter-legislation {
  margin-top: -5px;
}
.modal-dialog {
  z-index: 2000;
}
p.caption {
  max-width: 100%;
  text-align: center;
  background-color: #E2E2E2;
  max-height: 100%;
  margin-bottom: 20px;
}
.caption-img {
  margin: 20px auto;
  padding-top: 20px;
}
span.captionText {
  display: inline-block;
  max-width: 500px;
}
body#newsroom .modal-backdrop {
  z-index: 0;
}
body#newsroom #newscontent #pressrelease {
  margin-top: -30px;
}
body#newsroom #newscontent #pressrelease #subtitle {
  font-size: 18px;
}
body#newsroom #newscontent #pressrelease .date {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
body#newsroom .modal-dialog {
  z-index: 2000;
}
body#newsroom .modal-dialog .modal-content .btn {
  background: #222d63;
  color: #fff;
}
body#newsroom .modal-dialog .modal-content .btn:hover {
  background: #7499d7;
  color: #fff;
}
body#newsroom .filtertext {
  margin-top: 20px;
}
body#newsroom #voting_record .page .row {
  /* ----- */
}
body#newsroom .pagination-right {
  background-color: #1D4A74;
  color: white;
  height: 32px;
  line-height: 2.2;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  text-align: left;
}
body#newsroom a.btn.btn-small {
  background-color: transparent;
  position: relative;
  display: block;
  bottom: 51px;
}
body#newsroom a.btn.btn-small:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #fff;
}
body#newsroom .pager li {
  display: inline-block;
}
body#newsroom .pager {
  text-align: right;
}
body#newsroom select.span4 {
  background-color: transparent;
  border: none;
}
body#newsroom select.span4:hover {
  text-decoration: underline;
  cursor: pointer;
}
body#newsroom .socicons li a {
  font-family: 'socicon';
  padding: 7px 8px;
  font-size: 16px;
  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;
  -webkit-font-smoothing: antialiased;
}
body#newsroom .socicons li a:hover {
  cursor: pointer;
}
body#newsroom .socicons li .flickr {
  border-color: #fff;
  color: #fff;
}
body#newsroom .socicons li .flickr:hover {
  border-color: #F954CD;
  color: #F954CD;
}
body#newsroom .socicons li .twttr {
  border-color: #fff;
  color: #fff;
}
body#newsroom .socicons li .twttr:hover {
  border-color: #78cdf0;
  color: #78cdf0;
}
body#newsroom .socicons li .you-tube {
  border-color: #fff;
  color: #fff;
}
body#newsroom .socicons li .you-tube:hover {
  border-color: #db0000;
  color: #db0000;
}
body#newsroom #photos li .imghold {
  height: 170px;
}
body#newsroom .arrowright {
  font-family: 'Webdings W95 Regular';
  font-size: 16px;
}
body#newsroom a#launchfilter {
  color: #fff;
}
body#newsroom a.btn.btn-sm {
  color: #fff;
}
body#newsroom #newscontent {
  padding-top: 30px;
}
body#newsroom #newscontent .summary a {
  visibility: hidden;
}
body#newsroom #newscontent .summary a:before {
  content: 'More';
  visibility: visible;
}
body#newsroom #newscontent .pull-left {
  font-family: 'Lexia W01 XBold';
  text-transform: uppercase;
  background-color: #222d63;
  color: #fff;
}
body#newsroom #newscontent .pull-left:hover {
  background-color: #7499d7;
}
body#newsroom #newscontent .pull-right {
  font-family: 'Lexia W01 XBold';
  text-transform: uppercase;
  background-color: #222d63;
  color: #fff;
}
body#newsroom #newscontent .pull-right:hover {
  background-color: #7499d7;
}
body#newsroom #newscontent #photos .date {
  display: none;
}
body#newsroom #newscontent .summary a {
  font-size: 14px;
  font-weight: 600;
  color: #417129 !important;
  text-decoration: none;
  font-style: italic;
  font-family: 'Lexia W01 Regular1114997';
}
body#newsroom #pagetools {
  margin: -35px 0 0 0;
  float: left;
  position: absolute;
}
body#newsroom #pagetools ul {
  float: left;
}
body#newsroom #pagetools ul li a.icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #417129;
  padding: 5px 0 0 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #417129;
  color: #FFF;
}
body#newsroom #pagetools ul li a.icon:hover {
  border: 1px solid #417129;
  color: #417129;
  background-color: #FFF;
}
body#newsroom #pagetools .fb_iframe_widget {
  top: 4px;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
}
aside {
  margin-top: 0px;
}
aside form select {
  font-size: 20px;
}
aside form #thomas_search {
  width: 100%;
  height: 50px;
  font-size: 20px;
}
.btn-block {
  height: 50px;
  background-color: #1d4a74;
  font-family: 'Lexia W01 XBold';
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.btn-block:hover {
  background-color: #7499d7;
  color: #fff;
}
span.dop {
  font-size: 14px;
  line-height: 1em;
}
div#filterbuttons {
  display: inline-block;
  position: relative;
  background-color: #222d63;
  right: 0px;
}
aside#filter-legislation {
  display: block;
  position: relative;
  bottom: 20px;
}
aside form #thomas_search {
  width: 109%;
  height: 50px;
  font-size: 20px;
}
aside h1 {
  font-size: 26px;
}
aside p {
  display: block;
  position: relative;
}
aside.list > ul li {
  border-bottom: none;
}
input.btn {
  height: 50px;
  line-height: 0.5;
}
.pager li > a,
.pager li > span {
  background-color: #222d63;
}
.pager li > a:hover,
.pager li > span:hover {
  background-color: #7499d7;
  color: #fff;
}
#issue #asides {
  margin-top: 22px;
  list-style-type: none;
}
#issue #asides aside h1 {
  margin-top: 10px;
  margin-bottom: 1px;
}
#issue #asides aside h2 {
  margin-top: 17px;
  padding: 0px;
}
#issue #asides aside a {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-family: 'Lexia W01 Regular1114997';
  text-transform: none;
}
#issue #asides aside .seemore {
  float: right;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
#issue #asides aside .seemore:hover {
  text-decoration: underline;
  color: #7499d7;
}
#issue #asides aside .date {
  float: left;
  margin-top: 15px;
  height: 15px;
  padding-right: 9px;
}
#issue #asides aside li {
  margin-bottom: 0px;
  padding-bottom: 8px;
}
#issue #pagetools {
  margin: -15px 0 0 0;
  float: left;
  position: absolute;
}
#issue #pagetools ul {
  float: left;
}
#issue #pagetools ul li a.icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #417129;
  padding: 5px 0 0 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #417129;
  color: #FFF;
}
#issue #pagetools ul li a.icon:hover {
  border: 1px solid #417129;
  color: #417129;
  background-color: #FFF;
}
#issue #pagetools .fb_iframe_widget {
  top: 4px;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
}
#keyissues #asides {
  margin-top: 57px;
}
#keyissues #asides aside .date {
  float: left;
  margin-top: 0px;
  height: 15px;
  padding-right: 9px;
}
#keyissues #asides aside li {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#keyissues #asides aside h2 {
  color: #000;
  padding: 0px;
  font-size: 26px;
  text-transform: none;
}
.breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
.blockquote {
  background-color: #eee;
  border-radius: 6px;
}
/*
hearing styles */
.pull-down {
  display: inline-block;
  width: 45%;
  margin: 15px;
  height: 50px;
  background-color: #222d63;
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  white-space: normal;
  text-transform: uppercase;
  text-align: center;
  background-repeat: repeat;
  font-family: 'Lexia W01 XBold';
}
.pull-down a {
  color: #fff;
}
.pull-down a:hover {
  color: #fff;
}
.pull-down:hover {
  color: #fff;
  background-color: #7499d7;
}
.pull-down-2 {
  display: inline-block;
  width: 45%;
  height: 50px;
  background-color: #222d63;
  color: #fff;
  line-height: 50px;
  font-size: 16px;
  white-space: normal;
  text-transform: uppercase;
  text-align: center;
  background-repeat: repeat;
  font-family: 'Lexia W01 XBold';
}
.pull-down-2 a {
  color: #fff;
}
.pull-down-2 a:hover {
  color: #fff;
}
.pull-down-2:hover {
  background-color: #7499d7;
  color: #fff;
}
#biography #asides aside #sam-officialphoto {
  margin-top: 21px;
}
#biography #asides aside #sam-officialphoto .official-photo a {
  display: block;
}
#biography #asides aside #sam-officialphoto .official-photo a img {
  width: 100%;
  height: auto;
}
#keyissues .main_page_title {
  float: left;
  margin-right: 50px;
}
#keyissues #mainlist li.media {
  border-bottom: none;
  margin: 0;
  padding: 0 0 10px 0;
}
#keyissues #mainlist li.media .media-body {
  margin: 0;
}
#keyissues #mainlist li.media .media-body .media-heading {
  margin: 0 0 20px 0;
}
#keyissues #mainlist li.media .media-body a.more {
  font-family: 'Lexia W01 Bold Italic1114985';
  font-size: 16px;
  color: #417129;
}
#keyissues #asides #side-bar-img img {
  width: 100%;
  height: auto;
}
#keyissues #asides aside.news ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#keyissues #asides aside.news ul li {
  margin: 0 0 30px 0;
}
#keyissues #asides aside.news ul li a {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
}
#keyissues #asides aside.calendar .dTodayInSenateDate {
  font-family: 'Raleway', sans-serif;
  display: block;
  font-size: 20px;
  margin: 0 0 15px 0;
}
#locations ul {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#locations ul li h1 {
  font-size: 26px;
  color: #222d63;
}
@media (max-width: 767px) {
  #gallery.photos ul {
    height: auto !important;
  }
  #gallery.photos li {
    position: relative !important;
    left: auto !important;
    top: auto !important;
  }
}
#main_column form .btn {
  padding: 0 45px;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: none!important;
  -moz-box-shadow: none!important;
  box-shadow: none!important;
}
.fancybox-outer {
  position: relative;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}
.fancybox-title-float-wrap {
  position: relative!important;
  right: 0%!important;
  top: 22px!important;
  z-index: 10000!important;
}
.fancybox-skin {
  background: none!important;
}
.fancybox-title-float-wrap .child {
  margin-right: 0%!important;
  white-space: normal!important;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
body .container {
  /* all other page map styles ------------------*/
}
body .container #map {
  /* roll over states */
}
body .container #map #office-locations {
  clear: both;
  overflow: none;
  height: 327px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}
body .container #map #office-locations .office {
  margin: 30px 0 0 30px;
}
body .container #map #office-locations .office h1 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 30px;
}
body .container #map #office-locations .office h2 {
  text-transform: none;
  font-size: 21px;
  margin: 8px 0 0 0;
  color: #fff;
}
body .container #map #office-locations .office .offices {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 20px 0 0 0;
  clear: both;
  overflow: none;
}
body .container #map #office-locations .office .offices ul {
  width: 185px;
  float: left;
  margin: 0 15px 0 0;
  padding: 0;
  list-style-type: none;
}
body .container #map #office-locations .office .offices ul li {
  cursor: pointer;
  margin: 0px 0px 12px 0px;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
}
body .container #map #office-locations .office .offices ul li span {
  display: inline-block;
}
body .container #map #office-locations .office .offices ul li .glyphicon {
  display: none;
}
body .container #map #office-locations .office .offices ul li:hover {
  color: #fff;
  text-decoration: underline;
}
body .container #map #office-locations .office .offices ul li.on {
  text-decoration: none;
  color: #fff;
}
body .container #map #office-locations .office .offices ul li.on .glyphicon {
  display: none;
}
body .container #map #office-locations .office .offices ul li.on:hover {
  /*color: #fff;*/
  text-decoration: underline;
}
body .container #map #office-locations .addresses {
  margin: 115px 0 0 0;
  position: absolute;
  background-color: rgba(36, 37, 32, 0.75);
}
body .container #map #office-locations .addresses .address {
  display: none;
  margin: 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  text-transform: none;
}
body .container #map #office-locations .addresses .address h1 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: #FFF;
}
body .container #map #office-locations #office-locations-map-home {
  display: none;
}
body .container #map #office-locations #office-locations-map-footer {
  margin: 10px 30px 0 0;
  width: 263px;
  height: 300px;
  background-image: url(../images/map/small/sml-map-blank.png);
  background-repeat: no-repeat;
  background-position: right center;
}
body .container #map #office-locations.western #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-western.png);
}
body .container #map #office-locations.western .addresses .address.western {
  display: block;
}
body .container #map #office-locations.mid #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-mid.png);
}
body .container #map #office-locations.mid .addresses .address.mid {
  display: block;
}
body .container #map #office-locations.southeast #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-southeastern.png);
}
body .container #map #office-locations.southeast .addresses .address.southeast {
  display: block;
}
body .container #map #office-locations.flint #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-flint.png);
}
body .container #map #office-locations.flint .addresses .address.flint {
  display: block;
}
body .container #map #office-locations.upper #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-upper.png);
}
body .container #map #office-locations.upper .addresses .address.upper {
  display: block;
}
body .container #map #office-locations.northern #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-northern.png);
}
body .container #map #office-locations.northern .addresses .address.northern {
  display: block;
}
body .container #map #office-locations.dc #office-locations-map-footer {
  background-image: url(../images/map/small/sml-map-blank.png);
}
body .container #map #office-locations.dc .addresses .address.dc {
  display: block;
}
body .container #map .preload {
  display: none;
}
body .container .footer {
  display: block;
  padding: 15px;
  background-color: #222d63;
  text-align: center;
}
body .container .footer li a {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
}
body .container .footer li a:hover {
  color: #fff;
  cursor: pointer;
}
body .container.footer-nav .list-inline {
  text-align: left;
}
body .container.footer-nav .list-inline li {
  padding-right: 24.7px;
  padding-left: 24.7px;
}
body .container.footer-nav .social {
  position: absolute;
  top: -5px;
  right: 55px;
  width: auto;
  padding: 0;
}
body .container.footer-nav .social li {
  padding-left: 5px;
  padding-right: 5px;
}
body .container.footer-nav .social li a.icon {
  border: 1px solid #fff;
  color: #FFF;
  background-color: #222d63;
}
body .container.footer-nav .social li a.icon:hover {
  background-color: #7499d7;
  text-decoration: underline;
}
body .container.footer-nav .social li a.icon.print {
  display: none;
}
body .subfooter {
  display: block;
  text-align: center;
  background-color: #7499d7;
  padding: 7px;
}
body .subfooter a {
  color: #fff;
  cursor: pointer;
}
body .subfooter a:hover {
  color: #fff;
}
body .subfooter a:nth-child(2):before,
body .subfooter a:nth-child(3):before {
  content: "|";
  position: relative;
  display: inline-block;
  left: -4px;
  font-size: 14px;
  color: #fff;
}
body.fall .container #map #office-locations {
  background: url('/themes/stabenow/images/fall-office.jpg') no-repeat;
}
body.spring .container #map #office-locations {
  background: url('/themes/stabenow/images/spring-office.jpg') no-repeat;
}
body.winter .container #map #office-locations {
  background: url('/themes/stabenow/images/winter-office.jpg') no-repeat;
}
body.summer .container #map #office-locations {
  background: url('/themes/stabenow/images/summer-office.jpg') no-repeat;
}
#flagForm #flag-options .head {
  background-color: #222d63;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 15px 0px 15px 0px;
}
#flagForm #flag-options .row {
  text-align: center;
}
#flagForm #flag-options .row .form-group .size {
  position: relative;
  right: 30px;
  width: 60px;
}
#flagForm #flag-options .row .qty {
  max-width: 60px;
  padding: 0 8px 0 8px;
}
#flagForm .btn {
  background-color: #222d63 !important;
  color: #fff !important;
  font-family: 'Lexia W01 XBold';
  text-transform: uppercase;
}
#flagForm .btn:hover {
  background-color: #7499d7 !important;
}
.flagsubmit {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
#pagetools {
  margin: -15px 0 0 0;
  float: left;
  position: absolute;
}
#pagetools ul {
  float: left;
}
#pagetools ul li a.icon {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #417129;
  padding: 5px 0 0 7px;
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #417129;
  color: #FFF;
}
#pagetools ul li a.icon:hover {
  border: 1px solid #417129;
  color: #417129;
  background-color: #FFF;
}
#pagetools .fb_iframe_widget {
  top: 4px;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
}
/* collapse ------------------------------- */
#content .amend-form-container form input[type="text"],
#content .amend-form-container form input[type="email"],
#content .amend-form-container form select {
  padding-left: 15px;
}
#content .amend-form-container form input[type="submit"] {
  font-family: 'Lexia W01 XBold';
  text-transform: uppercase;
  background-color: #222d63;
}
#content .amend-form-container form input[type="submit"]:hover {
  background-color: #7499d7;
}
/*

font-family:'Texta W00 Thin';
font-family:'Texta Alt W00 Thin';
font-family:'Texta W00 Thin Italic';
font-family:'Texta Alt W00 Thin Italic';
font-family:'Texta W00 Light';
font-family:'Texta Alt W00 Light';
font-family:'Texta W00 Light Italic';
font-family:'Texta Alt W00 Light Italic';
font-family:'Texta W00 Book';
font-family:'Texta Alt W00 Book';
font-family:'Texta W00 Book Italic';
font-family:'Texta Alt W00 Book Italic';
font-family:'Texta W00 Regular';
font-family:'Texta Alt W00 Regular';
font-family:'Texta W00 Italic';
font-family:'Texta Alt W00 Italic';
font-family:'Texta W00 Medium';
font-family:'Texta Alt W00 Medium';
font-family:'Texta W00 Medium Italic';
font-family:'Texta Alt W00 Medium Alt It';
font-family:'Texta W00 Bold';
font-family:'Texta Alt W00 Bold';
font-family:'Texta W00 Bold Italic';
font-family:'Texta Alt W00 Bold Italic';
font-family:'Texta W00 Heavy';
font-family:'Texta Alt W00 Heavy';
font-family:'Texta W00 Heavy Italic';
font-family:'Texta Alt W00 Heavy Italic';
font-family:'Texta W00 Black';
font-family:'Texta Alt W00 Black';
font-family:'Texta W00 Black Italic';
font-family:'Texta Alt W00 Black Italic';
font-family:'Lexia W01 Thin';
font-family:'Lexia W01 Thin Italic';
font-family:'Lexia W01 Light';
font-family:'Lexia W01 Light Italic';
font-family:'Lexia W01 Regular1114997';
font-family:'Lexia W01 Italic1114988';
font-family:'Lexia W01 Bold1114982';
font-family:'Lexia W01 Bold Italic1114985';
font-family:'Lexia W01 XBold';
font-family:'Lexia W01 Xbold Italic';
font-family:'Lexia W01 Black';
font-family:'Lexia W01 Black Italic';
font-family:'Webdings W95 Regular';



paste available font families here
*/
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: local('Raleway Light'), local('Raleway-Light'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwIYqWqZPBQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: local('Raleway'), local('Raleway-Regular'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPNyC0ISg.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: local('Raleway Bold'), local('Raleway-Bold'), url(https://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtWqZPBQ.ttf) format('truetype');
}
/*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*/
.lexia {
  font-family: 'Lexia W01 Regular1114997';
}
.lexia-light {
  font-family: 'Lexia W01 Light';
}
.lexia-bold {
  font-family: 'Lexia W01 XBold';
}
.lexia-bold-italic {
  font-family: 'Lexia W01 Bold Italic1114985';
}
.texta-light {
  font-family: 'Texta W00 Light';
}
.texta-thin {
  font-family: 'Texta W00 Thin';
}
.texta-bold {
  font-family: 'Texta W00 Bold';
}
.texta-reg {
  font-family: 'Texta W00 Regular';
}
.texta-med {
  font-family: 'Texta W00 Medium';
}
.instagramtext {
  font-family: 'Billabong W05 Regular';
}
/*set up sans-serif font quick class if we have one*/
.oswald {
  font-family: 'Raleway', sans-serif;
}
.oswald-light {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
}
.oswald-bold {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}
.webdings {
  font-family: 'Webdings W95 Regular';
}
/*
font-family: 'Merriweather', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Zilla Slab', serif;
font-family: 'Amiko', sans-serif;
*/
.opensans {
  font-family: 'Open Sans', sans-serif;
}
.opensans-bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.opensans-bolditalic {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
}
.merriweather {
  font-family: 'Merriweather', serif;
}
.merriweather-bold {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.merriweather-bolditalic {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-style: italic;
}
.zilla {
  font-family: 'Zilla Slab', serif;
}
.zilla-bold {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
}
.amiko {
  font-family: 'Amiko', sans-serif;
}
.amiko-bold {
  font-family: 'Amiko', sans-serif;
  font-weight: 700;
}
/*body color and font*/
body {
  font-family: 'Merriweather', serif;
  font-size: 15px;
}
body .navbar a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
@font-face {
  font-family: 'socicon';
  src: url('/themes/stabenow/fonts/social/socicon.eot');
  src: url('/themes/stabenow/fonts/social/socicon.eot?#iefix') format('embedded-opentype'), url('/themes/stabenow/fonts/social/socicon.woff') format('woff'), url('/themes/stabenow/fonts/social/socicon.woff2') format('woff2'), url('/themes/stabenow/fonts/social/socicon.ttf') format('truetype'), url('/themes/stabenow/fonts/social/socicon.svg#sociconregular') format('svg');
  font-weight: normal;
  font-style: normal;
  text-transform: initial;
}
body .socicon {
  font-family: 'socicon' !important;
}
body .socicon {
  position: relative;
  top: 1px;
  right: 0.4px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
body .socicon:first-child {
  right: 0px;
}
body .socicon:empty {
  width: 1em;
}
body .socicon-twitter:before {
  content: "a";
}
body .socicon-facebook:before {
  content: "b";
}
body .socicon-google:before {
  content: "c";
}
body .socicon-youtube:before {
  content: "r";
}
body .socicon-instagram:before {
  content: "x";
}
body footer a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
body .subfooter a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #000;
}
.main_page_title {
  color: #000;
}
.h1,
h1 {
  font-size: 38px;
}
.h2,
h2 {
  font-size: 30px;
  column-rule: #8BBCDE;
}
.h3,
h3 {
  font-size: 26px;
}
.h4,
h4 {
  font-size: 16px;
}
/*anchor stlyes*/
a {
  color: #222d63;
}
a:hover {
  cursor: pointer;
  color: #7499d7;
}
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: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #000;
}
aside h1 {
  margin-top: -4px;
  margin-bottom: 20px;
}
aside h2 {
  font-size: 18px;
  text-transform: uppercase;
  color: #FFF;
  padding: 10px 15px 10px 15px;
  letter-spacing: 0.02em;
}
.arrowright {
  font-family: 'Webdings W95 Regular';
  font-size: 16px;
}
/*button styles*/
/* button text break fix */
.btn-block {
  white-space: normal;
  min-height: 50px;
  height: auto;
}
/*interior page content default styles */
@media (max-width: 1200px) {
  .navbar .nav-pills > li a {
    padding-top: 20px !important;
    font-size: 17px !important;
    height: 55px;
  }
  .navbar #search #sitesearch #search-field {
    width: 250px !important;
  }
  .navbar #search #sitesearch button {
    font-size: 17px !important;
  }
  #home {
    /*
		#map {
			#office-locations{
				.office{
					margin: 110px 0 0 40px !important;

					.offices{
						ul{
							li{
								margin:0 0 15px 0 !important;
							}
						}
					}

			     }
			}
		}
		*/
  }
  #home #featured-area .inner .img-items {
    position: relative;
    float: left;
    width: 650px;
  }
  #home #featured-area .inner .img-items .all-imgs {
    transition: none;
  }
  #home #featured-area .inner .img-items .all-imgs .img-itm {
    float: left;
    width: 650px;
  }
  #home #featured-area .inner .txt-items {
    width: 280px;
  }
  #home #featured-area .inner .txt-items .all-txt {
    left: 0;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm {
    width: 280px;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm h2 {
    font-size: 28px;
  }
  #home #featured-area .inner .txt-items .press-nav .nav .label {
    font-size: 11px;
  }
  #map #office-locations .office {
    margin: 25px 0 0 40px !important;
  }
  #map #office-locations .office .offices ul li {
    margin: 0 !important;
  }
  #map #office-locations .addresses {
    margin: 115px 0 0 0 !important;
  }
  #mich-brief .michlogo {
    width: 230px !important;
    margin: 140px 0 0 50px !important;
  }
  #mich-brief .briefbox .briefboxing .img-container {
    width: 290px !important;
  }
  #mich-brief .briefbox .briefboxing .img-container .brief-img {
    width: 290px !important;
  }
  body .container.footer-nav .social {
    margin: 0;
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    padding: 0 0 0 0;
    background-color: #222d63;
  }
  body .container.footer-nav .social ul {
    display: block;
    float: none;
    margin: 0 auto !important;
    padding: 0;
    width: 135px;
    height: 70px;
  }
}
@media (max-width: 1199px) {
  body#home .navbar .nav-pills {
    width: 106%;
  }
  body#home .navbar .nav-pills > li:first-child a {
    padding-left: 18px!important;
  }
  body#home .navbar .nav-pills > li:last-child a {
    padding-right: 86px;
  }
  body#home .navbar .nav-pills > li a {
    padding-top: 17px !important;
    font-size: 17px !important;
    height: 55px;
  }
  body#home .navbar #search #sitesearch #search-field {
    width: 250px !important;
  }
  body#home .navbar #search #sitesearch button {
    font-size: 17px !important;
  }
  body .navbar .nav-pills {
    width: 106%;
  }
  body .navbar .nav-pills > li:first-child a {
    padding-left: 18px!important;
  }
  body .navbar .nav-pills > li a {
    padding-top: 17px !important;
    font-size: 17px !important;
    height: 55px;
  }
}
@media (max-width: 991px) {
  #asides #side-bar-img {
    display: none;
  }
  #asides .news {
    display: none;
  }
  #asides .list {
    display: none;
  }
  .navbar .nav-pills > li a {
    padding-top: 20px !important;
    padding-left: 10px !important;
    font-size: 17px !important;
    height: 55px!important;
  }
  .navbar .nav-pills > li:last-child a {
    padding-right: 70px;
  }
  .navbar a.srchbuttonmodal {
    float: right;
    display: block;
    font-size: 22px;
    color: #FFF;
    padding: 10px 40px 0 0;
  }
  #home #featured-area {
    position: relative;
    padding: 0;
    height: 590px;
  }
  #home #featured-area .inner {
    padding: 0;
  }
  #home #featured-area .inner .img-items {
    float: none;
    height: 350px;
    margin: 0;
  }
  #home #featured-area .inner .img-items .all-imgs .img-itm {
    margin: 0;
    height: 350px;
  }
  #home #featured-area .inner .txt-items {
    height: 220px;
  }
  #home #featured-area .inner .txt-items .all-txt {
    height: auto;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm {
    min-height: 220px;
    height: auto;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm h2 {
    font-size: 28px;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm .featuredsummary {
    margin: 15px;
    color: #fff;
  }
  #home #featured-area .inner .txt-items .press-nav {
    height: 45px;
    padding: 10px;
  }
  #home #featured-area .inner .txt-items .press-nav .nav .label {
    font-size: 16px;
  }
  #home #mich-brief {
    padding: 25px;
  }
  #home #mich-brief .briefbox {
    float: none;
    width: 625px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
  }
  #home .navbar a.srchbuttonmodal {
    color: #417129;
  }
  #photostream li .imghold {
    min-height: 265px;
  }
  body#home .navbar .nav-pills > li:last-child a {
    padding-right: 72px;
  }
  body .container #map #office-locations .office .offices ul li {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  body {
    background: none;
    background-color: #222d63;
  }
  #home .navbar a.srchbuttonmodal {
    color: #FFF;
  }
  #home #featured-area .txt-items .all-txt .txt-itm {
    width: 100%;
    height: auto;
  }
  #home #featured-area .txt-items .all-txt .txt-itm h2 {
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 22px !important;
  }
  #home #featured-area .txt-items .all-txt .txt-itm .featuredsummary {
    font-size: 16px !important;
  }
  #map #office-locations {
    height: 65px !important;
  }
  #map #office-locations .link {
    text-align: center;
  }
  #map #office-locations .link h1 {
    margin: 8px 0 0 0;
  }
  #map #office-locations .link h1 a {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 24px;
  }
  .container.footer-nav .footer .list-inline {
    text-align: center;
  }
  .container.footer-nav .footer .list-inline li {
    padding-right: 60px;
    padding-left: 60px;
  }
  .dropdown-menu li a {
    white-space: normal;
  }
  .navbar {
    border: none !important;
    background-color: #7499d7 !important;
  }
  .navbar a.srchbuttonmodal {
    float: right;
    display: block;
    font-size: 22px;
    color: #FFF;
    padding: 10px 40px 0 0;
  }
  #photos li .imghold {
    height: auto;
  }
}
@media (max-width: 479px) {
  #home #featured-area {
    padding: 0;
    height: 475px;
  }
  #home #featured-area .inner {
    padding: 0;
  }
  #home #featured-area .inner .img-items {
    height: 250px;
  }
  #home #featured-area .inner .img-items .all-imgs .img-itm {
    height: 250px;
  }
  #home #featured-area .inner .txt-items {
    height: 200px;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm h2 {
    font-size: 16px !important;
  }
  #home #featured-area .inner .txt-items .all-txt .txt-itm .featuredsummary {
    font-size: 13px !important;
    line-height: 15px;
  }
}
@media (max-width: 330px) {
  body {
    /*border:1px solid orange;*/
  }
  #home #featured-area {
    padding: 0;
    height: 370px;
  }
  #home #featured-area .inner {
    padding: 0;
  }
  #home #featured-area .inner .img-items {
    height: 150px;
  }
  #home #featured-area .inner .img-items .all-imgs .img-itm {
    height: 150px;
  }
  #home #featured-area .inner .txt-items .press-nav .label {
    display: none;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie .press-nav {
  white-space: nowrap;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
/*# sourceMappingURL=common.css.map */