/* 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);
  }
}


.alert {
  background-color: #9a0000;
  border-radius: 0px;
  display: table;
  width: 100%;

}
.alert .alertIcn {
  display: table-cell;
  margin-bottom: 10px;
  display: table-cell;
  vertical-align: middle;
  font-size:30px;
}
.alert .alertIcn .glyphicon {
  padding-top: 7px;
  color: #fff;
}
.alert .headline{
  display: table-cell;
  vertical-align: middle;
}

.alert .headline .title {
  font-size: 18px;
  color: #fff;
 
}
.alert .headline .title:hover {
  color: yellow;
  border-bottom: 1px solid yellow;
}


.alert .headline .title.nolink:hover {
  color: white;
  border-bottom: 1px solid transparent;
}


#mobile-header {
  display: none;
}
#NavMobileModal .modal-backdrop.in,
#SearchModal .modal-backdrop.in,
#ContactModal .modal-backdrop.in {
  background-color: #0298c0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a,
#SearchModal .modal-dialog .modal-content .modal-body a,
#ContactModal .modal-dialog .modal-content .modal-body a {
  font-size: 24px;
}
#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: #ffdd00;
}
body {
  background-image: url('/themes/sullivan/images/background.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: -52px;
}
body #header {
  background-color: transparent;
}
body #header .logo {
  margin-top: 30px;
  margin-bottom: 70px;
  z-index: 5;
}
body .header {
  background-color: #0298c0;
}
body .navbar .nav-pills {
  width: 66%;
  float: left;
  display: inline-block;
}
body .navbar .nav-pills > li {
  width: auto;
  display: inline-block;
}
body .navbar .nav-pills > li.selected a {
  color: #ffdd00;
}
body .navbar .nav-pills > li a {
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 0px;
  width: auto;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 0px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: #464646;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  text-decoration: none;
  background-color: #f5f5f5;
  padding: 10px 10px!important;
  margin-left: -10px;
  margin-right: -10px;
}
body .navbar .nav-pills > li:hover a {
  color: #ffdd00;
}
body .navbar .nav-pills li + li {
  padding-left: 6%;
}
body .navbar .srchbutton {
  display: none;
}
body .navbar #search {
  width: 20%;
  display: inline-block;
  float: right;
  margin-right: 50px;
}
body .navbar #search #sitesearch {
  padding: 0px;
}
body .navbar #search #sitesearch #search-field {
  border: none;
  background-color: #0187b2;
  color: #fff;
  text-transform: uppercase;
  height: 52px;
  padding: 0px 10px;
  vertical-align: middle;
  float: right;
  margin-bottom: -9px;
  margin-right: -6px;
  margin-top: -5px;
  width: 125%;
  font-size: 24px;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: #0298c0;
  text-transform: uppercase;
  font-size: 22px;
  height: 40px;
  line-height: 22px;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Firefox 18- */
  color: #0298c0;
  text-transform: uppercase;
  font-size: 22px;
  height: 40px;
  line-height: 22px;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #0298c0;
  text-transform: uppercase;
  font-size: 22px;
  height: 40px;
  line-height: 22px;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: #0298c0;
  text-transform: uppercase;
  font-size: 22px;
  height: 40px;
  line-height: 22px;
}
body .navbar #search #sitesearch button {
  color: white;
  height: 52px;
  border: none;
  width: 60px;
  position: absolute;
  font-size: 22px;
  right: 0px;
  background-color: #0298c0;
}
body .navbar #search #sitesearch button:hover {
  color: #ffdd00;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  display: block;
  width: 80%;
  margin: 0 auto;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: #ffdd00;
  font-size: 24px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a:hover {
  color: white;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  display: inline-block;
  position: relative;
  background-color: #0298c0;
  box-shadow: none;
  border: none;
  width: 80%;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  display: block;
  width: 85%;
  float: right;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-size: 22px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  color: #ffdd00;
}
.customisable-border {
  border: none !important;
}
#home .top {
  z-index: 0;
  width: 100%;
  float: left;
  height: 552px;
}
#home .top #featured {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}
#home .top #featured #featuredCarousel {
  width: 100%;
  float: none;
  margin: 0 auto;
  position: relative;
  height: 552px;
  overflow: hidden;
}
#home .top #featured #featuredCarousel .item {
  width: 100%;
  height: auto;
  min-height: 450px;
  max-height: 586px;
  overflow: hidden;
  background-attachment: scroll;
  background-size: cover;
  background-position: center top;
}
#home .top #featured #featuredCarousel .item img {
  height: auto;
}
#home .top .carousel-control {
  width: 8%;
  font-size: 14px;
}
#newsletter {
  padding: 25px 40px;
  height: auto;
  margin-top: 20px;
  background-color: #000046;
  background-image: url('/themes/sullivan/images/newsletterbar.jpg');
  background-size: cover;
}
#newsletter .tbl h2 {
  color: #fff;
  margin-top: 0px;
}
#newsletter .tbl h2 a {
  color: #fff;
}
#newsletter .tbl h2 a:hover {
  color: #ffc000;
}
#newsletter .tbl h2 a span {
  font-family: 'ITC Avant Garde Gothic W01 Bk', sans-serif;
}
#newsletter .tbl #newsletter-signup-container #newsletter-form #firstfield {
  padding-left: 15px;
}
#newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-3 {
  padding-right: 3px;
  padding-left: 3px;
}
@media (max-width: 991px) {
  #newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-2 {
  padding-right: 3px;
  padding-left: 3px;
}
@media (max-width: 991px) {
  #newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-1 {
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 991px) {
  #newsletter .tbl #newsletter-signup-container #newsletter-form .col-md-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#newsletter .tbl #newsletter-signup-container #newsletter-form input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: #000;
}
@media (max-width: 991px) {
  #newsletter .tbl #newsletter-signup-container #newsletter-form input {
    margin-bottom: 10px;
  }
}
#newsletter .tbl #newsletter-signup-container #newsletter-form button {
  width: 100%;
  font-family: 'ITC Avant Garde Gothic W01 Dm', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  height: 44px;
  border: none;
  color: #ffc000;
  background-color: rgba(0, 0, 0, 0.2);
}
#newsletter .tbl #newsletter-signup-container #newsletter-form button:hover {
  color: #ffdd00;
}
#newsletter .tbl #newsletter-signup-container #newsletter-form .popover {
  top: -51px;
  height: auto;
  width: 80%;
  text-align: center;
}
#newsletter .tbl #newsletter-signup-container #newsletter-confirmation {
  font-size: 28px;
  color: #fff;
}
.outline {
  position: relative;
  padding: 12px;
  background-color: white;
  border: 1px solid #a9a9a9;
}
.outline img {
  width: 100%;
}
.outline h2 {
  position: absolute;
  bottom: 75px;
  color: white;
  width: 33%;
  left: 60px;
  font-family: 'ITC Avant Garde Gothic W01 Dm', sans-serif;
  line-height: 49px;
  font-size: 34px;
}
.outline h2:hover {
  color: #00b2e2;
}
.outline.home {
  height: 586px;
}
.gradient {
  position: absolute;
  top: 0px;
  width: 100%;
  height: auto;
}
#latest-news .news-header,
.services .news-header {
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  text-transform: uppercase;
  margin-top: 50px;
  color: #464646;
}
#latest-news .hr,
.services .hr {
  margin-top: 0px;
  border-top: 2px solid #464646;
}
#latest-news .news-item {
  min-height: 130px;
  padding: 20px;
  font-size: 18px;
}
#latest-news .news-item .news-title {
  color: #464646;
}
#latest-news .news-item .news-title:hover {
  color: #0298c0;
}
#latest-news .news-item:nth-child(even) {
  background-color: #f5f5f5;
}
#latest-news .news-item .news-label {
  margin-top: 20px;
  width: 60px;
  height: 25px;
  overflow: visible;
}
#latest-news .news-item .press-release {
  background-color: #00b2e2;
  content: url('/themes/sullivan/images/pr.png');
}
#latest-news .news-item .facebook {
  background-color: #4d68a6;
  content: url('/themes/sullivan/images/facebook.png');
}
#latest-news .news-item .youtube {
  background-color: #cd2127;
  content: url('/themes/sullivan/images/youtube.png');
}
#latest-news .news-item .twitter {
  background-color: #25a7df;
  color: #fff;
  text-align: center;
}
@-moz-document url-prefix() {
  #latest-news .news-item .press-release:before {
    content: url('/themes/sullivan/images/pr.png');
  }
  #latest-news .news-item .facebook:before {
    content: url('/themes/sullivan/images/facebook.png');
  }
  #latest-news .news-item .youtube:before {
    content: url('/themes/sullivan/images/youtube.png');
  }
}
#latest-news .news-item iframe {
  width: 100%;
  height: 122px;
}
#latest-news .news-item img {
  width: 100%;
}
#latest-news #more-latest-news-container {
  margin-top: 10px;
}
#latest-news #more-latest-news-container #more-latest-news {
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  text-transform: uppercase;
  color: #00b2e2;
}
#latest-news .pagination-container {
  margin-top: 2em;
}
#latest-news .pagination-container .form-inline {
  line-height: 22px;
}
.services .service {
  margin-bottom: 15px;
  display: block;
  height: 150px;
}
.services .service h3 {
  color: white;
  text-transform: uppercase;
  z-index: 5;
  position: relative;
  top: -71%;
  text-align: center;
}
.services .service .pattern {
  background-image: url('/themes/sullivan/images/pattern.png');
  background-repeat: repeat;
  height: 150px;
  width: 100%%;
  z-index: 3
			position: absolute;
  background-color: rgba(11, 11, 11, 0.5);
}
.services .service#casework {
  background-image: url('/themes/sullivan/images/casework.jpg');
}
.services .service#tour {
  background-image: url('/themes/sullivan/images/tour.jpg');
}
.services .service#flag {
  background-image: url('/themes/sullivan/images/flag.jpg');
}
.services .service#contact {
  background-image: url('/themes/sullivan/images/veterans.jpg');
}
.services .service#internships {
  background-image: url('/themes/sullivan/images/casework.jpg');
}
.services .service:hover .pattern {
  background-color: rgba(0, 178, 226, 0.5);
}
.services .service:hover h3 {
  text-decoration: none;
}
.social .nav-tabs {
  border-bottom: 1px solid #464646;
}
.social .nav-tabs > li > a {
  border-radius: 0px;
  line-height: 0.5;
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  text-transform: uppercase;
  color: #00b2e2;
}
.social #twitter {
  padding-top: 20px;
}
.social .nav-tabs > li.active > a {
  border: 1px solid #464646;
  border-bottom-color: transparent;
  color: #464646;
}
.social #instamedia a img {
  width: 30%;
  margin-top: 15px;
}
.social #instamedia a:nth-child(2) img,
.social #instamedia a:nth-child(5) img {
  margin-left: 15px;
  margin-right: 15px;
}
.social .social-button {
  width: 100%;
  height: 50px;
  border: 1px solid #464646;
  text-align: center;
  text-transform: uppercase;
  color: #464646;
  display: block;
  margin-top: 15px;
  padding: 12px;
  font-size: 17px;
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
}
.social .social-button:hover {
  color: #464646;
  background-color: #00b2e2;
}
#circle {
  display: inline-block;
  height: 21px;
  width: 21px;
  line-height: 15px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #fff;
  color: #0298c0;
  text-align: center;
  font-size: 29px;
  position: relative;
  left: 14px;
  cursor: pointer;
}
.map .circle {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  background-color: #00b2e2;
  border: 2px solid #0187b2;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.map .circle-active {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
  display: block;
  border-radius: 25px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.map .location {
  position: absolute;
  top: 0px;
  left: 0px;
}
.map .location#circle_anchorage {
  top: 298px;
  left: 699px;
}
.map .location#circle_anchorage:hover .anchorage,
.map .location#circle_anchorage.hover .anchorage {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_fairbanks {
  top: 181px;
  left: 718px;
}
.map .location#circle_fairbanks:hover .fairbanks,
.map .location#circle_fairbanks.hover .fairbanks {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_juneau {
  top: 339px;
  left: 908px;
}
.map .location#circle_juneau:hover .juneau,
.map .location#circle_juneau.hover .juneau {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_matsu {
  top: 282px;
  left: 704px;
}
.map .location#circle_matsu:hover .matsu,
.map .location#circle_matsu.hover .matsu {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_kenai {
  top: 318px;
  left: 683px;
}
.map .location#circle_kenai:hover .kenai,
.map .location#circle_kenai.hover .kenai {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_ketchikan {
  top: 402px;
  left: 972px;
}
.map .location#circle_ketchikan:hover .ketchikan,
.map .location#circle_ketchikan.hover .ketchikan {
  border: 2px solid #000;
  background-color: #ffdd00;
  height: 25px;
  width: 25px;
}
.map .location#circle_dc {
  display: none;
}
.office-locations {
  background-color: #f5f5f5;
  margin-top: 60px;
  position: relative;
}
.office-locations .blue-line,
.office-locations .other-blue-line {
  background-color: #0298c0;
  height: 55px;
  padding: 15px;
  position: relative;
  z-index: 2;
}
.office-locations .blue-line h3,
.office-locations .other-blue-line h3 {
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  width: 20%;
  display: inline;
  margin-left: 30px;
}
.office-locations .office-location-container {
  margin: auto;
  left: 0px;
  right: 0px;
  bottom: -601px;
  z-index: 1;
}
.office-locations .office-location-container.hidden {
  height: 0px;
}
.office-locations .location-links {
  color: #00b2e2;
  margin-top: 55px;
}
.office-locations .location-links h4 {
  text-transform: uppercase;
}
.office-locations .addresses {
  margin-top: 45px;
}
.office-locations .addresses h4 {
  text-transform: uppercase;
}
.office-locations .addresses #map {
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  color: #00b2e2;
  text-transform: uppercase;
}
.office-locations .addresses #map:hover {
  color: #ffdd00;
}
.office-locations h4.location.anchorage-loc:hover,
.office-locations .fairbanks-loc:hover,
.office-locations .juneau-loc:hover,
.office-locations .matsu-loc:hover,
.office-locations .kenai-loc:hover,
.office-locations .ketchikan-loc:hover,
.office-locations .dc-loc:hover {
  color: #000;
}
.office-locations #location-image {
  width: 570px;
  margin-top: 40px;
  position: absolute;
  z-index: 2;
  margin-left: 40px;
}
.office-locations .map {
  position: relative;
  z-index: 10;
  padding-left: 140px;
  padding-top: 30px;
  margin-bottom: 110px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
#main_container {
  background-color: white;
  padding-left: 50px;
  padding-right: 50px;
  min-height: 500px;
  padding-top: 30px;
  padding-bottom: 6em!important;
}
.location-links {
  cursor: pointer;
}
.location {
  cursor: pointer;
}
.social.col-md-4.social-aside {
  margin-top: 154px;
}
.social.col-md-4.meet-social-aside {
  margin-top: 30px;
  max-width: 420px;
}
img.image-responsive.official-aside-photo {
  width: 100%;
}
p.official-photo {
  margin-top: 50px;
}
div#committe_leg_voting_rec {
  margin-top: 50px;
}
.social .social-button {
  width: 100%;
  height: 50px;
  border: 1px solid #464646;
  text-align: center;
  text-transform: uppercase;
  color: #464646;
  display: block;
  margin-top: 15px;
  padding: 12px;
  font-size: 20px;
  font-family: sans-serif;
  font-weight: initial;
  line-height: 25px;
}
a.social-button.committee-legislation-voting {
  height: 60px;
  padding: 20px;
  margin-top: 10px;
  background: none;
  font-size: 20px;
}
a.social-button.official-portrait-button {
  background: none;
  line-height: 15px;
  font-size: 14px;
  height: 40px;
}
h1.main_page_title {
  border-bottom: 1px solid #000;
  text-transform: uppercase;
}
img#issue-banner {
  width: 1200px !important;
}
div#breadcrumb a {
  color: #0298c0;
}
#newscontent hr {
  margin-top: 20px;
}
div#newsroomcontent {
  margin-top: 60px;
}
#press .title,
#photos .title,
#videos .title {
  margin-top: 10px;
}
#press .date,
#videos .date {
  margin-top: 45px;
  display: block;
}
.listing-jump {
  height: 30px;
  color: #fff;
  line-height: 20px;
  padding-top: 4px;
  padding-left: 5px;
}
a.btn.btn-lg.btn-internship {
  text-align: center;
  display: block;
  position: absolute;
  margin: auto;
  right: 0px;
  left: 0px;
  width: 150px;
}
a.soc {
  display: block;
  height: 100%;
  width: 100%;
}
.modal-dialog {
  z-index: 1150;
}
.btn-group {
  right: 12px;
  margin-bottom: 10px;
}
.btn-group > .btn:first-child {
  margin-left: 13px;
}
#voting_record .page .row {
  /* ----- */
}
.pagination-right {
  width: 100%;
  background-color: #0298c0;
}
.form-inline {
  height: 30px;
  color: #fff;
  line-height: 0px;
  padding-top: 4px;
  padding-left: 5px;
}
select.span4 {
  background-color: transparent;
  color: #fff;
  border: none;
}
#photos li .imghold {
  height: 170px;
}
img#issue-banner {
  width: 1150px;
  margin: auto;
  border: 1px solid;
  padding: 5px;
  background: #fff;
}
aside p {
  width: 370px;
}
aside.list {
  top: 60px;
}
#listblocks {
  margin-top: 35px;
}
#listblocks .block {
  background-color: #fff;
  color: #000;
}
#listblocks .block:hover {
  color: #000;
}
#listblocks .block a {
  background-color: #fff;
  color: #000;
}
#listblocks .block a:hover {
  color: #000;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
  float: right;
  bottom: 50px;
  position: relative;
}
li.previous {
  position: relative;
  display: inline-block;
}
li.next {
  bottom: 0px;
  clear: both;
  position: relative;
  display: inline-block;
}
#issue .breakout #issueFeed > li iframe {
  width: 60%;
  height: 420px;
}
.placeholder {
  width: 33%;
  margin: 0px 3px 0px 0px;
}
img.panorama {
  height: auto;
  width: 100%;
  margin: 0px 0px 10px 0px;
}
#asides {
  margin-top: 12px;
  position: relative;
  display: block;
}
/*
hearing styles */
#photos {
  padding-top: 30px;
}
label[for="src_yr-video"] {
  display: none;
}
#filterbuttons a {
  border: none;
  background-image: none;
  color: #0298c0;
}
#filterbuttons a:hover {
  color: black;
  background-color: white !important;
}
a#flag-mail {
  width: 100%;
  display: block;
}
.pagination-right {
  background-color: #00b2e2;
}
.pager .next .btn-small {
  background-color: #00b2e2 !important;
}
.pull-down {
  display: inline-block;
  width: 46%;
  background-color: #fff;
  color: #000;
  height: 70px;
  line-height: 70px;
  font-size: 22px;
  white-space: normal;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid black;
  background-image: url('/themes/sullivan/images/pattern.png');
  background-repeat: repeat;
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
}
.pull-down a {
  color: black;
}
.pull-down:hover {
  background-color: #0298c0;
}
.pull-down:nth-child(2) {
  position: absolute;
  right: 0px;
}
body.contact #breadcrumb a[href="/contact"]:before {
  font-family: "FontAwesome";
  content: "❮  ";
}
#breadcrumb > ol li:first-child {
  display: inline-block;
}
.nobreadcrumbs #breadcrumb {
  display: block;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body.contact #breadcrumb a[href="/contact"]:after {
    border-left: 0;
    left: -13px;
  }
}
.btn-internship,
a[href="/services/academy-nominations/application"] {
  width: 450px !important;
  padding: 20px;
  display: block;
  margin: 0 auto;
  margin-top: 30px !important;
}
.nav-tabs > li > a:hover {
  border: 1px solid #0298c0;
  border-bottom: none;
}
.twitter-pane .feed-title,
.instagram-pane .feed-title,
.facebook-pane .feed-title {
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  text-transform: uppercase;
  color: black;
  display: block;
  width: 100%;
  border-bottom: 1px solid black;
}
.twitter-pane .feed-title:hover,
.instagram-pane .feed-title:hover,
.facebook-pane .feed-title:hover {
  color: #0298c0;
}
.instagram-pane,
.facebook-pane {
  margin-top: 25px;
}
.facebook-pane {
  margin-top: 35px;
}
.facebook-pane ul {
  list-style: none;
  padding: 0px;
}
.facebook-pane ul li {
  margin-top: 15px;
}
.facebook-pane ul li a {
  color: black;
}
.facebook-pane ul li a:hover {
  color: #0298c0;
}
.facebook-pane ul li #fb-time {
  color: #0298c0;
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
  font-size: 15px;
}
.twitter-pane {
  margin-top: -40px;
}
hr.black {
  border-color: #464646;
}
blockquote {
  position: relative;
  display: block;
  margin: 60px 0;
  padding: 10px 150px;
  width: 100%;
  border-left: 0;
  font-size: 1.4em;
  font-family: Georgia, serif;
  font-style: italic;
  text-align: center;
  color: #696a6a;
}
blockquote:before {
  content: url('/themes/sullivan/images/leftquote.png');
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
}
blockquote:after {
  content: url('/themes/sullivan/images/rightquote.png');
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
body#wellness-summit .main_page_title {
  padding: 40px;
}
body#wellness-summit .main_page_title img {
  width: 100%;
}
@media (max-width: 767px) {
  body#wellness-summit .main_page_title {
    padding: 20px;
  }
}
body#wellness-summit .senatorimage {
  float: left;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 1px;
}
body#wellness-summit .senatorimage img {
  width: 100%;
}
body#wellness-summit #main_container {
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px!important;
}
body#wellness-summit #main_container #top_area {
  border: 1px solid #000;
  padding: 0px;
}
body#wellness-summit #main_container .row {
  margin-right: 0px;
  margin-left: 0px;
}
body#wellness-summit #sam-main {
  padding-left: 40px;
  padding-right: 40px;
  line-height: 30px;
}
@media (max-width: 767px) {
  body#wellness-summit #sam-main {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body#wellness-summit #form {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  padding-bottom: 125px;
  margin: 40px 40px;
  background-color: #43151e;
  color: #fff;
  margin-bottom: 30px;
}
body#wellness-summit #form .col-md-9 {
  padding: 0px;
}
body#wellness-summit #form .col-md-3 {
  padding: 0px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  body#wellness-summit #form .col-md-3 {
    padding-right: 0px;
  }
}
body#wellness-summit #form fieldset {
  margin: 0;
}
body#wellness-summit #form fieldset legend {
  border-bottom: none;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  body#wellness-summit #form {
    margin: 0;
  }
}
body#wellness-summit .box {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  margin: 40px;
  margin-bottom: 30px;
  background-color: #f7f7f7;
  color: #333;
}
@media (max-width: 767px) {
  body#wellness-summit .box {
    margin: 0;
  }
}
body#wellness-summit .box h3 {
  text-transform: uppercase;
  color: #43151e;
  padding-bottom: 10px;
  margin-bottom: 0px;
  margin-top: 0px;
  border-bottom: 1px solid black;
}
body#wellness-summit .box .scrolltext {
  overflow: scroll;
  max-height: 470px;
  margin-top: 0px;
  border-bottom: 1px solid black;
}
body#wellness-summit #bottom_area {
  margin-top: 25px;
  background-color: #f7f7f7;
  padding: 30px;
  margin-bottom: 50px;
}
body#wellness-summit #bottom_area h3 {
  color: #43151e;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
body#wellness-summit #bottom_area #sponsors {
  margin-top: 40px;
  margin-bottom: 40px;
}
body#wellness-summit #bottom_area #secondrow {
  margin-top: 40px;
  margin-bottom: 40px;
}
body#wellness-summit #bottom_area #icons {
  text-align: center;
}
@media (max-width: 991px) {
  body#wellness-summit #bottom_area #icons {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
body#wellness-summit #bottom_area #icons img {
  width: auto;
  height: 125px;
}
@media (max-width: 1198px) {
  body#wellness-summit #bottom_area #icons img {
    width: 100%;
    height: auto;
    max-height: 220px;
    max-width: 220px;
  }
}
body#wellness-summit #agenda {
  background-color: #f7f7f7;
  color: #000;
}
body#wellness-summit #agenda .agendatext h2 {
  color: #43151e;
}
body#wellness-summit #agenda .agendatext h4 {
  color: #43151e;
}
body#wellness-summit #asides {
  margin-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
body#wellness-summit #asides #date-map {
  text-align: center;
  background-color: #43151e;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 30px;
}
body#wellness-summit #asides #date-map .googlemap {
  color: #fff;
}
body#wellness-summit #asides #date-map .googlemap .gmaps {
  background: url("/themes/sullivan/images/gmaps.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  width: 25px;
  position: relative;
  display: inline-block;
  top: 6px;
}
body#wellness-summit #asides #date-map .googlemap:hover {
  color: #00b2e2;
}
body#wellness-summit #asides #date-map h2 {
  color: #e1bead;
  text-transform: uppercase;
  margin-top: 0px;
  padding-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
body#wellness-summit #asides #date-map .time {
  font-size: 20px;
  color: #fff;
}
body#wellness-summit #asides #date-map .address {
  padding-top: 10px;
  color: #fff;
}
body#wellness-summit #asides #speakers {
  padding-top: 20px;
  text-align: center;
  padding-right: 40px;
  padding-left: 40px;
  background-color: #f7efea;
  padding-bottom: 40px;
}
body#wellness-summit #asides #speakers .speakerslist h2 {
  text-transform: uppercase;
  margin-top: 0px;
  padding-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
body#wellness-summit #asides #speakers .speaker {
  padding-bottom: 30px;
  padding-top: 30px;
}
body#wellness-summit #asides #speakers .speaker .speakerimage {
  width: 160px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 20px;
}
body#wellness-summit #asides #speakers .speaker .speakerimage img {
  width: 100%;
  border-radius: 50%;
}
body#wellness-summit #asides #speakers .speaker .name {
  font-weight: bold;
}
body#wellness-summit .modal .modal-dialog .modal-content {
  padding: 40px;
}
body#wellness-summit .modal .modal-dialog .modal-content .close {
  opacity: 1;
  font-size: 45px;
  color: #43151e;
}
@media (max-width: 500px) {
  body#wellness-summit .modal .modal-dialog .modal-content {
    padding: 10px;
  }
}
body#wellness-summit .modal .modal-dialog .modal-content .modal-header {
  margin-bottom: 20px;
  padding-bottom: 5px;
  padding-left: 0px;
  border-bottom: 1px solid black;
}
body#wellness-summit .modal .modal-dialog .modal-content .modal-header h2 {
  margin-top: 0px;
  text-transform: uppercase;
  color: #43151e;
  font-size: 26px;
}
.list {
  margin-top: 0px;
  display: block;
  position: relative;
  bottom: 24px;
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser input[type="button"] {
  margin: 0 0 0 0em !important;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #0298c0;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  color: #000;
}
#multimedia-browser .multimedia-tools select {
  color: #cccccc;
  border-radius: 0px;
}
#multimedia-browser .multimedia-tools input[type="text"] {
  line-height: 20px;
}
#multimedia-browser .pagination {
  background-color: #00b2e2;
}
#multimedia-browser .row .media-thumbnail {
  float: left;
  margin: 0 1.1em 1em 0em;
  width: 18%;
  height: 240px;
}
@media (max-width: 991px) {
  #multimedia-browser .row .media-thumbnail {
    float: left;
    width: 5.5em;
    height: 220px;
    margin: 0px 17px;
  }
  #multimedia-browser .multimedia-tools select {
    width: 43%;
  }
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 769px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1em 0;
  }
  #multimedia-browser .pagination {
    width: 100%;
    margin-top: 6em;
    display: inline-block !important;
    font-size: 18px;
  }
  #multimedia-browser .multimedia-tools {
    float: left;
    width: 100%;
  }
  #multimedia-browser .multimedia-tools fieldset {
    float: left;
    margin-top: 0;
    margin-right: .5em;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 86%;
  }
}
@media (max-width: 480px) {
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 80%;
  }
  #multimedia-browser .multimedia-tools input[type="button"] {
    margin: 0 0 0 -1em !important;
  }
  #multimedia-browser .multimedia-tools select {
    width: 40%;
  }
  #multimedia-browser .pagination {
    margin-top: 7em;
    padding: 7px;
    font-size: 14px;
  }
  #multimedia-browser .pagination .listing-increment {
    margin-top: 4px;
  }
}
@media (max-width: 375px) {
  #multimedia-browser .pagination {
    margin-top: 8em;
    padding: 3px;
    font-size: 13px;
  }
  #multimedia-browser .pagination .listing-increment {
    margin-top: 5px;
  }
}
@media (max-width: 375px) {
  #multimedia-browser .pagination {
    text-align: center;
  }
  #multimedia-browser .pagination .listing-increment {
    float: none;
    margin-top: 0px;
  }
  #multimedia-browser .pagination .listing-jump {
    padding-top: 2px;
    float: none;
  }
  #multimedia-browser .multimedia-tools input[type="text"] {
    width: 70%;
  }
  #multimedia-browser .multimedia-tools select {
    width: 35%;
  }
}
body .footer {
  background-color: #00b2e2;
  padding-top: 25px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
body .footer .footernav li {
  color: white;
}
body .footer .footernav li a {
  color: white;
}
body .footer .footernav li a:hover {
  color: #ffdd00;
}
body .footer .footernav a {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
  font-size: 22px;
  margin-right: 40px;
  text-transform: uppercase;
}
body .footer .social-list {
  float: right;
}
body .footer .social-list li {
  padding: 5px 1px 1px 1px;
  margin: 0 2px;
  height: 35px;
  width: 35px;
  text-align: center;
  border: 2px solid #00b2e2;
  border-radius: 80px;
}
body .footer .social-list li .socicon {
  color: white;
  font-size: 14px !important;
}
body .footer .social-list li.facebook {
  background-color: #4d68a6;
}
body .footer .social-list li.twitter {
  background-color: #25a7df;
}
body .footer .social-list li.youtube {
  background-color: #cd2127;
  vertical-align: bottom;
}
body .footer .social-list li.youtube a img {
  padding-top: 6%;
  width: 16px;
  vertical-align: baseline;
}
body .footer .social-list li.instagram {
  background-color: #3f739c;
}
body .footer .social-list li.mail {
  background-color: #0298c0;
}
body .footer .social-list li:hover {
  border: 2px solid #ffdd00;
}
body .Subfooter {
  background-color: #696a6a;
}
body .Subfooter .subfooternav {
  text-align: center;
}
body .Subfooter .subfooternav li {
  margin: 11px 0px 5px;
}
body .Subfooter .subfooternav li a {
  color: white;
  font-size: 15px;
  text-transform: uppercase;
  font-family: 'ITC Avant Garde Gothic W01 Dm', sans-serif;
}
#flagForm #flag-options .head {
  background-color: #00b2e2;
  color: #fff;
}
#main_column form .btn {
  color: #000;
  background-color: #fff;
}
/* collapse ------------------------------- */
/* PLEASE NAMESPACE/NEST: .top is used all over the place :)
.top{
	height:76px;
}*/
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form .btn {
  color: #000;
  background-color: #fff;
}
/*

font-family:'Bambino W00 Extra Light';
font-family:'Bambino W00 Extra Light Italic';
font-family:'Bambino W00 Thin';
font-family:'Bambino W00 Thin Italic';
font-family:'Bambino W00 Light';
font-family:'Bambino W00 Light Italic';
font-family:'Bambino W00 Regular';
font-family:'Bambino W00 Regular Italic';
font-family:'Bambino W00 Bold';
font-family:'Bambino W00 Bold Italic';
font-family:'Bambino W00 Black';
font-family:'Bambino W00 Black Italic';
font-family:'Cpl Kirkwood Slab W03 Regular';
font-family:'ITC Avant Garde Gothic W01 XLt';
font-family:'ITC Avant GardeGothicW01XLtObl';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde GothicW01BkObl';
font-family:'ITC Avant Garde Gothic W01 Md';
font-family:'ITC Avant Garde GothicW01MdObl';
font-family:'ITC Avant Garde Gothic W01 Dm';
font-family:'ITC Avant Garde GothicW01DmObl';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde GothicW01BdObl';
font-family:'ITC Avant Garde GothicW01XLtCn';
font-family:'ITCAvantGardeGothicW01XLtCnObl';
font-family:'ITC Avant Garde Gothic W01BkCn';
font-family:'ITC AvantGardeGothicW01BkCnObl';
font-family:'ITC Avant Garde Gothic W01MdCn';
font-family:'ITC AvantGardeGothicW01MdCnObl';
font-family:'ITC Avant Garde Gothic W01DmCn';
font-family:'ITC AvantGardeGothicW01DmCnObl';
font-family:'ITC Avant Garde Gothic W01BdCn';
font-family:'ITC AvantGardeGothicW01BdCnObl';

paste available font families here
*/
/*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*/
.avant-demi {
  font-family: 'ITC Avant Garde Gothic W01 Dm', sans-serif;
}
.avant-bold {
  font-family: 'ITC Avant Garde Gothic W01 Bd', sans-serif;
}
.avant-medium {
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
}
/*set up sans-serif font quick class if we have one*/
.avant-bk {
  font-family: 'ITC Avant Garde Gothic W01 Bk', sans-serif;
}
/*body color and font*/
body#home {
  font-family: 'ITC Avant Garde Gothic W01 Bk', sans-serif;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'ITC Avant Garde Gothic W01 Dm', sans-serif;
}
/*anchor stlyes*/
a {
  color: #0298c0;
}
a:hover {
  text-decoration: none;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
.social-button,
.block a {
  background-color: #fff;
  color: #000;
  white-space: normal;
  text-transform: uppercase;
  border: 1px solid black;
  background-image: url('/themes/sullivan/images/pattern.png');
  background-repeat: repeat;
  z-index: 3
    position: absolute;
  font-family: 'ITC Avant Garde Gothic W01 Md', sans-serif;
}
.pager li .btn:active,
.btn:active,
.btn-defualt:active,
.btn:visited:active,
.btn-defualt:visited:active,
btn:focus:active,
.btn-default:focus:active,
.search-media-btn:active,
.social-button:active,
.block a:active {
  background-color: #00b2e2;
}
.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,
.social-button:hover,
.block a:hover {
  background-color: #00b2e2 !important;
  color: #000;
}
/* NEXT buttons in press Styles (do not touch)*/
.btn-small,
.btn-xs {
  background-image: none!important;
  background-color: #0298c0 !important;
  color: #fff!important;
  border: none!important;
}
.btn-small:hover,
.btn-xs:hover {
  background: none!important;
}
.prevarticle,
.nextarticle,
input#src_yr,
.search-media-btn {
  background-image: none!important;
  background-color: #00b2e2 !important;
  color: #fff!important;
  border: none!important;
}
.prevarticle:hover,
.nextarticle:hover,
input#src_yr:hover,
.search-media-btn:hover {
  background: none!important;
  background-color: #0298c0 !important;
}
/*interior page content default styles */
#content {
  font-size: 18px;
}
.container {
  max-width: 1200px;
}
@media (max-width: 2200px) {
  body {
    background-position-y: -138px;
  }
}
@media (max-width: 1900px) {
  body {
    background-position-y: -100px;
  }
}
@media (max-width: 1630px) {
  body {
    background-position-y: -64px;
  }
}
@media (max-width: 1400px) {
  body {
    background-position-y: -30px;
  }
}
@media (max-width: 1330px) {
  body {
    background-position-y: -2px;
  }
  .map #map {
    width: 716px;
  }
  .map .location#circle_anchorage {
    top: 254px;
    left: 603px;
  }
  .map .location#circle_fairbanks {
    top: 159px;
    left: 617px;
  }
  .map .location#circle_juneau {
    top: 299px;
    left: 786px;
  }
  .map .location#circle_matsu {
    top: 235px;
    left: 612px;
  }
  .map .location#circle_kenai {
    top: 270px;
    left: 590px;
  }
  .map .location#circle_ketchikan {
    top: 336px;
    left: 835px;
  }
  .map .location#circle_dc {
    display: none;
  }
  .office-locations #location-image {
    width: 479px;
  }
}
@media (max-width: 1200px) {
  .office-locations .location-links {
    color: #00b2e2;
    margin-top: 33px;
  }
  body #header .logo {
    margin-top: 48px;
    margin-bottom: 85px;
  }
  body {
    background-position-y: 32px;
  }
  body .navbar .nav-pills li + li {
    padding-left: 3%;
  }
  body .navbar .nav-pills > li a {
    font-size: 20px;
  }
  body .navbar #search #sitesearch #search-field {
    height: 49px;
  }
  body .navbar #search #sitesearch button {
    height: 49px;
  }
  body footer .footernav a {
    font-size: 20px;
    margin-right: 28px;
  }
  aside p {
    width: 300px;
    top: 21px;
  }
  #home .top {
    z-index: 0;
    width: 100%;
    float: left;
    height: 465px;
  }
  #home .top #featured {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
  }
  #home .top #featured #featuredCarousel {
    width: 100%;
    float: none;
    margin: 0 auto;
    position: relative;
    height: 465px;
    overflow: hidden;
  }
  #home .top #featured #featuredCarousel .item {
    width: 100%;
    height: 536px;
    min-height: 450px;
    max-height: 536px;
    overflow: hidden;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
  #home .top #featured #featuredCarousel .item img {
    height: 465px;
  }
  #home .top .carousel-control {
    width: 8%;
    font-size: 14px;
  }
  .outline h2 {
    bottom: 97px;
    font-size: 30px;
  }
  .outline.home {
    height: 493px;
  }
  .services .service h3 {
    font-size: 22px;
  }
  .social #instamedia a:nth-child(2) img,
  .social #instamedia a:nth-child(5) img {
    margin-left: 0;
    margin-right: 0;
  }
  .social #instamedia a img {
    width: 44%;
  }
  .social #instamedia a:nth-child(even) img {
    float: right;
  }
  .social #instamedia a:nth-child(odd) img {
    float: left;
  }
  .social .social-button {
    display: inline-block;
  }
  div#asides {
    margin-top: 50px;
  }
  .office-locations .map {
    padding-left: 85px;
    padding-top: 129px;
  }
  .map {
    padding-left: 89px;
    padding-top: 109px;
  }
  .map #map {
    width: 659px;
  }
  .map .location#circle_anchorage {
    top: 333px;
    left: 514px;
  }
  .map .location#circle_fairbanks {
    top: 245px;
    left: 521px;
  }
  .map .location#circle_juneau {
    top: 377px;
    left: 676px;
  }
  .map .location#circle_matsu {
    top: 310px;
    left: 512px;
  }
  .map .location#circle_kenai {
    top: 351px;
    left: 500px;
  }
  .map .location#circle_ketchikan {
    top: 408px;
    left: 723px;
  }
  .map .location#circle_dc {
    display: none;
  }
  .office-locations #location-image {
    width: 419px;
    margin-top: 103px;
  }
  a.social-button.committee-legislation-voting {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .pull-down {
    display: inline-block;
    width: 46%;
    margin: 15px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
  }
  .pull-down:nth-child(2) {
    position: absolute;
    top: 247px;
    right: 0px;
  }
}
@media (max-width: 991px) {
  .twitter-pane {
    margin-top: 0px;
  }
  div#asides {
    margin-top: -35px;
  }
  .pull-down {
    width: 100%;
  }
  .pull-down {
    display: inline-block;
    width: 49%;
    margin: 0px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
  }
  .pull-down:nth-child(2) {
    position: absolute;
    top: 296px;
    right: 15px;
    width: 47%;
  }
  .srchbuttonmodal {
    display: none !important;
  }
  .togglemenu {
    color: white;
    font-size: 22px;
    display: block;
    margin-top: 10px;
  }
  .togglemenu:hover {
    color: #ffdd00;
  }
  body .header {
    height: 51px;
  }
  body #header .logo {
    margin-top: 28px;
  }
  body #header .logo img {
    width: 400px;
  }
  #home .top {
    z-index: 0;
    width: 100%;
    float: left;
    height: 390px;
  }
  #home .top #featured {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
  }
  #home .top #featured #featuredCarousel {
    width: 100%;
    float: none;
    margin: 0 auto;
    position: relative;
    height: 390px;
    overflow: hidden;
  }
  #home .top #featured #featuredCarousel .item {
    width: 100%;
    height: 450px;
    min-height: 450px;
    max-height: 460px;
    overflow: hidden;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
  #home .top #featured #featuredCarousel .item img {
    height: 390px;
  }
  #home .top .carousel-control {
    width: 8%;
    font-size: 14px;
  }
  .outline h2 {
    bottom: 97px;
    font-size: 22px;
    line-height: 26px;
  }
  .outline.home {
    height: 415px;
  }
  #latest-news .news-item {
    font-size: 15px;
  }
  #twitter {
    text-align: center;
  }
  .social #instamedia a:nth-child(even) img {
    float: none;
  }
  .social #instamedia a:nth-child(odd) img {
    float: none;
  }
  .social.col-md-4.social-aside {
    margin-top: 30px;
  }
  a.social-button.committee-legislation-voting {
    font-size: 20px;
  }
  .social #instamedia {
    text-align: center;
  }
  .social #instamedia a img {
    width: 30%;
    margin-top: 15px;
    float: none;
  }
  .social #instamedia a:nth-child(2) img,
  .social #instamedia a:nth-child(5) img {
    margin-left: 15px;
    margin-right: 15px;
  }
  body footer .footernav a {
    font-size: 20px;
    margin-right: 20px;
  }
  .pull-left {
    float: none !important;
  }
  body footer {
    text-align: center;
  }
  body footer .social-list {
    float: none;
  }
  .office-locations .map {
    display: none;
  }
  #photos li .imghold {
    height: 149px;
  }
  .placeholder {
    width: 32%;
  }
  #multimedia-browser .row .media-thumbnail a {
    font-size: 0.7em;
  }
  aside p {
    width: 100%;
    top: 21px;
    display: inline-block;
  }
  div#sam-academies {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail a {
    font-size: 0.85em;
  }
  #main_container {
    padding-left: 30px;
    padding-right: 30px;
  }
  body #header .logo {
    margin-left: 15px;
  }
  .togglemenu {
    margin-left: 15px;
  }
  .office-locations .location-links {
    margin-top: 38px;
  }
  body footer .footernav a {
    font-size: 16px;
  }
  body {
    background-size: initial;
    background-position-y: -50px;
  }
  .placeholder {
    width: 100%;
    margin: auto;
  }
  #photos li .imghold {
    height: auto;
  }
  #input-7BDDD88D-4040-F985-52CD-4751F5B093F2 div,
  #input-0F70F090-5056-A066-60DF-84DC3C4E257D div {
    width: 100% !important;
    float: none !important;
  }
  .pull-down {
    display: inline-block;
    width: 47%;
    margin: 0px;
    height: 70px;
    line-height: 70px;
    font-size: 19px;
  }
  .pull-down:nth-child(2) {
    position: absolute;
    top: 271px;
    right: 15px;
    width: 45%;
  }
}
@media (max-width: 766px) {
  .pull-down:nth-child(2) {
    position: absolute;
    top: 297px;
  }
}
@media (max-width: 679px) {
  #home .top {
    height: 350px;
  }
  #home .top #featured #featuredCarousel {
    height: 350px;
  }
  #home .top #featured #featuredCarousel .item {
    height: 450px;
    min-height: 450px;
    max-height: 460px;
  }
  #home .top #featured #featuredCarousel .item img {
    height: 350px;
  }
  .outline h2 {
    bottom: 135px;
    font-size: 18px;
    line-height: 26px;
  }
  .outline.home {
    height: 377px;
  }
  .location-links h4 {
    font-size: 17px;
  }
  .top #featured #featuredCarousel .item img {
    width: 660px;
  }
  .pull-down {
    font-size: 18px;
  }
  blockquote {
    margin: 20px 0;
    padding: 20px;
    font-size: 1.2em;
    background-color: #efefef;
  }
  blockquote:before,
  blockquote:after {
    display: none;
  }
}
@media (max-width: 639px) {
  .pull-down {
    font-size: 16px;
  }
  .pull-down:nth-child(2) {
    position: absolute;
    top: 323px;
  }
}
@media (max-width: 578px) {
  .pull-down {
    font-size: 16px;
  }
  .pull-down:nth-child(2) {
    position: absolute;
    top: 346px;
  }
}
@media (max-width: 530px) {
  .pull-down {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  #header,
  body .navbar #search,
  .menulabel {
    display: none;
  }
  #mobile-header {
    display: inline-block;
    width: 100%;
  }
  #mobile-header .logo {
    width: 80%;
    float: left;
    background-color: white;
    height: 80px;
    padding-top: 7px;
    padding-left: 8px;
    padding-right: 8px;
  }
  #mobile-header .logo a {
    display: block;
    position: relative;
    top: 6px;
    width: 220px;
    height: 43px;
    background: url(/themes/sullivan/images/logo-small.png);
    background-size: 100% 100%;
  }
  #mobile-header .logo a img {
    opacity: 0;
    visibility: hidden;
  }
  .menu {
    width: 20%;
    float: left;
    background-color: #0298c0;
    color: white;
    height: 80px;
  }
  .menu .togglemenu {
    font-size: 45px;
  }
  #home .top {
    width: 100%;
    height: 225px;
  }
  #home .top #featured #featuredCarousel {
    width: 100%;
    height: 225px;
  }
  #home .top #featured #featuredCarousel .item {
    width: 100%;
    height: 450px;
    min-height: 350px;
    max-height: 260px;
  }
  #home .top #featured #featuredCarousel .item img {
    width: 100%;
    height: 225px;
  }
  .outline h2 {
    bottom: 135px;
    font-size: 17px;
    line-height: 22px;
    left: 27px;
  }
  .outline.home {
    height: 220px;
    padding: 0px;
    border: none;
    width: 100%;
  }
  #home .top {
    margin-top: -5px;
    margin-left: -15px;
  }
  #home .top #featured {
    width: 115%;
  }
  #home .top #featured #featuredCarousel {
    height: 250px;
  }
  #home .top #featured #featuredCarousel .item img {
    height: 250px;
  }
  .news-item {
    background-color: white;
    padding: 3px;
  }
  body {
    background-position-y: 130px;
  }
  #latest-news {
    margin-top: 35px;
    display: inline-block;
  }
  #latest-news .news-header {
    color: white;
  }
  #latest-news .hr {
    border-color: white;
  }
  .services .service .pattern,
  .services .service {
    height: 115px;
  }
  .prevarticle,
  .nextarticle {
    width: 120px;
  }
  body .footer .footernav a {
    margin-right: 0px;
    font-size: 14px;
  }
  body .footer .social-list {
    float: none;
  }
}
@media (max-width: 496px) {
  .pull-down:nth-child(2) {
    top: 372px;
  }
}
@media (max-width: 490px) {
  .pull-down:nth-child(2) {
    top: 396px;
  }
}
@media (max-width: 479px) {
  #main_container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .pull-down {
    line-height: 20px;
  }
  .pull-down a {
    font-size: 16px;
    margin-top: 14px;
    display: block;
  }
  .pull-down:nth-child(2) {
    top: 347px;
  }
  .pull-down:nth-child(2) a {
    margin: 10px;
  }
  .prevarticle,
  .nextarticle {
    font-size: 14px;
    width: 90px;
  }
}
@media (max-width: 466px) {
  .pull-down:nth-child(2) {
    top: 371px;
  }
  124.btn-internship {
    width: 100% !important;
  }
}
@media (max-width: 460px) {
  .pull-down:nth-child(2) {
    top: 396px;
  }
}
@media (max-width: 375px) {
  .pull-down a {
    margin: 10px;
  }
  .pull-down:nth-child(2) {
    top: 446px;
  }
  .social #instamedia a:nth-child(2) img,
  .social #instamedia a:nth-child(5) img {
    margin-left: 0;
    margin-right: 0;
  }
  .social #instamedia a img {
    width: 44%;
  }
  .social #instamedia a:nth-child(even) img {
    float: right;
  }
  .social #instamedia a:nth-child(odd) img {
    float: left;
  }
}
@media (max-width: 320px) {
  body#home {
    background-position-y: 89px;
  }
  #mobile-header .logo,
  #mobile-header .menu {
    height: 67px;
  }
  #mobile-header .logo img,
  #mobile-header .menu img {
    margin-top: 6px;
  }
  #mobile-header .logo .togglemenu,
  #mobile-header .menu .togglemenu {
    font-size: 37px;
    margin-left: 12px;
  }
  .pull-down:nth-child(2) {
    top: 496px;
  }
  #home .top #featured #featuredCarousel .item img {
    height: 226px;
    width: 124%;
  }
  #home .top #featured #featuredCarousel {
    height: 225px;
  }
  #latest-news {
    margin-top: 10px;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie body .navbar #search #sitesearch #search-field {
  min-height: 52px;
}
.ie #latest-news .news-item .facebook:after {
  content: url('/themes/sullivan/images/facebook.png');
}
.ie #latest-news .news-item .youtube:after {
  content: url('/themes/sullivan/images/youtube.png');
}
.ie #latest-news .news-item .press-release:after {
  content: url('/themes/sullivan/images/pr.png');
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie img {
  max-width: 100%;
  height: auto !important;
}
.ie7 .ie7only {
  display: block !important;
}
.ie7 .navbar-toggle {
  display: block !important;
}
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
@media (max-width: 1200px) {
  .ie9 body .navbar #search #sitesearch #search-field {
    min-height: 49px;
  }
}
