/* 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);
  }
}
body#home .alert {
  border-radius: 0px;
  background-color: #ffb81d;
}
body#home .alert .headline a:hover {
  color: #26396a;
}
body .alert {
  border-radius: 0px;
  background-color: #ffb81d;
}
body .alert .headline a:hover {
  color: #26396a;
}
body#home #header {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: transparent;
}
body#home .nav-hold {
  position: relative;
  width: 100%;
}
body#home #header .right {
  position: absolute;
  right: 0;
  top: 26px;
}
body#home #header .right .social-list a {
  font-size: 14px;
  background-color: white;
  color: transparent;
  height: 24px;
  width: 24px;
  border-radius: 20px;
  margin-left: 4px;
  display: inline-block;
  color: #7492b4;
  text-align: center;
  padding-top: 3px;
}
body#home #header .right .social-list a:hover {
  background-color: #ffb81d;
}
#interior-header {
  margin-bottom: 30px;
  position: fixed;
  width: 100%;
  z-index: 300;
  height: 100px;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
}
#interior-header .container {
  position: relative;
}
#interior-header .logo-hold {
  width: 20%;
  display: inline-block;
  position: relative;
  top: -37px;
}
@media (max-width: 991px) {
  #interior-header .logo-hold {
    width: 270px;
    float: left;
    top: 37px;
  }
}
#interior-header .logo-hold img {
  width: 100%;
}
#interior-header .nav-hold {
  width: 70%;
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 991px) {
  #interior-header .nav-hold {
    width: 200px;
    float: right;
  }
}
@media (max-width: 535px) {
  #interior-header .nav-hold {
    width: auto;
    margin-right: 20px;
  }
}
#interior-header .nav-hold .navbar {
  width: 80%;
  margin-left: 70px;
}
@media (max-width: 1200px) {
  #interior-header .nav-hold .navbar {
    margin-left: 30px;
    width: 88%;
  }
}
@media (max-width: 991px) {
  #interior-header .nav-hold .navbar {
    width: 100%;
  }
}
#interior-header .nav-hold .navbar li a {
  font-size: 22px;
}
@media (max-width: 1200px) {
  #interior-header .nav-hold .navbar li a {
    font-size: 19px;
  }
}
#interior-header .nav-hold .navbar #search #sitesearch #search-field {
  background-color: transparent;
  width: 600px;
}
@media (max-width: 1330px) {
  #interior-header .nav-hold .navbar #search #sitesearch #search-field {
    width: 560px;
  }
}
@media (max-width: 1200px) {
  #interior-header .nav-hold .navbar #search #sitesearch #search-field {
    width: 500px;
  }
}
#interior-header .nav-hold .navbar #search.showme {
  width: 640px;
}
@media (max-width: 1330px) {
  #interior-header .nav-hold .navbar #search.showme {
    width: 600px;
  }
}
@media (max-width: 1200px) {
  #interior-header .nav-hold .navbar #search.showme {
    width: 540px;
  }
}
@media (max-width: 535px) {
  #interior-header .nav-hold .navbar .menulabel {
    display: none;
  }
}
#interior-header .right {
  position: absolute;
  right: 0px;
  top: 40px;
}
@media (max-width: 991px) {
  #interior-header .right {
    display: none;
  }
}
#interior-header .right .social-list a {
  font-size: 14px;
  background-color: white;
  height: 24px;
  width: 24px;
  border-radius: 20px;
  margin-left: 4px;
  display: inline-block;
  color: #021d49;
  text-align: center;
  padding-top: 3px;
}
#interior-header .right .social-list a:hover {
  background-color: #ffb81d;
}
#interior-header.affix-top {
  top: auto;
  -webkit-transition: top 0.3s ease;
  -moz-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
#interior-header.affix {
  top: 0px;
  -webkit-transition: top 0.3s ease;
  -moz-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
body .navbar {
  background-color: transparent;
  width: 74%;
  display: inline-block;
}
body .navbar .nav-pills {
  width: 94%;
  float: left;
  margin-top: 10px;
}
body .navbar .nav-pills > li {
  /*width: auto;
				display: block;*/
}
body .navbar .nav-pills > li a {
  color: white;
  font-family: 'Proxima Nova W01';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: #021d49;
  border: 0px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: white;
  text-transform: none;
  font-weight: normal;
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  color: #ffb81d;
}
body .navbar .nav-pills > li:hover,
body .navbar .nav-pills > li.selected {
  background-color: #021d49;
}
body .navbar .nav-pills > li:hover a,
body .navbar .nav-pills > li.selected a {
  color: #ffb81d;
}
body .navbar .nav-pills > li:hover:after,
body .navbar .nav-pills > li.selected:after {
  background-color: #021d49;
  content: "";
  width: 100%;
  position: absolute;
  height: 30px;
  top: -30px;
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
  margin-top: 20px;
  display: block;
}
body .navbar .srchbuttonmodal {
  color: white;
  font-size: 21px;
  position: relative;
  top: 22px;
  margin-right: 8px;
  width: 30px;
  float: left;
}
body .navbar .srchbutton {
  position: relative;
  top: 24px;
  height: 70px;
  padding-left: 13px;
  font-size: 17px;
  float: right;
}
body .navbar .srchbutton span {
  color: white;
  vertical-align: middle;
  display: table-cell;
}
body .navbar .srchbutton:hover span {
  color: #ffb81d;
}
body .navbar #search {
  float: right;
  width: 0%;
  overflow: hidden;
  -webkit-transition: width 0.1s;
  transition: width 0.1s;
  right: 35px;
  height: 45px;
  position: absolute;
  top: 10px;
  display: block;
}
body .navbar #search.showme {
  width: 90%;
  height: 45px;
  position: absolute;
  top: 10px;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}
@media (max-width: 1330px) {
  body .navbar #search.showme {
    width: 800px;
  }
}
@media (max-width: 1200px) {
  body .navbar #search.showme {
    width: 650px;
  }
}
body .navbar #search #sitesearch {
  float: right;
  width: 100%;
  padding: 0px 15px 0px;
  height: 100%;
}
body .navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 100%;
  padding: 5px;
  background-color: rgba(91, 143, 189, 0.4);
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 3px solid white;
}
body .navbar #search #sitesearch #search-field::-webkit-input-placeholder {
  color: white;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field::-moz-placeholder {
  color: white;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field:-moz-placeholder {
  /* Older versions of Firefox */
  color: white;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field:-ms-input-placeholder {
  color: white;
  font-size: 18px;
}
body .navbar #search #sitesearch #search-field:focus {
  outline: none;
  border: 2px solid white;
}
@media (max-width: 1330px) {
  body .navbar #search #sitesearch #search-field {
    width: 750px;
  }
}
@media (max-width: 1200px) {
  body .navbar #search #sitesearch #search-field {
    width: 600px;
  }
}
body .navbar #search #sitesearch button {
  background-color: transparent;
  color: white;
  border: none;
  padding: 3px 6px;
  position: absolute;
  height: 100%;
  width: 50px;
  right: -10px;
  font-size: 18px;
}
body .navbar #search #sitesearch button .glyphicon {
  top: 4px;
}
body .navbar #search #sitesearch button:hover {
  color: #ffb81d;
}
body #NavMobileModal .modal-backdrop.in {
  background-color: #021d49;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
  text-align: center;
  font-size: 28px;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 25px;
  color: #ffb81d;
}
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 {
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
  text-align: center;
  display: block !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 18px;
  width: 100%;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
}
body #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a:hover {
  color: #ffb81d;
}
body#home .navbar .nav-pills > li:hover:after,
body#home .navbar .nav-pills > li.selected:after {
  height: 11px;
  top: -11px;
}
#SearchModal .modal-backdrop.in {
  background-color: #021d49;
}
#SearchModal button[type="submit"] {
  background-color: #ffb81d;
}
.no-padding {
  padding: 0;
}
.table {
  display: table;
  margin-bottom: 0px;
  word-break: break-word;
}
.cell {
  display: table-cell;
  vertical-align: middle;
}
body#home .banner {
  display: table;
  height: 650px;
  width: 100%;
  background-image: url('/themes/murkowski/images/banner.jpg');
  background-size: cover;
}
@media (max-width: 600px) {
  body#home .banner {
    height: 580px;
  }
}
@media (max-width: 515px) {
  body#home .banner {
    height: 540px;
  }
}
body#home .banner .home-logo-hold {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
}
body#home .banner .home-logo-hold img {
  width: 60%;
  max-width: 800px;
}
@media (max-width: 767px) {
  body#home .banner .home-logo-hold img {
    width: 95%;
  }
}
@media (max-width: 479px) {
  body#home .banner .home-logo-hold img {
    width: 117%;
    margin-left: -8%;
  }
}
/* display: block; */
.action-bar {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
  border-top: 10px solid #f2f2f2;
  border-bottom: 10px solid #f2f2f2;
  display: inline-block;
  width: 100%;
  border-bottom: 3px solid #f2f2f2;
}
.action-bar .featured-button {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
  display: table;
  color: white;
  font-family: 'Proxima Nova W01';
  font-size: 24px;
  text-transform: uppercase;
  float: left;
  width: 20%;
  /* Change back to 25 % after Inauguration*/
  height: 150px;
  text-align: center;
  padding: 15px;
  /* remove after Inauguration*/
  /* @media (max-width: 767px) {font-size:18px;}  READD AFTER INAUGURATION*/
  /* Change back to 24.6 % after Inauguration*/
  /* @media (max-width: 515px) {width:100%;height:auto;} RE-ADD AFTER INAUGURATION */
}
@media (max-width: 1036px) {
  .action-bar .featured-button {
    width: 20%;
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .action-bar .featured-button {
    width: 19%;
    font-size: 18px;
  }
}
@media (max-width: 676px) {
  .action-bar .featured-button {
    width: 17.5%;
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .action-bar .featured-button {
    width: 100%;
    height: auto;
    font-size: 18px;
  }
}
.action-bar .featured-button:hover {
  background: #021d49;
  color: #ffb81d;
}
.action-bar .featured-button + .featured-button {
  border-left: 1px solid #526386;
}
.press-con {
  margin: 50px 0px;
  display: inline-block;
}
.child {
  height: 300px;
  overflow: hidden;
}
.child:nth-of-type(even) .tile {
  background-color: #021d49;
  color: white;
}
.child:nth-of-type(even) .tile.with-img {
  background-color: rgba(2, 29, 73, 0.5);
  color: white;
}
.child:nth-of-type(even) .tile.with-img .press-image {
  background-size: cover;
  background-repeat: no-repeat;
}
.child:nth-of-type(even) .tile.with-img:hover {
  background-color: rgba(255, 184, 29, 0.5);
}
.child:nth-of-type(even) .tile.with-img:hover .press-image {
  transform: scale(1.2);
}
.child:nth-of-type(odd) .tile {
  color: #021d49;
  background-color: #fafafa;
}
.child:nth-of-type(odd) .tile.with-img {
  color: #021d49;
  background-color: rgba(210, 209, 208, 0.5);
}
.child:nth-of-type(odd) .tile.with-img:hover {
  background-color: rgba(255, 184, 29, 0.5);
}
.child:nth-of-type(odd) .tile.with-img:hover .press-image {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .press-child {
    height: 200px;
  }
  .press-child .tile {
    height: 200px;
    padding: 0 80px;
  }
}
@media (max-width: 515px) {
  .press-child .tile {
    padding: 0 35px;
  }
}
@media (max-width: 600px) {
  .issue-child {
    width: 100%;
    height: auto;
  }
  .issue-child .tile {
    border-top: 10px solid #f2f2f2;
    height: auto;
  }
}
.tile {
  height: 300px;
  text-align: center;
  font-family: 'Proxima Nova W01';
  font-weight: bold;
  font-size: 28px;
  transition: all ease 500ms;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .tile {
    font-size: 24px;
  }
}
.tile.all-text:hover {
  background-color: #ffb81d;
  color: white;
}
.tile .press-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  z-index: -1;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
}
.tile .press-image:hover {
  background-size: 140%;
}
.tile .cell {
  padding: 25px;
}
@media (max-width: 600px) {
  .tile .cell h2 {
    font-size: 24px;
  }
}
.video-box {
  border-top: 10px solid #f2f2f2;
  border-bottom: 10px solid #f2f2f2;
  text-align: center;
  width: 100%;
  background-color: #021d49;
}
.video-image {
  display: table;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  position: relative;
  background-position: center center;
  height: 750px;
}
@media (max-width: 1200px) {
  .video-image {
    width: 991px;
  }
}
@media (max-width: 991px) {
  .video-image {
    width: 100%;
  }
}
.video-image .caption {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 30px;
  text-align: center;
  width: 400px;
}
@media (max-width: 600px) {
  .video-image .caption {
    width: 100%;
    left: 0;
  }
}
.video-image .caption .video-header {
  font-family: 'Superclarendon W00';
  font-size: 26px;
}
.video-image .caption .video-title {
  font-size: 20px;
}
.video-image .caption .video-link {
  text-transform: uppercase;
  color: #ffb81d;
  margin-top: 10px;
  display: inline-block;
}
.video-image .caption .video-link:hover {
  color: white;
}
.video-image .caption .video-link span {
  font-size: 10px;
}
.twitter,
.facebook {
  background-color: white;
}
.carousel {
  background-color: #fff;
}
.carousel .item {
  padding: 0;
  height: 350px;
  padding: 0 150px;
  line-height: 1.4em;
  text-align: center;
}
@media (max-width: 991px) {
  .carousel .item {
    padding: 0 100px;
  }
}
.carousel .item .table {
  height: 96%;
}
.carousel .item .table .cell {
  color: #464646;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 300;
}
@media (max-width: 991px) {
  .carousel .item .table .cell {
    font-size: 19px;
  }
}
.carousel .item .table .cell a {
  color: #26396a;
  font-size: 22px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .carousel .item .table .cell a {
    font-size: 19px;
  }
}
.carousel .item .table .cell a:hover {
  color: #ffb81d;
}
.carousel .item .table .cell h3 {
  font-weight: 300;
}
.carousel .item .table .cell h3 a {
  color: #464646;
}
.carousel .item .table .cell a.cell:hover {
  color: #526386;
}
.carousel .carousel-control img {
  position: relative;
  top: 80px;
}
.carousel .left,
.carousel .right {
  background-image: none;
}
.carousel .left img,
.carousel .right img {
  top: 140px;
  left: 15px;
}
.social-row {
  border-bottom: 40px solid #26396a;
  margin-top: -6px;
}
.social-row .icons {
  margin-bottom: 40px;
  text-align: center;
  background-color: #26396a;
  height: 40px;
}
.social-row .icon {
  margin: 0 auto;
  text-align: center;
  border-width: 1px;
  border-radius: 30px;
  font-size: 30px;
  color: #fff;
  background-color: #26396a;
  position: relative;
  top: 10px;
  padding-top: 14px;
  width: 61px;
  display: block;
  height: 60px;
}
.social-row .icon:hover {
  color: #ffb81d;
}
.instagram.icon {
  margin: 0 auto;
  text-align: center;
  border-width: 1px;
  border-radius: 30px;
  font-size: 30px;
  color: #fff;
  background-color: #26396a;
  position: relative;
  top: -32px;
  padding-top: 11px;
  width: 61px;
  display: block;
  height: 60px;
}
.instagram.icon:hover {
  color: #ffb81d;
}
.instagram-icons {
  background-color: white;
  padding-bottom: 60px;
}
.instagram {
  margin-left: 5px;
  width: 90%;
  margin: 0 auto;
  background-color: white;
}
.instagram #instamedia a {
  width: 20%;
  display: inline-block;
}
@media (max-width: 767px) {
  .instagram #instamedia a {
    width: 50%;
  }
}
.instagram #instamedia a .instaimage {
  margin: 15px;
  position: relative;
}
.instagram #instamedia a .instaimage img {
  width: 100%;
  outline: 5px solid #f2f2f2;
  margin-right: 15px;
}
.instagram #instamedia a .instaimage:after {
  background-color: rgba(2, 29, 73, 0.5);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
}
@-moz-document url-prefix() {
  .instagram #instamedia a .instaimage:after {
    /*background-color: rgba(2, 29, 73, 0);*/
    left: 0;
  }
}
.instagram #instamedia a .instaimage:hover:after {
  background-color: rgba(2, 29, 73, 0);
}
.instagram #instamedia a:hover.instaimage:after {
  background-color: rgba(2, 29, 73, 0);
}
@media (max-width: 767px) {
  .instagram #instamedia a:last-child {
    display: none;
  }
}
#circle {
  display: inline-block;
  height: 26px;
  width: 26px;
  line-height: 29px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #fff;
  color: #26396a;
  text-align: center;
  font-size: 29px;
  position: relative;
  font-weight: bold;
  left: 14px;
  cursor: pointer;
}
#circle.open {
  vertical-align: bottom;
  line-height: 8px;
}
.map .circle {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  background-color: #ffb81d;
  border: 2px solid white;
  -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 {
  height: 25px;
  width: 25px;
  position: relative;
  display: block;
  border: 2px solid white;
  background-color: #ffb81d;
  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 {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
}
.map .location#circle_anchorage {
  top: 276px;
  left: 648px;
}
.map .location#circle_fairbanks {
  top: 181px;
  left: 666px;
}
.map .location#circle_juneau {
  top: 309px;
  left: 832px;
}
.map .location#circle_matsu {
  top: 264px;
  left: 643px;
}
.map .location#circle_kenai {
  top: 295px;
  left: 630px;
}
.map .location#circle_ketchikan {
  top: 368px;
  left: 893px;
}
.map .location#circle_dc {
  display: none;
}
.map .location:hover .map-point,
.map .location.hover .map-point {
  border: 2px solid white;
  background-color: #ffb81d;
  height: 35px;
  width: 35px;
  position: relative;
  top: -8px;
  left: -8px;
}
.office-locations {
  background-color: #021d49;
  position: relative;
  margin-top: 50px;
}
.office-locations .blue-line,
.office-locations .other-blue-line {
  background-color: #26396a;
  height: 55px;
  padding: 15px;
  position: relative;
  z-index: 2;
}
.office-locations .blue-line h3,
.office-locations .other-blue-line h3 {
  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 .office-loc {
  background-color: #021d49;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}
.office-locations .location-links {
  color: white;
  margin-top: 55px;
}
.office-locations .location-links h4 {
  text-transform: uppercase;
}
.office-locations .location-links h4:hover {
  color: #ffb81d;
  cursor: pointer;
}
.office-locations .addresses {
  margin-top: 45px;
  color: white;
}
.office-locations .addresses h4 {
  text-transform: uppercase;
}
.office-locations .addresses #map {
  color: #ffb81d;
  text-transform: uppercase;
}
.office-locations .addresses #map:hover {
  color: #ffb81d;
}
.office-locations .addresses #map span {
  font-size: 10px;
}
.office-locations .addresses .address p {
  line-height: 22px;
  font-size: 16px;
}
.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;
}
.office-locations .map img {
  width: 100%;
}
.outline {
  position: relative;
  padding: 12px;
  background-color: white;
  border: 1px solid #a9a9a9;
}
.outline img {
  width: 100%;
}
.outline.home {
  height: 586px;
}
#myModal .modal-header {
  background-color: #021d49;
}
#myModal .modal-header a {
  color: white;
}
#myModal .modal-header a:hover {
  color: #ffb81d;
}
#myModal .close {
  color: white;
  opacity: 1;
}
#myModal .close:hover {
  color: #ffb81d;
}
#myModal .modal-body {
  padding: 0;
}
#myModal .modal-body iframe {
  width: 100%;
  height: 500px;
}
body#home .office-locations {
  margin-top: 0px;
}
/*
default interior styles

commonly made fixes / tweaks
*/
body#home {
  background-color: #f2f2f2;
}
#main_container {
  padding-top: 100px;
}
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
li.previous {
  margin-right: 10px;
}
#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: auto;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #021d49;
}
#search-issues-page {
  display: none;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
#breadcrumb a:hover {
  color: #ffb81d;
}
aside {
  margin-top: 0px;
}
#form_thomas_search h3 {
  margin-top: 0px;
}
a.anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}
body#press-landing a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  background-color: #26396a;
  font-weight: bold;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  background-color: #ffb81d;
}
@media (max-width: 479px) {
  img.banner {
    width: 250%;
    max-width: none;
  }
}
#newscontent #press {
  padding-top: 40px;
}
#newscontent #press .title {
  margin-top: 5px;
}
.article #press p {
  line-height: 30px;
  margin-bottom: 40px;
}
.faq {
  margin-bottom: 40px;
}
p {
  line-height: 30px;
  margin-bottom: 25px;
}
#browser_table thead tr th {
  width: 90px;
}
/*ABOUT PAGE*/
body#issue #interior-header {
  margin-bottom: 0;
}
body#issue #main_container {
  padding-top: 0px;
}
body#issue #content.hasbanner {
  padding-top: 100px;
}
body#about #main_column {
  margin-top: 20px;
}
@media (max-width: 585px) {
  body#about .col-xs-8 {
    width: 100%;
  }
}
body#about .blue-col {
  background-color: #edeff1;
  width: 100%;
  position: relative;
}
body#about .height {
  min-height: 500px;
  width: 100%;
}
body#about .white-col {
  background-color: white;
}
body#about #main_container {
  padding-top: 0px;
}
body#about #content.hasbanner {
  padding-top: 100px;
}
body#about #interior-header {
  margin-bottom: 0;
}
body#about .page-title {
  position: absolute;
  font-size: 72px;
  font-weight: bold;
  top: -160px;
  color: white;
}
body#about .banner-container {
  position: relative;
  width: 100%;
}
body#about .newsscrollnav {
  padding: 25px 25px;
  width: 100%;
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
}
@media (max-width: 1330px) {
  body#about .newsscrollnav {
    padding: 15px;
  }
}
body#about .newsscrollnav li.active a {
  text-decoration: underline;
}
body#about .newsscrollnav h4 {
  color: #ffb81d;
  text-transform: uppercase;
  font-size: 24px;
}
body#about .newsscrollnav a {
  color: white;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 13px;
  padding: 0;
}
body#about .newsscrollnav a:hover {
  color: #ffb81d;
}
body#about .newsscrollnav.affix {
  top: 160px;
  width: 24.6%;
  /*@media (max-width: 1330px) {width:285px;}*/
  /*@media (max-width: 1200px) {width:235px;}
				@media (max-width: 991px) {width:180px;}*/
}
body#about #about {
  text-transform: uppercase;
}
@media (max-width: 991px) {
  body#about #about {
    margin-top: 0px;
  }
}
body#about #welcome {
  padding-right: 43px;
}
@media (max-width: 585px) {
  body#about #welcome {
    width: 100%;
  }
}
body#about #welcome .caption {
  font-size: 13px;
}
@media (max-width: 585px) {
  body#about #portrait {
    width: 75%;
    margin: 40px 12.5% 0px;
  }
}
body#about .portrait {
  max-width: none;
  width: 100%;
}
body#about .portrait-btn {
  text-transform: uppercase;
  width: 100%;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 10px 10px;
  color: #ffb81d;
}
@media (max-width: 767px) {
  body#about .portrait-btn {
    font-size: 18px;
  }
}
body#about .portrait-btn i,
body#about .portrait-btn em {
  color: white;
}
body#about .portrait-btn:hover {
  color: white;
}
body#about #biography {
  margin-bottom: 50px;
  padding: 15px;
}
@media (max-width: 991px) {
  body#about #biography {
    padding-top: 35px;
  }
}
body#about #biography h4 {
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 20px;
}
body#about .about-lisa {
  width: 100%;
}
body#about .about-quick {
  height: 650px;
}
@media (max-width: 1330px) {
  body#about .about-quick {
    height: 710px;
  }
}
@media (max-width: 991px) {
  body#about .about-quick {
    height: 500px;
  }
}
@media (max-width: 600px) {
  body#about .about-quick {
    height: 600px;
  }
}
@media (max-width: 479px) {
  body#about .about-quick {
    height: 700px;
  }
}
body#about .about-quick .image {
  height: 100%;
  background-size: cover;
}
@media (max-width: 1330px) {
  body#about .quick-facts {
    font-size: 17px;
  }
}
body#about .quick-assign {
  background-color: #021d49;
  color: white;
  padding: 15px 25px;
  font-size: 17px;
  height: 100%;
}
body#about .quick-assign h3 {
  color: #ffb81d;
  font-size: 24px;
  margin-top: 0px;
}
body#about .quick-assign #committee {
  font-size: 24px;
  margin-top: 30px;
}
body#about .committee {
  margin-bottom: 10px;
}
@media (max-width: 1330px) {
  body#about .committee {
    margin-bottom: 10px;
  }
}
body#about .table-column {
  margin-top: -8px;
  display: table;
  background-color: #edeff1;
}
body#about .table-column .cell-column {
  display: table-cell;
  padding: 50px 10px 50px;
}
body#about .table-column .cell-column h2 {
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0px;
}
body#about .table-column .cell-column h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
body#about .table-column .cell-column.blue {
  background-color: #edeff1;
  text-align: center;
}
body#about .table-column .cell-column.blue h4 {
  font-size: 28px;
  text-align: left;
  margin-left: 10px;
  margin-bottom: 0;
}
body#about .table-column .cell-column.blue img {
  margin: 0 auto;
  margin-bottom: 15px;
  width: 190px;
}
body#about .table-column .cell-column.alaska-cell {
  padding-right: 30px;
  background-color: #e1e4e8;
}
body#about h5 {
  font-size: 24px;
  margin-top: 60px;
  width: 100%;
  display: inline-block;
}
body#about .office-locations {
  margin-top: 0px;
}
body#newsroom .modal select {
  height: auto;
}
body#newsroom p img {
  vertical-align: middle;
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
body#newsroom div iframe {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 479px) {
  body#newsroom div iframe {
    height: 300px;
  }
}
body#newsroom #media-player iframe {
  margin: 0;
}
/*ASSITANCE PAGE*/
body#assitance {
  background-color: #ffffff;
}
body#assitance #sam-main {
  margin-bottom: 50px;
}
body#assitance #main_container {
  /*background-color: #f2f2f2;
		padding-top: 60px;*/
}
body#assitance .block-link {
  display: block;
}
body#assitance .helpnode {
  margin-bottom: 20px;
}
body#assitance .table {
  display: table;
  width: 100%;
  margin-bottom: 0px;
}
body#assitance .cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
body#assitance .block {
  background-color: #021d49;
  color: white;
  text-transform: uppercase;
  height: 120px;
  font-size: 30px;
  padding: 10px 30px;
}
body#assitance .block:hover {
  background-color: #26396a;
}
body#assitance .block h4 {
  font-size: 26px;
  line-height: 32px;
}
body#assitance .dropdown-block {
  max-height: 0px;
  position: absolute;
  overflow: hidden;
  background-color: white;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: inline-block;
  z-index: 1;
  width: 92.5%;
  transition: all 0.5s ease;
}
body#assitance .dropdown-block .block-link {
  padding: 0px 15px;
}
body#assitance .dropdown-block .subnode {
  height: 60px;
  border-bottom: 1px solid #dddddd;
}
body#assitance .dropdown-block .close-dropdown {
  text-align: center;
  background-color: #dddddd;
  color: #a3a3a3;
  padding: 10px;
  cursor: pointer;
}
body#assitance .dropdown-block .close-dropdown h4 {
  margin: 0px;
  text-transform: uppercase;
}
body#assitance .dropdown-block .close-dropdown:hover {
  color: #26396a;
}
body#assitance .dropdown-block.open {
  max-height: 500px;
  transition: all 0.5s ease;
}
body#newsroom .date {
  width: 90px;
}
#browser_table {
  word-break: normal;
}
body#press-landing #main_container,
body#about #main_container {
  padding-top: 0px;
}
body#press-landing #content.hasbanner,
body#about #content.hasbanner {
  padding-top: 100px;
}
body#press-landing #breadcrumb,
body#about #breadcrumb {
  display: none;
}
body#press-landing #interior-header,
body#about #interior-header {
  margin-bottom: 0;
}
body#press-landing .office-locations,
body#about .office-locations {
  margin-top: -8px;
}
body#press-landing .main_page_title,
body#about .main_page_title {
  position: absolute;
  font-size: 72px;
  font-weight: bold;
  top: -110px;
  color: white;
}
body#press-landing #blue-row,
body#about #blue-row {
  background-color: #D9DCE1;
  display: inline-block;
}
body#press-landing #nav-col,
body#about #nav-col {
  padding: 0;
}
body#press-landing .sidenav,
body#about .sidenav {
  margin-top: 50px;
}
body#press-landing .sidenav .newsscrollnav,
body#about .sidenav .newsscrollnav {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(left, #ffffff, #000000);
  background-image: -moz-linear-gradient(left, #ffffff, #000000);
  background-image: -o-linear-gradient(left, #ffffff, #000000);
  background-image: -ms-linear-gradient(left, #ffffff, #000000);
  background-image: linear-gradient(left, #ffffff, #000000);
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
  width: 100%;
  padding: 25px;
}
body#press-landing .sidenav .newsscrollnav ul,
body#about .sidenav .newsscrollnav ul {
  padding-left: 0;
  list-style: none;
}
body#press-landing .sidenav .newsscrollnav ul li,
body#about .sidenav .newsscrollnav ul li {
  margin-bottom: 15px;
}
body#press-landing .sidenav .newsscrollnav li.active,
body#about .sidenav .newsscrollnav li.active {
  background-color: transparent;
}
body#press-landing .sidenav .newsscrollnav li.active a,
body#about .sidenav .newsscrollnav li.active a {
  text-decoration: underline;
  background-color: transparent;
}
body#press-landing .sidenav .newsscrollnav a,
body#about .sidenav .newsscrollnav a {
  color: white;
  font-size: 22px;
  display: block;
}
body#press-landing .sidenav .newsscrollnav a:hover,
body#about .sidenav .newsscrollnav a:hover {
  color: #ffb81d;
}
body#press-landing .sidenav .newsscrollnav.affix,
body#about .sidenav .newsscrollnav.affix {
  width: 24.6%;
  top: 160px;
  /*		@media (max-width: 1330px) {width:285px;}
				@media (max-width: 1200px) {width:235px;}
				@media (max-width: 991px) {width:180px;}*/
}
body#press-landing .newsletters,
body#about .newsletters {
  padding: 50px 20px;
  transition: opacity ease 0.5s;
}
body#press-landing .newsletters .newsletter-link,
body#about .newsletters .newsletter-link {
  display: block;
  margin: 1px 0px;
}
body#press-landing .newsletters h3,
body#about .newsletters h3 {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}
body#press-landing .press-section,
body#about .press-section {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-right: 100px;
  padding-left: 50px;
  background-color: #F2F2F2;
}
body#press-landing .press-section.gray,
body#about .press-section.gray {
  background-color: #EBEBED;
}
body#press-landing .press-section .clearfix,
body#about .press-section .clearfix {
  padding-top: 30px;
}
body#press-landing .press-section h2,
body#about .press-section h2 {
  margin-top: 0px;
}
@media (max-width: 767px) {
  body#press-landing .press-section,
  body#about .press-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
  }
}
body#press-landing h2.title,
body#about h2.title {
  margin-bottom: 3px;
  margin-top: 20px;
}
body#press-landing .video-col,
body#about .video-col {
  padding-left: 0;
}
body#press-landing .video-col .title,
body#about .video-col .title {
  margin-bottom: 30px;
  font-size: 18px;
}
@media (max-width: 767px) {
  body#press-landing .video-col .title,
  body#about .video-col .title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
body#press-landing .video-col iframe,
body#about .video-col iframe,
body#press-landing .video-col .videoiframe,
body#about .video-col .videoiframe {
  margin-bottom: -3px;
  height: auto;
}
body#press-landing .video-col .video-col,
body#about .video-col .video-col {
  padding-left: 0px;
}
body#press-landing .date,
body#about .date {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 3px;
}
.clearfix {
  display: inline-block;
}
.stupidclearfix {
  width: 100%;
  height: 40px;
  margin-top: 40px;
  display: inline-block;
}
body#offices .office-locations {
  display: none;
}
body#offices footer {
  margin-top: 80px;
}
#dreamers {
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
#dreamers .itm {
  width: 100%;
  height: auto;
  clear: both;
  transition: left 150ms ease-in-out;
}
#dreamers .itm .person {
  float: left;
  width: 210px;
  height: 225px;
  margin: 10px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
#dreamers .itm .person .img {
  width: 200px;
  height: 200px;
  /*.border-radius(200px);*/
  border: 3px solid #26396a;
  background-position: center center;
  background-size: cover;
  transition: width height 300ms ease-in-out;
}
#dreamers .itm .person .img:hover {
  border: 3px solid #ffb81d;
}
#dreamers .itm .person .title {
  font-size: 15px;
  text-align: center;
  transition: all 300ms ease-in-out;
}
#dreamers .itm .person .txt {
  width: 0;
  height: :0;
  opacity: 0;
}
#dreamers .nav {
  height: 45px;
  display: none;
  background-color: #021d49;
}
#dreamers .nav #grid {
  margin: 6px;
  border: none;
  cursor: pointer;
}
#dreamers .nav #grid,
#dreamers .nav .pages,
#dreamers .nav .pages_nav {
  float: left;
}
#dreamers .nav .pages_nav {
  float: right;
}
#dreamers .nav .pages_nav .arrw {
  margin: 5px;
  cursor: pointer;
}
/* DETAIL */
#dreamers.detail {
  position: relative;
  overflow: hidden;
  height: 1000px;
}
#dreamers.detail .itm {
  position: absolute;
  top: 45px;
  height: auto;
}
#dreamers.detail .itm .person {
  margin: 0;
  opacity: 0;
  cursor: auto;
}
#dreamers.detail .itm .person .img {
  float: left;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 500px;
  width: 400px;
  margin: 15px;
}
#dreamers.detail .itm .person .title {
  text-align: left;
  margin: 15px 0 0 0;
  font-size: 26px;
  height: 35px;
}
#dreamers.detail .itm .person .txt {
  width: 560px;
  height: auto;
  text-align: left;
  float: left;
  opacity: 100;
}
#dreamers.detail .itm .person.on {
  opacity: 1;
}
#dreamers.detail .nav {
  display: block;
}
#whip #press .date {
  border-bottom: 1px solid #cecece;
  margin: 0 0 25px 0;
  padding: 10px;
  cursor: pointer;
}
#whip #press .date span {
  color: #021d49;
}
#whip #press .date.on {
  margin: 0;
}
#whip #press .date.on span {
  color: #021d49;
  display: none;
}
#whip #press .whip {
  display: none;
  padding: 5px;
}
#whip #press .whip ul {
  margin: 0;
  padding: 0;
  list-style-type: square;
}
#whip #press .whip ul li {
  margin: 0 0 15px 25px;
}
#whip #press .whip.on {
  display: block;
  border-bottom: 1px solid #cecece;
  margin: 0 0 35px 0;
}
.interntable {
  margin: 30px 0px;
}
.interntable tr th {
  font-size: 16px;
}
.interntable tr td {
  font-size: 16px;
  font-weight: 400;
}
.interntable tr td p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400 !important;
}
.interntable tr td p + p {
  padding-top: 10px;
}
body#about #main_container,
body#press-landing #main_container {
  width: 100%;
}
body#about img.banner,
body#press-landing img.banner {
  max-height: 450px;
}
body#about .portrait,
body#press-landing .portrait {
  max-width: 300px;
}
body#about .portrait-btn,
body#press-landing .portrait-btn {
  max-width: 300px;
}
body#about #sam-bio,
body#press-landing #sam-bio {
  padding: 15px;
}
body#about #sam-bio h4,
body#press-landing #sam-bio h4 {
  font-size: 26px;
}
body#about .office-locations {
  margin-top: -17px;
}
/*OFFICE LOCATIONS*/
.contact-addresses .contact-address {
  min-height: 560px;
}
.contact-addresses .office-image {
  width: 100%;
  margin-bottom: 20px;
}
.contact-addresses #map span {
  font-size: 14px;
}
body#students-landing #listblocks li:nth-child(7) {
  width: 50%;
}
body#students-landing #listblocks li:nth-child(8) {
  width: 50%;
}
body#staff strong {
  display: inline-block;
  margin-top: 30px;
}
body#staff h2 {
  margin-top: 40px;
}
body#staff h3 {
  color: #ffb81d;
}
body#staff .alaska strong {
  margin-top: 3px;
}
body#staff .alaska .alaska-office {
  min-height: 275px;
}
/*CONTACT*/
body#about .sidenav {
  margin-top: 0px;
}
body#about .blue-col {
  margin-top: 25px;
}
body#about .scroll {
  background-color: white;
}
body#about .inline {
  display: inline-block;
  width: 100%;
}
body#about #delegation {
  top: 0;
}
body#contact-page #listblocks li:nth-child(4) {
  width: 50%;
}
body#contact-page #listblocks li:nth-child(5) {
  width: 50%;
}
#video-content #media-player iframe {
  min-height: 400px;
}
@media (max-width: 600px) {
  #video-content #media-player iframe {
    min-height: 300px;
  }
}
@media (max-width: 500px) {
  #video-content #media-player iframe {
    min-height: 220px;
  }
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#share-buttons #share-link-container {
  width: 572px;
}
@media (max-width: 1330px) {
  #share-buttons #share-link-container {
    width: 486px;
  }
}
@media (max-width: 1200px) {
  #share-buttons #share-link-container {
    width: 355px;
  }
}
@media (max-width: 991px) {
  #share-buttons #share-link-container {
    width: 460px;
  }
}
#multimedia-browser {
  margin-top: 30px;
}
#multimedia-browser ul.nav-tabs {
  display: none;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
#multimedia-browser .status {
  background-color: #ffb81d;
  color: #464646;
}
#multimedia-browser .pagination {
  background-color: #021d49;
}
body footer {
  padding: 50px 0px 30px;
  text-align: center;
  background-color: #021d49;
}
body footer .footernav {
  display: inline-block;
}
body footer .footernav li {
  padding: 0 30px;
}
body footer .footernav li a {
  color: white;
  font-family: 'Proxima Nova W01';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}
body footer .footernav li a:hover {
  color: #ffb81d;
}
body footer .right {
  display: inline-block;
  position: relative;
  top: -3px;
}
body footer .social-list {
  display: inline-block;
}
body footer .social-list a {
  font-size: 13px;
  background-color: white;
  color: #021d49;
  height: 26px;
  width: 26px;
  border-radius: 20px;
  margin-left: 4px;
  display: inline-block;
  text-align: center;
  padding-top: 4px;
}
body footer .social-list a:hover {
  background-color: #ffb81d;
}
.office-locations {
  border-bottom: 1px solid #26396a;
}
/*body#home{
	footer{
		background-color: white;
		li a{
			color: @lightblue;
		}
	}
	.social-list{
		a{
			background-color: @lightblue;
		color: white;
		}
		
	}
	.office-locations{
	border-bottom: none;
}
}*/
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*




font-family:'Proxima Nova W01';
font-family:'Superclarendon W00';



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;

*/
.proxima {
  font-family: 'Proxima Nova W01';
}
.super {
  font-family: 'Superclarendon W00';
}
.gradient {
  background: #293b6d;
  background: -moz-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: -webkit-linear-gradient(top, #293b6d 0%, #051f4b 100%);
  background: linear-gradient(to bottom, #293b6d 0%, #051f4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#293b6d', endColorstr='#051f4b', GradientType=0);
}
.gray-borders,
.grey-borders {
  border-top: 10px solid #f2f2f2;
  border-bottom: 10px solid #f2f2f2;
}
/*set up serif font quick class if we have one*/
.serif {
  font-family: 'Superclarendon W00';
}
/*set up sans-serif font quick class if we have one*/
.sans {
  font-family: 'Proxima Nova W01';
}
/*body color and font*/
body {
  font-family: 'Proxima Nova W01';
  font-size: 18px;
  font-weight: 300;
}
/*header styles*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Proxima Nova W01';
}
/*anchor stlyes*/
a {
  color: #26396a;
  font-weight: 400;
}
a:hover {
  text-decoration: none;
  color: #ffb81d;
}
a:focus,
a:visited,
a:link {
  text-decoration: none;
}
/*button styles*/
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
btn:focus,
.btn-default:focus,
.search-media-btn,
#main_column form .btn {
  background-color: #021d49;
  font-family: 'Proxima Nova W01';
  color: white;
  font-weight: bold;
}
.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: #ffb81d;
  color: white;
}
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: 10px 10px 10px 30px;
  vertical-align: bottom;
  font-size: 16px;
}
.modal select,
#session_select,
#sponsored {
  height: 40px;
}
/*interior page content default styles */
@media (max-width: 1330px) {
  .map .location#circle_anchorage {
    top: 244px;
    left: 587px;
  }
  .map .location#circle_fairbanks {
    top: 161px;
    left: 605px;
  }
  .map .location#circle_juneau {
    top: 275px;
    left: 741px;
  }
  .map .location#circle_matsu {
    top: 232px;
    left: 577px;
  }
  .map .location#circle_kenai {
    top: 258px;
    left: 570px;
  }
  .map .location#circle_ketchikan {
    top: 324px;
    left: 797px;
  }
  .map .location#circle_dc {
    display: none;
  }
  .office-locations #location-image {
    width: 479px;
  }
}
@media (max-width: 1200px) {
  .office-locations .location-links {
    margin-top: 33px;
  }
  .office-locations .map {
    padding-left: 0px;
    padding-top: 129px;
  }
  .map {
    padding-left: 0px;
    padding-top: 109px;
  }
  .map .location#circle_anchorage {
    top: 343px;
    left: 437px;
  }
  .map .location#circle_fairbanks {
    top: 262px;
    left: 454px;
  }
  .map .location#circle_juneau {
    top: 372px;
    left: 596px;
  }
  .map .location#circle_matsu {
    top: 328px;
    left: 427px;
  }
  .map .location#circle_kenai {
    top: 360px;
    left: 423px;
  }
  .map .location#circle_ketchikan {
    top: 421px;
    left: 646px;
  }
  .map .location#circle_dc {
    display: none;
  }
  .office-locations #location-image {
    width: 419px;
    margin-top: 103px;
  }
}
@media (max-width: 991px) {
  .office-locations {
    display: none;
  }
  .address p {
    font-size: 16px;
    line-height: 21px;
  }
  .map {
    padding-left: 0px;
    padding-top: 109px;
  }
  .map #map {
    width: 580px;
  }
  .map .location#circle_anchorage {
    top: 307px;
    left: 378px;
  }
  .map .location#circle_fairbanks {
    top: 227px;
    left: 383px;
  }
  .map .location#circle_juneau {
    top: 335px;
    left: 506px;
  }
  .map .location#circle_matsu {
    top: 288px;
    left: 387px;
  }
  .map .location#circle_kenai {
    top: 319px;
    left: 367px;
  }
  .map .location#circle_ketchikan {
    top: 380px;
    left: 556px;
  }
  .map .location#circle_dc {
    display: none;
  }
}
@media (max-width: 767px) {
  .office-locations .location-links {
    margin-top: 38px;
  }
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
  body#students-landing #listblocks li:nth-child(7) {
    width: 100%;
  }
  body#students-landing #listblocks li:nth-child(8) {
    width: 100%;
  }
  body#contact-page #listblocks li:nth-child(4) {
    width: 100%;
  }
  body#contact-page #listblocks li:nth-child(5) {
    width: 100%;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .media-list .media .col-xs-3 {
  display: inline;
}
.ie .media-list .media .col-xs-3 a img {
  max-width: auto;
  width: 100%;
}
.ie aside form select {
  min-height: 42px;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .notie {
  display: none !important;
}
.ie9 .ieonly {
  display: block !important;
}
.ie9 .notie {
  display: none !important;
}
.ie8 .ieonly {
  display: block !important;
}
.ie8 .notie {
  display: none !important;
}
.ie7 .ieonly {
  display: block !important;
}
.ie7 .notie {
  display: none !important;
}
.ie6 .ie7only {
  display: block !important;
}
.ie6 .navbar-toggle {
  display: block !important;
}
@media print {
  html #interior-header {
    display: none;
  }
  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html footer,
  html #breadcrumb {
    display: none;
  }
  html .container {
    margin-top: 0px;
  }
}
/*# sourceMappingURL=common.css.map */