/* 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);
  }
}
.textcolor {
  color: #333c4e;
}
.bgmain {
  background-color: rgba(51, 60, 78, 0.9);
}
.bghover {
  background-color: rgba(79, 153, 206, 0.9);
}
.linkcolor {
  color: #4f99ce;
}
.headerfont {
  font-family: 'AvantGardeGothicITCW01D_731075';
}
.bookfont {
  font-family: 'AvantGardeGothicITCW01B_731069';
}
/*
font-family:'AvantGardeGothicITCW01B_731069';
font-family:'AvantGardeGothicITCW01B_731072';
font-family:'ITCAvantGardeW04-Medium1122896';
font-family:'AvantGardeGothicITCW01M_731090';
font-family:'AvantGardeGothicITCW01D_731075';
*/
body {
  font-family: 'AvantGardeGothicITCW01B_731069', serif;
  background: #ededed;
  white-space: normal;
}
body #main_container {
  margin-top: 10px;
  font-size: 18px;
  color: #333c4e;
}
body #main_container p {
  margin: 20px 0 10px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'AvantGardeGothicITCW01D_731075';
}
h1,
.h1 {
  font-size: 54px;
  line-height: 57px;
}
h2,
.h2 {
  font-size: 40px;
  line-height: 43px;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 27px;
}
a {
  color: #388cc8;
}
.pager li .btn,
.btn,
.btn-defualt,
.btn:visited,
.btn-defualt:visited,
.btn:focus,
.btn-default:focus,
.search-media-btn {
  background-color: #388cc8;
  color: #fff;
}
.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 {
  background-color: rgba(51, 60, 78, 0.9);
  color: #fff;
}
.btn-xl {
  padding: 30px;
  background: #388cc8;
  color: #fff;
  font-family: 'AvantGardeGothicITCW01D_731075';
  font-size: 20px;
}
.btn-xl:hover {
  background-color: rgba(51, 60, 78, 0.9);
  color: #fff;
}
.inline-img {
  display: block;
  width: auto;
  height: auto;
  margin-top: 0px;
  margin-bottom: 10px;
}
.inline-img.pull-left {
  margin-right: 20px;
  margin-left: 0px;
}
.inline-img.pull-right {
  margin-right: 0px;
  margin-left: 20px;
}
body.no_main_title .main_page_title {
  display: none;
}
/*NAV*/
#header {
  background: transparent;
}
.fade.in {
  background: rgba(51, 60, 78, 0.6);
}
.site-wrapper {
  max-width: 1290px;
  background: #fff;
  margin: 0px auto;
}
/*.homepage{
	.navbar{
		.nav-pills{
			> li {
				a {
					font-size:22px;
					padding: 0px;
				}
			}
		}
	}
}
*/
.logo-otherpages {
  float: left;
  width: 25%;
  position: relative;
  left: -30px;
}
.logo-otherpages .logo-interior {
  background: url('/themes/takano/images/logo-interior.png');
  width: 262px;
  height: 78px;
  position: absolute;
  top: 15px;
}
.logo-otherpages .logo-interior a {
  width: 100%;
  height: 100%;
}
.navwrap,
.nav-box {
  width: 100%;
}
.otherpages .navbar {
  padding-top: 20px;
  float: right;
  width: 75%;
}
.otherpages .navbar .nav-pills > li a {
  font-size: 18px;
  padding: 10px 0px;
}
.otherpages .navbar .nav-pills > li.selected a {
  color: #4f99ce;
}
.otherpages .navbar .nav-pills > li:hover a {
  color: #fff;
}
.otherpages .navbar .nav-pills > li:hover .dropdown-menu a {
  color: #fff;
}
.otherpages .navbar .nav-pills > li:last-child .srchbutton {
  top: 17px;
  width: 100%;
  display: block;
  height: 100%;
  position: relative;
}
.otherpages .navbar .nav-pills > li:last-child:hover .srchbutton {
  background-color: transparent;
  color: #4f99ce;
}
.navbar {
  background-color: #FFF;
  min-height: 0;
  margin-bottom: 0px;
  font-size: 24px;
  padding-top: 40px;
  border: none;
  font-family: 'AvantGardeGothicITCW01D_731075';
  padding-right: 10px;
}
.navbar .collapse {
  padding: 0px;
  width: 100%;
}
.navbar .nav-pills > li a {
  text-transform: uppercase;
  color: #333c4e;
  font-family: 'AvantGardeGothicITCW01D_731075';
  padding: 15px 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.navbar .nav-pills > li:hover a {
  color: #FFF;
  background-color: rgba(51, 60, 78, 0.9);
}
.navbar .nav-pills > li:hover .dropdown-menu {
  display: block;
  background-color: transparent;
  top: 99%;
  left: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin: 0px;
  padding: 0px 0px;
  border: none;
  font-size: 24px;
}
.navbar .nav-pills > li:hover .dropdown-menu > li a {
  padding: 20px;
}
.navbar .nav-pills > li:hover .dropdown-menu > li a:hover {
  width: 100%;
  background-color: rgba(79, 153, 206, 0.9);
}
.navbar .nav-pills > li:hover:after {
  border-color: transparent transparent #4f99ce transparent;
}
.navbar .nav-pills > li:last-child .srchbutton {
  top: 25px;
  width: 100%;
  display: block;
  height: 100%;
  position: relative;
}
.navbar .nav-pills > li:last-child:hover .srchbutton {
  background-color: transparent;
  color: #4f99ce;
}
#home .navbar {
  padding-top: 0px;
}
#header a.logo {
  background: url("../images/logo.png") no-repeat;
  /*		background-size: contain;*/
  display: block;
  height: 70px;
  width: 238px;
  text-indent: -10000px;
  /*margin: 10px 0px;*/
  border-bottom: none;
  background-size: 238px auto;
}
#header a.logo a {
  display: block;
  /*height:49px;*/
  /*width:238px;*/
  /*width: 100%;
			height
			text-indent:-10000px;*/
  /*margin: 0;*/
  /*padding: 30px 0px;*/
}
/*

OTHERSTUFF*/
.navbar-toggle {
  display: block;
  position: relative;
  float: left;
  margin: 0px;
  padding: 0;
  background-color: transparent;
  background-image: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  opacity: 1;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 6px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #000;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 3px;
}
.navbar-toggle:after:hover .icon-bar {
  background-color: #000;
}
.navbar-toggle:after:hover:after {
  color: #4f99ce;
}
.navbar-toggle #NavMobileModal .modal-dialog {
  margin: 2% auto 5%;
  width: 80%;
  max-width: 900px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content {
  position: relative;
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  z-index: 100;
  float: left;
  width: 100%;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .close {
  color: #ccc;
  text-shadow: 0 1px 0 #000;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .btn {
  font-size: 30px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-header h1 {
  font-size: 50px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-header .close {
  color: #ccc;
  text-shadow: 0 1px 0 #000;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: #ccc;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body a:hover {
  background-color: transparent;
  color: red;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav {
  float: left;
  width: 100%;
  display: block;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  float: left;
  width: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  float: left;
  width: 45%;
  font-size: 24px;
  padding: 0px;
  margin: 0px;
  display: block;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
  position: relative;
  z-index: 1000;
  display: block;
  float: left;
  margin: 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  background-clip: padding-box;
  width: 50%;
  padding: 0px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li {
  float: left;
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
}
.navbar-toggle #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  display: block;
  padding: 10px 0px;
  clear: both;
  margin: 0px;
  font-weight: normal;
  line-height: 22px;
  white-space: normal;
  font-size: 20px;
  width: 100%;
  float: left;
}
.featured-area {
  margin: 0px auto;
}
.featured-img {
  background: url('/themes/takano/images/feature.jpg') no-repeat;
  /*	width: 1200px;
	height: 300px;*/
  margin: 0px auto;
  position: relative;
  width: 100%;
  background-size: cover;
  background-attachment: scroll;
  background-position: center top;
}
.featured-img .container {
  height: 600px;
  position: relative;
}
.featured-img .feature-logo {
  background: url('/themes/takano/images/feature-logo.png') no-repeat;
  width: 470px;
  height: 183px;
  position: absolute;
  bottom: 20px;
  left: 0px;
  z-index: 600;
}
.featured-img .pod-container {
  position: absolute;
  width: 33.3333333%;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 600;
  /*FONT STYLES*/
  font-size: 1em;
  color: #fff;
}
.featured-img .feature-pod {
  width: 100%;
  height: 50%;
  position: relative;
  background-color: rgba(79, 153, 206, 0.9);
  padding: 20px 30px 0px 30px;
}
.featured-img .feature-pod h2 a {
  color: #fff;
  text-decoration: none;
}
.featured-img .feature-pod h2 a:hover {
  color: #333c4e;
}
.featured-img .feature-pod .play-video {
  position: absolute;
  bottom: 20px;
  padding: 5px 20px;
  margin-top: 20px;
  font-size: 2em;
  border-radius: 5px;
  color: #4f99ce;
  background: #333c4e;
  right: 30px;
}
.featured-img .feature-pod .play-video:hover {
  color: #4f99ce;
}
.featured-img .newsletter-pod {
  width: 100%;
  height: 50%;
  position: relative;
  background-color: rgba(51, 60, 78, 0.9);
  padding: 20px 30px 30px 30px;
  /*FOR VISUAL (TEST) PURPOSES*/
}
.featured-img .newsletter-pod h1 {
  font-size: 4em;
}
.featured-img .newsletter-pod .signup {
  margin-top: 50px;
  position: absolute;
  width: 86%;
  bottom: 30px;
}
.featured-img .newsletter-pod input {
  margin: 0px;
  padding-left: 20px;
  width: 70%;
  height: 50px;
  font-family: 'AvantGardeGothicITCW01B_731069';
  color: #333c4e;
  border: none;
  float: left;
}
.featured-img .newsletter-pod button {
  font-family: 'AvantGardeGothicITCW01B_731069';
  margin: 0px;
  display: inline-block;
  height: 50px;
  width: 30%;
  font-size: 1.6em;
  font-weight: 600;
  border: none;
  /*padding: 11px;*/
  /*margin-top: -1px;*/
  color: #333c4e;
  background: #4f99ce;
  text-decoration: none;
  float: left;
}
/*
RECENT PRESS STYLES*/
.recent-press {
  background: #f7f7f8;
}
.recent-press h4 {
  font-family: 'AvantGardeGothicITCW01D_731075';
  padding: 40px 0px;
}
.recent-press h4 a {
  color: #333c4e;
  text-decoration: none;
}
.recent-press h4 a:hover {
  color: #333c4e;
}
.press-pod {
  margin-right: 40px;
  margin-bottom: 60px;
}
.press-pod h3 {
  font-family: 'AvantGardeGothicITCW01D_731075';
  display: inline;
  padding-left: 10px;
  font-size: 23px;
}
.press-pod span.date {
  font-size: 20px;
}
.press-pod p.summary {
  font-family: 'AvantGardeGothicITCW01B_731069';
  padding-top: 30px;
  font-size: 16px;
  font-weight: 500;
}
.press-pod .last {
  margin-right: none;
}
/*
SOCIAL SECTION STYLES
*/
.social-area {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.social-area .icon-container {
  margin: 0 auto;
  height: 60px;
}
.social-area .icon-container .icon {
  float: left;
  margin: 12px;
  position: relative;
}
.social-area .icon-container a span.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px solid #4f99ce;
  opacity: 0;
}
.social-area .icon-container a span.overlay:hover {
  opacity: 1;
}
.social-area .icon-container a:last-child {
  padding-right: 0px;
}
/*
SERVICES SECTION STYLES*/
.services-area {
  background: #f7f7f8;
  padding: 75px 0px;
}
/*
MEDIA SECTION STYLES
*/
.media-area {
  background: #fff;
  padding: 80px 0px 20px 0px;
  /*	margin: 0px auto;*/
}
.media-area .more-media {
  float: left;
  margin: 2px;
  margin-top: -55px;
  font-family: 'AvantGardeGothicITCW01D_731075';
  font-size: 20px;
  color: #4f99ce;
}
.media-area .media-pod {
  /*		float: left;
		margin: 18px;*/
  position: relative;
}
.media-area .media-pod .image-box {
  width: 100%;
  height: 314px;
  overflow: hidden;
}
.media-area .media-pod .image-box img {
  position: relative;
  width: 100%;
}
.media-area .media-pod .image-box.video img {
  position: relative;
  top: -17%;
  left: 0%;
}
.media-area .media-pod .media-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: #fff;
  padding: 10px;
}
.media-area .media-pod .media-info .video {
  display: inline-block;
  width: 40px;
  height: 20px;
  padding-right: 10px;
  content: url('/themes/takano/images/video-icon.png');
}
.media-area .media-pod .media-info .photo {
  display: inline-block;
  width: 40px;
  height: 20px;
  padding-right: 10px;
  content: url('/themes/takano/images/photo-icon.png');
}
.media-area .media-pod .media-info h3 {
  display: inline;
  padding-bottom: 10px;
  font-family: 'AvantGardeGothicITCW01D_731075';
  color: #fff;
}
.media-area .media-pod .media-info h3 a {
  color: #fff;
}
.media-area .media-pod .media-info h3 a:hover {
  color: #fff;
}
.gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(80deg, rgba(0, 0, 0, 0.7) 16%, rgba(0, 0, 0, 0) 40%);
  /* FF3.6+ */
  background: -webkit-linear-gradient(80deg, rgba(0, 0, 0, 0.7) 16%, rgba(0, 0, 0, 0) 40%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(80deg, rgba(0, 0, 0, 0.7) 16%, rgba(0, 0, 0, 0) 40%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(80deg, rgba(0, 0, 0, 0.7) 16%, rgba(0, 0, 0, 0) 40%);
  /* IE10+ */
}
#breadcrumb {
  background: #f5f6f6;
  border-top: 1px solid #e4e6ec;
  padding: 15px 0px;
  font-family: 'AvantGardeGothicITCW01D_731075';
  margin-top: 0px;
}
#breadcrumb ol {
  margin-bottom: 0px;
}
#breadcrumb li + li::before {
  content: "\00BB";
  position: relative;
  left: -6px;
  color: #4f99ce;
}
#map {
  width: 100%;
  height: 500px;
  border: 2px solid #4f99ce;
  margin-top: 40px;
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  background-color: #4f99ce;
}
#listblocks .block a {
  background-color: #4f99ce;
  font-family: 'AvantGardeGothicITCW01D_731075';
}
#listblocks .block a:hover {
  background-color: #333c4e;
}
#asides {
  margin-top: 70px;
}
#asides aside #socialpod {
  background-color: #333c4e;
  color: #fff;
  padding: 30px;
  float: left;
  width: 100%;
}
#asides aside #socialpod #soc-links {
  position: relative;
  height: 335px;
  display: block;
  width: 100%;
  float: left;
}
#asides aside #socialpod #soc-links h1 {
  display: block;
  width: 180px;
  float: left;
  margin: 0;
  position: absolute;
  margin: 10px 0 0 0;
}
#asides aside #socialpod #soc-links ul {
  position: relative;
  width: 100%;
  display: block;
  float: left;
  top: 72px;
}
#asides aside #socialpod #soc-links ul li {
  float: left;
  margin-right: 30px;
  margin-top: 30px;
}
#asides aside #socialpod #soc-links ul li .icon {
  width: 80px;
  position: relative;
  height: 80px;
  display: block;
}
#asides aside #socialpod #soc-links ul li .icon img {
  width: 100%;
  height: 100%;
  display: block;
  float: left;
}
#asides aside #socialpod #soc-links ul li:nth-child(4),
#asides aside #socialpod #soc-links ul li:nth-child(7) {
  margin-right: 0px;
  float: right;
}
#asides aside #socialpod #soc-links ul li:nth-child(1) {
  float: right;
  position: absolute;
  top: -72px;
  right: 0px;
  margin: 0;
  padding: 0;
}
#asides aside #socialpod #newsletter-signup {
  float: left;
  position: relative;
  width: 100%;
  display: block;
}
#asides aside #socialpod #newsletter-signup form {
  width: 100%;
  margin-top: 30px;
  float: left;
}
#asides aside #socialpod #newsletter-signup form input {
  height: 50px;
  display: block;
  float: left;
  border: none;
  width: 230px;
}
#asides aside #socialpod #newsletter-signup form button {
  border: none;
  height: 50px;
  display: block;
  float: right;
  width: auto;
}
.tours li h2 {
  font-size: 22px;
  line-height: 24px;
}
.tours li h2 a:after {
  content: "\00BB";
  left: 5px;
  position: relative;
}
.tours li p {
  margin-top: 10px !important;
}
.tours li .btn {
  display: none;
}
#legislation #asides h1 {
  font-family: 'AvantGardeGothicITCW01D_731075';
  font-size: 40px;
  line-height: 43px;
}
#mainlist {
  margin-top: 40px;
}
#mainlist li {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#typenav h1 {
  margin-top: 15px;
  font-size: 40px;
}
#typenav.affix {
  top: 0px;
}
.blog-entry {
  float: left;
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #ededed;
}
.blog-entry h2 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.blog-entry .byline {
  font-family: 'AvantGardeGothicITCW01D_731075';
  font-size: 14px;
}
.blog-entry .content-row {
  margin-top: 30px;
}
.blog-entry.detail {
  border: none;
  margin-top: 0px;
  padding-top: 0px;
}
.blog-entry.detail h2 {
  margin-top: 20px;
}
.chartmodal .modal-dialog {
  float: none;
  width: 95%;
  margin: 0 auto;
}
.chartmodal .modal-content {
  background: transparent;
}
.chartmodal .modal-content .modal-header {
  border: none;
  float: left;
  width: 100%;
  display: block;
  padding: 0 15px;
}
.chartmodal .modal-content .modal-header .close {
  color: #fff;
  font-size: 50px;
}
.chartmodal .modal-content .modal-body {
  border: none;
  float: left;
  width: 100%;
  display: block;
}
.chartmodal .largechart {
  width: 100%;
}
#multimedia-browser .row .media-thumbnail {
  margin: 0 .6em 1em 0;
}
@media (max-width: 1200px) {
  #multimedia-browser .row .media-thumbnail {
    margin: 0 10px 1em 0;
  }
}
.footer-area {
  background: #f7f7f8;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: 'AvantGardeGothicITCW01D_731075';
  margin-top: 50px;
}
.footer-area h4 {
  font-family: 'AvantGardeGothicITCW01D_731075';
  margin-top: 0px;
  margin-bottom: 20px;
}
.footer-area ul {
  list-style-type: none;
  padding: 0px;
}
.footer-area ul li {
  display: inline;
}
.footer-area .quicklinks {
  font-size: 12px;
  padding-top: 20px;
}
.footer-area .office h4 {
  margin: 0px;
  color: #4f99ce;
  margin-bottom: 5px;
}
.footer-area .office p {
  font-size: 15px;
  line-height: 1.7;
}
#flagForm #flag-options .head {
  margin: 15px 0 15px 0;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #EEE;
  background-color: rgba(0, 0, 0, 0.2);
}
#flagForm #flag-options .row {
  padding: 15px 10px 10px 10px;
  border-bottom: 2px solid #EEE;
}
#flagForm #flag-options .row label {
  display: none;
}
#flagForm #flag-options .row .qty {
  padding: 0 20px 0 20px;
  max-width: 75px;
  margin: 0;
  height: 35px;
}
#flagForm .shipping_total {
  margin: 5px 0 0 0;
  padding: 20px;
  /*background-color: rgba(2,153,230,0.025);*/
}
#flagForm .subtotal {
  padding: 25px 0 0 0;
  font-size: 22px;
  font-weight: 800;
}
#flagForm .subtotal label {
  font-size: 22px;
  font-weight: 800;
}
#min_flag {
  margin: 0;
  padding: 0;
  opacity: 0;
}
/* collapse ------------------------------- */
@media (max-width: 990px) {
  #flag-options .head {
    display: none !important;
  }
  #flag-options .row {
    border-bottom: 1px solid #ccc;
    margin: 0 0 25px 0;
  }
  #flag-options .row .total {
    text-align: right;
  }
  #flag-options .row label {
    display: inline-block !important;
  }
  .shipping div,
  .subtotal div {
    text-align: right;
  }
}
/* FORM SYSTEM styles page

This are mostly functional styles at the top, with customizations below...

*/
#accomp-all,
#accomp-1,
#accomp-2,
#accomp-3 {
  display: none;
}
.sel_all #accomp-all,
.sel_all #accomp-1,
.sel_all #accomp-2,
.sel_all #accomp-3,
.sel_1 #accomp-1,
.sel_2 #accomp-2,
.sel_3 #accomp-3 {
  display: block;
}
.show_form .form_mode,
.show_preview .preview_mode {
  display: block !important;
}
.show_form input,
.show_form select,
.show_form textarea {
  display: inline-block !important;
}
.show_form .preview_mode {
  display: none !important;
}
.show_preview .form-control,
.show_preview .form_mode,
.show_preview input,
.show_preview select,
.show_preview textarea {
  display: none !important;
}
abbr {
  outline: none;
  border: none;
}
.form-group .preview_mode {
  color: #000;
}
.show_form .picker {
  display: inline-block !important;
}
.show_preview input#send-request {
  display: inline-block !important;
}
.button-right {
  float: right;
}
.button-left {
  float: left;
}
#edit-request {
  margin-right: 1em;
}
#qa-form {
  margin-bottom: 20px;
}
#qa-form .button {
  cursor: pointer;
  font-size: 1rem;
  font-family: sans-serif;
}
/*

FORM SYSTEM Customizations
*/
#main_column form #actions {
  font-size: 22px;
  height: 65px;
}
#main_column form fieldset {
  margin: 50px 0 0 0;
}
#main_column form fieldset legend {
  font-weight: 800;
  font-size: 30px;
}
#main_column form fieldset label {
  font-weight: 500;
}
#main_column form fieldset input,
#main_column form fieldset select {
  padding: 10px;
}
#main_column form fieldset input[type='radio'],
#main_column form fieldset input[type='checkbox'] {
  padding: 0px;
  padding-top: 2px;
}
#main_column form fieldset abbr[title],
#main_column form fieldset abbr[data-original-title] {
  color: rgba(0, 0, 0, 0.2);
  border-bottom: none;
  cursor: help;
  padding: 5px;
}
#main_column form fieldset textarea {
  min-height: 100px;
  font-size: 18px;
}
#main_column form fieldset input.form-control,
#main_column form fieldset select.form-control {
  height: 50px;
  font-size: 18px;
}
#main_column form fieldset input.form-control:focus,
#main_column form fieldset select.form-control:focus {
  border: 1px solid #CCC;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
#main_column form fieldset .note-text {
  padding: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.33);
}
#main_column form fieldset + fieldset {
  margin: 50px 0 0 0;
}
#main_column form fieldset.intro {
  margin-bottom: 20px;
}
#main_column form .formheader {
  margin: 20px 0px 0px;
}
#main_column form .formheader + fieldset {
  margin-top: 20px;
}
#main_column form .formheader + fieldset legend {
  margin-bottom: 0px;
}
.popover {
  z-index: 1020;
}
.popover {
  z-index: 1020;
}
#main_column form fieldset legend {
  font-size: 20px;
}
#main_column form .topicset {
  margin: 0px;
}
#main_column form .btn {
  margin: 15px 0px;
  background: #388cc8;
  color: #fff;
  font-family: 'AvantGardeGothicITCW01D_731075';
  font-size: 20px;
}
#main_column form .btn:hover {
  background-color: rgba(51, 60, 78, 0.9);
  color: #fff;
}
#main_column form .btn + .btn {
  margin: 15px 15px;
}
#main_column #more-help {
  padding-top: 20px;
  font-size: 20px;
}
#main_column #contactForm {
  margin-top: 50px;
}
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
#content .amend-form-container form h2 {
  margin: 0 0 1em 0;
  font-size: 25px;
  font-weight: bold;
}
#content .amend-form-container form h3 {
  margin: 0 0 1em 0;
  font-size: 20px;
}
#content .amend-form-container form input[type="text"],
#content .amend-form-container form input[type="email"],
#content .amend-form-container form select {
  height: 50px;
}
#content .amend-form-container form input[type="text"],
#content .amend-form-container form input[type="email"],
#content .amend-form-container form textarea,
#content .amend-form-container form select {
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#content .amend-form-container form select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
}
#content .amend-form-container form textarea {
  min-height: 125px;
}
#content .amend-form-container form input[type="checkbox"] + label,
#content .amend-form-container form input[type="radio"] + label {
  display: inline;
  position: relative;
  top: 2px;
  left: .5em;
}
#content .amend-form-container form .checkbox input[type="checkbox"] {
  margin-left: 0;
}
#content .amend-form-container form .checkbox input[type="checkbox"] + label {
  top: -1px;
  left: .25em;
}
#content .amend-form-container form .control-group + .control-group,
#content .amend-form-container form .control-group + .row,
#content .amend-form-container form .row + .control-group,
#content .amend-form-container form .row + .row {
  margin-top: 1em;
}
@media (max-width: 990px) {
  #content .amend-form-container form div[class^="col-"] + div[class^="col-"] {
    margin-top: 1em;
  }
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow,
.fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-family: 'Nexa W01 Light';
  font-size: 18px;
  color: #464646;
}
.polls input[type=text] {
  width: 100%;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 10px;
}
.polls select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
}
.polls label {
  /*font-size: 14px;*/
  font-weight: 500;
}
.polls .control-group {
  padding: 10px 0px;
}
.polls input[type="radio"] {
  margin-right: 10px;
}
.polls input.btn {
  float: right;
  font-size: 30px;
}
.hide-on-submit {
  display: none !important;
}
.hidden_set {
  margin-bottom: 50px;
  margin-top: -50px;
}
.hidden_set .control-group {
  padding-top: 20px;
}
.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  margin-left: 20px;
}
.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}
#signatures-container {
  width: 100%;
  float: right;
  margin-bottom: 0px;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: #d9d9d9;
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-container strong {
  font-weight: normal;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}
@media (max-width: 1290px) {
  .site-wrapper {
    max-width: 1200px;
    background: #fff;
    width: 100%;
    margin: 0px auto;
  }
}
/* END @ MEDIA WIDTH: 1370px */
@media (max-width: 1200px) {
  .navbar .nav-pills > li a {
    font-size: 22px;
  }
  .site-wrapper {
    width: 100%;
    background: #fff;
    margin: 0px auto;
  }
  .media-area .media-pod .image-box {
    max-height: 256px;
    overflow: hidden;
  }
  /* STYLES FOR THE HEADER OF NON-HOME PAGES IN RESPONSIVE */
  .logo-otherpages {
    float: left;
    width: 25%;
    position: relative;
  }
  .logo-otherpages .logo-interior {
    background: url('/themes/takano/images/logo-interior.png');
    background-size: 200px 60px;
    width: 200px;
    height: 60px;
    position: absolute;
    top: 25px;
  }
  .logo-otherpages .logo-interior a {
    width: 100%;
    height: 100%;
  }
  .otherpages .navbar {
    float: right;
    width: 77%;
  }
  .otherpages .navbar .srchbutton {
    top: 17px;
  }
  .otherpages .navbar .nav-pills > li a {
    font-size: 17px;
    padding: 10px 0px;
  }
  #asides h1 {
    font-size: 45px;
    line-height: 48px;
  }
  #asides aside #socialpod #soc-links {
    height: 260px;
  }
  #asides aside #socialpod #soc-links ul li {
    float: left;
    margin-right: 17px;
    margin-top: 17px;
  }
  #asides aside #socialpod #soc-links ul li .icon {
    width: 66px;
    height: 66px;
  }
  #asides aside #socialpod #newsletter-signup form input {
    width: 163px;
  }
  .featured-img .feature-pod h2 {
    font-size: 30px;
    line-height: 33px;
  }
  .featured-img .newsletter-pod h1 {
    font-size: 30px;
    line-height: 33px;
  }
}
/* END @MEDIA WIDTH: 1200px */
@media (max-width: 991px) {
  .srchbutton {
    font-size: 20px;
    color: #000;
  }
  #header {
    background: #FFF;
  }
  #header .logo {
    font-size: 16px;
  }
  #header .logo-box {
    width: 33%;
  }
  #header .logo-box h1 {
    margin: 0px;
    padding: 0 0 10px;
  }
  #header .nav-box {
    padding-top: 30px;
    width: 90px;
    float: right;
    margin-bottom: 10px;
  }
  #header .nav-box.otherpages {
    padding-top: 20px;
  }
  #header .navbar {
    padding-top: 0px;
    width: 35px;
    float: left;
  }
  .wrapper .container {
    width: 100% !important;
    padding: 0px;
  }
  .featured-img {
    height: 600px;
  }
  .featured-img .feature-logo {
    display: none;
  }
  /* STYLES FOR THE HEADER OF NON-HOME PAGES IN RESPONSIVE */
  .logo-otherpages {
    float: left;
    width: 25%;
    position: relative;
  }
  .logo-otherpages .logo-interior {
    background: url('/themes/takano/images/logo-interior.png');
    background-size: 200px 60px;
    width: 200px;
    height: 60px;
    position: absolute;
    top: 10px;
  }
  .logo-otherpages .logo-interior a {
    width: 100%;
    height: 100%;
  }
  #asides aside #socialpod #soc-links {
    height: auto;
    float: left;
    width: 100%;
  }
  #asides aside #socialpod #soc-links h1 {
    display: block;
    width: auto;
    float: left;
    margin: 0;
    position: relative;
    margin: 10px 0 0 0;
  }
  #asides aside #socialpod #soc-links ul {
    position: relative;
    width: 100%;
    display: block;
    float: left;
    top: 0;
  }
  #asides aside #socialpod #soc-links ul li {
    float: left;
    margin-right: 15px;
    margin-top: 15px;
    position: relative;
  }
  #asides aside #socialpod #soc-links ul li:nth-child(1),
  #asides aside #socialpod #soc-links ul li:nth-child(4),
  #asides aside #socialpod #soc-links ul li:nth-child(7) {
    position: relative;
    top: 0;
    margin-right: 15px;
    float: left;
    margin-top: 15px;
  }
  #asides aside #socialpod #soc-links ul li:last-child {
    margin-right: 0px;
  }
  #asides aside #socialpod #soc-links ul li .icon {
    width: 80px;
    height: 80px;
  }
  #asides aside #socialpod #newsletter-signup form .form-group {
    width: 80%;
    float: left;
  }
  #asides aside #socialpod #newsletter-signup form .form-group input {
    width: 100%;
  }
  #asides aside #socialpod #newsletter-signup form button {
    width: 20%;
  }
}
/*END @MEDIA WIDTH: 991px */
@media (max-width: 767px) {
  .logo-otherpages {
    left: 0;
  }
}
/*END @MEDIA WIDTH: 767px */
@media (max-width: 479px) {
  .featured-img .pod-container {
    display: none;
  }
  .featured-img .feature-logo {
    display: none;
  }
}
/* END @MEDIA WIDTH: 479px */
/* ------------------------ */
@media print {
  html {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
  }
  html body {
    margin: 0px !important;
    padding: 0px !important;
    height: 100% !important;
    width: 100% !important;
  }
  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html footer,
  html #breadcrumb {
    display: none!important;
  }
  html .rss-subscribe:after {
    content: "";
  }
  html .container {
    color: #333333 !important;
    width: 100%;
  }
  html .container ul {
    width: 100%;
  }
  html .container ul li {
    color: #ccc !important;
    width: 100%;
  }
  html .container div {
    color: #333333 !important;
    width: 100%;
  }
  html .container div * {
    color: #333333 !important;
  }
  html .container img:after,
  html .container a:after {
    content: "";
  }
  html .container #asides .social,
  html .container #asides .servicespod {
    display: none;
  }
  html .container img {
    margin: 10px;
  }
  html .container .inline-search {
    display: none;
  }
  html .container #search-issues-page-container,
  html .container #search-issues-page-results {
    display: none;
  }
  html .container .media-list .media {
    page-break-inside: avoid;
  }
  html .container .media-list a.pull-left,
  html .container .media-body {
    display: block;
    float: left;
    width: 15%;
  }
  html .container .media-list a.pull-left {
    margin-right: 5% !important;
  }
  html .container .media-list a img {
    width: 100%;
  }
  html .container .media-body {
    width: 80%;
  }
  #content .container #main_column {
    border-right: none;
  }
  #issue #asides {
    display: none;
  }
}
/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
.bootstrap-timepicker {
  position: relative;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
  left: auto;
  right: 0;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
  left: auto;
  right: 12px;
}
.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
  left: auto;
  right: 13px;
}
.bootstrap-timepicker .input-group-addon {
  cursor: pointer;
}
.bootstrap-timepicker .input-group-addon i {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.bootstrap-timepicker-widget.dropdown-menu {
  padding: 4px;
}
.bootstrap-timepicker-widget.dropdown-menu.open {
  display: inline-block;
}
.bootstrap-timepicker-widget.dropdown-menu:before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.dropdown-menu:after {
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-timepicker-widget.timepicker-orient-left:before {
  left: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-left:after {
  left: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:before {
  right: 6px;
}
.bootstrap-timepicker-widget.timepicker-orient-right:after {
  right: 7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:before {
  top: -7px;
}
.bootstrap-timepicker-widget.timepicker-orient-top:after {
  top: -6px;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
  border-radius: 4px;
}
.bootstrap-timepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-timepicker-widget table td {
  text-align: center;
  height: 30px;
  margin: 0;
  padding: 2px;
}
.bootstrap-timepicker-widget table td:not(.separator) {
  min-width: 30px;
}
.bootstrap-timepicker-widget table td span {
  width: 100%;
}
.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  outline: 0;
  color: #333;
}
.bootstrap-timepicker-widget table td a:hover {
  text-decoration: none;
  background-color: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border-color: #ddd;
}
.bootstrap-timepicker-widget table td a i {
  margin-top: 2px;
  font-size: 18px;
}
.bootstrap-timepicker-widget table td input {
  width: 42px;
  margin: 0;
  text-align: center;
  padding: 4px 6px;
}
.bootstrap-timepicker-widget .modal-content {
  padding: 4px;
}
@media (min-width: 767px) {
  .bootstrap-timepicker-widget.modal {
    width: 200px;
    margin-left: -100px;
  }
}
@media (max-width: 767px) {
  .bootstrap-timepicker {
    width: 100%;
  }
  .bootstrap-timepicker .dropdown-menu {
    width: 100%;
  }
}
/* SEARCH --------------------------------------------- */
#SearchModal {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
#SearchModal .search {
  position: relative;
  margin: 0px;
  min-height: 300px;
  background-color: #FFF;
  height: 100%;
  overflow: hidden;
}
#SearchModal .search .close-outer {
  float: left;
  width: 100%;
  display: block;
}
#SearchModal .search .close-outer a.closebtn {
  width: 25px;
  height: 25px;
  float: right;
  display: block;
}
#SearchModal .search .close-outer a.closebtn img {
  width: 100%;
  height: auto;
}
#SearchModal .search #results {
  float: left;
  width: 100%;
  display: block;
  margin-top: 30px;
  /* corrects bootstrap conflicts !!!!! */
  /* ---- */
}
#SearchModal .search #results input.gsc-search-button,
#SearchModal .search #results input.gsc-search-button:hover,
#SearchModal .search #results input.gsc-search-button:focus {
  height: 48px;
  margin: 10px;
  -webkit-box-shadow: none;
  -moz-box-sizing: content-box;
  box-shadow: none;
}
#SearchModal .search #results .cse input.gsc-search-button,
#SearchModal .search #results input.gsc-search-button {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#SearchModal .search #results .cse input.gsc-search-button:hover,
#SearchModal .search #results input.gsc-search-button:hover {
  background-color: #4f99ce;
}
#SearchModal .search #results .gsc-clear-button .gsc-clear-button {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#SearchModal .search #results .gsc-clear-button .gsc-clear-button:hover {
  color: #333 !important;
}
#SearchModal .search #results input.gsc-input,
#SearchModal .search #results .gsc-input-box,
#SearchModal .search #results .gsc-input-box-hover,
#SearchModal .search #results .gsc-input-box-focus {
  height: 30px;
  font-size: 22px;
  padding: 10px;
  box-sizing: content-box;
  line-height: normal;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
#SearchModal .search #results .gsc-selected-option-container {
  min-width: 100px;
}
#SearchModal .search #results td.gsc-clear-button {
  width: 50px;
  vertical-align: top;
  padding-top: 10px;
}
#SearchModal .search #results td.gsc-clear-button div.gsc-clear-button {
  display: block;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  cursor: pointer;
  width: 100%;
  float: left;
  position: relative;
  height: 50px;
  text-align: center;
  background: #eee;
}
#SearchModal .search #results td.gsc-clear-button div.gsc-clear-button:after {
  position: absolute;
  content: "Clear";
  display: block;
  top: 30%;
  left: 0px;
  text-align: center;
  width: 100%;
  height: auto;
  background-color: transparent;
}
#SearchModal .search #results td.gsc-clear-button div.gsc-clear-button:hover {
  color: #fff;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult {
  margin: 0 0 15px 0;
  padding: 10px;
  border-bottom: 1px solid #CCC;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-title {
  height: auto;
  margin: 0 0 15px 0;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-title a.gs-title {
  font-size: 26px;
  text-decoration: none !important;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-title a.gs-title b {
  text-decoration: none !important;
  color: #4f99ce;
  font-size: 26px;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-bidi-start-align {
  height: auto;
  font-size: 20px;
  line-height: 21px;
  margin: 0 0 0 0;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult .gs-webResult .gs-visibleUrl {
  padding: 10px 0 10px 0;
  font-size: 16px;
}
#SearchModal .search #results .gsc-wrapper .gsc-webResult:hover {
  color: red;
  border-left: none !important;
}
/*# sourceMappingURL=common.css.map */