/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300);
@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400|Roboto:400,300,500);
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  width: 84%;
}
body .mobile-search,
body .mobile-header {
  display: none;
}
body .altered {
  padding: 0px;
}
body .altered .banner {
  display: none;
}
body .altered .banner img {
  width: 100%;
}
body .mobile-header.fixed-header {
  top: 0;
}
body #header,
body .mobile-header {
  background-color: transparent;
}
body #header .header,
body .mobile-header .header {
  padding: 0px;
}
body #header .header .left,
body .mobile-header .header .left {
  width: 75%;
  display: inline-block;
}
body #header .header .left .logo,
body .mobile-header .header .left .logo {
  width: 45%;
  display: inline-block;
}
body #header .header .left .logo a img,
body .mobile-header .header .left .logo a img {
  width: 100%;
}
body #header .header .left .nav-container,
body .mobile-header .header .left .nav-container {
  width: 55%;
  display: inline-block;
  float: right;
  background-color: #0076c0;
  height: 145px;
}
body #header .header #help-block,
body .mobile-header .header #help-block {
  width: 25%;
  position: relative;
  height: 145px;
  background-color: #0076c0;
  float: right;
  padding: 0px;
}
body #header .header #help-block .help,
body .mobile-header .header #help-block .help {
  font-family: 'AvenirNextLTW01-Condens_721299';
  color: white;
  background-image: url('/themes/baldwin/images/pattern.png');
  font-size: 30px;
  background-color: #e3300e;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 6;
  position: absolute;
  padding: 20px;
  margin-top: 37px;
  left: -14px;
}
body #header .header #help-block .help strong,
body .mobile-header .header #help-block .help strong {
  margin-left: 8px;
  font-family: 'AvenirNextLTW01-BoldCn';
  font-style: normal;
}
body #header .header #help-block:hover .help,
body .mobile-header .header #help-block:hover .help {
  background-color: #c6290d;
}
body #header .header.fixed-header,
body .mobile-header .header.fixed-header {
  /*position: fixed !important;*/
  top: 0px;
  z-index: 400;
  margin: 0 auto;
  left: 0;
  right: 0;
}
body#home .mobile-header {
  /*position: fixed;*/
  top: 0;
  z-index: 500;
}
body#home .mobile-header.fixed-header {
  /*position: fixed;
				top:0;*/
}
body#home .altered .banner {
  display: block;
  width: 100%;
}
body#home .altered .banner img {
  width: 100%;
}
body#home #header .header #help-block {
  width: 26%;
  background-color: #e3300e;
  height: 163px;
  margin-top: -156px;
  margin-bottom: 7px;
  float: right;
  padding: 0px;
}
body#home #header .header #help-block .pattern {
  background-image: url('/themes/baldwin/images/pattern.png');
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
}
body#home #header .header #help-block .help {
  background-color: none;
  color: white;
  font-style: italic;
  font-size: 34px;
  text-transform: uppercase;
  line-height: 32px;
  z-index: 6;
  position: absolute;
  padding: 0px;
  margin: 0px;
  padding-top: 47px;
  padding-left: 68px;
  left: 0px;
}
body#home #header .header #help-block .help strong {
  font-family: 'AvenirNextLTW01-BoldCnI_721320';
  display: block;
  white-space: pre-line;
}
body#home #header .header #help-block .help strong span {
  display: none;
}
body#home #header .header #help-block .help:after {
  content: url("/themes/baldwin/images/bubble.png");
  position: absolute;
  top: 45px;
  margin-left: 153px;
}
body#home #header .header #help-block .help:hover {
  text-decoration: underline;
}
body#home #header .header #help-block:hover {
  background-color: #c6290d;
}
body#home #header .header #help-block:hover .help {
  background-color: #c6290d;
}
body .navbar .nav-pills {
  margin-top: 41px;
  margin-left: 15px;
}
body .navbar .nav-pills > li {
  width: initial;
}
body .navbar .nav-pills > li a {
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 26px;
  word-spacing: 3px;
  padding: 0px 2px 0px 0px;
  margin: 10px 15px;
  font-family: 'Roboto Condensed';
}
body .navbar .nav-pills > li:nth-child(2) {
  word-spacing: 2px;
}
body .navbar .nav-pills > li .dropdown-menu {
  display: none;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #0193da;
  text-decoration: none;
}
body .navbar .nav-pills > li .dropdown-menu li:hover,
body .navbar .nav-pills > li .dropdown-menu li:active,
body .navbar .nav-pills > li .dropdown-menu li:focus,
body .navbar .nav-pills > li .dropdown-menu li:visited,
body .navbar .nav-pills > li .dropdown-menu li:link {
  background-color: #0193da !important;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a,
body .navbar .nav-pills > li .dropdown-menu li:active a,
body .navbar .nav-pills > li .dropdown-menu li:focus a,
body .navbar .nav-pills > li .dropdown-menu li:visited a,
body .navbar .nav-pills > li .dropdown-menu li:link a {
  color: white;
  text-decoration: underline;
}
body .navbar .nav-pills > li .dropdown-menu li:hover,
body .navbar .nav-pills > li .dropdown-menu li:active,
body .navbar .nav-pills > li .dropdown-menu li:focus,
body .navbar .nav-pills > li .dropdown-menu li:visited,
body .navbar .nav-pills > li .dropdown-menu li:link {
  background-color: #0193da !important;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: white;
  border-bottom: 3px solid white;
  border-radius: 0px;
}
body .navbar .srchbutton {
  color: white;
  position: absolute;
  float: right;
  right: 37px;
  top: 57px;
  font-size: 22px;
}
body .navbar .srchbutton:hover {
  text-decoration: underline;
}
body .navbar #search {
  width: 0%;
  position: absolute;
  right: 70px;
  height: 56px;
  top: 35px;
  overflow: hidden;
  background-color: #0076c0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
@media (max-width: 1200px) {
  body .navbar #search {
    right: 40px;
  }
}
body .navbar #search.showme {
  width: 81%;
  display: block;
  position: absolute;
  top: 35px;
}
@media (max-width: 1200px) {
  body .navbar #search.showme {
    width: 87%;
  }
}
body .navbar #search.showme #sitesearch button {
  color: white;
}
body .navbar #search #sitesearch {
  float: right;
  width: 100%;
}
body .navbar #search #sitesearch #search-field {
  color: white;
  background-color: #0076c0;
  width: 385px;
  border: none;
  border-bottom: 3px solid white;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: white;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: white;
}
@media (max-width: 1300px) {
  body .navbar #search #sitesearch #search-field {
    width: 320px;
  }
}
@media (max-width: 1200px) {
  body .navbar #search #sitesearch #search-field {
    width: 300px;
  }
}
body .navbar #search #sitesearch button {
  width: 20px;
  background-color: #0076c0;
  color: #0076c0;
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  font-size: 50px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: white;
  font-size: 2em;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
.modal-backdrop.in {
  background-color: #0193da;
}
.alert-container {
  background-color: #e3300e;
  color: white;
}
.alert-container .alert {
  padding-bottom: 23px;
}
.alert-container span {
  font-size: 27px;
  vertical-align: super;
}
.alert-container a {
  color: white;
}
.alert-container a:hover {
  text-decoration: underline;
  color: white;
}
.mobile-alert {
  background-color: #f2f2f2;
  color: #e3300e;
  font-family: 'AvenirNextLTW01-BoldCn';
  font-size: 21px;
  padding: 10px 15px;
}
.mobile-alert a {
  color: black;
}
.mobile-alert a:hover {
  color: black;
  text-decoration: underline;
}
body {
  background-color: #f2f2f2;
}
body .white-container {
  padding: 0px;
  margin-top: -14px;
  background-color: white;
  padding-top: 30px;
}
body .white-container .latest-news {
  padding: 0 15px;
  font-family: 'NHaasGroteskTXW01-65Md';
}
body .white-container .latest-news .table {
  display: table;
  height: 287px;
  overflow: hidden;
  width: 33%;
}
body .white-container .latest-news .table .cell {
  display: table-cell;
  vertical-align: middle;
  padding: 38px 30px;
  font-size: 24px;
}
body .white-container .latest-news .table .cell .latest {
  color: #363636;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-size: 30px;
  font-style: normal;
  position: absolute;
  top: 19px;
}
@media (max-width: 991px) {
  body .white-container .latest-news .table .cell .latest {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
  }
}
body .white-container .latest-news .table .cell .news-block {
  color: #363636;
}
body .white-container .latest-news .table .cell .news-block p {
  font-family: "Roboto";
  font-weight: 500;
}
body .white-container .latest-news .table .cell:hover {
  background-color: #0075bf;
}
body .white-container .latest-news .table .cell:hover a {
  color: white;
}
body .white-container .action-bar {
  margin-left: 5%;
  margin-right: 5%;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
body .white-container .action-bar .center-action {
  padding: 40px 0px;
  width: 56em;
  margin: 0 auto;
}
body .white-container .action-bar .center-action a .action-block {
  width: 32%;
  display: inline-block;
  text-align: center;
  color: black;
}
body .white-container .action-bar .center-action a .action-block .circle {
  margin-right: auto;
  margin-left: auto;
  width: 140px;
  height: 140px;
  background-color: white;
  background-image: none;
  padding: 43px 44px;
  border-radius: 80px;
  color: black;
  background-color: #0193da;
}
body .white-container .action-bar .center-action a .action-block .circle .fa {
  color: white;
  font-size: 55px;
}
body .white-container .action-bar .center-action a .action-block h1 {
  font-size: 26px;
  font-family: "Roboto";
  font-weight: 300;
}
body .white-container .action-bar .center-action a:nth-child(1) .action-block {
  vertical-align: top;
}
body .white-container .action-bar .center-action a:nth-child(1) .action-block .circle {
  background-image: url('/themes/baldwin/images/file.png');
  background-repeat: no-repeat;
  background-position: center center;
}
body .white-container .action-bar .center-action a:hover .action-block .circle {
  background-color: #0076c0;
}
body .white-container .action-bar .center-action a:hover .action-block .circle .socicon {
  color: white;
}
body .white-container .action-bar .center-action a:hover:nth-child(1) .action-block .circle {
  background-image: url('/themes/baldwin/images/fiel-dark.png');
  background-repeat: no-repeat;
  background-position: center center;
}
body .white-container .action-bar .center-action a:hover h1 {
  font-size: 26px;
  text-decoration: underline;
}
body .white-container #contact {
  padding: 100px;
  text-align: center;
}
body .white-container #contact h1 {
  color: #0193da;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  font-size: 44px;
}
body .white-container #contact h2 {
  width: 588px;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 26px;
  margin-left: auto;
  margin-right: auto;
}
body .white-container #contact form textarea {
  font-size: 24px;
  margin-top: 50px;
  height: 290px;
  width: 810px;
  border: 1px solid #363636;
  overflow: auto;
}
body .white-container #contact form textarea::-webkit-input-placeholder {
  color: #363636;
  font-family: "Roboto";
  font-size: 24px;
  vertical-align: top;
  font-style: italic;
}
body .white-container #contact form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #363636;
  font-family: "Roboto";
  font-size: 24px;
  vertical-align: top;
  font-style: italic;
}
body .white-container #contact form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #363636;
  font-family: "Roboto";
  font-size: 24px;
  vertical-align: top;
  font-style: italic;
}
body .white-container #contact form textarea:-ms-input-placeholder {
  color: #363636;
  font-family: "Roboto";
  font-size: 24px;
  vertical-align: top;
  font-style: italic;
}
body .white-container #contact .hidden-form {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
body .white-container #contact .hidden-form h2 {
  color: #0193da;
  font-weight: 600;
  margin: 43px auto;
}
body .white-container #contact .hidden-form select,
body .white-container #contact .hidden-form input {
  width: 97%;
  height: 45px;
  padding: 5px;
  border: 1px solid black;
  margin-top: 25px;
  font-family: 'Roboto Condensed';
  font-weight: 300;
}
body .white-container #contact .hidden-form select::-webkit-input-placeholder,
body .white-container #contact .hidden-form input::-webkit-input-placeholder {
  color: black;
}
body .white-container #contact .hidden-form select:-moz-placeholder,
body .white-container #contact .hidden-form input:-moz-placeholder {
  /* Firefox 18- */
  color: black;
}
body .white-container #contact .hidden-form select::-moz-placeholder,
body .white-container #contact .hidden-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}
body .white-container #contact .hidden-form select:-ms-input-placeholder,
body .white-container #contact .hidden-form input:-ms-input-placeholder {
  color: black;
}
body .white-container #contact .hidden-form select {
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid black;
  border-radius: 0px;
  height: 45px;
  background: url('/themes/baldwin/images/br_down.png') no-repeat right white;
  -webkit-appearance: none;
  background-position-x: 98%;
}
body .white-container #contact .hidden-form input#input-89FC3F69-4040-F985-52CD-D15C9A029E43,
body .white-container #contact .hidden-form input#input-8A012FA3-4040-F985-52CD-2547264365BD {
  width: 5%;
  vertical-align: text-bottom;
  height: 20px;
}
body .white-container #contact .hidden-form label {
  margin-top: -73px;
  margin-bottom: 10px;
  font-weight: 700;
  vertical-align: middle;
  font-family: 'Roboto Condensed';
}
body .white-container #contact .hidden-form.show-form {
  height: 100%;
  margin-top: 60px;
  width: 80%;
  margin: 0 auto;
}
body .white-container #contact input[type=submit] {
  background-color: #e3300e;
  margin-top: 100px;
  padding: 12px 50px;
  color: white;
  font-size: 28px;
  font-family: 'Roboto Condensed';
  display: none;
}
body .white-container .twitter-bar {
  height: 615px;
  padding-top: 129px;
  text-align: center;
  background-image: url("/themes/baldwin/images/twitter-block.jpg");
}
body .white-container .twitter-bar .twitter-bird {
  color: white;
  font-size: 50px;
  z-index: 200;
}
body .white-container .twitter-bar .twitter-bird:hover {
  color: #0193da;
}
body .white-container .twitter-bar #twitter-carousel {
  margin-top: -183px;
}
body .white-container .twitter-bar #twitter-carousel #carousel {
  height: 615px;
}
body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner {
  top: 35%;
  text-align: center;
}
body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
  margin: 0 auto;
  padding: 0 120px;
  color: white;
  font-family: 'Roboto Condensed';
  font-size: 34px;
}
body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
  color: white;
  border-bottom: 1px solid white;
  font-family: 'Roboto Condensed';
}
body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a:hover {
  color: #e3300e;
  border-bottom: 1px solid #e3300e;
}
body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item .tweet {
  word-break: break-word;
  width: 81%;
  margin: 0 auto;
}
.office-locations #office-locations {
  padding-left: 50px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.office-locations #office-locations h2 {
  font-size: 30px;
  font-family: 'AvenirNextLTW01-DemiCn';
}
.office-locations #office-locations h4 {
  font-size: 18px;
  font-family: 'AvenirNextLTW01-BoldCnI_721320';
  color: #0193da;
  margin-bottom: 35px;
}
.office-locations #office-locations h4 span {
  color: #363636;
}
.office-locations #office-locations .no-padding {
  padding: 0px;
}
.office-locations #office-locations #office {
  min-height: 109px;
  padding: 5px;
  margin-bottom: 14px;
  border: 2px solid white;
}
.office-locations #office-locations #office h3 {
  font-family: 'AvenirNextLTW01-DemiCn';
  font-size: 20px;
  text-transform: uppercase;
  margin: 0px;
  float: left;
  margin-right: 8px;
}
.office-locations #office-locations #office a {
  font-family: 'AvenirNextLTW01-DemiCn';
  font-size: 14px;
  color: #0193da;
}
.office-locations #office-locations #office a:hover {
  color: #0076c0;
  text-decoration: underline;
}
.office-locations #office-locations #office p {
  font-family: 'AvenirNextLTW01-DemiCn';
  font-size: 16px;
}
.office-locations #office-locations #office:hover,
.office-locations #office-locations #office.hover {
  border: 2px solid #0075bf;
}
.office-locations .map {
  padding-top: 60px;
}
.office-locations #locations .location .circle-icon {
  height: 30px;
  width: 30px;
  background-color: #0075bf;
  position: absolute;
  border-radius: 30px;
  transition: all 0.2s ease;
}
.office-locations #locations .location#eau-claire .circle-icon {
  top: 251px;
  left: 118px;
}
.office-locations #locations .location#green-bay .circle-icon {
  top: 286px;
  left: 352px;
}
.office-locations #locations .location#la-crosse .circle-icon {
  top: 353px;
  left: 133px;
}
.office-locations #locations .location#madison .circle-icon {
  top: 415px;
  left: 257px;
}
.office-locations #locations .location#milwaukee .circle-icon {
  top: 411px;
  left: 359px;
}
.office-locations #locations .location#wausau .circle-icon {
  top: 230px;
  left: 243px;
}
.office-locations #locations .location:hover .circle-icon,
.office-locations #locations .location.hover .circle-icon {
  background-color: white;
  width: 55px;
  height: 55px;
  border-radius: 55px;
  border: 3px solid #0075bf;
  margin-top: -13px;
  margin-left: -13px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
/*STAND ALONE PAGE*/
body#breakout {
  background-color: white;
}
body#breakout .header {
  display: none;
}
body#breakout .alert-container {
  display: none;
}
body#breakout .mobile-header {
  display: none;
}
body#breakout #main_container {
  padding: 0;
}
body#breakout .togglemenu2 {
  margin-top: 30px;
  font-size: 23px;
}
body#breakout .togglemenu2 .menulabel {
  vertical-align: text-bottom;
}
body#breakout .row {
  margin: 0;
}
body#breakout .no-padding {
  padding: 0;
}
body#breakout .blue {
  background-color: white;
}
@media (max-width: 991px) {
  body#breakout .blue {
    margin-top: -5px;
    padding: 0;
  }
}
@media (max-width: 991px) {
  body#breakout .logo-container {
    width: 50%;
  }
}
body#breakout .logo-container:before {
  background-color: #0193da;
  width: 800px;
  content: "";
  height: 100%;
  position: absolute;
  left: -800px;
}
body#breakout .logo-container:after {
  content: "";
  width: 0;
  position: absolute;
  top: 60px;
  left: -43px;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 45px solid #0076c0;
}
@media (max-width: 1330px) {
  body#breakout .logo-container:after {
    top: 56px;
    left: -38px;
    height: 0;
    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
    border-bottom: 38px solid #0076c0;
  }
}
@media (max-width: 1200px) {
  body#breakout .logo-container:after {
    top: 46px;
    left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #0076c0;
  }
}
@media (max-width: 991px) {
  body#breakout .logo-container:after {
    top: 70px;
    left: -48px;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-bottom: 48px solid #0076c0;
  }
}
@media (max-width: 767px) {
  body#breakout .logo-container:after {
    display: none;
  }
}
body#breakout form {
  margin-top: 50px;
}
body#breakout input,
body#breakout textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid black;
  margin-bottom: 20px;
}
body#breakout input[type="submit"] {
  width: 200px;
  margin: 20px auto;
  display: block;
  border: none;
}
body#breakout input[type="submit"]:hover {
  color: white;
}
@media (max-width: 767px) {
  body#breakout .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  body#breakout #sam-main {
    padding: 15px;
  }
}
body#breakout textarea {
  height: 100px;
}
body#breakout .share-box {
  background-color: #0193da;
  width: 100%;
}
@media (max-width: 991px) {
  body#breakout .share-box {
    margin-top: -4px;
  }
}
body#breakout .share-box .share-icon {
  color: white;
  text-transform: uppercase;
  margin: 20px 11px;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  body#breakout .share-box .share-icon {
    margin: 20px 7px;
  }
}
body#breakout .share-box .share-icon:first-child {
  margin-left: 20px;
  margin-top: 11px;
  margin-bottom: 12px;
}
@media (max-width: 1200px) {
  body#breakout .share-box .share-icon:first-child {
    margin-left: 10px;
  }
}
body#breakout .share-box .share-icon.text {
  font-family: 'AvenirNextLTW01-BoldCn';
  font-style: normal;
  font-size: 15px;
}
body#breakout .share-box:after {
  background-color: #0193da;
  width: 800px;
  content: "";
  height: 100%;
  position: absolute;
  right: -800px;
  z-index: -1;
}
@media (max-width: 991px) {
  body#breakout .share-box:before {
    background-color: #0193da;
    width: 800px;
    content: "";
    height: 100%;
    position: absolute;
    left: -800px;
  }
}
body#breakout .banner {
  margin-top: 0px;
}
@media (max-width: 991px) {
  body#breakout .banner {
    margin-top: -1px;
  }
}
.press-release-title {
  text-transform: capitalize;
  font-weight: 400;
}
@media (max-width: 1330px) {
  #dcScheduleMeeting {
    height: 107px;
    padding-top: 35px;
  }
}
@media (max-width: 979px) {
  #dcScheduleMeeting {
    padding-top: 15px;
    height: auto;
  }
}
.press-release1 p {
  margin-bottom: 30px;
  line-height: 30px;
}
#actions a {
  background-color: #0193da;
  font-size: 16px;
  position: relative;
  top: 5px;
}
#actions a:hover {
  background-color: #0076c0;
}
#asides {
  padding: 0px 34px;
}
.previous {
  margin-right: 15px;
}
#asides {
  margin-top: 0px;
}
#main_column {
  padding-bottom: 50px;
}
#main_container {
  background-color: white;
  min-height: 649px;
  margin-top: -8px;
  padding: 0 65px;
  padding-top: 40px;
}
body#home #main_container {
  padding-top: 0px;
}
#content {
  min-height: 649px !important;
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
body#newsroom .modal-backdrop {
  z-index: 1;
}
body#newsroom .modal-dialog {
  z-index: 5;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 100%;
  font-family: "Open Sans", serif;
}
/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
/* --------------------------------

Main components

-------------------------------- */
.dark-blue {
  background-color: #0075bf;
  color: white;
  display: block;
}
.light-blue {
  background-color: #0193da;
  color: white;
  display: inline-block;
}
#cd-timeline {
  position: relative;
  /*padding: 2em 0;*/
  /*margin-top: 2em;*/
  /*margin-bottom: 2em;*/
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 80px;
  left: 200px;
  height: 75%;
  width: 4px;
  background: white;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    /*margin-bottom: 3em;*/
  }
  #cd-timeline::before {
    /*left: 50%;*/
    margin-left: -2px;
  }
}
.cd-timeline-block {
  position: relative;
  /*margin: 2em 0;*/
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    /*margin: 4em 0;*/
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}
.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
}
.cd-timeline-img img {
  display: block;
  width: 100%;
  /*height: 24px;*/
  position: relative;
  /*left: 50%;*/
  border: 4px solid white;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 200px;
    height: 200px;
    left: 140px;
    top: 34px;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}
@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  padding: 1em;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 30px;
    width: 67%;
    float: right;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  /*.cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }*/
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    /*left: auto;*/
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}
@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.banner {
  overflow: hidden;
  margin-top: -12px;
}
.banner img {
  height: 100%;
}
.banner .about-chart {
  width: 39%;
  margin-right: 70px;
  margin-top: 30px;
  right: 0px;
  top: 0px;
  position: absolute;
}
.banner .about-chart .title {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}
.banner .about-chart .title .about {
  font-size: 36px;
}
.banner .about-chart .title .tammy {
  text-transform: uppercase;
  font-size: 50px;
  position: relative;
  top: -18px;
}
.banner .about-chart .facts h4 {
  text-transform: uppercase;
  color: #a3a4a5;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 0px;
}
.banner .about-chart .column1,
.banner .about-chart .column2 {
  width: 50%;
  float: left;
}
.banner .about-chart .column1 h5,
.banner .about-chart .column2 h5 {
  font-family: 'Roboto Condensed';
  font-weight: bold;
  color: #a3a4a5;
  font-size: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 6px;
}
.about-button {
  width: 100%;
  padding: 25px;
  margin-top: 30px;
}
.mobile-facts .link {
  word-break: break-word;
}
.first:first-letter {
  font-size: 70px;
  float: left;
  padding: 0px 10px;
  line-height: 60px;
}
.first-block {
  padding: 65px 0px;
  font-size: 25px;
}
.first-block .first-image {
  top: 60px;
}
.events-date {
  margin-top: 23px;
  float: left;
  background-color: #e3300e;
  color: white;
  padding: 5px 10px;
  margin-right: 16px;
  text-align: center;
  text-transform: uppercase;
}
.events-date .day {
  font-weight: bold;
}
.event {
  display: inline-block;
}
body#about-page .mobile-facts {
  display: none;
}
body#about-page #main_container {
  padding: 0;
}
body#about-page #main_column {
  padding-bottom: 0;
}
body#about-page .raised {
  width: 100%;
  display: inline-block;
}
body#about-page .raised h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  width: 67%;
  float: right;
  padding: 0px 30px;
  font-size: 40px;
  margin-top: 40px;
}
body#about-page .senate-section {
  display: inline-block;
  position: relative;
  height: 640px;
  background-image: url('/themes/baldwin/images/tammy.jpg');
  width: 100%;
}
body#about-page .senate-section .senate-text {
  width: 50%;
  color: white;
  position: absolute;
  bottom: 0;
  margin: 50px;
}
body#about-page .white {
  padding: 50px;
}
body#about-page .social-footer {
  background-color: #0076c0;
  width: 100%;
  height: 200px;
}
body#about-page .social-footer h3 {
  color: white;
  text-align: center;
  padding-top: 20px;
  font-family: 'Roboto Condensed';
}
body#about-page .social-footer .social-footer-container {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
body#about-page .social-footer .social-footer-container .social-link {
  color: white;
  font-family: 'Roboto Condensed';
  font-size: 20px;
}
body#about-page .social-footer .social-footer-container .social-link .icon {
  background-color: #0193da;
  height: 55px;
  width: 55px;
  border-radius: 30px;
  overflow: hidden;
  padding: 11px 15px;
  font-size: 26px;
  display: inline-block;
  position: relative;
  top: 19px;
  margin-right: 6px;
}
body#about-page .social-footer .social-footer-container .social-link .icon span {
  color: white;
}
body#about-page .social-footer .social-footer-container .social-link:hover .icon {
  background-color: white;
  color: #0076c0;
}
body#about-page .social-footer .social-footer-container .social-link:hover .icon span {
  color: #0076c0;
}
#help-page .modal-dialog {
  z-index: 4000;
  position: relative;
}
#help-page .modal-content {
  padding: 11px 72px 145px 72px;
}
#help-page .modal-content h1 {
  color: #0075bf;
  font-family: 'AvenirNextLTW01-BoldCn';
  font-style: normal;
  font-size: 45px;
}
#help-page .modal-content legend {
  font-weight: 300px;
  font-size: 28px;
}
#help-page .modal-content .close {
  position: absolute;
  right: 68px;
  margin-top: -50px;
  font-size: 30px;
}
#help-page .modal-backdrop.in {
  background-color: #0193da;
  position: absolute;
  top: 0;
}
#help-page .whitespace {
  margin-bottom: 70px;
}
#help-page .whitespace h1 {
  color: #363636;
  text-align: center;
  font-family: 'AvenirNextLTW01-DemiCn';
}
#help-page .whitespace .center {
  text-align: center;
}
#help-page .whitespace .center .btn {
  padding: 20px 0px;
  background-color: #0076c0;
  width: 55%;
  margin: 0 auto;
  color: white;
  margin: 25px;
}
#help-page .whitespace .center .btn.small {
  width: 33%;
}
#help-page .whitespace .center .btn.right {
  float: right;
}
#help-page .whitespace .center .btn.left {
  float: left;
}
#help-page .whitespace .center .btn:hover {
  background-color: #0075bf;
}
.wyd {
  font-size: 38px;
  color: #363636;
  text-align: center;
  font-family: 'AvenirNextLTW01-DemiCn';
  margin-top: 50px;
}
body#help-page .office-locations #office-locations #office {
  /*border: 2px solid #F2F2F2;*/
}
body#help-page .help-office-container {
  display: inline-block;
  width: 100%;
}
body#help-page .wyd {
  margin-top: 50px;
}
body#feedback-page .office-locations #office-locations,
body#help-page .office-locations #office-locations {
  /*padding-left: 10px; */
}
body#feedback-page .office-locations #office-locations {
  /*padding-left: 10px; */
  padding-left: 0px;
  padding-right: 0px;
}
.vertical-rule {
  border-left: 4px solid #F2F2F2;
  border-left-style: outset;
  border-right: 4px solid #F2F2F2;
  border-right-style: inset;
}
#feedback-page .wyd,
#business-owners .wyd {
  font-size: 38px;
  color: #363636;
  text-align: center;
  font-family: 'AvenirNextLTW01-DemiCn';
  margin-top: 50px;
}
#feedback-page .feedback-block,
#business-owners .feedback-block {
  margin: 57px 0px;
  display: table;
  height: 300px;
  color: white;
}
#feedback-page .feedback-block .cell,
#business-owners .feedback-block .cell,
#feedback-page .feedback-block a.cell,
#business-owners .feedback-block a.cell {
  display: table-cell;
  vertical-align: middle;
  width: 80%;
  height: 300px;
  color: white;
  font-family: 'NHaasGroteskTXW01-65Md';
  text-align: center;
  background-color: #e3300e;
}
#feedback-page .feedback-block .cell:hover,
#business-owners .feedback-block .cell:hover,
#feedback-page .feedback-block a.cell:hover,
#business-owners .feedback-block a.cell:hover {
  background-color: #C6290D;
  background-image: url('/themes/baldwin/images/pattern.png');
}
#feedback-page .feedback-block a.cell,
#business-owners .feedback-block a.cell {
  width: 33%;
}
#feedback-page .feedback-form,
#business-owners .feedback-form {
  display: none;
  padding-bottom: 180px;
}
body#business-owners .feedback-block a.cell {
  width: 15%;
}
body#help-page,
body#more {
  background-color: #ffffff;
}
body#help-page #main_container,
body#more #main_container {
  background-color: #f2f2f2;
  padding-top: 60px;
}
body#help-page .block-link,
body#more .block-link {
  display: block;
}
body#help-page .helpnode,
body#more .helpnode {
  margin-bottom: 20px;
}
body#help-page .table,
body#more .table {
  display: table;
  width: 100%;
  margin-bottom: 0px;
}
body#help-page .cell,
body#more .cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
body#help-page .block,
body#more .block {
  background-color: #0193da;
  color: white;
  font-family: 'Roboto Condensed';
  text-transform: uppercase;
  height: 120px;
  font-size: 30px;
  padding: 10px 30px;
}
body#help-page .block:hover,
body#more .block:hover {
  background-color: #0076c0;
}
body#help-page .block h4,
body#more .block h4 {
  font-weight: bold;
  font-size: 26px;
  line-height: 32px;
}
body#help-page .dropdown-block,
body#more .dropdown-block {
  max-height: 0px;
  position: absolute;
  overflow: hidden;
  background-color: white;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: inline-block;
  z-index: 1;
  width: 92.5%;
  transition: all 0.5s ease;
}
body#help-page .dropdown-block .block-link,
body#more .dropdown-block .block-link {
  padding: 0px 15px;
}
body#help-page .dropdown-block .subnode,
body#more .dropdown-block .subnode {
  height: 60px;
  border-bottom: 1px solid #dddddd;
}
body#help-page .dropdown-block .close-dropdown,
body#more .dropdown-block .close-dropdown {
  text-align: center;
  background-color: #dddddd;
  color: #a3a3a3;
  padding: 10px;
  cursor: pointer;
}
body#help-page .dropdown-block .close-dropdown h4,
body#more .dropdown-block .close-dropdown h4 {
  margin: 0px;
  text-transform: uppercase;
}
body#help-page .dropdown-block.open,
body#more .dropdown-block.open {
  max-height: 500px;
  transition: all 0.5s ease;
}
#breadcrumb a {
  color: #d6d6d6;
  font-family: 'AvenirNextLTW01-BoldCn';
  text-transform: uppercase;
}
#main_column form fieldset legend {
  font-weight: 500;
  font-size: 28px;
}
#flagForm #flag-options .head {
  background-color: #0193da;
  color: white;
}
/*NEWSROOM STYLES */
.tours {
  background-color: #f2f2f2;
  margin-top: 70px;
  padding: 30px 50px;
}
.tours img {
  width: 100%;
}
body#newsroom-medium #sign-up {
  padding: 50px;
}
body#newsroom-medium .sign-up {
  text-align: center;
  margin-top: 90px;
}
body#newsroom-medium .sign-up-form {
  width: 100%;
  background-color: #e3300e;
  padding: 30px 20px;
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Roboto Condensed';
  display: block;
  text-align: center;
}
body#newsroom-medium .sign-up-form:hover {
  background-color: #c6290d;
}
body#newsroom-medium #typenav {
  /*position: fixed;*/
}
body#newsroom-medium #typenav li a {
  color: #0076c0;
}
body#newsroom-medium #typenav li.active a {
  color: white;
}
body#newsroom-medium #medium {
  padding: 30px 0px;
}
body#newsroom-medium #twitter {
  margin: 70px 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: #eee #ddd #bbb;
  border-width: 1px;
  border-style: solid;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
  padding-bottom: 25px;
}
body#newsroom-medium #twitter .cell {
  padding: 5px 50px;
}
body#newsroom-medium #twitter .cell h4 {
  font-size: 22px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
  font-family: "Roboto";
}
body#newsroom-medium #twitter .cell h4:before {
  content: url('/themes/baldwin/images/avi.jpg');
  transform: scale(0.4);
  position: relative;
  top: 13px;
  margin-right: 10px;
}
body#newsroom-medium #twitter .cell a {
  color: black;
}
body#newsroom-medium #twitter .cell a:hover {
  color: #0193da;
}
body#newsroom-medium #twitter .cell .tweet {
  font-weight: 300;
  word-break: break-word;
}
body#newsroom-medium #twitter .twitter-header {
  background-color: #f2f2f2;
  padding: 5px 50px;
}
body#newsroom-medium #twitter .twitter-header .before:before {
  content: 'a';
  font-family: 'socicon';
  margin-right: 14px;
  color: #0193da;
  font-size: 44px;
  position: relative;
  top: 20px;
}
body#newsroom-medium #twitter .twitter-header h3 {
  font-family: "Roboto";
  display: inline-block;
  font-size: 20px;
}
body#newsroom-medium #twitter .twitter-header h5 {
  font-family: "Roboto";
  position: relative;
  left: 58px;
  top: -18px;
  display: flex;
}
body#newsroom-medium #facebook {
  margin: 70px 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: #eee #ddd #bbb;
  border-width: 1px;
  border-style: solid;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
}
body#newsroom-medium #facebook ul {
  margin-top: 25px;
  list-style: none;
  padding: 0px 50px;
}
body#newsroom-medium #facebook ul li {
  padding: 5px 0px;
}
body#newsroom-medium #facebook ul li a {
  color: black;
  font-weight: 300;
}
body#newsroom-medium #facebook ul li a:hover {
  color: #0193da;
}
body#newsroom-medium #facebook ul h3 {
  font-family: "Roboto";
  font-size: 18px;
}
body#newsroom-medium #facebook ul h3:after {
  content: url('/themes/baldwin/images/verified.png');
  position: relative;
  top: 5px;
  right: -5px;
}
body#newsroom-medium #facebook ul h3:before {
  content: url('/themes/baldwin/images/avi.jpg');
  transform: scale(0.4);
  position: relative;
  top: 13px;
  margin-right: 10px;
}
body#newsroom-medium #facebook .facebook-header {
  background-color: #f2f2f2;
  padding: 15px 50px;
}
body#newsroom-medium #facebook .facebook-header h3 {
  margin: 0px;
  position: relative;
  top: -16px;
  display: inline-block;
  font-family: "Roboto";
}
body#newsroom-medium #facebook .facebook-header h3:before {
  content: 'b';
  font-family: 'socicon';
  margin-right: 14px;
  color: #0076c0;
  font-size: 44px;
  position: relative;
  top: 20px;
}
body#newsroom-medium #facebook .facebook-header h3:after {
  content: url('/themes/baldwin/images/verified.png');
  position: relative;
  top: 5px;
  right: -5px;
}
body#newsroom-medium #facebook .facebook-header h4 {
  position: relative;
  top: 3px;
  left: -281px;
  display: inline-block;
}
#crscontent h4 {
  font-size: 30px;
  margin-top: 80px;
}
#crscontent h3 {
  margin-top: 40px;
}
#crscontent a.crstop {
  background-color: #e3300e;
  color: white;
  padding: 5px 25px;
  float: right;
  /*&:hover{
	    	background-image
	    }*/
}
a.crstop {
  background-color: #e3300e;
  color: white;
  padding: 5px 25px;
  float: right;
  /*&:hover{
	    	background-image
	    }*/
}
#filterbuttons a {
  padding: 5px 20px 10px 0px;
  color: #e3300e;
  background-color: transparent;
  font-size: 20px;
}
.press-subtitle {
  font-style: italic;
  font-weight: 100;
  margin-bottom: 50px !important;
  margin-top: 10px;
}
.toggle-btn.active {
  background-color: #C6290D;
}
.wiButton.open {
  background-color: #C6290D;
}
.dcButton.open {
  background-color: #C6290D;
}
body#thankyou #content #main_container {
  background: url('/themes/baldwin/images/baldwinbgthanks.jpg');
  background-repeat: no-repeat;
  background-position-y: 8px;
  height: 800px;
}
body#thankyou #thankstext {
  margin-top: 30px;
  float: right;
  color: #363636;
}
body#thankyou #thankstext h1 {
  font-family: 'Roboto Condensed';
  font-size: 58px;
  text-transform: uppercase;
  color: #0193da;
}
body#thankyou #thankstext .thankyoubody {
  margin-left: 10px;
}
body#thankyou #thankstext .thankyoubody h3 {
  font-size: 35px;
  margin-top: -10px;
}
body#thankyou #thankstext .thankyoubody .body {
  margin-top: 30px;
  margin-bottom: 30px;
}
body#thankyou #thankstext .officenumbersthanks .wisconsin {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #0193DA;
}
body#thankyou #thankstext .officenumbersthanks .wisconsin .number {
  font-weight: 100;
  color: #363636;
}
body#thankyou #thankstext .officenumbersthanks .washington {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: #0193DA;
}
body#thankyou #thankstext .officenumbersthanks .washington .number {
  font-weight: 100;
  color: #363636;
}
body#guestbook #header .left {
  width: 100%;
  background-color: #0194DA;
}
body#guestbook #header .left .logo {
  width: 33%;
}
body#guestbook #header .left .nav-container {
  display: none;
}
body#guestbook #header .hcihy {
  display: none;
}
#typenav.affix {
  top: 0;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
body footer .container {
  background-color: #0193da;
  text-align: center;
}
body footer .container .footer-links {
  margin-right: 25px;
  margin-top: 30px;
}
body footer .container .footer-links a {
  font-size: 28px;
  text-transform: uppercase;
  color: white;
  word-spacing: 10px;
  font-family: 'Roboto Condensed';
  font-weight: 300;
}
body footer .container .footer-links a:hover {
  text-decoration: underline;
}
body footer .container .footer-links a:last-child {
  word-spacing: 2px;
}
body footer .container .footer-social-list {
  width: auto;
  float: right;
  margin-right: 56px;
  margin-top: -43px;
}
body footer .container .footer-social-list a {
  /* color: white; */
  /* float: right; */
  color: #0193da;
  margin: 2px;
  font-size: 14px;
  padding: 5px;
  background-color: white;
  height: 28px;
  width: 28px;
  display: inline-block;
  border-radius: 22px;
}
body footer .Subfooter ul {
  text-align: center;
  margin-bottom: 30px;
}
body footer .Subfooter ul li {
  padding: 0px 10px;
}
body footer .Subfooter ul li a {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
}
body footer .Subfooter ul li a:hover {
  text-decoration: underline;
}
body footer .Subfooter ul li:first-child,
body footer .Subfooter ul li:nth-child(2) {
  border-right: 1px solid white;
}
#main_column form .flownprice {
  margin-left: 100px;
  width: 70%;
  margin-top: -33px;
  position: absolute;
}
#main_column form .flown-qty {
  padding: 0 20px 0 20px;
  max-width: 75px;
  margin: 0;
  height: 35px!important;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
/*


paste available font families here
font-family:'NeueHaasGroteskText W01';
font-family:'NHaasGroteskTXW01-56It';
font-family:'NHaasGroteskTXW01-65Md';
font-family:'NHaasGroteskTXW01-66MdI';
font-family:'NHaasGroteskTXW01-75Bd';
font-family:'NHaasGroteskTXW01-76BdI';
font-family:'NHaasGroteskDSW01-15Ult';
font-family:'NHaasGroteskDSW01-16Ult';
font-family:'NHaasGroteskDSW01-25Th';
font-family:'NHaasGroteskDSW01-26ThI';
font-family:'NHaasGroteskDSW01-35XLt';
font-family:'NHaasGroteskDSW01-36XLt';
font-family:'NHaasGroteskDSW01-45Lt';
font-family:'NHaasGroteskDSW01-46LtI';
font-family:'NeueHaasGroteskDisp W01';
font-family:'NHaasGroteskDSW01-56It';
font-family:'NHaasGroteskDSW01-65Md';
font-family:'NHaasGroteskDSW01-66MdI';
font-family:'NHaasGroteskDSW01-75Bd';
font-family:'NHaasGroteskDSW01-76BdI';
font-family:'NHaasGroteskDSW01-95Blk';
font-family:'NHaasGroteskDSW01-96Blk';
font-family:'AvenirNextLTW01-Heavy';
font-family:'AvenirNextLTW01-Condens_721299';

*/
/*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*/
.grotesk {
  font-family: 'NHaasGroteskTXW01-65Md';
}
.roboto {
  font-family: "Roboto";
}
.roboto-con {
  font-family: 'Roboto Condensed';
}
.avenir {
  font-family: 'AvenirNextLTW01-Condens_721299';
}
.heavy {
  font-family: 'AvenirNextLTW01-Heavy';
}
.bold {
  font-family: 'AvenirNextLTW01-BoldCnI_721320';
}
.bold2 {
  font-family: 'AvenirNextLTW01-BoldCn';
  font-style: normal;
}
.source {
  font-family: 'Source Sans Pro', sans-serif;
}
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
body {
  font-family: "Roboto";
  font-size: 18px;
}
body#home {
  font-family: 'AvenirNextLTW01-Condens_721299';
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed';
}
.main_page_title {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 44px;
}
/*anchor stlyes*/
a {
  font-family: "Roboto";
  color: #0076c0;
}
a:hover {
  color: #0193da;
}
a:focus,
a:visited,
a:link {
  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 {
  background-color: #e3300e;
  font-family: 'AvenirNextLTW01-DemiCn';
  color: white;
  font-size: 25px;
  white-space: normal;
}
.pager li .btn:hover,
.btn:hover,
.btn-defualt:hover,
.btn:visited:hover,
.btn-defualt:visited:hover,
btn:focus:hover,
.btn-default:focus:hover,
.search-media-btn:hover,
#main_column form .btn:hover,
.pager li .btn.hover,
.btn.hover,
.btn-defualt.hover,
.btn:visited.hover,
.btn-defualt:visited.hover,
btn:focus.hover,
.btn-default:focus.hover,
.search-media-btn.hover,
#main_column form .btn.hover {
  background-color: #C6290D;
  color: white;
}
/*interior page content default styles */
@media (max-width: 1330px) {
  #dcScheduleMeeting {
    height: 107px;
    padding-top: 35px !important;
  }
  .office-locations #office-locations #office {
    min-height: 137px;
  }
  body .navbar .nav-pills {
    margin-left: 0px;
  }
  body .navbar .nav-pills > li a {
    margin: 10px 12px;
  }
  body .navbar .srchbutton {
    right: 74px;
    right: 41px;
  }
  body .navbar #search.showme {
    margin-left: 15px;
  }
  body #header .header #help-block {
    height: 130px;
  }
  body #header .header #help-block .help {
    margin-top: 32px;
  }
  body #header .header .left .nav-container {
    height: 130px;
  }
  body .white-container .latest-news .table .cell a {
    top: 3px;
  }
  body footer .container .footer-social-list {
    margin-top: -46px;
    margin-right: 29px;
  }
  body#help-page #main_container {
    margin-top: -13px;
  }
  .tours .btn {
    font-size: 21px;
  }
  body#home #header .header #help-block {
    margin-top: -140px;
    height: 150px;
  }
  body#home #header .header #help-block .help {
    padding-left: 39px;
  }
}
@media (max-width: 1200px) {
  body #main_container {
    /*margin-top: -34px;*/
  }
  .office-locations .map {
    width: 100%;
    padding-top: 112px;
  }
  .office-locations #locations .location#eau-claire .circle-icon {
    top: 268px;
    left: 84px;
  }
  .office-locations #locations .location#green-bay .circle-icon {
    top: 297px;
    left: 304px;
  }
  .office-locations #locations .location#la-crosse .circle-icon {
    top: 348px;
    left: 108px;
  }
  .office-locations #locations .location#madison .circle-icon {
    top: 405px;
    left: 217px;
  }
  .office-locations #locations .location#milwaukee .circle-icon {
    top: 406px;
    left: 308px;
  }
  .office-locations #locations .location#wausau .circle-icon {
    top: 263px;
    left: 202px;
  }
  body .navbar .nav-pills {
    margin-top: 30px;
  }
  body .navbar .nav-pills > li:nth-child(2) {
    padding: 0px;
  }
  body .navbar .nav-pills > li a {
    font-size: 22px;
  }
  body .navbar .srchbutton {
    right: 8px;
    top: 45px;
    font-size: 18px;
  }
  body .navbar #search.showme {
    top: 20px;
  }
  body .navbar #search #search #sitesearch #search-field {
    width: 87%;
  }
  body .white-container .latest-news .table .cell {
    font-size: 20px;
  }
  body .white-container .action-bar .center-action {
    width: 100%;
  }
  body #tourbuttons .btn {
    font-size: 20px;
  }
  body #header .header .row .logo {
    padding: 10px 0px 15px 13px;
  }
  body #header .header #help-block {
    height: 109px;
    width: 24%;
    margin-bottom: 5px;
  }
  body #header .header #help-block .help {
    padding-top: 19px;
    padding-left: 20px;
    font-size: 24px;
    padding: 10px;
    left: 0px;
  }
  body #header .header #help-block .help:after {
    top: 37px;
    margin-left: 22px;
  }
  body #header .header .left {
    width: 76%;
  }
  body #header .header .left .nav-container {
    height: 109px;
  }
  body footer .container .footer-links a {
    font-size: 21px;
  }
  body footer .container .footer-social-list {
    margin-top: -40px;
  }
  body#home #header .header #help-block {
    width: 24%;
    height: 126px;
    margin-top: -8px;
  }
  body#home #header .header #help-block .help {
    padding-top: 30px;
    padding-left: 26px;
    font-size: 25px;
  }
  body#home #header .header #help-block .help:after {
    margin-left: 120px;
    top: 30px;
    transform: scale(0.9);
  }
  body#help-page #main_container {
    margin-top: -37px;
  }
  body#help-page .block h4 {
    font-size: 22px;
  }
  .blue .about-tammy {
    font-size: 4em;
    font-weight: 700;
    margin-top: 10%;
    margin-bottom: 71px;
  }
  body#feedback-page .office-locations .map {
    width: 100%;
    padding-top: 112px;
  }
  body#feedback-page .office-locations #locations .location#eau-claire .circle-icon {
    top: 243px;
    left: 75px;
  }
  body#feedback-page .office-locations #locations .location#green-bay .circle-icon {
    top: 273px;
    left: 264px;
  }
  body#feedback-page .office-locations #locations .location#la-crosse .circle-icon {
    top: 320px;
    left: 87px;
  }
  body#feedback-page .office-locations #locations .location#madison .circle-icon {
    top: 377px;
    left: 195px;
  }
  body#feedback-page .office-locations #locations .location#milwaukee .circle-icon {
    top: 377px;
    left: 273px;
  }
  body#feedback-page .office-locations #locations .location#wausau .circle-icon {
    top: 239px;
    left: 184px;
  }
}
@media (max-width: 1170px) {
  .cd-timeline-content {
    width: 67%;
    float: right;
  }
  .cd-timeline-img {
    left: 8%;
  }
  #cd-timeline::before {
    left: 18%;
  }
  body#about-page .senate-section {
    background-position-x: -200px;
  }
  body#about-page .social-footer .social-footer-container .social-link .icon {
    margin: 0 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  body#help-page .office-locations #office-locations {
    padding-left: 0px;
  }
  .cd-timeline-img {
    left: 5%;
  }
  #newscontent.article {
    padding-top: 50px;
  }
  body#newsroom-medium #typenav {
    display: none;
  }
  body#newsroom-medium .newsroom-content {
    width: 100%;
  }
  body .mobile-header {
    width: 750px;
    top: 0;
    z-index: 500;
  }
  body .alert {
    display: none;
  }
  body#home .altered .banner {
    display: block;
    /*margin-top: 123px;*/
  }
  #main_container {
    padding: 0 15px;
  }
  body #content {
    margin-top: 206px;
  }
  body .mobile-header {
    display: block;
  }
  body .mobile-header .nav-container {
    position: relative;
  }
  body .mobile-header #help-block {
    width: 100%;
  }
  body .mobile-header #help-block .help {
    font-family: 'AvenirNextLTW01-Condens_721299';
    color: white;
    width: 100%;
    text-align: center;
    background-image: url('/themes/baldwin/images/pattern.png');
    font-size: 24px;
    background-color: #e3300e;
    text-transform: uppercase;
    line-height: 32px;
    z-index: 6;
    padding: 8px;
    margin: 0px;
    display: inline-block;
  }
  body .mobile-header #help-block .help strong {
    margin-left: 8px;
    font-family: 'AvenirNextLTW01-BoldCn';
    font-style: normal;
  }
  body .srchbuttonmodal2 {
    right: 80px;
    position: absolute;
    font-size: 26px;
    top: 65px;
    color: black;
  }
  body .togglemenu2 {
    float: right;
    font-size: 26px;
    margin-right: 18px;
    margin-top: 65px;
    color: black;
  }
  body .mobile-header {
    background-color: #0193da;
    display: inline-block;
    position: relative;
  }
  body .mobile-header .container {
    padding: 0px;
  }
  body .mobile-header .logo {
    width: 50%;
    float: left;
  }
  body .mobile-header .logo img {
    width: 100%;
  }
  body .mobile-header .nav-container {
    width: 50%;
    float: right;
    background-color: #0194DA;
  }
  body .mobile-header .nav-container a {
    color: white;
  }
  body .mobile-header .menulabel {
    display: none;
  }
  body #header .header #help-block {
    position: fixed;
    width: 750px;
    top: 130px;
    z-index: 500;
    padding-bottom: 5px;
    padding-right: 9px;
    font-size: 21px;
    margin-top: -123px;
    margin-right: -26px;
  }
  body #header .header #help-block .help {
    padding-bottom: 5px;
    padding-right: 10px;
    padding-top: 37px;
    font-size: 21px;
    line-height: 23px;
    padding-left: 23px;
  }
  body #header .header .row .logo {
    padding: 10px 0px 15px 13px;
  }
  body #header .header #help-block {
    width: 750px;
    height: 65px;
    margin-top: -6px;
    margin-right: 0px;
    display: none;
    background-color: transparent;
  }
  body #header .header #help-block .help {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 25px;
    right: 0px;
    text-align: center;
    margin: 0 auto;
  }
  body #header .header #help-block .help:after {
    top: -1px;
    margin-left: 8px;
    right: -13px;
    -webkit-transform: scale(0.5);
  }
  body #header .header #help-block .help strong {
    display: inline-block;
  }
  body #header .header #help-block .help-text {
    margin: 0 auto;
  }
  body #header .header .left {
    display: none;
  }
  body#home .navbar .togglemenu {
    margin-right: 30px;
    margin-top: 64px;
  }
  body#home .navbar .srchbuttonmodal {
    right: 80px;
    top: 65px;
    font-size: 23px;
    left: auto;
  }
  body#home .mobile-header {
    background-color: #0193da;
    display: inline-block;
  }
  body#home .mobile-header .container {
    padding: 0px;
  }
  body#home .mobile-header .logo {
    width: 50%;
    float: left;
  }
  body#home .mobile-header .logo img {
    width: 100%;
  }
  body#home .mobile-header .nav-container {
    width: 50%;
    float: right;
    background-color: #0194DA;
  }
  body#home .mobile-header .nav-container a {
    color: white;
  }
  body#home .mobile-header .menulabel {
    display: none;
  }
  body#home #header .header .row .logo {
    padding: 10px 0px 15px 13px;
  }
  body#home #header .header #help-block {
    position: relative;
    height: 65px;
    margin-top: 0px;
    margin-right: 0px;
    width: 100%;
  }
  body#home #header .header #help-block .help {
    padding-top: 17px;
    padding-left: 19px;
    font-size: 25px;
    right: 0px;
    width: 320px;
    margin: 0 auto;
  }
  body#home #header .header #help-block .help:after {
    top: -1px;
    margin-left: 8px;
    right: -13px;
    -webkit-transform: scale(0.5);
  }
  body#home #header .header #help-block .help strong {
    display: inline-block;
  }
  body#home #header .header #help-block .help-text {
    margin: 0 auto;
  }
  body#home #header .header .left {
    display: none;
  }
  body .white-container .latest-news .table .cell {
    padding: 6px;
  }
  body .white-container #contact form textarea {
    width: 100%;
    height: 200px;
  }
  body .white-container #contact .hidden-form.show-form {
    height: 100%;
  }
  body .white-container .twitter-bar {
    padding-top: 105px;
  }
  body .white-container .twitter-bar #twitter-carousel {
    margin-top: -157px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 30px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 30px;
  }
  .blue {
    padding: 0 30px 20px 30px;
  }
  .blue .about-tammy {
    font-size: 5em;
    margin-bottom: 8%;
  }
  .blue .hide-small {
    display: none;
  }
  #help-page .whitespace .center .btn {
    width: 83%;
  }
  #help-page .whitespace .center .btn.small {
    width: 50%;
  }
  .office-locations #office-locations #office {
    width: 33%;
    display: inline-table;
  }
  body#help-page .office-locations #office-locations #office,
  body#feedback .office-locations #office-locations #office {
    width: 47%;
    display: inline-table;
    float: left;
  }
  body footer .container ul {
    padding: 6px;
  }
  body footer .container ul .footer-links {
    display: none;
  }
  body footer .container .footer-social-list {
    margin-top: 0px;
    position: absolute;
    right: 110px;
  }
  body#about-page .mobile-alert {
    background-color: #E1E5E4;
  }
  body#about-page .banner img {
    margin-left: -95px;
  }
  body#about-page .banner .about-chart {
    width: 43%;
  }
  body#about-page .banner .about-chart .title .about {
    font-size: 30px;
  }
  body#about-page .banner .about-chart .title .tammy {
    top: -4px;
    line-height: 45px;
  }
  body#about-page .social-footer-container {
    width: 100%;
  }
  body#about-page .senate-section {
    background-position-x: -318px;
  }
  body #content {
    margin-top: 0px;
  }
  body footer .container .footer-social-list {
    margin-top: 0px;
    position: relative;
    right: 0px;
    float: none;
    width: 100%;
  }
  #dcScheduleMeeting {
    padding-top: 15px !important;
    height: auto;
  }
  body#thankyou #content #main_container {
    background: none;
    background-color: #fff;
  }
  body#guestbook #header .mobile-header .logo {
    width: 100%;
    background-color: #0194DA;
  }
  body#guestbook #header .mobile-header .logo img {
    width: 50%;
  }
  body#guestbook #header .mobile-header .nav-container {
    display: none;
  }
  body#guestbook #header .hcihy {
    display: none;
  }
}
@media (max-width: 767px) {
  #cd-timeline::before {
    left: 16%;
    height: 72%;
  }
  .cd-timeline-block {
    width: 90%;
  }
  .cd-timeline-img {
    width: 125px;
    left: 8%;
  }
  .first-block .first-image {
    width: 175px;
    left: 5%;
    top: 47px;
  }
  .first-block {
    padding: 44px 0px;
  }
  .social-footer {
    display: none;
  }
  body .mobile-header {
    width: 100%;
  }
  body #header .header .row .logo a img {
    width: 69%;
  }
  body .navbar .togglemenu {
    margin-top: 46px;
    font-size: 30px;
  }
  body .navbar .srchbuttonmodal {
    font-size: 30px;
    top: 47px;
  }
  body .white-container {
    margin-top: 0px;
  }
  body .white-container .latest-news .table {
    height: 100%;
  }
  body .white-container .latest-news .table .cell a {
    top: 3px;
  }
  body .white-container .latest-news .table .cell p {
    width: 75%;
    margin: 0 auto;
  }
  body .white-container .latest-news .table:first-child p {
    margin-top: 65px;
  }
  body .white-container .latest-news .table:last-child p {
    margin-bottom: 65px;
  }
  body .white-container .action-bar .center-action {
    width: 93%;
    text-align: center;
  }
  body .white-container .action-bar .center-action a .action-block {
    width: 32%;
  }
  body .white-container .action-bar .center-action a .action-block .circle {
    width: 100px;
    height: 100px;
    padding: 29px;
    background-size: 45px;
  }
  body .white-container .action-bar .center-action a .action-block .circle .fa {
    font-size: 45px;
  }
  body .white-container .action-bar .center-action a .action-block h4 {
    width: 77%;
    font-size: 16px;
  }
  body .white-container .action-bar .center-action a .action-block h1 {
    font-size: 22px;
  }
  body .white-container #contact h2 {
    width: 84%;
  }
  body .white-container #contact form textarea {
    width: 100%;
    height: 200px;
  }
  body .white-container #contact .hidden-form h2 {
    width: 70%;
  }
  body .white-container #contact .hidden-form.show-form {
    height: 100%;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 30px;
  }
  body#home .mobile-header .logo {
    width: 60%;
  }
  body#home .mobile-header .nav-container {
    width: 110px;
  }
  #help-page .whitespace .center .btn {
    width: 50%;
    float: none;
  }
  #help-page .whitespace .center .btn.small {
    width: 50%;
  }
  #help-page .whitespace .center .btn.left {
    float: none;
  }
  #help-page .whitespace .center .btn.right {
    float: none;
  }
  body#about-page .banner img {
    margin-left: -140px;
  }
  body#about-page .about-chart {
    width: 36%;
    margin-right: 50px;
  }
  body#about-page .about-chart .fact {
    font-size: 16px;
  }
  .office-locations #office-locations #office {
    min-height: 130px;
    width: 30%;
    display: inline-table;
  }
  body footer .container .footer-social-list {
    position: relative;
    width: 100%;
    right: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .first-block .first-image {
    width: 125px;
    left: 8%;
    top: 47px;
  }
  body#about-page .banner img {
    width: 100%;
    margin-left: 0px;
  }
  body#about-page .banner .about-chart {
    margin-top: 65px;
  }
  body#about-page .facts {
    display: none;
  }
  body#about-page .mobile-facts {
    display: inline-block;
    width: 100%;
    padding: 20px 40px;
  }
  body#about-page .mobile-facts h4 {
    text-transform: uppercase;
    color: #a3a4a5;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 0px;
  }
  body#about-page .mobile-facts h5 {
    font-family: 'Roboto Condensed';
    font-weight: bold;
    color: #a3a4a5;
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 6px;
  }
  body .mobile-header .logo {
    width: 60%;
  }
  body .mobile-header .nav-container {
    width: 100px;
  }
  body .navbar .srchbuttonmodal {
    top: 34px;
  }
  body .navbar .togglemenu {
    float: right;
    font-size: 26px;
    margin-right: 18px;
    margin-top: 36px;
    color: black;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 25px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 25px;
  }
  body .white-container #contact .hidden-form.show-form {
    width: 107%;
  }
  body .white-container .office-locations #office-locations #office {
    width: 50%;
    float: left;
    display: inline-block;
  }
  body .white-container .office-locations #office-locations #office:nth-child(even) {
    float: right;
  }
  body footer .container .footer-links {
    margin-right: 10px;
  }
  body footer .container .footer-links a {
    font-size: 22px;
  }
  body footer .Subfooter ul li a {
    font-size: 13px;
  }
  body#home .mobile-header .logo {
    width: 70%;
  }
  body#home .mobile-header .nav-container {
    width: 110px;
  }
  .blue {
    padding: 0 ;
  }
  .blue .about-tammy {
    font-size: 5em;
    margin: 0 30px;
    margin-bottom: 8%;
  }
  .blue .show-small {
    display: block;
  }
  .blue:first-child p {
    padding: 0 30px;
  }
  body#about-page .blue .title {
    margin-top: 60px;
  }
}
@media (max-width: 535px) {
  .cd-timeline-img,
  .first-block .first-image {
    position: relative;
    width: 250px;
    height: 250px;
    left: 13%;
  }
  body#feedback-page .office-locations #office-locations #office {
    width: 50%;
    display: inline-table;
    float: left;
  }
  body#about-page .senate-section {
    background-position-x: -475px;
  }
  .senate-section .senate-text span {
    font-size: 16px;
  }
  body#about-page .raised h3 {
    width: 81%;
  }
  .first-block .first-image {
    top: -5px;
  }
  .cd-timeline-content {
    width: 77%;
  }
  body #main_container {
    /*margin-top: -56px;*/
  }
  body .navbar .srchbuttonmodal {
    left: 22%;
    top: 32px;
  }
  body .navbar .togglemenu {
    font-size: 26px;
    margin-top: 31px;
  }
  body .white-container #contact {
    padding: 100px 30px;
  }
  body .white-container .action-bar .center-action {
    width: 93%;
    text-align: center;
  }
  body .white-container .action-bar .center-action a .action-block {
    width: 30%;
  }
  body .white-container .action-bar .center-action a .action-block .circle {
    width: 90px;
    height: 90px;
    padding: 25px;
    background-size: 37px;
  }
  body .white-container .action-bar .center-action a .action-block .circle .fa {
    font-size: 40px;
  }
  body .white-container .action-bar .center-action a .action-block h4 {
    width: 77%;
    font-size: 16px;
  }
  body .white-container .action-bar .center-action a .action-block h1 {
    font-size: 18px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 22px;
    padding: 0 50px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 22px;
  }
  body#home .mobile-header .logo {
    width: 75%;
  }
  body#home .mobile-header .nav-container {
    width: 110px;
  }
  #help-page .whitespace .center .btn {
    width: 83%;
  }
  #help-page .whitespace .center .btn.small {
    width: 83%;
  }
}
@media (max-width: 479px) {
  #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
    width: 74%;
  }
  body footer .Subfooter ul li:first-child {
    border-right: none;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item .tweet {
    font-size: 18px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item .tweet a {
    font-size: 18px;
  }
  #feedback-page .feedback-block,
  #business-owners .feedback-block,
  #feedback-page .feedback-block,
  #business-owners .feedback-block {
    margin: 23px 0px;
    height: 85px;
  }
  #feedback-page .feedback-block .cell,
  #business-owners .feedback-block .cell,
  #feedback-page .feedback-block .cell,
  #business-owners .feedback-block .cell {
    height: 85px;
  }
  #feedback-page .feedback-block .cell h1,
  #business-owners .feedback-block .cell h1,
  #feedback-page .feedback-block .cell h1,
  #business-owners .feedback-block .cell h1 {
    font-size: 22px;
  }
  #feedback-page .feedback-block .cell,
  #business-owners .feedback-block .cell,
  #feedback-page .feedback-block a.cell,
  #business-owners .feedback-block a.cell {
    height: 80px;
  }
  .alert-container {
    display: none;
  }
  body#home .altered .banner {
    margin-top: 0px;
  }
  body#newsroom-medium #facebook .facebook-header {
    background-color: #f2f2f2;
    padding: 15px 31px;
  }
  body#newsroom-medium #facebook .facebook-header h3 {
    font-size: 20px;
  }
  body #main_container {
    /*margin-top: -90px;*/
  }
  body #header {
    /*.mobile-search{
			display: block;
			text-align: center;
			    background-image: url('/themes/baldwin/images/search-pattern.png');
			    background-size: 200px;
			    background-repeat: repeat;
			    padding:9px;
			    margin-top: -2px; 
			    a{
			    	font-size: 17px;
			    	color: black;
			    	.roboto-con;
			    	span:before{
			    		vertical-align: middle;
			    	}
			    }
		}*/
  }
  body #header .header .row .logo a img {
    width: 100%;
  }
  body #header .mobile-header {
    position: relative;
  }
  body #header .mobile-header .logo {
    width: 65%;
  }
  body #header .togglemenu2 {
    margin-right: 17px;
    font-size: 42px;
  }
  body #header .srchbuttonmodal2 {
    display: none !important;
  }
  body .srchbuttonmodal2 {
    left: 5%;
    top: 32px;
    font-size: 25px;
  }
  body .togglemenu2 {
    font-size: 26px;
    margin-top: 31px;
    position: absolute;
    right: 0;
    top: -10px;
  }
  body#about-page .banner .about-chart {
    margin-top: 30px;
  }
  .office-locations #office-locations #office {
    min-height: 162px;
  }
}
@media (max-width: 430px) {
  body#about-page .banner .about-chart .title .tammy {
    font-size: 36px;
    line-height: 30px;
  }
  body#about-page .senate-section .senate-text {
    margin: 25px;
  }
  body#about-page .senate-section .senate-text span {
    font-size: 14px;
  }
  body#feedback-page .office-locations #office-locations #office,
  body#help-page .office-locations #office-locations #office {
    min-height: 206px;
  }
}
@media (max-width: 400px) {
  body .white-container .twitter-bar {
    height: 560px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel {
    height: 560px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item {
    font-size: 22px;
    padding: 0px 30px;
  }
  body .white-container .twitter-bar #twitter-carousel #carousel .carousel-inner .item a {
    font-size: 22px;
  }
  body#newsroom-medium #facebook .facebook-header {
    background-color: #f2f2f2;
    padding: 15px 15px;
  }
  body#newsroom-medium #facebook .facebook-header h3 {
    font-size: 18px;
  }
  body#newsroom-medium #facebook .facebook-header h3:before {
    content: 'b';
    font-family: 'fa';
    margin-right: 2px;
    color: #0076c0;
    font-size: 33px;
    position: relative;
    top: 20px;
  }
  body#newsroom-medium #facebook ul h3:before {
    content: url('/themes/baldwin/images/avi.jpg');
    transform: scale(0.4);
    position: relative;
    top: 13px;
    margin-right: 5px;
  }
  body#newsroom-medium #facebook .facebook-header h4 {
    display: none;
  }
  body#newsroom-medium #facebook ul h3 {
    font-family: "Roboto";
    font-size: 16px;
  }
  body#newsroom-medium #facebook ul {
    margin-top: 25px;
    list-style: none;
    padding: 0px 19px;
  }
  body#newsroom-medium #twitter .cell {
    padding: 5px 18px;
  }
  body#newsroom-medium #twitter .twitter-header {
    background-color: #f2f2f2;
    padding: 5px 24px;
  }
  body #header .mobile-header .logo {
    width: 65%;
  }
  body#about-page .senate-section {
    background-position-x: -577px;
  }
  body#about-page .senate-section .senate-text {
    width: 57%;
  }
  body .white-container .office-locations #office-locations #office {
    min-height: 210px;
  }
  body .white-container .action-bar .center-action a .action-block .circle {
    width: 76px;
    height: 76px;
    background-size: 30px;
    padding: 22px;
  }
  body .white-container .action-bar .center-action a .action-block .circle .fa {
    font-size: 33px;
  }
  body .white-container .action-bar .center-action a .action-block h1 {
    font-size: 16px;
  }
  body .white-container #contact {
    padding: 50px 30px;
  }
  body .white-container #contact h1 {
    font-size: 30px;
  }
  body .white-container #contact h2 {
    font-size: 20px;
  }
  body#about-page .blue {
    padding: 0 15px;
  }
  body#about-page .blue .about-tammy {
    font-size: 4em;
  }
}
@media (max-width: 344px) {
  body #header .togglemenu2 {
    position: absolute;
    right: 0;
  }
  body#about-page .senate-section .senate-text {
    width: 64%;
    color: white;
    position: absolute;
    bottom: 0;
    margin: 50px;
  }
  body#about-page .banner .about-chart {
    margin-top: 0px;
  }
}
@media (max-width: 315px) {
  top: -90px;
}
.ieold .ieoldonly {
  display: block !important;
}
.ieold .white-container input[type="checkbox"] {
  width: 28px !important;
}
.ie body .navbar .nav-pills li {
  width: 10px;
}
.ie body .navbar .nav-pills li:nth-child(2) {
  width: 200px;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
