/* 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.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 .btn,
#SearchModal .modal-dialog .modal-content .btn,
#ContactModal .modal-dialog .modal-content .btn {
  background: #d7512d;
  color: #fff;
}
#NavMobileModal .modal-dialog .modal-content .btn:hover,
#SearchModal .modal-dialog .modal-content .btn:hover,
#ContactModal .modal-dialog .modal-content .btn:hover {
  background: #464646;
  color: #fff;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close,
#SearchModal .modal-dialog .modal-content .modal-header .close,
#ContactModal .modal-dialog .modal-content .modal-header .close {
  color: #e84242;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  color: #114768;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a:hover,
#SearchModal .modal-dialog .modal-content .modal-body a:hover,
#ContactModal .modal-dialog .modal-content .modal-body a:hover {
  color: #e84242;
}
body #header {
  position: fixed;
  height: 64px;
  width: 100%;
  z-index: 1039;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
  top: 0px;
  border-top-color: #e84242;
  border-top-style: solid;
  border-top-width: 2px;
}
body #header .container .logo {
  float: left;
  margin: 0px 40px 0 0px;
  width: 250px;
  height: 45px;
}
body #header .container .logo a {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 5px;
  background: url('/themes/perdue/images/logo.jpg');
  background-size: cover;
  text-indent: -10000px;
}
body #header .container .socicons {
  float: right;
  margin: 21px 0 0 0;
}
body .navbar {
  float: left;
  margin: 12px 0 0 0;
}
body .navbar .nav-pills {
  float: left;
  margin-right: 20px;
}
body .navbar .nav-pills > li a {
  padding: 0 20px;
  font: normal normal normal 18px/40px 'NHaasGroteskDSW01-75Bd';
  color: #114768;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #114768;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  color: #e84242;
}
body .navbar .nav-pills > li.selected a,
body .navbar .nav-pills > li:hover a {
  background: none;
  color: #e84242;
}
body .navbar .srchbutton {
  float: right;
}
body .navbar .srchbutton span {
  font-size: 15px;
  line-height: 37px;
  color: #114768;
}
body .navbar .srchbutton span:hover {
  color: #e84242;
}
body .navbar #search {
  position: absolute;
  float: left;
  right: 20px;
  width: 0;
  overflow: hidden;
  -webkit-transition: width ease-in 0.15s;
  -moz-transition: width ease-in 0.15s;
  -o-transition: width ease-in 0.15s;
  -ms-transition: width ease-in 0.15s;
  transition: width ease-in 0.15s;
}
body .navbar #search.showme {
  width: 95%;
}
body .navbar #search #sitesearch {
  float: left;
  height: 40px;
  width: 100%;
  padding-top: 0px;
}
body .navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  height: 38px;
  border: 1px solid #eee;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: inherit;
  filter: none;
}
body .navbar #search #sitesearch button {
  position: absolute;
  right: 0px;
  color: #fff;
  width: 39px;
  height: 38px;
  border: none;
  font-size: 15px;
  line-height: 36px;
  background-color: #114768;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #SearchModal .modal-dialog .modal-content .modal-body #searchpopup #sitesearch #search-field {
  border: 1px solid #ebebeb;
  line-height: 42px;
}
body #SearchModal .modal-dialog .modal-content .modal-body #searchpopup #sitesearch button {
  height: 64px;
  background-color: #e84242;
}
#home #header .container {
  padding: 0 15px;
}
#home .top {
  height: 602px;
}
#home .top #featured-carousel {
  position: relative;
  height: 602px;
}
#home .top #featured-carousel .item {
  height: 602px;
  background-size: cover;
  background-position: center center;
}
#home .top #featured-carousel h2 {
  position: absolute;
  bottom: 50px;
  margin: 0 250px;
  font: normal normal normal 45px/1.2em 'NHaasGroteskDSW01-75Bd';
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
#home .top #featured-carousel h2 a {
  color: #fff;
}
#home .top #featured-carousel h2 a:hover {
  color: #d7512d;
  text-decoration: none;
}
#home .top #featured-carousel h2#tagline {
  margin: 0;
  top: 82px;
  left: 91px;
  text-transform: uppercase;
  text-align: left;
  text-shadow: none;
  display: none;
}
#home .top #featured-carousel h2#tagline #tagline-top {
  margin-bottom: 8px;
  padding-left: 25px;
  font-family: 'NHaasGroteskDSW01-45Lt';
  font-size: 28px;
  letter-spacing: 28px;
  text-align: center;
  color: #114768;
}
#home .top #featured-carousel h2#tagline #tagline-btm {
  font-family: 'NHaasGroteskDSW01-96Blk';
  font-size: 74px;
  color: #114768;
}
#home .top #featured-carousel h2#tagline #tagline-btm span {
  color: #e84242;
}
#home .top .carousel-control img {
  position: absolute;
  top: 45%;
}
#home .top .left {
  left: 15px;
}
#home .top .right {
  right: 15px;
}
#home #featured-issues .tbl {
  display: table;
  width: 100%;
}
#home #featured-issues .tbl a {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px;
  width: 100%;
  height: 100px;
  font-size: 22px;
  text-align: center;
  color: #fff;
  background-color: #114768;
}
#home #featured-issues .tbl a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #e84242;
}
#home #featured-issues .tbl #newsletter-signup {
  padding-left: 80px;
  background: #e84242 url(../images/home/chevrons.png) no-repeat right 0;
  font-family: 'NHaasGroteskDSW01-65Md';
  font-size: 20px;
  text-align: left;
  color: #fff;
}
#home #featured-issues .tbl #newsletter-signup span {
  display: block;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}
#home #featured-issues .tbl #newsletter-signup.open {
  background-position: right -100px;
}
#home #featured-issues .tbl #newsletter-signup:focus {
  text-decoration: none;
}
#home #featured-issues .tbl #newsletter-signup-container {
  position: absolute;
  padding-left: 5px;
  width: 0px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 99999;
  background-color: #e84242;
  color: white;
  opacity: 0;
}
#home #featured-issues .tbl #newsletter-signup-container #newsletter-form {
  -webkit-transition: opacity ease-in 0.1s;
  -moz-transition: opacity ease-in 0.1s;
  -o-transition: opacity ease-in 0.1s;
  -ms-transition: opacity ease-in 0.1s;
  transition: opacity ease-in 0.1s;
}
#home #featured-issues .tbl #newsletter-signup-container #newsletter-form .top {
  height: auto;
}
#home #featured-issues .tbl #newsletter-signup-container #newsletter-form .top .popover-content {
  padding: 7px 5px;
  font-size: 11px;
  color: #464646;
}
#home #featured-issues .tbl #newsletter-signup-container .col {
  float: left;
  padding: 33px 5px 0 5px;
  width: 20%;
}
#home #featured-issues .tbl #newsletter-signup-container .col input {
  width: 100%;
  font-size: .75em;
  color: #464646;
}
#home #featured-issues .tbl #newsletter-signup-container .col button {
  float: left;
  margin-top: 1px;
  padding: 7px 9px;
  border: 1px solid #114768;
  border-radius: 5px;
  font: normal normal normal 15px/1 'NHaasGroteskDSW01-75Bd';
  text-transform: uppercase;
  color: #114768;
  background-color: #fff;
}
#home #featured-issues .tbl #newsletter-signup-container .col button:hover {
  border-color: #114768;
  background-color: #114768;
  color: #fff;
}
#home #featured-issues .tbl #newsletter-signup-container #newsletter-confirmation {
  position: absolute;
  padding-left: 10px;
  opacity: 0;
  -webkit-transition: opacity ease-in 0.1s;
  -moz-transition: opacity ease-in 0.1s;
  -o-transition: opacity ease-in 0.1s;
  -ms-transition: opacity ease-in 0.1s;
  transition: opacity ease-in 0.1s;
  font: normal normal normal 22px/100px 'NHaasGroteskDSW01-75Bd';
}
#home #featured-issues .tbl #newsletter-signup-container #newsletter-confirmation .newsletter-close {
  float: none;
  top: -2px;
  line-height: 29px;
}
#home #featured-issues .tbl #newsletter-signup-container.submitted #newsletter-form {
  opacity: 0;
}
#home #featured-issues .tbl #newsletter-signup-container.submitted #newsletter-confirmation {
  opacity: 1;
}
#home #featured-issues .tbl #newsletter-signup-container .newsletter-close {
  display: inline-block;
  position: relative;
  top: 3px;
  float: left;
  margin-left: 7px;
  padding: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-size: 12px;
  color: #e84242;
  background-color: #fff;
}
#home #featured-issues .tbl #newsletter-signup-container .newsletter-close span {
  top: 0;
  line-height: 1;
}
#home #featured-issues .tbl #newsletter-signup-container .newsletter-close:hover {
  color: #fff;
  background-color: #114768;
}
#home #featured-issues .tbl .last {
  border-left: 1px solid #fff;
}
#home #featured-press {
  height: 400px;
}
#home #featured-press .col {
  padding: 75px 15px 80px 15px;
  background: no-repeat;
}
#home #featured-press .col #release {
  background-repeat: no-repeat;
  background-size: cover;
  border-right: 2px solid white;
  border-left: 1px solid white;
  height: 200px;
  padding: 30px;
}
#home #featured-press .col a {
  font-size: 18px;
  line-height: 1.4em;
  color: #fff;
  text-align: center;
  position: absolute;
  margin-left: -30px;
  padding: 15px;
  margin-top: 160px;
  background-color: #114768;
  width: 100%;
}
#home #featured-press .col a date {
  font-family: 'NHaasGroteskDSW01-45Lt';
}
#home #featured-press .col a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #e84242;
}
#home #debt-clock-container {
  margin-bottom: 70px;
  height: 124px;
  background: #e84242 url(/themes/perdue/images/home/debt-clock.png);
  color: #fff;
}
#home #debt-clock-container h3 {
  font-family: 'NHaasGroteskDSW01-95Blk';
  text-align: center;
}
#home #debt-clock-container #debt-clock {
  text-align: center;
}
#home #debt-clock-container #debt-clock span {
  display: inline-block;
  margin-left: 2px;
  font-family: 'Bebas W00 Regular';
  font-size: 24px;
  line-height: 45px;
}
#home #debt-clock-container #debt-clock .numeral {
  width: 30px;
  color: #114768;
  text-align: center;
  background-color: #fff;
}
#home #debt-clock-container #debt-clock .comma {
  position: relative;
  top: 10px;
  margin: 0 1px 0 3px;
}
#home #debt-clock-container #debt-clock .currency {
  margin-right: 2px;
}
#home #services-bar {
  background-color: #f5f5f4;
}
#home #services-bar .col {
  float: left;
  padding: 0;
}
#home #services-bar .col .tbl {
  display: table;
  width: 100%;
}
#home #services-bar .col .tbl a {
  display: table-cell;
  padding: 30px 25px 0 25px;
  width: 100%;
  height: 205px;
  vertical-align: middle;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 20px;
  line-height: 1.1em;
  text-align: center;
  color: #114768;
  -webkit-transition: background-color ease-in 0.1s;
  -moz-transition: background-color ease-in 0.1s;
  -o-transition: background-color ease-in 0.1s;
  -ms-transition: background-color ease-in 0.1s;
  transition: background-color ease-in 0.1s;
}
#home #services-bar .col .tbl a:hover {
  text-decoration: none;
  color: #e84242;
}
#home #services-bar .col .tbl a .background-image {
  width: 100%;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: -10px;
  margin-left: 0px;
}
#home #services-bar .col .tbl #casework {
  display: table-cell;
  padding: 10px 60px 0 60px;
  height: 205px!important;
  vertical-align: middle;
  width: 100%;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/casework.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #casework:hover {
  background-image: url(../images/home/caseworkRO.png);
}
#home #services-bar .col .tbl #casework .icontext {
  text-align: center;
}
#home #services-bar .col .tbl #tours {
  display: table-cell;
  padding: 10px 43px 0 43px;
  height: 205px!important;
  vertical-align: middle;
  width: 100%;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/tours.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #tours:hover {
  background-image: url(../images/home/toursRO.png);
}
#home #services-bar .col .tbl #nominations {
  display: table-cell;
  padding: 30px 22px 0 27px;
  width: 219px;
  height: 205px!important;
  vertical-align: middle;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/nominations.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #nominations:hover {
  background-image: url(../images/home/nominationsRO.png);
}
#home #services-bar .col .tbl #flags {
  display: table-cell;
  padding: 10px 38px 0 42px;
  height: 205px!important;
  vertical-align: middle;
  width: 100%;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/flags.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #flags:hover {
  background-image: url(../images/home/flagsRO.png);
}
#home #services-bar .col .tbl #internships {
  display: table-cell;
  padding: 10px 59px 0 58px;
  height: 205px!important;
  vertical-align: middle;
  width: 100%;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/internships.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #internships:hover {
  background-image: url(../images/home/internshipsRO.png);
}
#home #services-bar .col .tbl #scheduling {
  display: table-cell;
  padding: 30px 25px 0 25px;
  width: 211px;
  height: 205px!important;
  vertical-align: middle;
  height: 100px;
  background-position: center 33px;
  margin-bottom: 10px;
  margin-left: 0px;
  background-image: url(../images/home/scheduling.png);
  background-repeat: no-repeat;
}
#home #services-bar .col .tbl #scheduling:hover {
  background-image: url(../images/home/schedulingRO.png);
}
#home .social-row .icons {
  padding-bottom: 40px;
  text-align: center;
}
#home .social-row .icon {
  margin: 0 auto;
  padding: 10px 12px;
  border-width: 1px;
  border-style: solid;
  border-radius: 30px;
  font-size: 30px;
  color: #fff;
}
#home .social-row .carousel .item {
  padding: 0 100px;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 28px;
  line-height: 1.4em;
  text-align: center;
}
#home .social-row .carousel .item .meta {
  font-family: 'NHaasGroteskDSW01-45Lt';
}
#home .social-row .carousel .left,
#home .social-row .carousel .right {
  background-image: none;
}
#home .social-row .carousel .carousel-control img {
  position: relative;
  top: 80px;
}
#home #social-top {
  padding: 85px 0;
  min-height: 500px;
  background: url(../images/home/vr.png) no-repeat center center;
}
#home #social-top .icons .twitter {
  border-color: #4099ff;
  color: #fff;
  background-color: #4099ff;
}
#home #social-top .icons .twitter:hover {
  color: #4099ff;
  background-color: #fff;
}
#home #social-top .icons .facebook {
  border-color: #3b5998;
  background-color: #3b5998;
}
#home #social-top .icons .facebook:hover {
  color: #3b5998;
  background-color: #fff;
}
#home #social-top .carousel .item a {
  word-wrap: break-word;
}
#home #social-top #facebook-carousel .item a {
  color: #114768;
}
#home #social-top #facebook-carousel .item a:hover {
  color: #e84242;
  text-decoraton: none;
}
#home #social-bottom .you-tube {
  border-color: #e84242;
  background-color: #e84242;
}
#home #social-bottom .you-tube:hover {
  background-color: #fff;
  color: #e84242;
}
#home #social-bottom .flickr-icon {
  border-color: #d3d5d8;
  background-color: #fff;
}
#home #social-bottom .flickr-icon div {
  position: relative;
  top: 5px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/home/flickr.png);
  background-position: center center;
  background-repeat: no-repeat;
}
#home #social-bottom .flickr-icon:hover {
  border-color: #346db4;
}
#home #social-bottom .carousel {
  background-color: #000;
}
#home #social-bottom .carousel .item {
  padding: 0;
  height: 375px;
}
#home #social-bottom .carousel .item .tbl {
  display: table;
  width: 100%;
}
#home #social-bottom .carousel .item .tbl .tbl-cell {
  display: table-cell;
  height: 375px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  text-align: center;
  vertical-align: middle;
}
#home #social-bottom .carousel .item .tbl .tbl-cell .icon {
  margin: 0 auto;
}
#home #social-bottom .carousel .carousel-control img {
  position: relative;
  top: 80px;
}
#home #social-bottom .carousel .left img {
  top: 175px;
  left: 15px;
}
#home #social-bottom .carousel .right img {
  top: 175px;
  right: 15px;
}
#home #office-locations {
  padding: 85px 0 0 0;
}
#home #office-locations #office-locations-map {
  height: 357px;
  background: url(../images/home/map.png) no-repeat center center;
}
#home #office-locations #office-locations-map a {
  display: block;
  height: 357px;
}
#home #office-locations #locations {
  padding: 0 50px;
}
#home #office-locations #locations h3 {
  margin: 0 0 30px 0;
  font-family: 'NHaasGroteskDSW01-45Lt';
  font-size: 28px;
  line-height: 1;
  color: #114768;
}
#home #office-locations #locations h3 a {
  color: #114768;
}
#home #office-locations #locations h3 a:hover {
  color: #e84242;
  text-decoration: none;
}
#home #office-locations #locations h4 {
  margin: 0 0 .2em 0;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 22px;
  color: #e84242;
}
#home #office-locations #locations p {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7em;
  color: #114768;
}
/*
default interior styles

commonly made fixes / tweaks
*/
img.banner {
  width: 95%;
}
img.banner + #main_container {
  margin-top: 20px;
}
body#newsroom .modal-backdrop {
  z-index: 0;
}
body#newsroom .modal-dialog {
  z-index: 1500;
}
body#newsroom .modal-dialog .modal-content .btn {
  background: #e84242;
  color: #fff;
}
body#newsroom .modal-dialog .modal-content .btn:hover {
  background: #114768;
  color: #fff;
}
body#newsroom .modal-dialog {
  z-index: 1500;
}
.modal-backdrop {
  z-index: 0;
}
/*img.banner{
 	width:89%;
 }*/
img#issue-banner {
  max-width: 100%;
  display: block;
  margin: auto;
}
a.btn.btn-block.btn-lg {
  background: #e84242;
  color: #fff;
}
a.btn.btn-block.btn-lg:hover {
  background: #114768;
  color: #fff;
}
.btn-group-lg > .btn,
.btn-lg {
  background: #e84242;
  color: #fff;
}
.btn-group-lg > .btn:hover,
.btn-lg:hover {
  background: #114768;
  color: #fff;
}
#voting_record .page .row {
  /* ----- */
}
span.date.black {
  display: block;
  position: relative;
  margin: 20px 0px 0px 0px;
}
div#asides {
  margin-top: 55px !important;
}
#asides .btn {
  background: #e84242;
  color: #fff;
}
#asides .btn:hover {
  background: #114768;
  color: #fff;
}
#main_column form .btn {
  background: #114768;
  color: #e84242;
}
#main_column form .btn:hover {
  background: #e84242;
  color: #fff;
}
#main_column form fieldset legend {
  font-size: 30px;
  padding-bottom: 10px;
}
#main_column label {
  font-weight: 700;
}
#main_column form fieldset label {
  font-weight: 700;
}
#main_column form fieldset legend {
  font-weight: 500;
}
#main_column form fieldset input,
#main_column form fieldset select {
  padding: 7px;
}
button.btn.btn-lg,
input#side-update-by-date-btn,
a.btn.btn-small {
  background-color: #e84242;
}
button.btn.btn-lg,
input#side-update-by-date-btn,
a.btn.btn-small:hover {
  color: #fff;
  background-color: #e84242;
}
aside p {
  width: 100%;
  display: block;
  position: relative;
  top: 24px;
}
input.btn.search-media-btn {
  bottom: 29px;
  position: relative;
}
div#sam-academies {
  position: relative;
  bottom: 50px;
}
.btn-group {
  right: 12px;
}
#listblocks {
  padding-top: 25px;
}
#listblocks .block a {
  background-color: #114768;
  color: #fff;
}
#listblocks .block a:hover {
  background-color: #e84242;
  color: #fff;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
/*
hearing styles */
.socicons li a {
  padding: 6px 7px;
  font-size: 16px;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all ease-in 0.1s;
  -moz-transition: all ease-in 0.1s;
  -o-transition: all ease-in 0.1s;
  -ms-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
}
.socicons li a div {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/flickr.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.socicons li .facebk {
  border-color: #537bbd;
  background-color: #537bbd;
}
.socicons li .facebk:hover {
  color: #537bbd;
  background-color: #fff;
}
.socicons li .twttr {
  border-color: #78cdf0;
  color: #fff;
  background-color: #78cdf0;
}
.socicons li .twttr:hover {
  border-color: #c6c6c5;
  color: #78cdf0;
  background-color: #fff;
}
.socicons li .you-tube {
  border-color: #e84242;
  background-color: #e84242;
}
.socicons li .you-tube:hover {
  color: #e84242;
  background-color: #fff;
}
.socicons li .flickr {
  border-color: #d3d5d8;
  background-color: #fff;
}
.socicons li .flickr:hover {
  border-color: #346db4;
}
.socicons li .instagrm {
  border-color: #696a6a;
  background-color: #696a6a;
}
.socicons li .instagrm:hover {
  color: #696a6a;
  background-color: #fff;
}
.socicons li .newsletter {
  border-color: #29b377;
  background-color: #29b377;
}
.socicons li .newsletter:hover {
  background-color: #fff;
}
.socicons li .newsletter:hover div {
  background-position: 0 -15px;
}
span.socicon.socicon-flickr {
  top: 22px;
  border: 2px solid #e84242;
  height: 35px;
  width: 35px;
  border-radius: 25px;
  position: relative;
  top: 54px;
  display: inline-block;
  font-family: 'socicon';
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #e84242;
  color: #fff;
}
span.socicon.socicon-flickr:before {
  left: 5px;
  display: block;
  position: relative;
  top: 1px;
}
span.flickr {
  margin-left: 45px;
}
#header-offset {
  padding-top: 64px;
}
.no-gutter {
  padding: 0;
}
.flip-container {
  perspective: 1000;
  margin-bottom: 80px;
}
/* flip the pane when hovered */
.flip-container:hover .flipper,
.flip-container.hover .flipper {
  transform: rotateY(180deg);
}
.flip-container,
.front,
.back {
  width: 100%;
  height: 335px;
}
#content {
  max-width: 1330px;
  margin: 0 auto;
}
/*#main_container{
	padding: 0 65px;
}*/
div#main_container {
  margin-top: 75px;
}
/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
/* hide back of pane during swap */
.front,
.back {
  backface-visibility: hidden;
  background-color: #e84242;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
#front h2 {
  padding: 86px 20px;
  color: white;
  line-height: 43px;
  letter-spacing: 2px;
  font-weight: 700;
}
#front h2.long {
  padding: 58px 15px;
}
#back p {
  font-size: 21px;
  padding: 30px 15px;
}
#back.gray p {
  font-size: 20px;
  padding: 15px 15px;
  line-height: 32px;
}
.gray {
  background-color: #114768;
}
/* front pane, placed above back */
.front {
  z-index: 3;
  overflow: hidden;
  -moz-overflow: hidden;
  /* for firefox 31 */
  display: table;
  transform: rotateY(0deg);
}
.front .priority-block {
  display: table-cell;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}
.front .priority-block img {
  /*clip: rect(0px 46em 335px 0px);*/
}
.front .priority-block .filter {
  width: 100%;
  display: inline;
  text-align: center;
}
.front .priority-block .filter h2 {
  font-family: 'AvantGardeGothicITCW01D_731075';
  color: white;
  letter-spacing: 2px;
  margin: 0;
  z-index: 6;
  height: 335px;
  position: relative;
  padding-top: 41%;
}
.front .priority-block .filter h2#filter {
  background-color: rgba(21, 20, 20, 0.48);
}
.front .priority-block img {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.block-container {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.block-container #listblocks .block {
  /*background-color: black;
			color: white;*/
}
.block-container #listblocks .block a {
  background-color: #e84242;
}
.block-container #listblocks .block a:hover {
  background-color: #e84242;
}
.block-container #listblocks .block .desc {
  font-size: 18px;
}
/* back, initially hidden pane */
.back {
  transform: rotateY(180deg);
  padding: 20px;
  z-index: 2;
}
.back h3 {
  font-family: 'AvantGardeGothicITCW01D_731078';
  font-size: 24px;
  color: white;
}
.back p {
  color: white;
  font-size: 24px;
  line-height: 36px;
}
.social-row .icons {
  padding-bottom: 40px;
  text-align: center;
}
.social-row .icon {
  margin: 0 auto;
  padding: 10px 12px;
  border-width: 1px;
  border-style: solid;
  border-radius: 30px;
  font-size: 24px;
  color: #fff;
}
.social-row .carousel .item {
  padding: 0 100px;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 24px;
  line-height: 1.4em;
  text-align: center;
}
.social-row .carousel .item .meta {
  font-family: 'NHaasGroteskDSW01-45Lt';
}
.social-row .carousel .left,
.social-row .carousel .right {
  background-image: none;
}
.social-row .carousel .carousel-control img {
  position: relative;
  top: 80px;
}
#socialnews-top {
  padding: 50px 0 85px 0;
  min-height: 390px;
  background: url(../images/home/vr.png) no-repeat center center;
}
#socialnews-top .dp .icons {
  padding-bottom: 12px;
}
#socialnews-top .dp-icon {
  position: relative;
  top: -12px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #e84242 url(../images/DP.png) no-repeat;
  border: 1px solid #e84242;
}
#socialnews-top .dp-icon:hover {
  background: #ffffff url(../images/dpRO.png) no-repeat;
}
#socialnews-top .icons .instagram {
  border-color: #696a6a;
  background-color: #696a6a;
  min-height: 300px;
}
#socialnews-top .icons .instagram:hover {
  color: #696a6a;
  background-color: #fff;
}
#socialnews-top .icons .instagram .socicon {
  top: 3px;
}
#socialnews-top .carousel .item a {
  word-wrap: break-word;
}
#socialnews-top #facebook-carousel .item a {
  color: #464646;
}
#socialnews-top #facebook-carousel .item a:hover {
  color: #e84242;
  text-decoraton: none;
}
#socialnews-middle {
  padding: 85px 0;
  min-height: 390px;
  background: url(../images/home/vr.png) no-repeat center center;
}
#socialnews-middle .icons .twitter {
  border-color: #4099ff;
  color: #fff;
  background-color: #4099ff;
  min-height: 300px;
}
#socialnews-middle .icons .twitter:hover {
  color: #4099ff;
  background-color: #fff;
}
#socialnews-middle .icons .twitter .socicon {
  top: 4px;
}
#socialnews-middle .icons .facebook {
  border-color: #3b5998;
  background-color: #3b5998;
  min-height: 300px;
}
#socialnews-middle .icons .facebook:hover {
  color: #3b5998;
  background-color: #fff;
}
#socialnews-middle .icons .facebook .socicon {
  top: 3px;
}
#socialnews-middle .carousel .item a {
  word-wrap: break-word;
}
#socialnews-middle #facebook-carousel .item a {
  color: #464646;
}
#socialnews-middle #facebook-carousel .item a:hover {
  color: #e84242;
  text-decoraton: none;
}
#socialnews-bottom {
  padding: 85px 0;
  min-height: 390px;
  background: url(../images/home/vr.png) no-repeat center center;
}
#socialnews-bottom .you-tube {
  border-color: #cc181e;
  background-color: #cc181e;
}
#socialnews-bottom .you-tube:hover {
  background-color: #fff;
  color: #cc181e;
}
#socialnews-bottom #youtube-carousel {
  margin: 15px;
}
#socialnews-bottom #youtube-carousel .embed-responsive-16by9 {
  padding-bottom: 66.25%;
}
#socialnews-bottom #flickr-carousel {
  margin: 7px 15px;
}
#socialnews-bottom .flickr-icon {
  padding: 12px;
  border-color: #d3d5d8;
  background-color: #fff;
}
#socialnews-bottom .flickr-icon div {
  position: relative;
  top: 7px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/home/flickr.png);
  background-position: center center;
  background-repeat: no-repeat;
}
#socialnews-bottom .flickr-icon:hover {
  border-color: #346db4;
}
#socialnews-bottom .carousel {
  background-color: #000;
}
#socialnews-bottom .carousel .item {
  padding: 0;
  height: 375px;
}
#socialnews-bottom .carousel .item .tbl {
  display: table;
  width: 100%;
}
#socialnews-bottom .carousel .item .tbl .tbl-cell {
  display: table-cell;
  height: 375px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  text-align: center;
  vertical-align: middle;
}
#socialnews-bottom .carousel .item .tbl .tbl-cell .icon {
  margin: 0 auto;
}
#socialnews-bottom .carousel .carousel-control img {
  position: relative;
  top: 80px;
}
#socialnews-bottom .carousel .left img {
  top: 175px;
  left: 15px;
}
#socialnews-bottom .carousel .right img {
  top: 175px;
  right: 15px;
}
@media (max-width: 990px) {
  #social-top {
    background: none;
  }
  #social-top .facebook,
  #social-top .twitter {
    min-height: 300px;
  }
  #social-top .icons .twitter {
    height: 300px;
  }
  #social-top .icons .twitter .socicon {
    top: 4px;
  }
  #social-top .icons .facebook .socicon {
    top: 3px;
  }
  #social-top .carousel .item a {
    word-wrap: break-word;
  }
  #social-top #facebook-carousel .item a {
    color: #464646;
  }
  #social-top #facebook-carousel .item a:hover {
    color: #e84242;
    text-decoraton: none;
  }
}
#social-top-photos {
  min-height: 275px;
  padding-left: 15px;
}
#social-top-photos a {
  top: 74px;
}
#social-top-photos a h2 {
  padding-left: 45px;
}
#social-top-photos .flick,
#social-top-photos .insta {
  background-color: #e84242;
  border-radius: 40px;
  height: 35px;
  width: 35px;
  position: absolute;
  text-align: center;
}
#social-top-photos .flick .socicon,
#social-top-photos .insta .socicon {
  color: white;
  padding-top: 9px;
}
#social-top-photos .carousel-control img {
  top: 127px;
}
#social-top-photos #instamedia {
  width: 100%;
  margin-top: 16px;
  position: relative;
}
#social-top-photos #instamedia a img {
  border: 3px solid white;
  width: 270px;
  padding-right: 10px;
  padding-left: 10px;
}
#serving-georgians h1 {
  margin: 0;
  font-family: 'NHaasGroteskDSW01-96Blk';
  text-transform: uppercase;
  font-size: 45px;
  line-height: 1;
}
#serving-georgians h1 span {
  color: #e84242;
}
#serving-georgians h2 {
  margin: 20px 0 30px 0;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 25px;
  line-height: 1;
}
#serving-georgians .rep {
  font-size: 16px;
  line-height: 1.4em;
  word-wrap: break-word;
}
#serving-georgians .rep h3 {
  margin: 0;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 16px;
  color: #114768;
}
#serving-georgians .rep a {
  color: #114768;
}
#serving-georgians .rep.active h3,
#serving-georgians .rep.active a {
  color: #e84242;
}
#serving-georgians .rep + .rep {
  margin-top: 25px;
}
#serving-georgians #map-container {
  padding-top: 10px;
  text-align: center;
}
#serving-georgians #map-container #map {
  position: relative;
  margin: 0 auto;
  width: 542px;
  height: 595px;
  background: url(/themes/perdue/images/map/georgia.png);
  background-size: 100% 100%;
}
#serving-georgians #map-container #map .reg {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity ease-in 0.05s;
  -moz-transition: opacity ease-in 0.05s;
  -o-transition: opacity ease-in 0.05s;
  -ms-transition: opacity ease-in 0.05s;
  transition: opacity ease-in 0.05s;
}
#serving-georgians #map-container #map .reg:hover,
#serving-georgians #map-container #map .reg.active {
  opacity: 1;
}
#serving-georgians #map-container #map #nw-reg {
  top: 10px;
  left: 0px;
  width: 164px;
  height: 185px;
  background: url(/themes/perdue/images/map/nw.png);
}
#serving-georgians #map-container #map #ne-reg {
  top: 0px;
  left: 136px;
  width: 196px;
  height: 216px;
  background: url(/themes/perdue/images/map/ne.png);
}
#serving-georgians #map-container #map #metro-reg {
  top: 116px;
  left: 93px;
  width: 126px;
  height: 127px;
  background: url(/themes/perdue/images/map/metro.png);
}
#serving-georgians #map-container #map #wc-reg {
  top: 270px;
  left: 62px;
  width: 181px;
  height: 152px;
  background: url(/themes/perdue/images/map/wc.png);
}
#serving-georgians #map-container #map #csra-reg {
  top: 130px;
  left: 289px;
  width: 162px;
  height: 156px;
  background: url(/themes/perdue/images/map/csra.png);
}
#serving-georgians #map-container #map #west-reg {
  top: 169px;
  left: 38px;
  width: 146px;
  height: 126px;
  background: url(/themes/perdue/images/map/west.png);
}
#serving-georgians #map-container #map #middle-reg {
  top: 179px;
  left: 175px;
  width: 184px;
  height: 236px;
  background: url(/themes/perdue/images/map/middle.png);
}
#serving-georgians #map-container #map #sw-reg {
  top: 406px;
  left: 73px;
  width: 314px;
  height: 166px;
  background: url(/themes/perdue/images/map/sw.png);
}
#serving-georgians #map-container #map #se-reg {
  top: 241px;
  left: 284px;
  width: 258px;
  height: 354px;
  background: url(/themes/perdue/images/map/se.png);
}
#serving-georgians #office-locations h3 {
  margin: 0 0 30px 0;
  font-family: 'NHaasGroteskDSW01-45Lt';
  font-size: 28px;
  line-height: 1;
  color: #3a3a3a;
}
#serving-georgians #office-locations h4 {
  margin: 0 0 .2em 0;
  font-family: 'NHaasGroteskDSW01-75Bd';
  font-size: 22px;
  color: #e84242;
}
#serving-georgians #office-locations .office-loc {
  padding-left: 300px;
}
#serving-georgians #office-locations #office-location-atlanta {
  background: url(/themes/perdue/images/peachtree.jpg) 15px 0 no-repeat;
}
#serving-georgians #office-locations #office-location-dc {
  background: url(/themes/perdue/images/russell-senate-building.jpg) 15px 0 no-repeat;
}
#serving-georgians #office-locations p {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7em;
  color: #3a3a3a;
}
#press-carousel p {
  font-size: 18px;
  line-height: 1.7em;
}
#social-media-container {
  margin-bottom: 10px;
}
#share-link-container label {
  display: none;
}
#share-link-container input[type="text"] {
  position: relative;
  top: -5px;
  height: auto;
}
#share-buttons {
  /*#share-link {
		margin-top: -33px;

	}*/
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs li.active a {
  background-color: #e84242;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .search-multimedia-container {
  padding-bottom: 20px;
}
#multimedia-browser .pagination {
  background-color: #114768;
  color: #fff;
}
#multimedia-browser .pagination .listing-increment a {
  color: #fff;
}
#multimedia-browser .pagination .listing-increment a.selected {
  color: #e84242;
}
@media (max-width: 1329px) {
  #multimedia-browser .row .media-thumbnail {
    float: left;
    width: 8em;
    height: 240px;
    margin: 0px 26px;
  }
  #multimedia-browser .multimedia-tools select {
    width: 43%;
  }
}
@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    float: left;
    width: 8.5em;
    height: 240px;
    margin: 0px 13px;
  }
}
@media (max-width: 991px) {
  #multimedia-browser .row .media-thumbnail {
    float: left;
    width: 5.5em;
    height: 220px;
    margin: 0px 22px;
  }
  #multimedia-browser .multimedia-tools select {
    width: 40%;
  }
  #multimedia-browser .multimedia-tools fieldset {
    width: 48.45%;
  }
}
@media (max-width: 768px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 80%;
  }
  #multimedia-browser .multimedia-tools select + select {
    margin-left: .1em;
  }
}
@media (max-width: 542px) {
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    width: 100%;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 85%;
  }
  #multimedia-browser .multimedia-tools select {
    width: 42%;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    width: 100%;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 85%;
  }
  #multimedia-browser .multimedia-tools select {
    width: 42%;
  }
}
@media (max-width: 340px) {
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    width: 100%;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 80%;
  }
  #multimedia-browser .multimedia-tools select {
    width: 40%;
  }
}
body footer {
  margin-top: 85px;
  /*.footer-left {
			padding-left: 65px;
		}

		.footer-right {
			padding-right: 65px;
		}*/
}
body footer #footer-top {
  padding: 25px 0;
  background-color: #e84242;
}
body footer #footer-top .footernav {
  position: relative;
  top: 10px;
}
body footer #footer-top .footernav li a {
  font: normal normal normal 18px/1 'NHaasGroteskDSW01-75Bd';
  text-transform: uppercase;
  color: #fff;
}
body footer #footer-top .footernav li + li {
  margin-left: 40px;
}
body footer #footer-top .socicons {
  position: relative;
  top: 9px;
  float: right;
}
body footer #footer-top .socicons .you-tube {
  color: #e84242;
  border-color: #e84242;
  background-color: #fff;
}
body footer #footer-top .socicons .you-tube:hover {
  color: #fff;
  background-color: #e84242;
}
body footer #footer-bottom {
  padding: 15px 0;
  color: #fff;
  background-color: #114768;
  font: normal normal normal 13px/1 'NHaasGroteskDSW01-75Bd';
}
body footer #footer-bottom a {
  display: inline-block;
  font: normal normal normal 13px/1 'NHaasGroteskDSW01-75Bd';
  text-transform: uppercase;
  color: #fff;
}
body footer #footer-bottom span {
  margin: 0 1em;
  display: inline-block;
}
#flagForm {
  color: #000;
}
#flagForm #flag-options .head {
  color: #fff;
  background-color: #e84242;
}
.btn-primary {
  border-color: #fff;
  background: #d7512d;
  color: #fff;
}
.btn-primary:hover {
  background-color: #e84242;
  color: #fff;
}
.btn-primary:active {
  background-color: #e84242;
  color: #fff;
}
.btn-primary:focus {
  background-color: #e84242;
  color: #fff;
}
.btn-primary:active:focus {
  background-color: #e84242;
  color: #fff;
}
#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;
}
#main_column form .btn {
  background: #e84242;
  color: #fff;
  border-color: none!important;
}
#main_column form .btn:hover {
  background: #114768;
  color: #fff;
}
/* collapse ------------------------------- */
#signatures-container {
  display: none;
}
.social-container ul {
  margin-bottom: 0;
}
#content .amend-form-container form {
  color: #114768;
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form legend {
  color: #114768;
}
#content .amend-form-container form p {
  color: #114768;
}
#content .amend-form-container form p i {
  color: #114768;
}
#content .amend-form-container form p strong {
  color: #114768;
}
#content .amend-form-container form .btn {
  background: #e84242;
  color: #fff;
}
#content .amend-form-container form .btn:hover {
  background: #114768;
  color: #fff;
}
.note-about-form {
  margin: 20px 0 0 0 !important;
}
/*
paste available font families here:
font-family:'Americana W01 Roman1475434';
font-family:'Americana W01 Bold1475438';
font-family:'Americana W01 Extra Bol1475442';
font-family:'Americana W01 Italic1475446';
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:'AvantGardeGothicITCW01X';
font-family:'AvantGardeGthcITCW01XLt';
font-family:'AvantGardeGothicITCW01B_731069';
font-family:'AvantGardeGothicITCW01B_731072';
font-family:'AvantGardeGothicITCW01M_731087';
font-family:'AvantGardeGothicITCW01M_731090';
font-family:'AvantGardeGothicITCW01D_731075';
font-family:'AvantGardeGothicITCW01D_731078';
font-family:'AvantGardeGothicITCW01B_731063';
font-family:'AvantGardeGothicITCW01B_731066';
font-family:'Av Garde W01 X Lt Cond';
font-family:'AvGardeW01-XLtCondObl';
font-family:'ITCAvantGardeW01-CnBk';
font-family:'AvGardeW01-BookCondObl';
font-family:'ITCAvantGardeW01-CnMd';
font-family:'AvGardeW01-MdCondObl';
font-family:'ITCAvantGardeW01-CnDm';
font-family:'AvGardeW01-DemiCondObl';
font-family:'ITCAvantGardeW01-CnBd';
font-family:'AvGardeW01-BoldCondObl';
font-family:'Bebas W00 Regular';
*/
/*define site colors here

naming conventions
if we have multiple shades of one color
number each shade from 1 - n
with 1 being the lightest and n being the darkest

@sitecolor:#fff; //example

@colorshade1 :#examplehex;
@colorshade2 :#examplehex;
@colorshade3 :#examplehex;

*/
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
body {
  font: normal normal normal 20px/1.4em 'NHaasGroteskDSW01-45Lt';
  color: #114768;
  letter-spacing: .4px;
}
/*header styles*/
h1 {
  font-weight: 800!important;
}
/*anchor stlyes*/
a {
  color: #e84242;
}
a:hover {
  color: #e84242;
  text-decoration: underline;
}
/*button styles*/
/*interior page content default styles */
#content {
  color: #114768;
}
@media (max-width: 1330px) {
  body #header .container {
    width: 100%;
  }
  body #header #header-constraint {
    width: 1170px;
  }
  body footer #footer-top .footernav li + li {
    margin-left: 30px;
  }
  body footer .footer-left {
    padding-left: 0px;
  }
  body footer .footer-right {
    padding-right: 0px;
  }
  #home #services-bar .col .tbl #casework {
    padding: 10px 45px 0 45px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #tours {
    padding: 10px 33px 0 33px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #nominations {
    padding: 30px 25px 0 32px;
    width: 170px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #flags {
    padding: 10px 30px 0 36px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #internships {
    padding: 10px 39px 0 38px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #scheduling {
    padding: 30px 15px 0 15px;
    width: 170px;
    background-size: 100px;
  }
  #home .social-row .carousel .item {
    font-size: 24px;
  }
}
/*@media (max-width:1329px){
	body {
		#header {
			.container {
				padding: 0;
			}
		}
	}
}*/
@media (max-width: 1200px) {
  .flip-container,
  .front,
  .back {
    width: 100%;
    height: 330px;
  }
  #main_container {
    padding: 0px;
  }
  body #header .container .socicons {
    display: none;
  }
  body .navbar {
    float: right;
  }
  body footer #footer-top .footernav {
    width: 500px;
  }
  body footer #footer-top .footernav li + li {
    margin-left: 20px;
  }
  body footer .footer-left {
    padding-left: 0px;
  }
  body footer .footer-right {
    padding-right: 0px;
  }
  #home #featured-press {
    height: 400px;
  }
  #home #featured-issues .tbl #newsletter-signup {
    padding-left: 40px;
  }
  #home #services-bar .col {
    width: 16.5%;
  }
  #home #services-bar .col .tbl #casework {
    padding: 10px 40px 0 40px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #tours {
    padding: 10px 23px 0 23px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #nominations {
    padding: 30px 2px 0 7px;
    width: 170px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #flags {
    padding: 10px 18px 0 22px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #internships {
    padding: 10px 29px 0 28px;
    background-size: 100px;
  }
  #home #services-bar .col .tbl #scheduling {
    padding: 30px 5px 0 5px;
    width: 170px;
    background-size: 100px;
  }
  #home .social-row .carousel .item {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  #home #featured-issues .tbl .last {
    border-left: none;
  }
  #home #social-top {
    background: none;
  }
  #home #featured-issues .tbl #newsletter-signup {
    background-position: right -100px !important;
  }
  #home #featured-issues .tbl #newsletter-signup-container {
    display: none;
  }
  #home #featured-press {
    height: auto;
  }
  #home #services-bar .col {
    float: none;
    width: 100%;
  }
  #home #services-bar .col .tbl a {
    padding: 30px 45px;
    height: auto;
    background-position: center center;
  }
  p.official-photo {
    width: 65%;
  }
  .front .priority-block img {
    top: -100px;
    clip: rect(100px 46em 435px 0px);
  }
  .front .priority-block .filter h2 {
    padding-top: 22%;
  }
  body #header .container .socicons {
    display: block;
  }
  body .navbar {
    float: right;
    width: 132px;
    margin-left: 14px;
    margin-top: 17px;
  }
  body .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px;
    margin-bottom: 5px;
    font-size: 40px;
  }
  body .nav .dropdown-menu {
    background-color: transparent;
    position: relative!important;
    float: none!important;
    display: block;
    margin-top: -15px;
    z-index: 0;
    background-color: none;
    -webkit-background-clip: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0;
    box-shadow: none;
  }
  body .nav .dropdown-menu li a {
    font-size: 25px;
    padding: 0px 15px;
  }
  #home {
    /*#services-bar {
	        .col {
	            .tbl {
	            	a{
	            		padding-left: 50px;
	            		font-size: 17px;
	            	}
	                #casework {
	                 	background-position: 7px center;
	                    background-size:35px;
	                }

	                #tours {
	                 	background-position: 7px center;
	                    background-size:35px;
	                }

	                #nominations {
	                 	background-position: 7px center;
	                    background-size:35px;
	                }

	                #flags {
	                 	background-position: 7px center;
	                    background-size:35px;
	                }

	                #internships {
	                 	background-position: 7px center;
	                    background-size:35px;
	                }
	            }
	        }
	    }*/
  }
  #home #featured-issues .tbl #newsletter-signup {
    padding-left: 40px;
  }
  #home #featured-press .col #release {
    margin-bottom: 80px;
  }
  #home #featured-press .col a {
    display: block;
    padding-bottom: 40px;
  }
  #home .social-row .carousel .item {
    font-size: 24px;
  }
  #home .top #featured-carousel h2#tagline {
    left: 0px;
    right: 0px;
    text-align: center;
  }
  .togglemenu {
    font-size: 24px;
    float: right;
  }
  .srchbuttonmodal {
    font-size: 24px;
    position: absolute;
  }
  #social-top-photos #instamedia a img {
    width: 25%;
  }
  #serving-georgians #office-locations .office-loc,
  #serving-georgians #office-locations #office-location-atlanta,
  #serving-georgians #office-locations #office-location-dc {
    padding-left: 15px;
    background: none;
  }
}
@media (max-width: 768px) {
  #main_container {
    padding: 0px 15px;
  }
  #home .top #featured-carousel h2#tagline #tagline-btm {
    font-size: 59px;
  }
  #home #featured-issues .tbl #newsletter-signup {
    padding-left: 40px;
  }
  #home #services-bar .col {
    width: 100%;
  }
  #home #featured-press .col #release {
    margin-bottom: 100px;
  }
  #home #featured-press .col a {
    padding-bottom: 15px;
  }
  #home .social-row .carousel .item {
    font-size: 24px;
  }
  #home .top #featured-carousel h2#tagline {
    left: 0px;
    right: 0px;
    text-align: center;
    text-shadow: 3px 0px 3px white;
  }
  p.official-photo {
    width: 65%;
  }
  body footer #footer-top .footernav {
    width: 470px;
  }
  body footer #footer-top .footernav li + li {
    margin-left: 20px;
  }
  body footer #footer-top .footernav li + li a {
    font-size: 16px;
  }
  body footer .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px;
    margin-bottom: 5px;
    font-size: 40px;
  }
  body footer .nav .dropdown-menu {
    background-color: transparent;
    position: relative!important;
    float: none!important;
    display: block;
    margin-top: -15px;
    z-index: 0;
    background-color: none;
    -webkit-background-clip: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0;
    box-shadow: none;
  }
  body footer .nav .dropdown-menu li a {
    font-size: 25px;
    padding: 0px 15px;
  }
  body footer .footer-left {
    padding-left: 30px;
  }
  body footer .footer-right {
    padding-right: 30px;
  }
  #serving-georgians .col-sm-6 + .col-sm-6 {
    margin-top: 25px;
  }
}
@media (max-width: 745px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    position: relative;
    top: 16px;
    float: left;
    margin-left: 11em;
  }
  body footer #footer-top .footernav {
    margin-left: 4.5em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 20px;
  }
}
@media (max-width: 699px) {
  body #header .container .socicons {
    display: none;
  }
  body .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px;
    margin-bottom: 5px;
    font-size: 40px;
  }
  body .nav .dropdown-menu {
    background-color: transparent;
    position: relative!important;
    float: none!important;
    display: block;
    margin-top: -15px;
    z-index: 0;
    background-color: none;
    -webkit-background-clip: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0;
    box-shadow: none;
  }
  body .nav .dropdown-menu li a {
    font-size: 25px;
    padding: 0px 15px;
  }
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    position: relative;
    top: 16px;
    float: left;
    margin-left: 11em;
  }
  body footer #footer-top .footernav {
    margin-left: 4.5em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 16px;
    margin-left: 9em;
  }
  body footer #footer-top .footernav {
    margin-left: 2.5em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 22px;
  }
  #searchpopup {
    padding: 0 0 0 20px;
  }
  body #SearchModal .modal-dialog .modal-content .modal-body #searchpopup #sitesearch button {
    padding: 14px 0;
    text-align: center;
  }
}
@media (max-width: 628px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 16px;
    margin-left: 9em;
  }
  body footer #footer-top .footernav {
    margin-left: 1em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 22px;
  }
}
@media (max-width: 598px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 16px;
    margin-left: 9em;
  }
  body footer #footer-top .footernav {
    margin-left: 0em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 22px;
  }
  #home #debt-clock-container #debt-clock span {
    font-size: 18px;
    line-height: 35px;
  }
  #home #debt-clock-container #debt-clock .numeral {
    width: 20px;
  }
  #home #debt-clock-container #debt-clock .comma {
    top: 7px;
  }
}
@media (max-width: 580px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 15px;
    margin-left: 8em;
  }
  body footer #footer-top .footernav {
    margin-left: 1em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 19px;
  }
}
@media (max-width: 550px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 15px;
    margin-left: 7em;
  }
  body footer #footer-top .footernav {
    margin-left: 1em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 18px;
  }
}
@media (max-width: 530px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 15px;
    margin-left: 6.5em;
  }
  body footer #footer-top .footernav {
    margin-left: 1em;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 17px;
  }
}
@media (max-width: 496px) {
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 15px;
    margin-left: 5.5em;
  }
  body footer #footer-top .footernav {
    margin-left: 0px;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 17px;
  }
}
@media (max-width: 479px) {
  body div#breadcrumb {
    right: 20px;
  }
  body #header .container .logo {
    margin-right: 0px;
  }
  body .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px;
    margin-bottom: -5px;
    font-size: 26px;
  }
  body .nav .dropdown-menu {
    background-color: transparent;
    position: relative!important;
    float: none!important;
    display: block;
    margin-top: -15px;
    z-index: 0;
    background-color: none;
    -webkit-background-clip: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0;
    box-shadow: none;
  }
  body .nav .dropdown-menu li a {
    font-size: 18px;
    padding: 2px 15px;
  }
  body .navbar {
    margin-left: 0px;
  }
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 15px;
    margin-left: 1.5em;
  }
  body footer #footer-top .footernav {
    margin-left: 0px;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 16px;
  }
  #home {
    /*#services-bar{
			.col{
				width:50%;
				text-align: center;
				&:last-child{
					width:100%;
				}
			}
		}*/
  }
  #home .top #featured-carousel .item {
    background-position: -600px center;
  }
  #home .top #featured-carousel h2#tagline #tagline-btm {
    font-size: 53px;
  }
  #home .top #featured-carousel h2#tagline #tagline-top {
    letter-spacing: 15px;
    font-size: 22px;
  }
  #home .social-row .carousel .item {
    padding: 0 46px;
  }
  p.official-photo {
    margin: 0;
    width: 100%;
  }
  .download-official {
    font-size: 15px;
  }
  .front .priority-block img {
    top: 0px;
    clip: rect(0px 46em 335px 0px);
  }
  .front .priority-block .filter h2 {
    padding-top: 40%;
  }
  div#breadcrumb {
    display: block;
    position: relative;
    right: 65px;
  }
  #content {
    padding: 0px;
  }
  .list-inline > li {
    padding-left: 26px;
  }
  #social-top-photos #instamedia a img {
    width: 50%;
  }
}
@media (max-width: 456px) {
  #home #featured-press .col a {
    font-size: 15px;
  }
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 10px;
  }
  body footer #footer-top .footernav {
    margin-left: 0px;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 15px;
  }
}
@media (max-width: 436px) {
  body #header .container .logo {
    float: right;
    width: 250px;
  }
  body #header .container .logo a {
    width: 100%;
    margin-top: 8px;
  }
  body #header .container .navbar {
    float: left;
    margin-top: 11px;
    width: 40px;
  }
  body #header .container .navbar .togglemenu {
    font-size: 39px;
  }
  body #header .container .navbar .srchbuttonmodal {
    display: none !important;
  }
  body .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px;
    margin-bottom: -5px;
    font-size: 26px;
  }
  body .nav .dropdown-menu {
    background-color: transparent;
    position: relative!important;
    float: none!important;
    display: block;
    margin-top: -15px;
    z-index: 0;
    background-color: none;
    -webkit-background-clip: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: 0;
    box-shadow: none;
  }
  body .nav .dropdown-menu li a {
    font-size: 18px;
    padding: 2px 15px;
  }
  body footer .footer-right {
    text-align: center;
  }
  body footer #footer-top .socicons {
    top: 10px;
    margin-left: 1em;
  }
  body footer #footer-top .footernav {
    margin-left: 0px;
  }
  body footer #footer-top .footernav li {
    padding-left: 0px;
  }
  body footer #footer-top .footernav li a {
    font-size: 15px;
    margin-left: -5px;
  }
  #home #main-featured-column {
    padding: 0;
  }
  #home #main-featured-column .top {
    height: auto;
  }
  #home #main-featured-column .top #featured-carousel {
    height: 215px;
  }
  #home #main-featured-column .top #featured-carousel .item {
    height: 215px;
    background-position: center center;
    background-size: cover;
  }
  #home #main-featured-column .top #featured-carousel .item #tagline {
    top: 0;
    width: 65%;
  }
  #home #main-featured-column .top #featured-carousel .item #tagline #tagline-top {
    margin: 12px 0 7px 0;
    font-size: 16px;
    letter-spacing: 8px;
    line-height: 1;
    color: #929292;
  }
  #home #main-featured-column .top #featured-carousel .item #tagline #tagline-btm {
    font-size: 35px;
    line-height: 1;
  }
  #home #featured-issues #featured-row {
    padding: 0;
  }
  #home #featured-issues #featured-row .tbl a {
    padding: 25px 0;
    height: auto;
    text-align: center;
  }
  #home #featured-issues #featured-row .tbl #newsletter-signup {
    background-image: none;
  }
  #home #featured-issues #featured-row .tbl #newsletter-signup span {
    display: inline-block;
    margin-right: 5px;
    font-size: 22px;
  }
  #home #office-locations #locations .col-xs-6 {
    width: 100%;
    margin-bottom: 20px;
  }
  #social-top .facebook,
  #social-top .twitter {
    min-height: 380px;
  }
}
@media (max-width: 420px) {
  body footer #footer-top {
    display: none;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .flip-container:hover .flipper,
.ie .flip-container.hover .flipper {
  transition: 0s;
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back,
.ie .flip-container:hover .flipper .front,
.ie .flip-container.hover .flipper .front {
  transform: none;
}
.ie .flip-container:hover .flipper .back,
.ie .flip-container.hover .flipper .back {
  z-index: 10;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie #home .social-row .carousel .left,
.ie #home .social-row .carousel .right {
  display: none !important;
  opacity: 0 !important;
  background-image: none !important;
  filter: progid:none !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
@media print {
  html #featured-issues,
  html #services-bar,
  html #actions,
  html #social-bottom,
  html .prevarticle,
  html .nextarticle,
  html #alerts,
  html #header,
  html #press + hr,
  html #pagetools + hr {
    display: none;
  }
  html #issue-banner {
    display: none;
  }
  html #asides {
    display: none;
  }
  html #featured-carousel {
    margin-top: -6em;
    position: relative;
    height: 350px;
  }
  html #home #featured-press .col {
    margin-top: -6em;
    padding-top: 0px;
  }
  #content .container #main_column {
    margin-top: -50px;
    font-size: 16px;
  }
  .flip-container {
    height: auto;
    margin-bottom: 0px;
  }
  .front {
    height: 50px;
    position: static;
    float: none;
    display: none;
    display: block;
    transform: none!important;
    Padding: 0px;
    margin-top: 1em;
    margin-bottom: 0px;
    text-align: center;
  }
  h2 {
    padding-top: 0px!important;
    margin-top: 0px!important;
    margin-bottom: 0px!important;
    padding-bottom: 0px!important;
    text-align: center;
  }
  h3 {
    display: none;
  }
  .back {
    height: auto;
    transform: none!important;
    margin-top: 0px;
    padding: 0px;
    position: static;
    float: none;
    display: block;
  }
  .back p {
    padding: 0px;
  }
}
