/* IMPORT SITE CUSTOM STYLES */
/* common mix-ins */
/* ROUNDED CORNERS */
/* Implementation */
#RoundedCornerExample {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* SHADOW */
#ShadowExample {
  -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}
/* TRANSITION */
/* Implementation */
#TransitionExample {
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#TransitionExample:hover {
  opacity: 0;
}
/* GRADIENT */
/* Implementation */
#GradientExample {
  background-color: #663333;
  background-image: -webkit-linear-gradient(left, #663333, #333333);
  background-image: -moz-linear-gradient(left, #663333, #333333);
  background-image: -o-linear-gradient(left, #663333, #333333);
  background-image: -ms-linear-gradient(left, #663333, #333333);
  background-image: linear-gradient(left, #663333, #333333);
}
/* QUICK GRADIENT	 */
/* Implementation */
#QuickGradientExample {
  background-color: #BADA55;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
#breadcrumb > ol li:first-child {
  display: inline-block;
}
body#home #header {
  background-color: white;
  height: 70px;
  margin-bottom: 0px;
  position: relative;
  top: 0!important;
  right: 0;
  left: 0;
  transition: top .2s ease-in-out;
}

body#home #header.fixed-header {
  position: fixed;
}

body#home #header.scrolling {
  position: fixed;
}

body #header {
  z-index: 300;
  height: 100%;
  background-color: #ebebeb;
  margin-bottom: 60px;
  height: 70px;
  position: relative;
  top: 0!important;
  right: 0;
  left: 0;
}

body #header.fixed-header {
  position: fixed;
}

body #header.scrolling {
  position: fixed;
}

body #header .logo {
  margin-top: 0px;
  z-index: 20;
}
body #header .logo a {
  margin-left: 43px;
  display: block;
  width: 225px;
  height: 140px;
  background-image: url(/themes/peters/images/logo.jpg);
  background-size: 225px 140px;
}
body #header.fixed-header .logo a {
  height: 70px;
  background-image: url(/themes/peters/images/PetersLogo-Scrolling.png);
  background-size: 225px 70px;
}
body #header .social-col {
  padding-top: 23px;
  padding-left: 0;
}
body #header .social-col .social-list {
  float: right;
  margin-right: 30px;
}
body #header .social-col .social-list li {
  padding: 0px;
  margin: 0 1px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 80px;
}
body #header .social-col .social-list li .socicon {
  color: white;
  font-size: 14px;
}
body #header .social-col .social-list li.facebook {
  background-color: #4d68a6;
}
body #header .social-col .social-list li.facebook:hover {
  background-color: #3a507f;
}
body #header .social-col .social-list li.twitter {
  background-color: #25a7df;
}
body #header .social-col .social-list li.twitter:hover {
  background-color: #1c85b2;
}
body #header .social-col .social-list li.youtube {
  background-color: #cd2127;
  vertical-align: bottom;
}
body #header .social-col .social-list li.youtube a img {
  padding-top: 6%;
  width: 16px;
}
body #header .social-col .social-list li.youtube:hover {
  background-color: #a51a1f;
}
body #header .social-col .social-list li.instagram {
  background-color: #3f739c;
}
body #header .social-col .social-list li.instagram:hover {
  background-color: #335e7f;
}
body #header .social-col .social-list li.flickr {
  background-color: #ff0084;
}
body #header .social-col .social-list li.flickr:hover {
  background-color: #cc016a;
}
body#home #header {
  height: 70px;
}
.logoPath,
.navPath {
  float: left;
}
.navPath {
  margin-left: 20px;
}
body#home .navbar {
  background-color: white;
}
body .navbar {
  background-color: #ebebeb;
  z-index: 1;
  width: 634px;
}
body .navbar .nav-pills {
  float: left;
  width: 604px;
  z-index: 2;
  position: relative;
}
body .navbar .nav-pills > li {
  width: 155px;
}
body .navbar .nav-pills > li a {
  color: black;
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 23px;
  padding-bottom: 15px;
  text-align: left;
  padding-left: 0px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body .navbar .nav-pills > li a:after {
  content: "/";
  color: #ebebeb;
  margin-left: 21px;
}
body .navbar .nav-pills > li.selected a {
  color: #304185;
}
body .navbar .nav-pills > li:last-child {
  width: 115px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #304185;
  padding-left: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body .navbar .nav-pills > li .dropdown-menu li a:after {
  content: "";
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  color: #21263a;
}
body .navbar .nav-pills > li .dropdown-menu li:first-child a {
  padding-top: 20px;
}
body .navbar .nav-pills > li:hover a {
  color: #fdd11c;
}
body .navbar .srchbutton {
  color: black;
  font-size: 20px;
}
body .navbar .srchbutton span {
  padding-top: 23px;
  right: 0px;
}
body .navbar .srchbutton span:hover {
  color: #fdd11c;
}
body .navbar .srchbutton .glyphicon-remove {
  float: right;
}
body .navbar .srchbutton:hover {
  color: #fdd11c;
}
body .navbar #search {
  padding-top: 21px;
  float: left;
  width: 0%;
  right: 78px;
  position: absolute;
  top: -8px;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search.showme {
  width: 86%;
  display: block;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body .navbar #search #sitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  height: 40px;
}
body .navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}
body .navbar #search #sitesearch button {
  position: absolute;
  background-color: #304185;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body .navbar #search #sitesearch button:hover {
  color: #fdd11c;
}
body #NavMobileModal .modal-dialog {
  margin: 0 auto;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav {
  margin-bottom: 1em;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  padding-bottom: 0;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  position: static;
  display: block;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  padding: 3px 14px;
  font-size: 20px !important;
}
body .navPath {
  padding: 0;
}
/*.container{
	min-width:1300px !important;
}*/
body .carousel-control {
  background-color: rgba(255, 255, 255, 0.15);
  background-image: none;
  width: 60px;
  opacity: 0.8;
}
body .carousel-control img {
  top: 45%;
  position: absolute;
  left: 10px;
  right: auto;
}
body .carousel-control.right,
body .carousel-control.left {
  background-image: none;
}
body .carousel-control:hover {
  opacity: 1;
}
body .carousel-control:hover.right,
body .carousel-control:hover.left {
  background-image: none;
}
body .top {
  z-index: 0;
  width: 100%;
  margin-top: -70px;
  position: relative;
}

body.scrolling .top {

  margin-top: 145px;

}

body.fixing .top {

  margin-top: 145px;

}


body .top.fixed {
  top: 200px;
  height: 1100px;
}
body .top.absolute {
  top: 500px;
  height: 1100px;
  width: 100%;
}
body .top.absolute #featured div > .row {
  margin: 0px;
}
body .top #featured {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}
body .top #featured #featuredCarousel {
  width: 100%;
  float: none;
  margin: 0 auto;
}

body .top #featured #featuredCarousel .carousel-inner{
  padding-top: 49.7%;
  position: relative;
  width: 100%;
  height: auto;
}

body .top #featured #featuredCarousel .item {
  width: 100%;
  height: 100%;
position: absolute;
top: 0;
left: 0;
  overflow: hidden;
  background-attachment: scroll;
  background-size: cover;
  background-position: center top;
}
body .top #featured #featuredCarousel .item img {
  width: 100%;
  height: auto;
}
body .top #featured #featuredCarousel .item .carousel-caption {
  padding: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient {
  background: -moz-linear-gradient(-45deg, rgba(125, 185, 232, 0) 0%, rgba(78, 107, 133, 0) 38%, rgba(15, 4, 3, 0.49) 88%, rgba(15, 4, 3, 0.61) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(125, 185, 232, 0)), color-stop(38%, rgba(78, 107, 133, 0)), color-stop(88%, rgba(15, 4, 3, 0.49)), color-stop(100%, rgba(15, 4, 3, 0.61)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, rgba(125, 185, 232, 0) 0%, rgba(78, 107, 133, 0) 38%, rgba(15, 4, 3, 0.49) 88%, rgba(15, 4, 3, 0.61) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, rgba(125, 185, 232, 0) 0%, rgba(78, 107, 133, 0) 38%, rgba(15, 4, 3, 0.49) 88%, rgba(15, 4, 3, 0.61) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, rgba(125, 185, 232, 0) 0%, rgba(78, 107, 133, 0) 38%, rgba(15, 4, 3, 0.49) 88%, rgba(15, 4, 3, 0.61) 100%);
  /* IE10+ */
  background: linear-gradient(160deg, rgba(125, 185, 232, 0) 0%, rgba(78, 107, 133, 0) 38%, rgba(15, 4, 3, 0.49) 88%, rgba(15, 4, 3, 0.61) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8', endColorstr='#9c0f0403', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media(max-width:654px){
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient {
display: none;
  }
}

body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
  bottom: 15rem;
  position: absolute;
  right: 65px;
  width: 550px;
  text-align: right;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #ffffff;
  font-size: 56px;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
  font-style: normal;
  text-transform: uppercase;
  color: white;
  font-size: 118px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title.featured {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
}
@media (max-width: 794px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    bottom: 10rem;
  }
}
@media (max-width: 394px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    bottom: 5rem;
  }
}
@media (max-width: 350px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    bottom: 4rem;
  }
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons {
  position: absolute;
  z-index: 1000;
  bottom: 5rem;
  width: 100%;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder {
  display: inline-block;
  width: 100%;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
  width: 100%;
  max-width: 360px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin: 0 10px;
  margin-bottom: 15px;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a {
  border: 1px solid white;
  color: white;
  padding: 10px 0px;
  border-radius: 5px;
  font-size: 28px;
  width: 100%;
  display: block;
  background-color: rgba(33, 38, 57, 0.35);
  transition: background-color 0.2s ease-in-out;
}
body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a:hover {
  background-color: #21263a;
}
@media (max-width: 794px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
    max-width: 280px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a {
    font-size: 24px;
  }
}
@media (max-width: 654px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
    max-width: 200px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a {
    font-size: 20px;
  }
}
@media (max-width: 654px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
    max-width: 175px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a {
    padding: 5px 0;
    font-size: 18px;
  }
}
@media (max-width: 394px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
    max-width: 170px;
    margin: 0 1px;
  }
}
@media (max-width: 394px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button {
    max-width: 145px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons .buttonholder .button a {
    font-size: 16px;
  }
}
@media (max-width: 794px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient #buttons {
    bottom: 1rem;
  }
}
body .top #featured #featuredCarousel .item .tagline-outer {
  width: 422px;
}
body .top #featured #featuredCarousel .item .tagline-outer .tagline {
  width: 425px;
  height: auto;
  display: block;
}
body .top #featured #featuredCarousel .item .tagline-outer .social {
  width: 100%;
  text-align: center;
  margin-top: 35px;
}
body .action-bar {
  background-color: #ebebeb;
  margin: 0px;
}
body .action-bar .newsletter {
  padding-left: 60px;
}
body .action-bar .newsletter #newsletter {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 24px;
}
body .action-bar .newsletter #newsletter #newsletter-emphasis {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body .action-bar .newsletter input {
  border: none;
  width: 350px;
  height: 50px;
  margin-bottom: 20px;
}
body .action-bar .newsletter .submit {
  height: 49px;
  margin-bottom: 19px;
  margin-left: -3px;
}
body .action-bar .social-col {
  padding-top: 26px;
  padding-bottom: 17px;
}
body .action-bar .social-col .social-list li {
  padding: 6px;
  margin: 0 3px;
  height: 100px;
  width: 100px;
  text-align: center;
  border-radius: 80px;
}
body .action-bar .social-col .social-list li .socicon {
  color: white;
  font-size: 44px;
  padding-top: 25%;
}
body .action-bar .social-col .social-list li.facebook {
  background-color: #4d68a6;
}
body .action-bar .social-col .social-list li.facebook:hover {
  background-color: #3a507f;
}
body .action-bar .social-col .social-list li.twitter {
  background-color: #25a7df;
}
body .action-bar .social-col .social-list li.twitter:hover {
  background-color: #1c85b2;
}
body .action-bar .social-col .social-list li.youtube {
  background-color: #cd2127;
  vertical-align: bottom;
}
body .action-bar .social-col .social-list li.youtube a img {
  padding-top: 27%;
}
body .action-bar .social-col .social-list li.youtube:hover {
  background-color: #a51a1f;
}
body .action-bar .social-col .social-list li.instagram {
  background-color: #3f739c;
}
body .action-bar .social-col .social-list li.instagram:hover {
  background-color: #335e7f;
}
body .action-bar .social-col .social-list li.flickr {
  background-color: #ff0084;
}
body .action-bar .social-col .social-list li.flickr:hover {
  background-color: #cc016a;
}
body .press-container #press {
  padding: 50px 0px;
}
body .press-container #press .wrap {
  display: block;
  overflow: hidden;
  margin-bottom: 1rem;
}
body .press-container #press .wrap .press-image {
  height: 230px;
  width: 100%;
  background-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  body .press-container #press .wrap .press-image:nth-child(2) {
    background-position: 0 -5px;
  }
}
@media (max-width: 767px) {
  body .press-container #press .wrap .press-image {
    background-position: center top;
  }
}
body .press-container #press .wrap .press-title {
  min-height: 130px;
  height: auto;
  display: table;
  vertical-align: top;
  background-color: transparent;
  color: #304185;
  border-top: 5px solid #304185;
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1rem;
  transition: all 0.2s ease-in-out;
}
body .press-container #press .wrap .press-title span {
  display: table-cell;
  vertical-align: top;
  font-size: 24px;
}
body .press-container #press .wrap:hover .press-image {
  transform: scale(1.1);
}
body .press-container #press .wrap:hover .press-title {
  background-color: transparent;
  color: #fdd11c;
  border-top: 5px solid #fdd11c;
}
body .press-container .social-media-row {
  margin-top: 15px;
}
body .press-container .social-media-row .instagram-feed #instamedia a {
  display: inline-block;
  width: 33.33333333%;
  overflow: hidden;
  text-align: center;
  /*&:nth-child(2) {
							margin: 0px 52px;
						}

						&:nth-child(3) {
							img {
								position: absolute;
								right:0px;
							}
						}*/
}
body .press-container .social-media-row .instagram-feed #instamedia a img {
  margin: 0 auto;
  width: 95%;
}
body .press-container .social-media-row .youtube-feed .video {
  width: 100%;
  margin-top: 49px;
}
body .press-container .social-media-row .youtube-feed .video iframe {
  width: 100%;
  height: 360px;
}
body .press-container .social-media-row .twitter-feed {
  height: 570px;
  padding: 0px 0px 0px 40px;
}
body .press-container .social-media-row .twitter-feed .twitter-header img {
  float: left;
  padding-right: 10px;
}
body .press-container .social-media-row .twitter-feed .twitter-header h3 {
  margin: 0;
  margin-bottom: 4px;
  font-size: 28px;
}
body .press-container .social-media-row .twitter-feed #twitter {
  height: 570px;
  width: 100%;
  overflow-y: scroll;
  border-bottom: 20px solid #21263a;
}
body .press-container .social-media-row .twitter-feed #twitter .tweet {
  word-wrap: break-word;
  font-size: 20px;
  padding-top: 18px;
}
body .press-container .social-media-row .twitter-feed #twitter .tweet .date {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}
body .office-locations {
  margin: 0;
}
body .office-locations .location {
  background-size: cover;
  background-color: #304185;
  height: 245px;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid white;
}
body .office-locations .location h3 {
  font-family: 'Oswald', sans-serif;
  display: block;
  color: #FFF;
  padding: 81px 0 0 0;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
body .office-locations .location h3 span {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}
body .office-locations .location .blue-filter {
  height: 245px;
  background-color: rgba(48, 65, 133, 0.7);
}
body .office-locations .location .blue-filter.dark {
  height: 245px;
  background-color: rgba(33, 38, 58, 0.7);
}
body .office-locations .location .reveal {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0;
  position: absolute;
  top: 0px;
  display: block;
  background-color: #304185;
  height: 245px;
  padding: 32px !important;
  color: #ffffff;
  width: 100%;
  font-size: 15px;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
}
body .office-locations .location .reveal .adr {
  margin: 0;
  padding: 0;
  line-height: 23px;
}
body .office-locations .location .reveal .adr strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  display: block;
  float: left;
}
body .office-locations .location .reveal .adr a {
  font-size: 14px;
  color: #fdd11c;
  padding-left: 7px;
  bottom: -3px;
  position: relative;
}
body .office-locations .location .reveal .adr a:hover {
  color: #ebebeb;
}
body .office-locations .location .reveal .tel {
  margin: 0;
  padding: 0;
}
body .office-locations .location .reveal .tel dt,
body .office-locations .location .reveal .tel dd {
  float: left;
  font-size: 14px;
}
body .office-locations .location .reveal .tel dd {
  margin-right: 5px;
}
body .office-locations .location .reveal.dark {
  background-color: #21263a;
}
body .office-locations .location:hover {
  /*h3{
					.transition(all, 0.2s, ease-in);
					top:-100%;
				}*/
}
body .office-locations .location:hover .reveal {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 1;
}
body .office-locations .location:nth-child(1) {
  background-image: url("/themes/peters/images/detroit.jpg");
}
body .office-locations .location:nth-child(2) {
  background-image: url("/themes/peters/images/lansing.jpg");
}
body .office-locations .location:nth-child(3) {
  background-image: url("/themes/peters/images/grand.jpg");
}
body .office-locations .location:nth-child(4) {
  background-image: url("/themes/peters/images/dc.jpg");
}
body .office-locations .location:nth-child(5) {
  background-image: url("/themes/peters/images/rochester.jpg");
}
body .office-locations .location:nth-child(6) {
  background-image: url("/themes/peters/images/saginaw.jpg");
}
body .office-locations .location:nth-child(7) {
  background-image: url("/themes/peters/images/traverse.jpg");
}
body .office-locations .location:nth-child(8) {
  background-image: url("/themes/peters/images/marquette.jpg");
}
body .office-locations .location:nth-child(8) .reveal .adr a {
  padding-left: 0px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
body.newsroom .modal-dialog {
  z-index: 2000;
}
.newscontent .photos date {
  display: none;
}
#voting_record .page .row {
  /* ----- */
}
#photos .date {
  display: none;
}
#asides {
  margin-top: 30px;
}
#asides aside {
  margin-top: 50px;
}
#listblocks .block {
  background: #304185;
}
#listblocks .block a:hover {
  background: #304185;
  color: #fdd11c;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
.offices .locations {
  background-size: cover;
  background-color: #304185;
  height: 245px;
  text-align: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid white;
}
.offices .locations h3 {
  font-family: 'Oswald', sans-serif;
  display: block;
  color: #FFF;
  padding: 81px 0 0 0;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 0px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.offices .locations h3 span {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}
.offices .locations .bluefilter {
  height: 245px;
  background-color: rgba(48, 65, 133, 0.7);
}
.offices .locations .bluefilter.dark {
  height: 245px;
  background-color: rgba(33, 38, 58, 0.7);
}
.offices .locations .reveals {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0;
  position: absolute;
  top: 0px;
  display: block;
  background-color: #304185;
  height: 245px;
  padding: 32px !important;
  color: #ffffff;
  width: 100%;
  font-size: 15px;
  text-align: left;
  padding: 15px;
  box-sizing: border-box;
}
.offices .locations .reveals .addr {
  margin: 0;
  padding: 0;
  line-height: 23px;
}
.offices .locations .reveals .addr strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  display: block;
  float: left;
}
.offices .locations .reveals .addr a {
  font-size: 14px;
  color: #fdd11c;
  padding-left: 7px;
  bottom: -3px;
  position: relative;
}
.offices .locations .reveals .addr a:hover {
  color: #ebebeb;
}
.offices .locations .reveals .tels {
  margin: 0;
  padding: 0;
}
.offices .locations .reveals .tels dt,
.offices .locations .reveals .tels dd {
  float: left;
  font-size: 14px;
}
.offices .locations .reveals .tels dd {
  margin-right: 5px;
}
.offices .locations .reveals.dark {
  background-color: #21263a;
}
.offices .locations:hover .reveals {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 1;
}
.offices .locations:nth-child(1) {
  background-image: url("/themes/peters/images/detroit.jpg");
}
.offices .locations:nth-child(2) {
  background-image: url("/themes/peters/images/lansing.jpg");
}
.offices .locations:nth-child(3) {
  background-image: url("/themes/peters/images/grand.jpg");
}
.offices .locations:nth-child(4) {
  background-image: url("/themes/peters/images/marquette.jpg");
}
.offices .locations:nth-child(5) {
  background-image: url("/imo/media/image/marquette.jpg");
}
.offices .locations:nth-child(6) {
  background-image: url("/themes/peters/images/saginaw.jpg");
}
.offices .locations:nth-child(7) {
  background-image: url("/themes/peters/images/traverse.jpg");
}
.offices .locations:nth-child(8) {
  background-image: url("/themes/peters/images/dc.jpg");
}
.offices .locations:nth-child(8) .reveal .adr a {
  padding-left: 0px;
}
a.rochester-saginaw {
  font-size: 14px;
  color: #fdd11c;
  padding-left: 7px;
  bottom: -3px;
  position: relative;
}
a.rochester-saginaw:hover {
  color: #fff;
}
/*
hearing styles */
#main_container {
  padding: 0 60px !important;
  padding-top: 70px !important;
}


body.scrolling #main_container {
  padding-top: 200px !important;
}

body.fixing #main_container {
  padding-top: 200px !important;
}

h1.main_page_title {
  text-transform: none;
  margin: 10px 0px 20px 0px;
}
.apply-online {
  margin: auto;
  display: block;
  position: relative;
  width: 126px;
}
img.img-responsive.inauguration {
  float: right;
  width: 445px;
  margin: 5px;
}
img.img-responsive.graduation {
  float: left;
  width: 330px;
  margin: 3px 10px 10px 0px;
}
img.image-responsive.navy {
  float: right;
  width: 400px;
}
img.image-responsive.committee {
  float: left;
  margin: 5px 10px 0px 0px;
  width: 330px;
}
#newscontent {
  margin-top: 22px;
}
#newscontent #press hr {
  border-top: 1px solid white;
}
.date + h3 {
  margin-top: 5px;
}
body .modal-backdrop {
  opacity: 1 !important;
}
#signatures-container #num-signatures-container #num-signatures {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
}
#signatures-container #num-signatures-label {
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
#main_column form .petition-submit-btn-container {
  margin-top: 34px;
  text-align: center;
}
#main_column form .petition-submit-btn-container .btn {
  margin: 0 auto;
}
#main_column #petitionFriends .btn {
  margin: 0;
}
body#guestbook #header {
  display: none;
}
body#guestbook #main_container {
  padding-top: 25px!important;
}
body#guestbook #main_container .guestbooklogo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
  display: block;
  position: relative;
}
body#guestbook #main_container .guestbooklogo img {
  width: 100%;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser {
  padding-top: 30px;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #b5b5b5;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #b5b5b5;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: rgba(0, 0, 0, 0);
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #b5b5b5;
}
#multimedia-browser .pagination {
  background-color: #304185;
}
@media (max-width: 990px) {
  #multimedia-browser .multimedia-tools fieldset {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .row input[type="button"] {
    padding: 5px 8px !important;
  }
}
body#home footer .privacy {
  width: 1270px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1300px) {
  body#home footer .privacy {
    width: 1140px;
  }
}
@media (max-width: 1200px) {
  body#home footer .privacy {
    width: 97%;
  }
}
body footer ul.footernav {
  float: none !important;
  text-align: center;
  padding-top: 20px;
}
body footer ul.footernav li .footer-links {
  color: black;
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 25px;
  text-align: left;
  padding-left: 0px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
body footer ul.footernav li .footer-links:after {
  content: "/";
  color: #ebebeb;
  margin-left: 21px;
}
body footer ul.footernav li .footer-links:hover {
  color: #fdd11c;
}
body footer ul.footernav li.hidden-link {
  display: none;
}
body footer ul.footernav li:last-child {
  vertical-align: bottom;
}
body footer ul.footernav .social-list li {
  padding: 0 1px 1px 1px;
  margin: 0 1px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 80px;
}
body footer ul.footernav .social-list li .socicon {
  color: white;
  font-size: 14px;
}
body footer ul.footernav .social-list li.facebook {
  background-color: #4d68a6;
}
body footer ul.footernav .social-list li.facebook:hover {
  background-color: #3a507f;
}
body footer ul.footernav .social-list li.twitter {
  background-color: #25a7df;
}
body footer ul.footernav .social-list li.twitter:hover {
  background-color: #1c85b2;
}
body footer ul.footernav .social-list li.youtube {
  background-color: #cd2127;
  vertical-align: bottom;
}
body footer ul.footernav .social-list li.youtube a img {
  padding-top: 6%;
  width: 16px;
}
body footer ul.footernav .social-list li.youtube:hover {
  background-color: #a51a1f;
}
body footer ul.footernav .social-list li.instagram {
  background-color: #3f739c;
}
body footer ul.footernav .social-list li.instagram:hover {
  background-color: #335e7f;
}
body footer ul.footernav .social-list li.flickr {
  background-color: #ff0084;
}
body footer ul.footernav .social-list li.flickr:hover {
  background-color: #cc016a;
}
body footer .search-li {
  position: relative;
}
body footer .search-li .footer-srchbutton {
  color: black;
  font-size: 20px;
}
body footer .search-li .footer-srchbutton span {
  padding-top: 33px;
  float: right;
  margin-right: 80px;
}
body footer .search-li .footer-srchbutton span:hover {
  color: #fdd11c;
}
body footer .search-li .footer-srchbutton:hover {
  color: #fdd11c;
}
body footer .search-li #footer-search {
  right: 116px !important;
  padding-top: 21px;
  float: left;
  width: 0%;
  position: absolute;
  right: 78px;
  top: 5px;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
body footer .search-li #footer-search.showme {
  width: 549px;
  display: block;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: absolute;
}
body footer .search-li #footer-search #footer-sitesearch {
  width: 100%;
  float: left;
  padding: 0px 15px 0px;
  position: relative;
  height: 40px;
}
body footer .search-li #footer-search #footer-sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 38px;
  padding: 5px;
}
body footer .search-li #footer-search #footer-sitesearch button {
  position: absolute;
  background-color: #304185;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
body footer .search-li #footer-search #footer-sitesearch button:hover {
  color: #fdd11c;
}
body footer .privacy {
  margin-top: 23px;
  background-color: #ebebeb;
  text-align: center;
  padding: 8px;
}
body footer .privacy ul {
  padding-top: 7px;
}
body footer .privacy a {
  padding-top: 5px;
  color: #b5b5b5;
  text-transform: uppercase;
}
body footer .privacy a:hover {
  color: #304185;
}
#flagForm #flag-options .head {
  background-color: #304185;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form legend {
  font-size: 25px;
}
#content .amend-form-container form input[type="submit"] {
  display: block;
}
#meeting-request .dc,
#meeting-request .mi {
  display: none;
}
#meeting-request #meeting-request-container {
  display: none;
}
#meeting-request #meeting-request-container.show-dc {
  display: block;
}
#meeting-request #meeting-request-container.show-dc .dc {
  display: block;
}
#meeting-request #meeting-request-container.show-mi {
  display: block;
}
#meeting-request #meeting-request-container.show-mi .mi {
  display: block;
}
/*


paste available font families here
font-family: 'Oswald', sans-serif;
font-family: 'Playfair Display', serif;
*/
/*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;
  @

*/
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs169vsUZiYA.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUZiYA.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUZiYA.ttf) format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: local('Playfair Display Italic'), local('PlayfairDisplay-Italic'), url(https://fonts.gstatic.com/s/playfairdisplay/v14/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk-.ttf) format('truetype');
}
@font-face {
  font-family: 'Quattrocento Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Quattrocento Sans'), local('QuattrocentoSans'), url(https://fonts.gstatic.com/s/quattrocentosans/v11/va9c4lja2NVIDdIAAoMR5MfuElaRB0zJt0o.ttf) format('truetype');
}
.oswald {
  font-family: 'Oswald', sans-serif;
}
.light {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}
.bold {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
/*body color and font*/
body {
  font-family: 'Quattrocento Sans', sans-serif;
  font-size: 18px;
}
body#home {
  font-family: 'Oswald', sans-serif;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
}
h1 {
  text-transform: uppercase;
}
#home h1 {
  text-transform: none;
}
/*anchor stlyes*/
a {
  color: #304185;
  font-family: 'Oswald', sans-serif;
}
a:hover {
  color: #fdd11c;
  text-decoration: none;
}
a:focus,
a:visited,
a:link {
  outline: none;
  border: none;
  filter: none;
  text-decoration: none;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #304185;
  color: white;
  text-transform: uppercase;
  border: none;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
#main_column form .btn:active {
  outline: none;
  border: none;
  filter: none;
  text-decoration: none;
  color: white;
}
.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: #304185;
  color: #fdd11c;
}
#main_column form .btn {
  float: none;
  margin: 0 auto;
  margin-top: 34px;
  font-size: 28px;
}
/*interior page content default styles */
#mobile-search-container {
  display: none;
}
@media (max-width: 1330px) {
  body .navbar .nav-pills {
    width: 96%;
  }
  body .navbar #search {
    right: 56px !important;
  }
  body .navbar #search.showme {
    width: 91%;
  }
  body .press-container .social-media-row .twitter-feed #twitter {
    height: 591px;
  }
  body .press-container .social-media-row .twitter-feed #twitter .tweet:last-child {
    display: none;
  }
  body .press-container .social-media-row .youtube-feed .video iframe {
    height: 382px;
  }
}
@media (max-width: 1200px) {
  body #main_container {
    padding: 0 15px !important;
    padding-top: 70px !important;
  }

  @media (max-width: 654px) {
    body #main_container {
      padding: 0 15px !important;
      padding-top: 15px !important;
    }
  }
  body .container.altered-container {
    width: 100%;
  }
  body #header .logo a {
    margin-left: 31px;
  }
  body #header .social-col {
    padding: 22px 0px 0px 0px;
  }
  body .action-bar .social-col {
    padding-left: 0px;
    padding-right: 0px;
  }
  body .action-bar .social-col .social-list li {
    height: 85px;
    width: 85px;
  }
  body .action-bar .social-col .social-list li a {
    padding: -1px 22px 19px 19px;
  }
  body .action-bar .social-col .social-list li a .socicon {
    font-size: 40px;
  }
  body .navbar {
    width: 521px;
    float: right;
  }
  body .navbar .nav-pills {
    width: 495px;
    padding-left: 15px;
    float: left;
  }
  body .navbar .nav-pills > li {
    width: 122px;
  }
  body .navbar .nav-pills > li a {
    font-size: 18px;
    padding-right: 0px;
  }
  body .navbar .nav-pills > li a:after {
    margin-left: 8px;
  }
  body .navbar .srchbutton span {
    /*position: relative;
					float:left;
					font-size: 18px;*/
    font-size: 18px;
    float: left;
  }
  @-moz-document url-prefix() {
    body .navbar .srchbutton span {
      margin-left: 0px;
    }
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
					a{
						img{


						}
							&:nth-child(2){
								margin: 0px 2.2em;
							}
					}
					}*/
  }
  body .press-container .social-media-row .twitter-feed #twitter {
    height: 30em;
  }
  body .press-container .social-media-row .twitter-feed #twitter .tweet {
    font-size: 18px;
  }
  body .press-container .social-media-row .youtube-feed .video iframe {
    height: 392px;
  }
  body footer .container {
    width: 100%;
  }
}
@media (max-width: 1125px) {
  body #header .social-col .social-list {
    float: right;
    margin-right: 21px;
  }
  body .navPath {
    margin-left: 0px;
  }
  body .navbar {
    max-width: 520px;
  }
  body .action-bar .social-col .social-list {
    padding-top: 5px;
  }
  body .action-bar .social-col .social-list li a .socicon {
    font-size: 36px;
  }
  body .action-bar .newsletter input {
    width: 314px;
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
			a{
						img{


						}
							&:nth-child(2){

							}
					}
					}*/
  }
  body .press-container .social-media-row .twitter-feed #twitter .tweet {
    font-size: 17px;
  }
  body .press-container .social-media-row .youtube-feed .video iframe {
    height: 392px;
  }
  body .office-locations .location {
    height: 234px;
  }
  body .office-locations .location .reveal {
    padding: 28px !important;
  }
}
@media (max-width: 991px) {
  body #cerabox {
    display: none!important;
  }
  body #cerabox-background {
    display: none!important;
  }
  body #cerabox-loading {
    display: none!important;
  }
  body .modal .modal-dialog {
    z-index: 2000;
  }
  body .modal .modal-dialog .modal-content .modal-body ul li a {
    color: #304185 !important;
    font-size: 35px !important;
  }
  body .modal .modal-dialog .modal-content .modal-body ul li a:hover {
    color: #fdd11c !important;
  }
  body .modal .modal-dialog .modal-content .modal-header button span {
    color: #fdd11c;
    font-size: 70px;
  }
  body .navPath {
    padding-top: 19px;
  }
  body .navPath .navbar {
    width: auto;
    float: right;
  }
  body .navPath .navbar .togglemenu {
    font-size: 28px;
    margin-right: 0.5em;
  }
  body .navPath .navbar .srchbuttonmodal span {
    font-size: 27px;
    position: absolute;
    left: -40px;
    padding: 6px;
  }
  body .action-bar .social-col {
    text-align: center;
    padding-top: 14px;
    padding-bottom: 20px;
  }
  body .action-bar .social-col .social-list {
    padding-top: 5px;
  }
  body .action-bar .newsletter {
    padding-left: 0px;
    text-align: center;
  }
  body .action-bar .newsletter input {
    width: 365px;
  }
  @-moz-document url-prefix() {
    body .action-bar .newsletter {
      position: relative;
    }
  }
  body .presslinks {
    max-width: 56%;
  }
  body .press-container .featured-press .press-block {
    height: 100%;
  }
  body .press-container .featured-press .press-block h2 {
    position: relative;
    bottom: 0;
  }
  body .press-container .featured-press .press-image-block {
    overflow: hidden;
  }
  body .press-container .featured-press .press-image-block img {
    position: relative;
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
			a{
						img{


						}
							&:nth-child(2){
								margin:0 4.1em
							}
					}
					}*/
  }
  body .press-container .social-media-row .twitter-feed {
    height: 631px;
    text-align: center;
    padding: 0;
    padding-top: 50px;
  }
  body .press-container .social-media-row .twitter-feed #twitter {
    height: 100%;
    overflow: overlay;
    width: 100%;
    padding-bottom: 10px;
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
  }
  body .press-container .social-media-row .twitter-feed #twitter .tweet {
    font-size: 17px;
  }
  body .press-container .social-media-row .youtube-feed .video iframe {
    height: 392px;
  }
  body .office-locations .location {
    height: 234px;
  }
  body .office-locations .location .reveal {
    padding: 17px !important;
  }
  body footer ul.list-unstyled {
    text-align: center;
    padding-left: 17%;
    width: 84%;
  }
  body footer ul.list-unstyled .social-list {
    position: relative;
    padding-top: 20px;
    margin-top: 0px;
    margin-left: 0px;
  }
  body#home .navbar {
    margin-right: 43px;
  }
  .navPath {
    float: right;
  }
}
@media (max-width: 767px) {
  body .featured-banner {
    overflow: hidden;
  }
  body .featured-banner .banner-gradient .featured-title {
    bottom: 20px;
    right: 29px;
  }
  body .featured-banner .banner-gradient .featured-title .title {
    font-size: 48px;
  }
  body .featured-banner .banner-gradient .featured-title .title .title-emphasis {
    font-size: 98px;
  }
  body .featured-banner #banner {
    width: initial;
  }
  body .navPath .navbar .srchbuttonmodal span {
    left: -45px;
  }
  body .action-bar .newsletter {
    padding-left: 0px;
    text-align: center;
  }
  body .action-bar .newsletter input {
    width: 378px;
    margin-left: 136px;
  }
  body .action-bar .newsletter .submit {
    margin-top: -69px;
    margin-left: 153px;
    position: absolute;
  }
  body .presslinks {
    max-width: 54%;
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
						a{
							img{


							}
							&:nth-child(2){
								margin: 0px 2.8em;
							}
						}
					}*/
  }
  body .office-locations {
    display: none;
  }
  body footer ul.list-unstyled {
    text-align: center;
    width: 100%;
    padding-left: 0px;
  }
  body footer ul.list-unstyled li .footer-links {
    font-size: 17px;
  }
  body footer ul.list-unstyled li.hidden-link {
    display: block;
  }
}
@media (max-width: 654px) {
  body .top,
  body#home .top {
    margin-top: 35px;
  }
  body #header,
  body#home #header {
    height: auto;
    background: #304185 url(/themes/peters/images/mobile/header-bg.jpg) no-repeat;
  }
  body #header .logoPath,
  body#home #header .logoPath {
    float: right;
    margin: 0;
    padding: 0 15px 0 0;
  }
  body #header .logoPath .logo,
  body#home #header .logoPath .logo {
    float: right;
    margin: 0 15px 0 0;
  }
  body #header .logoPath .logo a,
  body#home #header .logoPath .logo a {
    margin: 9px 0 0 30px;
    width: 191px;
    height: 50px;
    background-image: url(/themes/peters/images/mobile/logo.png);
    background-size: 100% 100%;
  }
  body #header .navPath,
  body#home #header .navPath {
    float: left;
    margin: 0;
    padding: 0 0 0 15px;
  }
  body #header .navPath .navbar,
  body#home #header .navPath .navbar {
    float: left;
    margin: 0 0 0 15px;
    background: transparent;
  }
  body #header .navPath .navbar .srchbuttonmodal,
  body#home #header .navPath .navbar .srchbuttonmodal {
    display: none !important;
  }
  body #header .navPath .navbar .togglemenu,
  body#home #header .navPath .navbar .togglemenu {
    font-size: 50px;
    color: #fff;
  }
  body #header .navPath .navbar .togglemenu .menulabel,
  body#home #header .navPath .navbar .togglemenu .menulabel {
    display: none;
  }
  body #header #mobile-search-container,
  body#home #header #mobile-search-container {
    display: block;
  }
  body #header #mobile-search-container #mobile-search,
  body#home #header #mobile-search-container #mobile-search {
    width: 100%;
    font-size: 25px;
    border-radius: 0;
  }
  body .container.altered-container {
    padding: 0px;
  }
  body .action-bar .newsletter input {
    margin-left: 80px;
    width: 360px;
  }
  body .action-bar .newsletter .submit {
    margin-left: 125px;
  }
  body .action-bar .social-col .social-list li {
    width: 70px;
    height: 70px;
  }
  body .action-bar .social-col .social-list li a {
    padding: -1px 14px 12px 14px;
  }
  body .action-bar .social-col .social-list li a .socicon {
    font-size: 30px;
  }
  body .action-bar .social-col .social-list li.youtube a img {
    width: 39px;
  }
  body .top #featured #featuredCarousel .item {
    height: 100%;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 42px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
    font-size: 86px;
  }
  body .presslinks {
    max-width: 64%;
  }
  body .press-container {
    margin: 40px 25px;
  }
  body .press-container .featured-press .press-image-block {
    height: 100%;
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
						a:nth-child(2){
							margin:0px 2.8em;
						}
					}*/
  }
  body .press-container .social-media-row .youtube-feed .video iframe {
    height: 284px;
  }
  body .press-container .social-media-row .twitter-feed #twitter {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  body#home .navbar {
    margin-right: 0px;
  }
}
@media (max-width: 505px) {
  body .navPath .navbar .togglemenu {
    font-size: 18px;
  }
  body .navPath .navbar .srchbuttonmodal span {
    font-size: 18px;
    padding: 3px;
  }
  body .action-bar .newsletter input {
    margin-left: 46px;
    width: 278px;
  }
  body .action-bar .newsletter .submit {
    margin-left: 94px;
  }
  body .action-bar .social-col .social-list li {
    width: 50px;
    height: 50px;
  }
  body .action-bar .social-col .social-list li a .socicon {
    font-size: 20px;
  }
  body .action-bar .social-col .social-list li.youtube a img {
    width: 27px;
  }
  body .presslinks {
    max-width: 84%;
  }
  body .press-container .featured-press .press-image-block .press-image-link {
    position: relative;
  }
  body img.graduation {
    margin-top: 0px 55px 10px 4px !important;
  }
}
@media (max-width: 479px) {
  body#home .action-bar .newsletter #newsletter {
    clear: both;
    margin-top: 0;
    padding-top: 35px;
  }
  body .top #featured #featuredCarousel .item {
    height: 263px;
    min-height: 0;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 4rem;
    bottom: 7rem;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title {
    font-size: 38px;
    white-space: pre-line;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
    font-size: 65px;
  }
  body .presslinks {
    max-width: 89%;
    margin: auto;
  }
  body .action-bar .newsletter input {
    margin-left: 46px;
    width: 243px;
  }
  body .action-bar .newsletter .submit {
    margin-left: 72px;
  }
  body .action-bar .social-col .social-list li a .socicon {
    font-size: 21px;
  }
  body .press-container .social-media-row .instagram-feed {
    /*#instamedia{
					a{
						img{
							width:25%;
						}
					}
				}*/
  }
  body .press-container .featured-press .press-block h2 {
    bottom: 30px;
  }
  .offices {
    margin: 0px auto;
  }
  .videoiframe {
    height: 250px;
  }
  body .press-container .social-media-row .twitter-feed {
    display: none;
  }
  body .press-container .featured-press .press-block h2 {
    position: static;
  }
  body .press-container .featured-press .press-image-block img {
    display: none;
  }
}
@media (max-width: 394px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    bottom: 5rem;
  }
}
@media (max-width: 350px) {
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 1rem;
    bottom: 4rem;
  }
}
@media (max-width: 330px) {
  body .navPath .navbar .togglemenu {
    font-size: 28px;
    margin-right: 0em;
  }
  .btn-lg {
    padding: 10px;
    font-size: 16px;
  }
}
/* ----------- iPhone 4 and 4S ----------- */
/* Portrait and Landscape */
/* Portrait */
/* Landscape */
/* ----------- iPhone 5 and 5S ----------- */
/* Portrait and Landscape */
/* Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body .top #featured #featuredCarousel .item {
    height: 240px!important;
    background-position: center center;
    min-height: 0!important;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 15px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title {
    font-size: 28px!important;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
    font-size: 50px!important;
  }
  body .action-bar .newsletter #newsletter {
    margin-top: 380px;
  }
}
/* Landscape */
/* ----------- iPhone 6 ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  body .action-bar .newsletter #newsletter {
    margin-top: 235px;
  }
}
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body .top #featured #featuredCarousel .item {
    height: 195px!important;
    background-position: center center;
    min-height: 0!important;
    background-size: contain;
    position: relative;
  }

  body .top, body#home .top {
    margin-top: 0px;
  }

  body .top #featured #featuredCarousel .carousel-inner {
    padding-top: 0px;
  }

  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 15px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title {
    font-size: 28px!important;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
    font-size: 50px!important;
  }
  body .action-bar .newsletter #newsletter {
    margin-top: 235px;
  }
}
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body .action-bar .newsletter #newsletter {
    margin-top: 235px;
  }
}
/* ----------- iPhone 6+ ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
  body .action-bar .newsletter #newsletter {
    margin-top: 235px;
  }
}
/* Portrait */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
  body .top #featured #featuredCarousel .item {
    height: 290px!important;
    background-position: center center;
    min-height: 0!important;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title {
    right: 15px;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title {
    font-size: 28px!important;
  }
  body .top #featured #featuredCarousel .item .carousel-caption .banner-gradient .featured-title .title .title-emphasis {
    font-size: 50px!important;
  }
  body .action-bar .newsletter #newsletter {
    margin-top: 135px;
  }
}
/* Landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  body .action-bar .newsletter #newsletter {
    margin-top: 535px;
  }
}
@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
  body .action-bar .newsletter #newsletter {
    margin-top: 35px;
  }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* For portrait layouts only */
  body .action-bar .newsletter #newsletter {
    margin-top: 35px;
  }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* For landscape layouts only */
  body .action-bar .newsletter #newsletter {
    margin-top: 35px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie {
  /*	@media screen and (max-width: 991px) {
		body .action-bar .newsletter{
			position: relative;
			margin-top: 620px;

		}
		body .action-bar .newsletter #newsletter{
			padding-top: 35px;
		}


	}
	body .altered-container .top{
			margin-top: -66px;
		}*/
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .ie body .action-bar .newsletter .submit {
    margin-left: 500px;
  }
}
@media screen and (max-width: 654px) {
  .ie {
    /*body .action-bar .newsletter{
			margin-top: 450px;

		}*/
  }
  .ie body .action-bar .newsletter .submit {
    margin-left: 430px;
  }
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@media print {
  html body #sam-main .offices {
    display: block;
  }
  html body #sam-main .offices .locations {
    height: 450px;
    width: 450px;
    border: 1px solid black;
    margin: 0px 200px;
  }
  html body #sam-main .offices .locations .reveals {
    padding: 32px;
    opacity: 1!important;
    margin: 0px 0px;
    font-size: 20px;
    color: #000;
    position: absolute;
  }
  html body #sam-main .offices .locations .reveals .tels dd {
    font-size: 12px;
    text-align: center!important;
    margin-left: 0px;
  }
  html body #sam-main .offices .locations .reveals .addr {
    margin: 80px 20px;
  }
  html body #sam-main .offices .locations .reveals .addr strong,
  html body #sam-main .offices .locations .reveals .addr a {
    display: none;
  }
  html body .newsletter {
    display: none;
  }
  html body .social-col {
    display: none;
  }
  html body .press-container {
    margin-top: 100px;
  }
  html body .press-container .featured-press .press-image-block img {
    display: none!important;
  }
  html body .press-container .press-block h2 {
    line-height: 50px!important;
    margin-top: 50px;
  }
  html body .press-container .featured-press .press-image-block .press-image-link {
    line-height: 30px;
    margin: 110px 0px!important;
  }
  html body .social-media-row {
    display: none;
  }
  html body .office-locations {
    display: block!important;
  }
  html body .office-locations .location .reveal {
    padding-top: 0px;
    opacity: 1!important;
    margin: -30px 0px;
    font-size: 20px;
    text-align: center;
  }
  html body .office-locations .location .reveal .tel dd {
    font-size: 20px;
    text-align: center!important;
    margin-left: 290px;
  }
  html body .office-locations .location .reveal .adr strong,
  html body .office-locations .location .reveal .adr a {
    display: none;
  }
  html body .office-locations h3 {
    margin-top: 0px;
    padding-top: 0px!important;
  }
  html body.newsroom_landing #videos {
    display: none;
  }
}
body.option1 {
  background: url("/themes/peters/images/popup.png") no-repeat scroll 0 0 !important;
  background-size: cover;
  /*overflow: hidden !important;*/
}
body.option1 .bodytwo {
  height: 100%;
  width: 100%;
  left: 0px;
  background-size: cover;
  top: 0px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}
.option1 .body {
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 29px !important;
  margin: 0px 129px;
}
.option1 .body h1 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-size: 55px;
  font-weight: normal;
  line-height: 62px;
  color: #fff;
  margin: 96px 15px;
  padding-right: 30px;
}
.option1 .body input[type="text"],
.option1 .body select {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  float: left;
  padding: 1px 22px;
  margin: 0px 5px;
}
.option1 .body input[id="email"],
.option1 .body textarea,
.option1 .body select {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin: 10px 5px;
  padding-right: 12.17em;
}
.option1 .body input[id="city"],
.option1 .body textarea,
.option1 .body select {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin: 0px 5px;
  padding: 1px 22px;
}
.option1 .body select[id="state"],
.option1 .body textarea,
.option1 .body select {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin: 0px 5px;
  border: 1px;
  background: url("/themes/peters/images/dropdown.png") no-repeat 90% center;
  height: 47px;
  width: 308px;
  text-transform: uppercase;
  color: #3B3B3B;
  -webkit-appearance: none;
  border-radius: 0px;
}
.option1 .body p {
  font-size: 40px;
  line-height: 40px;
  margin-top: 3em;
  margin-left: -1em;
  text-align: center;
}
.option1 .body input[type="submit"] {
  padding: 1px 9.58em;
  font-size: 28px;
  margin: 60px 5px;
  background-color: #212637;
  cursor: pointer;
}
@-moz-document url-prefix() {
  .option1 .body {
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 29px !important;
    margin: 0px 129px;
  }
  .option1 .body h1 {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    font-size: 55px;
    font-weight: normal;
    line-height: 62px;
    color: #fff;
    margin: 96px 15px;
    padding-right: 30px;
  }
  .option1 .body input[type="text"],
  .option1 .body select {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    float: left;
    padding: 1px 1.11em;
    margin: 0px 5px;
  }
  .option1 .body input[id="email"],
  .option1 .body textarea,
  .option1 .body select {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin: 10px 5px;
    padding-right: 12.619em;
  }
  .option1 .body input[id="city"],
  .option1 .body textarea,
  .option1 .body select {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin: 0px 5px;
    padding: 1px 1.11em;
  }
  .option1 .body select[id="state"],
  .option1 .body textarea,
  .option1 .body select {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin: 1px 5px;
    border: 1px;
    background: url("/themes/peters/images/dropdown.png") no-repeat 90% center;
    height: 50px;
    width: 311px;
    text-transform: uppercase;
    color: #3B3B3B;
    -moz-appearance: none;
    border-radius: 0px;
  }
  .option1 .body p {
    font-size: 40px;
    line-height: 40px;
    margin-top: 3em;
    margin-left: -1em;
    text-align: center;
  }
  .option1 .body input[type="submit"] {
    padding: 1px 9.58em;
    font-size: 28px;
    margin: 60px 5px;
    background-color: #212637;
    cursor: pointer;
  }
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow,
.fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-size: 18px;
  color: #464646;
}

.alert{
  padding: 8px;
  border: none;
  border-radius: 0px;
  position: relative;
  background-color: #B41026;
  display: table;
  width: 100%;
  vertical-align: middle;
}

.alert.two{
  background-color: #23a513;
}

.alert .alertIcn{
  display: table-cell;
  vertical-align: middle;
  color: white;
  font-size: 30px;
}

.alert .headline{
  display: table-cell;
  vertical-align: middle;
  color: white;
}

.alert .headline a{
  color: white;
  text-decoration: none;
  font-size: 22px;
}

#sam-main .youtubevideo{
  
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56%;

}

#sam-main .youtubevideo iframe{

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;

}

body#info .navbuttons{
  padding: 2rem 0;
}

body#info .navbuttons .btn{
  padding: 2rem 0;
}

body#info .navbuttons .btn.active{
background-color: #1d2752;
color: #fecc0e;
}


body#info .faqsection{
  border-top: 10px solid rgba(0, 0, 0, 0.05);
  border-bottom: 10px solid rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
  padding: 1rem 2rem;
  margin-bottom: 5rem;
  margin-top: 5rem;

}

@media (max-width:767px){
  body#info .faqsection{
    display: table;
    width: 100%;
    padding: 0px;
  }
}

body#info .faqsection .faqheader{

  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 34px;
  font-weight: bold;
  color: #363636;

}

body#info .faqsection .panel{
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}


body#info .faqsection .panel-heading{
  color: #363636;
  background-color: transparent;
  border-color: #cc3e32;
  border-radius: 0;
  border: 0;
  border-bottom: 5px solid #cc3e32;
}
body#info .faqsection .panel-title{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  color: #cc3e32;
}

body#info .faqsection .panel-heading a{

  text-decoration: none;
  display: block;

}

body#info .faqsection .panel-heading a:hover .panel-title{
  color: #363636;
}

body#info .faqsection .panel-heading .panel-title{
  color:#cc3e32;
}

body#info .faqsection .panel-heading .panel-title .pull-right .fa{
  color: #363636;
}

body#info .faqsection .panel-collapse .panel-body{
  border-bottom: 5px solid #f8f8f9;
}

body#info .faqsection .panel-collapse .panel-body ul{
margin-top: 10px;
}


body#info .faqsection .panel-collapse .panel-body p{
  margin-bottom: 10px;
}

.boxitem{
  margin-bottom: 3rem;
  overflow: hidden;
position: relative;
display: block;
}

.boxitem .issuebox {

  padding: 3rem;
  display: table;
  width: 100%;
  text-align: center;
  height: 370px;
  background-color: #304185;
  position: relative;
  overflow: hidden;
  transition: all .2s ease-in-out;

}

.boxitem .issuebox .issuelink{

  display: table-cell;
  vertical-align: middle;

}

.boxitem .issuebox .issuelink .titleholder{
color: white;
}

.boxitem .issuebox .readmorehold{
  width: 100%;
  max-width: 130px;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: -8.5rem;
  left: 0;
  right: 0;
  transition: all .2s ease-in-out;
}

.boxitem .issuebox .readmorehold .readmore{
  background-color: #fecc0e!important;
  color: white;
}

.boxitem .issuebox:hover{
  background-color:#212739;
  }

.boxitem .issuebox:hover .readmorehold{
bottom: 2.5rem;
}




/*# sourceMappingURL=common.css.map */