/* 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);
  }
}
#breadcrumb {
  height: 25px;
}
.alert {
  padding: 0px;
}
.alert a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  background-color: #033fd5;
  color: #fff;
  margin-top: -1px;
  margin-bottom: -1px;
  width: 100%;
  font-family: 'Felbridge W01 Black';
}
.alert a:hover {
  background-color: #2865ff;
  color: #fff;
}
.top55 {
  top: 55px !important;
}
#NavMobileModal .fade.in,
#SearchModal .fade.in,
#ContactModal .fade.in,
#filtermodal .fade.in {
  background-color: #0e1d49;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a,
#filtermodal .modal-dialog .modal-content .modal-body a {
  color: white;
}
#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,
#filtermodal .modal-dialog .modal-content .modal-body a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button,
#filtermodal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #033fd5;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover,
#filtermodal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #022170;
}
body #header {
  height: 130px;
  width: 100%;
  background-color: #fff;
  padding-top: 15px;
}
body #header .container {
  position: relative;
}
body #header a.logo-hold {
  width: 360px;
  position: absolute;
  display: block;
}
@media (max-width: 880px) {
  body #header a.logo-hold {
    width: 295px;
    top: 38px;
  }
}
@media (max-width: 767px) {
  body #header a.logo-hold {
    width: 295px;
    top: 25px;
  }
}
@media (max-width: 460px) {
  body #header a.logo-hold {
    width: 240px;
  }
}
@media (max-width: 360px) {
  body #header a.logo-hold {
    width: 194px;
  }
}
body #header a.logo-hold img {
  width: 100%;
}
body #header .nav-hold {
  position: relative;
  top: 53px;
}
@media (max-width: 767px) {
  body #header .nav-hold {
    top: 27px;
  }
}
@media (max-width: 460px) {
  body #header .nav-hold {
    top: 12px;
  }
}
@media (max-width: 400px) {
  body #header .nav-hold {
    top: 19px;
  }
}
@media (max-width: 360px) {
  body #header .nav-hold {
    top: 7px;
  }
}
body #header .nav-top {
  position: absolute;
  right: 50px;
  top: 50px;
  font-family: 'Felbridge W01 Black';
  text-transform: uppercase;
}
body #header .nav-top .social-list li a {
  background-color: #0e1d49;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-block;
  padding-top: 3px;
  text-align: center;
}
body #header .nav-top .social-list li a:hover {
  background-color: #033fd5;
}
body #header .nav-top .social-list li a.newsletter {
  background-color: #033fd5;
  width: auto;
  height: 27px;
  padding: 4px 25px;
}
body #header .nav-top .social-list li a.newsletter:hover {
  background-color: #2865ff;
}
body#home #header {
  background-color: white;
  position: relative;
  top: -10px;
  padding: 15px 50px;
  z-index: 1;
  transition: 0.4s ease-in-out background-color;
}
body#home #header:hover {
  background-color: #fff;
}
@media (max-width: 520px) {
  body#home #header {
    padding: 15px 30px;
  }
}
@media (max-width: 460px) {
  body#home #header {
    padding: 15px 20px;
  }
}
body:not(#home) #header .nav-top {
  top: 30px;
  right: 9px;
}
body:not(#home) #header a.logo-hold {
  top: 12px;
}
body:not(#home) #header {
  border-bottom: 1px solid #eeeeee;
  height: 165px;
}
body .navbar {
  background-color: transparent;
  /*width: 660px;*/
  display: inline-block;
}
body .navbar .nav-pills {
  display: inline-block;
  width: auto;
}
body .navbar .nav-pills > li {
  border: none;
  width: auto;
  padding: 10px 15px;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  color: #0e1d49;
  font-family: 'Felbridge W01 ExtraBold';
  text-transform: uppercase;
  font-size: 13px;
  padding: 0px;
  border-bottom: 2px solid transparent;
  border-radius: 0px;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #fff;
  display: none !important;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #000;
  text-transform: uppercase;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #033fd5;
  color: black;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  color: #fff;
  background-color: transparent;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  /*color: @yellow;*/
  color: #033fd5;
  border-bottom: 2px solid #033fd5;
}
body .navbar .togglemenu {
  color: #0e1d49;
  font-size: 23px;
}
@media (max-width: 767px) {
  body .navbar .togglemenu {
    font-size: 35px;
  }
}
@media (max-width: 400px) {
  body .navbar .togglemenu {
    font-size: 27px;
  }
}
body .navbar .togglemenu .menulabel {
  display: none;
}
body .navbar .srchbuttonmodal {
  color: #0e1d49;
  font-size: 21px;
  position: relative;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 767px) {
  body .navbar .srchbuttonmodal {
    font-size: 33px;
  }
}
@media (max-width: 400px) {
  body .navbar .srchbuttonmodal {
    font-size: 24px;
  }
}
body .navbar .srchbutton {
  color: #0e1d49;
}
body .navbar #search {
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  background-color: transparent !important;
  font-family: 'Felbridge W01 ExtraBold';
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  background-color: transparent !important;
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal .modal-dialog {
  margin-top: 40px;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'Felbridge W01 Black';
  text-transform: uppercase;
  font-size: 37px;
  line-height: 45px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  text-decoration: underline;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'Felbridge W01 Bold';
  font-size: 21px;
  background-color: transparent !important;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  text-decoration: underline;
}
#header .nav-hold.right-slide-search,
#header .nav-hold.right-search-modal {
  padding: 20px 0;
  float: right;
}
#header .nav-hold.right-slide-search .navbar,
#header .nav-hold.right-search-modal .navbar {
  width: auto;
}
#header .nav-hold.right-slide-search .nav-pills,
#header .nav-hold.right-search-modal .nav-pills {
  right: 28px;
  position: relative;
}
#header .nav-hold.right-slide-search .srchbutton,
#header .nav-hold.right-search-modal .srchbutton {
  right: 0;
  position: absolute;
  top: 10px;
  z-index: 2;
  font-size: 12px;
}
#header .nav-hold.right-slide-search .togglemenu,
#header .nav-hold.right-search-modal .togglemenu {
  margin-left: 13px;
}
#header .nav-hold.right-slide-search #search,
#header .nav-hold.right-search-modal #search {
  width: 0%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  top: 0;
  transition: 0.3s width ease-in;
}
#header .nav-hold.right-slide-search #search.showme,
#header .nav-hold.right-search-modal #search.showme {
  width: 93%;
}
#header .nav-hold.right-slide-search #search #sitesearch,
#header .nav-hold.right-search-modal #search #sitesearch {
  padding: 12px 0px;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field,
#header .nav-hold.right-search-modal #search #sitesearch #search-field {
  position: absolute;
  width: 100%;
  border: none;
  background-color: #fff;
  color: #0e1d49;
  border-bottom: 3px solid #0e1d49;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-webkit-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #0e1d49;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field::-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field::-moz-placeholder {
  color: #0e1d49;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-moz-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-moz-placeholder {
  color: #0e1d49;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:-ms-input-placeholder,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:-ms-input-placeholder {
  color: #0e1d49;
}
#header .nav-hold.right-slide-search #search #sitesearch #search-field:focus,
#header .nav-hold.right-search-modal #search #sitesearch #search-field:focus {
  outline: none;
}
#header .nav-hold.right-slide-search #search #sitesearch button,
#header .nav-hold.right-search-modal #search #sitesearch button {
  background-color: #fff;
  color: #0e1d49;
  border: none;
  padding: 3px 6px;
  margin-left: -5px;
  position: absolute;
  right: 0;
  font-size: 13px;
}
#header .nav-hold.right-search-modal .srchbutton {
  display: none !important;
}
#header .nav-hold.right-search-modal #search {
  display: none;
}
#header .nav-hold.right-search-modal .srchbuttonmodal {
  display: inline-block !important;
  font-size: inherit;
  top: -14px;
}
#header .nav-hold.hamburger-and-search,
#header .nav-hold.hamburger-only {
  float: right;
}
#header .nav-hold.hamburger-and-search .togglemenu,
#header .nav-hold.hamburger-only .togglemenu {
  display: inline-block !important;
  margin-left: 13px;
  margin-top: 1px;
}
#header .nav-hold.hamburger-and-search .srchbuttonmodal,
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: inline-block !important;
}
#header .nav-hold.hamburger-and-search .srchbutton,
#header .nav-hold.hamburger-only .srchbutton {
  display: none !important;
}
#header .nav-hold.hamburger-and-search #search,
#header .nav-hold.hamburger-only #search {
  display: none;
}
#header .nav-hold.hamburger-and-search .menulabel,
#header .nav-hold.hamburger-only .menulabel {
  display: none;
}
#header .nav-hold.hamburger-and-search .nav-pills,
#header .nav-hold.hamburger-only .nav-pills {
  display: none;
}
#header .nav-hold.hamburger-and-search.pull-left,
#header .nav-hold.hamburger-only.pull-left {
  float: left;
}
#header .nav-hold.hamburger-and-search.pull-left .togglemenu,
#header .nav-hold.hamburger-only.pull-left .togglemenu {
  float: left;
  margin-left: 0;
  margin-right: 13px;
}
#header .nav-hold.hamburger-only .srchbuttonmodal {
  display: none !important;
}
body#home {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 660px) {
  body#home .small-link {
    font-size: 11px;
  }
}
body#home #top-bar-theme {
  background-color: #0e1d49;
  height: 8px;
  width: 100%;
}
@keyframes slideInFromLeft {
  0% {
    right: -250px;
  }
  100% {
    right: 0px ;
  }
}
/*
body.bg1 {
	.banner {
		background-image: url('/themes/kennedy/images/banner8.jpg');
	}
}

body.bg2 {
	.banner {
		background-image: url('/themes/kennedy/images/banner9.jpg');
	}
}

body.bg3 {
	.banner {
		background-image: url('/themes/kennedy/images/banner3.jpg');
		background-position: top;
	}
}

body.bg4 {
	.banner {
		background-image: url('/themes/kennedy/images/banner4.jpg');
		background-position: top;
	}
}
*/
.banner {
  background-position: center left;
  background-image: url('/themes/kennedy/images/banner8.jpg');
  background-size: cover;
  width: 100%;
  height: 710px;
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .banner {
    height: 610px;
  }
}
@media (max-width: 1100px) {
  .banner {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: 435px;
    background-position: center center;
  }
}
@media (max-width: 550px) {
  .banner {
    height: 350px;
  }
}
.banner .banner-press {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  max-width: 50%;
}
@media (max-width: 767px) {
  .banner .banner-press {
    max-width: 100%;
    bottom: 30px;
  }
}
@media (max-width: 520px) {
  .banner .banner-press {
    left: 30px;
  }
}
@media (max-width: 460px) {
  .banner .banner-press {
    left: 20px;
  }
}
.banner .banner-press a {
  color: white;
}
.banner .banner-press a:hover .small-link {
  background-color: #2865ff;
}
.banner .banner-press h2 {
  font-size: 45px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .banner .banner-press h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .banner .banner-press h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 667px) {
  .banner .banner-press h2 {
    font-size: 28px;
  }
}
@media (max-width: 497px) {
  .banner .banner-press h2 {
    font-size: 22px;
  }
}
.banner .banner-press .date {
  color: white;
}
.banner .left-banner {
  position: absolute;
  bottom: 90px;
  right: 0px;
  text-align: right;
}
.banner .left-banner a {
  display: inline-block;
  background-color: #033fd5;
  color: white;
  font-family: 'Felbridge W01 Black';
  padding: 9px 40px;
  width: 250px;
  border-radius: 30px 0px 0px 30px;
  margin-bottom: 10px;
  text-align: right;
  transition: 0.3s ease-in-out all;
  position: relative;
  right: -250px;
  animation: 1s ease-out 0.9s 1 slideInFromLeft;
  -webkit-animation-fill-mode: forwards;
  /* Chrome 16+, Safari 4+ */
  -moz-animation-fill-mode: forwards;
  /* FF 5+ */
  -o-animation-fill-mode: forwards;
  /* Not implemented yet */
  -ms-animation-fill-mode: forwards;
  /* IE 10+ */
  animation-fill-mode: forwards;
}
.banner .left-banner a:hover {
  width: 280px;
  padding-right: 70px;
}
.banner .left-banner a:last-child {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.grey-container {
  padding: 50px 25px;
  background-color: #eeeeee;
  display: inline-block;
  width: 100%;
}
.grey-container .col-md-6 {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 520px) {
  .grey-container .col-md-6 {
    padding: 0;
  }
}
.grey-container .left-banner {
  display: block;
  width: 100%;
  padding: 0 15px 85px;
  margin-top: -20px;
}
@media (max-width: 550px) {
  .grey-container .left-banner {
    display: block;
  }
}
@media (max-width: 520px) {
  .grey-container .left-banner {
    padding: 0 0 85px;
  }
}
.grey-container .left-banner a {
  display: inline-block;
  width: 100%;
  background-color: #033fd5;
  color: white;
  font-family: 'Felbridge W01 Black';
  text-align: center;
  border-radius: 30px;
  padding: 8px;
}
@media (max-width: 550px) {
  .grey-container .left-banner a {
    margin-bottom: 13px;
  }
}
@media (max-width: 550px) {
  .grey-container .left-banner .col-xs-6 {
    width: 100%;
  }
}
.card {
  background-color: white;
  text-align: center;
  padding: 0 35px 35px;
  color: #0e1d49;
  font-size: 24px;
  font-family: 'Felbridge W01';
  width: 100%;
  min-height: 330px;
  margin-bottom: 50px;
  box-shadow: -1px 2px 2px #bebebe;
}
@media (max-width: 767px) {
  .card {
    min-height: 250px;
  }
}
@media (max-width: 520px) {
  .card {
    padding: 0 20px 35px;
  }
}
.card h3 {
  font-family: 'Felbridge W01 Black';
  font-size: 15px;
  text-transform: uppercase;
  color: #0e1d49;
}
@media (max-width: 400px) {
  .card h3 {
    font-size: 13px;
  }
}
.card .social-icon {
  position: relative;
  top: -30px;
}
@media (max-width: 640px) {
  .card .social-icon {
    top: -23px;
  }
}
.card .social-icon i {
  background-color: #033fd5;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  text-align: center;
  padding-top: 5px;
  color: white;
  font-size: 40px;
  line-height: 53px;
}
@media (max-width: 640px) {
  .card .social-icon i {
    height: 48px;
    width: 48px;
    border-radius: 48px;
    font-size: 30px;
    padding-top: 0px;
    line-height: 51px;
  }
}
.card .social-icon:hover h3 {
  color: #033fd5;
}
.card .social-icon:hover i {
  background-color: #2865ff;
}
.card.table-display {
  position: relative;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .card.table-display {
    display: block;
    padding-top: 45px;
  }
}
@media (max-width: 500px) {
  .card.table-display {
    padding-top: 30px;
    padding-bottom: 15px;
  }
}
.card.table-display .social-icon {
  position: absolute;
  width: 100%;
  left: 0;
}
@media (max-width: 767px) {
  .card.table-display .cell {
    display: block;
  }
}
.card .font-xsmall {
  font-size: 27px;
  line-height: 39px;
}
.card .font-xsmall p {
  font-size: 27px;
  line-height: 39px;
}
.card .font-small {
  font-size: 23px;
  line-height: 33px;
}
.card .font-small p {
  font-size: 23px;
  line-height: 33px;
}
.card .font-regular {
  font-size: 22px;
  line-height: 30px;
}
.card .font-regular p {
  font-size: 22px;
  line-height: 30px;
}
.card .font-large {
  font-size: 20px;
  line-height: 24px;
}
.card .font-large p {
  font-size: 20px;
  line-height: 24px;
}
.card .font-xlarge {
  font-size: 18px;
  line-height: 24px;
}
.card .font-xlarge p {
  font-size: 18px;
  line-height: 24px;
}
.card .xxlarge {
  font-size: 17px;
  line-height: 24px;
}
.card .xxlarge p {
  font-size: 17px;
  line-height: 24px;
}
.facebook a {
  color: #0e1d49;
}
.facebook a:hover {
  color: #033fd5;
}
.facebook .date {
  margin-top: 25px;
}
.facebook #facebook-posts {
  padding-top: 50px;
}
.twitter .timePosted {
  margin-bottom: 0;
}
.twitter .timePosted a {
  font-size: 13px;
  color: #5b6670;
}
.twitter .item {
  padding-top: 50px;
}
@media (max-width: 380px) {
  #instamedia {
    margin-top: 50px;
  }
}
#instamedia a {
  width: 33%;
  display: inline-block;
  padding-top: 50px;
}
@media (max-width: 767px) {
  #instamedia a {
    padding-bottom: 20px;
  }
}
@media (max-width: 380px) {
  #instamedia a {
    width: 100%;
    padding: 0px;
  }
}
#instamedia a .instaimage {
  width: 100%;
  height: 195px;
  background-size: cover;
  border: 3px solid white;
}
@media (max-width: 1330px) {
  #instamedia a .instaimage {
    height: 170px;
  }
}
@media (max-width: 1200px) {
  #instamedia a .instaimage {
    height: 150px;
  }
}
@media (max-width: 991px) {
  #instamedia a .instaimage {
    height: 225px;
  }
}
@media (max-width: 767px) {
  #instamedia a .instaimage {
    height: 180px;
  }
}
@media (max-width: 640px) {
  #instamedia a .instaimage {
    height: 145px;
  }
}
@media (max-width: 430px) {
  #instamedia a .instaimage {
    height: 117px;
  }
}
@media (max-width: 380px) {
  #instamedia a .instaimage {
    height: 175px;
  }
}
.votes {
  font-size: 15px;
  padding: 0 50px 0px;
}
.votes .social-icon i {
  padding-left: 5px;
}
.votes #recent-votes {
  text-align: left;
  margin-top: -15px;
}
@media (max-width: 991px) {
  .votes #recent-votes {
    margin-top: 0px;
  }
}
.votes #recent-votes .page {
  position: relative;
  top: -20px;
}
.votes #recent-votes .page .headers {
  text-transform: uppercase;
  color: #5b6670;
  font-family: 'Felbridge W01 ExtraBold';
  font-size: 13px;
}
.votes #recent-votes .page .date {
  font-family: 'Felbridge W01';
  color: #0e1d49;
}
@media (max-width: 991px) {
  .votes #recent-votes .page .date {
    color: #5b6670;
    font-family: 'Felbridge W01 ExtraBold';
    width: 70%;
    float: left;
  }
}
@media (max-width: 610px) {
  .votes #recent-votes .page .date {
    width: 65%;
  }
}
@media (max-width: 550px) {
  .votes #recent-votes .page .date {
    width: 100%;
  }
}
.votes #recent-votes .page .bill {
  font-size: 13px;
  height: 34px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .votes #recent-votes .page .bill {
    font-size: 18px;
    font-family: 'Felbridge W01 Black';
    width: 70%;
    float: left;
    height: auto;
  }
}
@media (max-width: 610px) {
  .votes #recent-votes .page .bill {
    width: 65%;
  }
}
@media (max-width: 550px) {
  .votes #recent-votes .page .bill {
    width: 100%;
  }
}
.votes #recent-votes .page .vote-label {
  font-family: 'Felbridge W01 ExtraBold';
  margin-right: 4px;
}
@media (max-width: 991px) {
  .votes #recent-votes .page .vote,
  .votes #recent-votes .page .result {
    width: 25%;
    float: right;
  }
}
@media (max-width: 700px) {
  .votes #recent-votes .page .vote,
  .votes #recent-votes .page .result {
    width: 30%;
  }
}
@media (max-width: 610px) {
  .votes #recent-votes .page .vote,
  .votes #recent-votes .page .result {
    width: 35%;
  }
}
@media (max-width: 550px) {
  .votes #recent-votes .page .vote,
  .votes #recent-votes .page .result {
    width: 100%;
  }
}
.votes #recent-votes .page .row {
  padding: 4px 0px;
}
@media (max-width: 991px) {
  .votes #recent-votes .page .row {
    padding: 9px 0;
  }
}
.votes #recent-votes .page .row:nth-child(even) {
  background-color: #eeeeee;
}
@media (max-width: 550px) {
  .votes #recent-votes .page .row:nth-child(4),
  .votes #recent-votes .page .row:nth-child(5) {
    display: none;
  }
}
.press#press {
  text-align: center;
  padding: 70px 70px 100px;
}
@media (max-width: 550px) {
  .press#press {
    padding: 70px 30px 100px;
  }
}
.press#press h2 {
  text-transform: uppercase;
  font-family: 'Felbridge W01 Black';
  font-size: 45px;
}
.press#press .press-title {
  font-family: 'Felbridge W01 Black';
  color: #0e1d49;
  font-size: 24px;
}
.press#press .press-item {
  margin: 40px 0;
}
.press#press .press-item a:hover .press-title {
  color: #033fd5;
}
.press#press .press-footer {
  margin-top: 20px;
}
.press#press .press-footer a {
  color: #5b6670;
}
.press#press .press-footer a:hover {
  color: #0e1d49;
}
.press#press .summary {
  font-family: 'Bodoni W01 Book_709611';
}
.press#press .summary p {
  line-height: 25px;
}
.office-locations {
  /*background-image: url('/themes/kennedy/images/offices.jpg');*/
  background-color: #0e1d49;
  background-size: cover;
  background-position: center;
  display: inline-block;
  width: 100%;
  position: relative;
  color: white;
  padding: 70px 50px 90px;
}
@media (max-width: 1100px) {
  .office-locations {
    padding-bottom: 120px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .office-locations {
    padding-bottom: 0px;
    padding-top: 240px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.office-locations h2 {
  font-family: 'Felbridge W01 Black';
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 220px;
}
@media (max-width: 767px) {
  .office-locations h2 {
    margin-bottom: 40px;
  }
}
.office-locations h3 {
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Felbridge W01 Black';
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .office-locations h3 {
    font-size: 22px;
  }
}
.office-locations .small-link {
  margin-top: 15px;
  margin-bottom: 40px;
  display: inline-block;
}
.office-locations .small-link:hover {
  background-color: #2865ff;
}
@media (max-width: 1100px) {
  .office-locations .address-footer span {
    width: 100%;
    display: inline-block;
    float: left;
    height: 4px;
  }
}
.offices.visible-xs-inline-block {
  background-color: #eeeeee;
  width: 100%;
  margin-top: 0px !important;
  padding-bottom: 90px;
  padding-top: 30px;
}
.offices.visible-xs-inline-block .address {
  margin-bottom: 75px;
}
.offices.visible-xs-inline-block .small-link {
  margin: 15px 0 13px;
}
.offices.visible-xs-inline-block .address-footer span {
  display: inline-block;
}
@-moz-document url-prefix() {
  #home .card.table-display {
    height: 330px;
  }
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
  background-color: #0e1d49;
}
.modal-dialog {
  z-index: 5;
}
.table-display {
  display: table;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
.background-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.background-image .with-height {
  width: 100%;
  height: 100%;
  display: inline-block;
}
body.no-breadcrumbs #breadcrumb a {
  display: none;
}
li.previous {
  margin-right: 10px;
}
.fancybox-title-float-wrap .child {
  white-space: pre-line !important;
}
.toggle-btn.active,
.btn-block.hover {
  background-color: #0e1d49 !important;
}
#breadcrumb {
  margin-top: 0px;
  margin-bottom: 30px;
}
#breadcrumb a {
  color: #5b6670;
  text-transform: uppercase;
  font-family: 'Felbridge W01 ExtraBold';
  font-size: 12px;
}
#breadcrumb a:hover {
  color: #033fd5;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: #033fd5;
  color: white;
  padding: 2px 10px 1px;
  margin-right: 10px;
  border-radius: 20px;
  font-family: 'Felbridge W01 ExtraBold';
  text-transform: uppercase;
}
#filterbuttons a:hover {
  background-color: #0e1d49;
  color: white;
}
.pager li a {
  border-radius: 30px;
  font-family: 'Felbridge W01 ExtraBold';
  text-transform: uppercase;
  padding-bottom: 3px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 70px;
  background-color: transparent !important;
}
@media (max-width: 991px) {
  #listblocks .block {
    height: 95px;
  }
}
#listblocks .block:hover a {
  background-color: inherit;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: white;
  color: #0e1d49;
  font-size: 20px;
  border-radius: 80px;
  border: 2px solid #0e1d49;
  transition: 0.3s all ease-in;
  font-family: 'Felbridge W01 Black';
  text-transform: uppercase;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #0e1d49;
  color: white;
}
#listblocks .block .desc {
  display: none;
}
body.list-blocks #main_container {
  max-width: 1030px;
}
#typenav li a {
  color: #000;
  font-family: 'Felbridge W01 Black';
  text-align: center;
  padding: 7px 15px;
  font-size: 15px;
  color: #0e1d49;
}
#typenav li.active a {
  color: #033fd5;
  border-bottom: 2px solid #033fd5;
  background-color: transparent;
}
#typenav.affix {
  top: 0;
}
.main_page_title {
  font-family: 'Felbridge W01 Black';
  color: #033fd5;
  font-language-override: 45px;
  text-transform: uppercase;
}
body#newsroom .main_page_title {
  color: #000;
}
body#about .main_page_title,
body#district .main_page_title {
  color: #033fd5;
  text-transform: uppercase;
  font-size: 45px;
  margin-top: 0;
}
body#about #sam-aboutmobilepod,
body#district #sam-aboutmobilepod {
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  body#about #sam-aboutmobilepod .col-xs-6,
  body#district #sam-aboutmobilepod .col-xs-6 {
    width: 100%;
  }
  body#about #sam-aboutmobilepod .col-xs-6 .about-links,
  body#district #sam-aboutmobilepod .col-xs-6 .about-links {
    margin-top: 25px;
  }
}
body#about .relative,
body#district .relative {
  width: 100%;
  height: 0px;
  position: relative;
}
body#about #map,
body#district #map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
body#about #sam-aboutpod,
body#district #sam-aboutpod {
  text-align: center;
}
body#about .about-links,
body#district .about-links {
  display: inline-block;
  text-align: left;
}
body#about .about-links a,
body#district .about-links a {
  font-size: 15px;
  font-family: 'Felbridge W01 Black';
  text-transform: uppercase;
  display: block;
  color: #0e1d49;
}
body#about .about-links a:hover,
body#district .about-links a:hover {
  color: #033fd5;
}
body#about .about-links .small-link,
body#district .about-links .small-link {
  margin-top: 20px;
  color: white;
}
body#about .about-links .small-link:hover,
body#district .about-links .small-link:hover {
  color: white;
}
body#about .grey-container,
body#district .grey-container {
  padding-bottom: 0px;
  margin: 40px auto;
  max-width: 1500px;
  display: block;
}
body#about .pull-quote,
body#district .pull-quote {
  text-align: center;
}
body#about .pull-quote h1,
body#district .pull-quote h1 {
  color: #033fd5;
  font-size: 150px;
  line-height: 70px;
  position: relative;
}
@media (max-width: 672px) {
  body#about .pull-quote h1,
  body#district .pull-quote h1 {
    font-size: 104px;
  }
}
body#about .pull-quote h1.open,
body#district .pull-quote h1.open {
  top: -27px;
}
@media (max-width: 672px) {
  body#about .pull-quote h1.open,
  body#district .pull-quote h1.open {
    top: -62px;
  }
}
body#about .pull-quote h1.end,
body#district .pull-quote h1.end {
  bottom: -2px;
}
body#about .pull-quote h3,
body#district .pull-quote h3 {
  font-size: 28px;
}
@media (max-width: 600px) {
  body#about .pull-quote h3,
  body#district .pull-quote h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 479px) {
  body#about .pull-quote h3,
  body#district .pull-quote h3 {
    font-size: 16px;
    line-height: 25px;
  }
}
body#about .pull-quote h2,
body#district .pull-quote h2 {
  font-family: 'Felbridge W01 Black';
  margin-top: 50px;
  font-size: 45px;
}
@media (max-width: 672px) {
  body#about .pull-quote h2,
  body#district .pull-quote h2 {
    font-size: 36px;
  }
}
@media (max-width: 479px) {
  body#about .pull-quote h2,
  body#district .pull-quote h2 {
    font-size: 27px;
  }
}
body#about .pull-quote .quote-footer,
body#district .pull-quote .quote-footer {
  margin-top: 25px;
}
body#newsroom #newscontent .buttonfornews {
  display: table;
  width: 100%;
  position: relative;
  float: none;
  margin: 2em 0px;
}
body#newsroom #newscontent .buttonfornews .col-md-3 {
  padding-left: 0px;
}
body#newsroom #newscontent #press .newssummary a {
  font-size: 18px;
}
body.newsroom_landing .col-md-9 {
  padding-left: 35px;
  border-left: 1px solid #eeeeee;
}
body.newsroom_landing #breadcrumb {
  display: none;
}
body.newsroom_landing .section-header a {
  background-color: #033fd5;
  position: relative;
  left: -35px;
  color: white;
  border-radius: 0px 30px 30px 0px;
  padding: 7px 35px;
  display: inline-block;
  font-size: 24px;
  font-family: 'Felbridge W01 Black';
  transition: 0.3s ease-in-out all;
}
body.newsroom_landing .section-header a:hover {
  padding-left: 65px;
}
body.newsroom_landing h2.title a {
  color: #0e1d49;
}
body.newsroom_landing h2.title a:hover {
  color: #033fd5;
}
body.newsroom_landing .clearfix {
  padding: 30px 0px;
}
.summary a {
  font-family: 'Felbridge W01 ExtraBold';
  text-transform: uppercase;
  font-size: 13px;
  color: #0e1d49;
}
.summary a:hover {
  color: #033fd5;
}
#browser_table a {
  color: #0e1d49;
}
#browser_table a:hover {
  color: #033fd5;
}
#browser_table .divider td {
  text-transform: uppercase;
  font-size: 14px !important;
  padding-top: 30px !important;
  font-family: 'Felbridge W01 Bold';
}
#listblocksbg .list-block {
  background-attachment: fixed;
  background-size: cover;
  border-radius: 80px;
  overflow: hidden;
}
#listblocksbg .list-block .block {
  height: 125px;
}
#listblocksbg .list-block .block a {
  font-family: 'Felbridge W01 Black';
  font-size: 22px;
  background-color: rgba(3, 63, 213, 0.79);
  transition: 0s ease-in all;
}
#listblocksbg .list-block .block a:hover {
  color: #033fd5;
  border: 3px solid #033fd5;
  border-radius: 80px;
  background-color: white;
}
#issue .one_column .breakout {
  border-top: 1px solid #eeeeee;
  padding-bottom: 40px;
}
#issue .one_column .breakout h1 {
  color: #033fd5;
  text-transform: uppercase;
  font-family: 'Felbridge W01 Black';
  margin-bottom: 70px;
}
#issue .one_column .breakout #issueFeed > li {
  border-bottom: 0px;
  padding-bottom: 20px;
}
.event-square {
  border: 1px solid #eee;
  box-shadow: -1px 2px 2px #bebebe;
  padding: 20px 30px 40px;
  margin-bottom: 20px;
  margin-top: 10px;
  position: relative;
}
@media (max-width: 1330px) {
  .event-square {
    min-height: 275px;
  }
}
@media (max-width: 991px) {
  .event-square {
    min-height: 255px;
  }
}
@media (max-width: 767px) {
  .event-square {
    min-height: 235px;
  }
}
.event-square h2 a {
  color: #0e1d49;
}
.event-square h2 a:hover {
  color: #033fd5;
}
.event-square.upcoming {
  border: 1px solid #033fd5;
}
.event-square .upcoming-badge {
  background-color: #033fd5;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  position: absolute;
  top: 10px;
  font-family: 'Felbridge W01 Black';
  padding: 2px 10px 0;
  left: 11px;
  border-radius: 20px;
}
.event-square .description {
  margin-top: 20px;
  height: 60px;
}
.event-square .description p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 19px;
}
body:not(#home) .offices.text-center {
  margin-top: 50px;
}
body:not(#home) .offices.text-center .address {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  body:not(#home) .offices.text-center .address {
    font-size: 13px;
  }
}
body:not(#home) .offices.text-center .address-footer span {
  display: inline-block;
}
body:not(#home) .offices.text-center .small-link {
  margin: 15px 0 33px;
}
body:not(#home) .offices.text-center .date {
  margin-top: 3px;
}
body:not(#home) .offices.text-center .office-image {
  width: 180px;
  display: inline-block;
  height: 180px;
  border-radius: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
body:not(#home) .offices.text-center .office-image:before {
  content: '';
  background-color: #033fd5;
  opacity: 0.1;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
input#copyTarget {
  position: absolute;
  z-index: -1;
  width: 50px !important;
  height: 9px !important;
}
#copyButton {
  top: -3px;
  position: relative;
}
body#media-view #content {
  color: white;
  background: #000;
}
body#media-view #featured-details-header {
  color: #fff;
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#media-view #featured-details-header {
    font-size: 26px;
  }
}
body#media-view #featured-details-header a {
  color: #fff;
}
body#media-view #featured-details-header a:hover {
  text-decoration: underline;
}
body#media-view #featured-details-description {
  color: #fff;
}
body#media-view #featured-details-description .main_page_title {
  color: #fff;
}
body#media-view #featured-details-description p {
  line-height: 25px;
}
body#media-view #share-footer a {
  color: #0e1d49;
}
body#media-view #share-footer a:hover {
  color: #fff;
}
#share-buttons li {
  float: right;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #033fd5;
}
#multimedia-browser ul.nav-tabs li a:hover {
  background: #0e1d49;
}
#multimedia-browser ul.nav-tabs li.active {
  background-color: #033fd5;
}
#multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
#multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #0e1d49;
  color: #fff;
}
#multimedia-browser .pagination {
  background-color: #033fd5;
}
#multimedia-browser .row .media-thumbnail a {
  color: #000;
}
#multimedia-browser .row .media-thumbnail a:hover {
  color: #033fd5;
}
body#multimedia.new #newscontent.video {
  padding: 0;
}
body#multimedia.new #video-content {
  background-color: #000;
  padding: 40px 80px;
  position: relative;
}
body#multimedia.new #video-content:after {
  content: '';
  background-color: #000;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  right: -1000px;
  top: 0;
}
body#multimedia.new #video-content:before {
  content: '';
  background-color: #000;
  display: inline-block;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: -1000px;
  top: 0;
}
body#multimedia.new #video-content input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #video-content #media-player iframe {
  height: 500px;
}
@media (max-width: 767px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 340px;
  }
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #media-player iframe {
    height: 220px;
    min-height: 220px;
  }
}
body#multimedia.new #video-content #featured-details-header {
  color: #fff;
  font-family: 'Felbridge W01 Bold';
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 550px) {
  body#multimedia.new #video-content #featured-details-header {
    font-size: 26px;
  }
}
body#multimedia.new #video-content #featured-details-header a {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-header a:hover {
  text-decoration: underline;
}
body#multimedia.new #video-content #featured-details-description {
  color: #fff;
}
body#multimedia.new #video-content #featured-details-description p {
  line-height: 25px;
}
body#multimedia.new #video-content #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new .media-header {
  color: #0e1d49 !important;
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}
body#multimedia.new #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #social-container .btn-xs {
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  width: 65px;
  overflow: hidden;
}
body#multimedia.new #share-footer #share-buttons {
  float: right;
  padding: 18px;
}
body#multimedia.new #share-footer #share-buttons #share-youtube a {
  color: white;
}
body#multimedia.new #share-footer #share-buttons #share-copy-link {
  cursor: pointer;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container {
  display: grid;
}
body#multimedia.new #share-footer #share-buttons #share-link-button-container input#copyTarget {
  position: absolute;
  z-index: -1;
}
body#multimedia.new #multimedia-browser {
  padding: 50px 80px;
}
body#multimedia.new #multimedia-browser .multimedia-content {
  margin-left: -15px;
  margin-right: -15px;
}
body#multimedia.new #multimedia-browser ul.nav-tabs {
  border-bottom: 3px solid #033fd5;
  border-bottom: 0px;
  display: none;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a {
  color: #033fd5 !important;
  font-size: 52px;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a:hover {
  background: #0e1d49;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active {
  background-color: white;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li.active a:hover {
  background: transparent;
}
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#all-tab-content"],
body#multimedia.new #multimedia-browser ul.nav-tabs li a[data-target="#audio-tab-content"] {
  display: none !important;
  width: 0;
  overflow: hidden;
  padding: 0;
}
body#multimedia.new #multimedia-browser legend {
  display: none;
}
body#multimedia.new #multimedia-browser .loading div#search-results-header {
  display: none;
}
body#multimedia.new #multimedia-browser .status {
  background-color: #0e1d49;
  color: #fff;
  font-family: 'Felbridge W01';
  padding: 0 13px;
  margin-top: -18px;
}
body#multimedia.new #multimedia-browser .multimedia-tools #search-mm input {
  font-family: 'Felbridge W01';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools .date-btn,
body#multimedia.new #multimedia-browser .multimedia-tools .search-media-btn {
  background-color: #033fd5;
  text-transform: uppercase;
}
body#multimedia.new #multimedia-browser .multimedia-tools select {
  color: #bcbaba;
  font-family: 'Felbridge W01';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
  color: #bcbaba;
  font-family: 'Felbridge W01';
  text-transform: uppercase;
  font-size: 13px;
}
body#multimedia.new #multimedia-browser .pagination {
  background-color: white;
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a {
  color: #000;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a:hover {
  color: #0e1d49;
}
body#multimedia.new #multimedia-browser .pagination .listing-increment a.selected {
  color: #0e1d49;
}
body#multimedia.new #multimedia-browser .pagination.first-one {
  display: none !important;
}
body#multimedia.new #multimedia-browser .media-thumbnail {
  height: 185px;
  width: 25%;
  margin: 0;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
body#multimedia.new #multimedia-browser .media-thumbnail img {
  margin-top: -32px;
  width: 100%;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a {
  color: #000;
  height: 165px;
  overflow: hidden;
  font-family: 'Felbridge W01 Bold';
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail .image a:hover {
  color: #033fd5;
}
body#multimedia.new #multimedia-browser .media-thumbnail a {
  color: #000;
  font-family: 'Felbridge W01 Bold';
  height: 96px;
  overflow: hidden;
  display: inline-block;
}
body#multimedia.new #multimedia-browser .media-thumbnail a:hover {
  color: #033fd5;
}
body#multimedia.new #multimedia-browser .media-thumbnail:hover a {
  color: #033fd5;
}
@media (max-width: 1300px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 190px;
  }
}
@media (max-width: 1230px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 33.33333%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 83%;
  }
}
@media (max-width: 990px) {
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 157px;
  }
}
@media (max-width: 900px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 50%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 176px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools select {
    width: 39%;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 80%;
  }
}
@media (max-width: 768px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 240px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type="text"] {
    width: 84%;
  }
}
@media (max-width: 560px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail .image a {
    height: 160px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 480px) {
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
@media (max-width: 430px) {
  body#multimedia.new #share-buttons {
    padding: 0;
  }
  body#multimedia.new #multimedia-browser {
    padding: 50px 70px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail {
    width: 100%;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail img {
    margin-top: -50px;
  }
  body#multimedia.new #multimedia-browser .media-thumbnail a {
    height: 50px;
  }
  body#multimedia.new #multimedia-browser .multimedia-tools input[type='text'] {
    width: 78%;
  }
}
body footer {
  background-color: #fff;
  text-align: center;
  padding: 20px 0px;
  position: relative;
}
body footer .stars {
  position: absolute;
  top: -41px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body footer .footer-ul.footernav {
  text-align: center;
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav {
    padding: 27px 10px;
  }
}
body footer .footer-ul.footernav li {
  padding: 30px 35px 20px;
  text-align: center;
}
@media (max-width: 1300px) {
  body footer .footer-ul.footernav li {
    padding: 30px 20px 20px;
  }
}
@media (max-width: 991px) {
  body footer .footer-ul.footernav li {
    padding: 10px 20px 7px;
  }
}
body footer .footer-ul.footernav li a {
  color: #5b6670;
  font-size: 13px;
  text-transform: uppercase;
  font-family: 'Felbridge W01 ExtraBold';
}
body footer .footer-ul.footernav li a:hover {
  color: #0e1d49;
}
body footer .subfooternav {
  /*float:left;*/
  color: #0e1d49;
  margin-top: 40px;
}
body footer .subfooternav a {
  color: #0e1d49;
  font-family: 'Felbridge W01';
  font-size: 13px;
  display: inline-block;
  padding-right: 15px;
}
body footer .subfooternav a:hover {
  color: #033fd5;
}
body footer .subfooternav li {
  padding-top: 3px;
}
body footer .subfooternav li:first-child {
  /*border-right:1px solid black;
					padding-right: 10px;*/
}
body footer .subfooternav li + li {
  border-left: 1px solid white;
  padding-right: 10px;
}
body footer .subfooternav #google_translate_element {
  display: inline-block;
  margin-left: 14px;
}
body footer .subfooternav #google_translate_element .goog-te-gadget-simple {
  border: 0px !important;
}
body footer .subfooternav #google_translate_element .goog-te-gadget-simple span {
  color: #0e1d49 !important;
  font-family: 'Felbridge W01';
}
body footer .social-list li a {
  background-color: #0e1d49;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-block;
  padding-top: 3px;
  text-align: center;
}
body footer .social-list li a.newsletter {
  background-color: #033fd5;
  width: auto;
  height: 27px;
  padding: 4px 25px;
}
body footer .social-list li a:hover {
  background-color: #033fd5;
}
body .centered-nav .footer-ul {
  text-align: center;
}
body .left-aligned-nav .footer-ul,
body .left-aligned-nav .footer-ul.footernav {
  text-align: left;
}
body .left-aligned-nav .footer-ul li:first-child,
body .left-aligned-nav .footer-ul.footernav li:first-child {
  padding-left: 0px;
}
body .right-aligned-nav .footer-ul,
body .right-aligned-nav .footer-ul.footernav {
  text-align: right;
}
body .right-aligned-nav .footer-ul li:last-child,
body .right-aligned-nav .footer-ul.footernav li:last-child {
  padding-right: 0px;
}
body .right-aligned-nav .subfooternav li:first-child {
  /*border-left:1px solid black;
						padding-right: 10px;*/
}
body:not(#home) footer {
  margin-top: 110px;
  border-top: 1px solid #eeeeee;
}
body:not(#home) footer:before {
  background-color: #fff;
  content: '';
  display: inline-block;
  height: 135px;
  width: 140px;
  border-radius: 135px;
  position: absolute;
  top: -44px;
  z-index: -1;
  left: -1px;
  right: 0;
  margin: 0 auto;
  border: 1px solid #eee;
}
#flagForm #flag-options .head {
  background-color: #033fd5;
  color: #fff;
  border-radius: 40px;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

font-family:'Felbridge W01 ExtraBold';
font-family:'Felbridge W01 Bold';
font-family:'Felbridge W01';
font-family:'Felbridge W01 Black';
font-family:'Bodoni W01 Book_709611';


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* you should name colors as their name (ie @blue)
  above but make sure to assign these following site
  colors to them
*/
.serif {
  font-family: 'Bodoni W01 Book_709611';
}
.sans,
.regular {
  font-family: 'Felbridge W01';
}
.bold {
  font-family: 'Felbridge W01 Bold';
}
.black {
  font-family: 'Felbridge W01 Black';
}
.extrabold {
  font-family: 'Felbridge W01 ExtraBold';
}
.sans-serif {
  font-family: 'Felbridge W01';
}
body {
  font-size: 18px;
  font-family: 'Felbridge W01';
  color: #0e1d49;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Felbridge W01 ExtraBold';
}
/*anchor stlyes*/
a,
.light-bg-link {
  color: #033fd5;
}
a:hover,
.light-bg-link:hover {
  text-decoration: none;
  color: #0e1d49;
}
/* Used in:
- Footer
- NavModal
*/
.dark-bg-link {
  color: white;
}
.dark-bg-link:hover {
  text-decoration: underline;
}
select {
  background: #fff;
  width: 55px;
  height: auto;
  color: black;
  border: 1px solid silver;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 0px;
  margin: 0 auto;
  padding: 0px;
  vertical-align: bottom;
  font-size: 16px;
}
p {
  margin-bottom: 30px;
  line-height: 30px;
}
.amend-textarea ul li {
  margin-bottom: 8px;
}
#press .date,
.blog-entry .date,
.video .date,
.timePosted {
  text-transform: uppercase;
  font-family: 'Felbridge W01 ExtraBold';
  font-size: 13px;
  color: #5b6670;
}
#press .date a,
.blog-entry .date a,
.video .date a,
.timePosted a {
  color: #5b6670;
}
#press .date a:hover,
.blog-entry .date a:hover,
.video .date a:hover,
.timePosted a:hover {
  color: #0e1d49;
}
h2.title {
  margin-top: 7px;
}
h2.title a {
  color: #0e1d49;
}
h2.title a:hover {
  color: #033fd5;
}
/*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: #033fd5;
  font-family: 'Felbridge W01 Black';
  text-transform: uppercase;
  color: white;
  border-radius: 100px;
}
.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: #2865ff;
  color: white;
}
.btn-block {
  padding: 15px;
  font-size: 22px;
}
.small-link {
  background-color: #033fd5;
  width: auto;
  padding: 5px 25px 3px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Felbridge W01 ExtraBold';
  font-size: 14px;
  display: inline-block;
  border-radius: 30px;
}
a.small-link:hover {
  color: white;
  background-color: #2865ff;
}
strong {
  word-break: break-word;
}
/*interior page content default styles */
#main_column form .btn {
  background-color: #033fd5;
  width: auto;
  padding: 5px 25px 3px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Felbridge W01 ExtraBold';
  font-size: 14px;
  display: inline-block;
  border-radius: 30px;
}
#main_column form #zip-submit {
  background-color: #033fd5 !important;
  width: auto !important;
  padding: 5px 25px 3px !important;
  color: white !important;
  text-transform: uppercase !important;
  text-align: center !important;
  font-family: 'Felbridge W01 ExtraBold' !important;
  font-size: 14px !important;
  display: inline-block !important;
  border-radius: 30px !important;
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 #sam-bottom {
  display: none;
}
.ie10 #ie-map.relative {
  height: 550px;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 #sam-bottom {
  display: none;
}
.ie9 #ie-map.relative {
  height: 550px;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 #sam-bottom {
  display: none;
}
.ie8 #ie-map.relative {
  height: 550px;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 #sam-bottom {
  display: none;
}
.ie7 #ie-map.relative {
  height: 550px;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
