/* 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);
  }
}
#SearchModal .modal-dialog .modal-content .close,
#ContactModal .modal-dialog .modal-content .close {
  color: #8f7a4e !important;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch {
  margin: 35px 40px 0 0;
  padding: 20 0;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"],
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type="search"] {
  border: 3px solid #8f7a4e;
  height: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#SearchModal .modal-dialog .modal-content .modal-body #sitesearch button,
#ContactModal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #8f7a4e;
  padding: 17px;
  height: 70px;
}
body .the-banner-container {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center center;
  height: 640px;
}
body .the-banner-container.shortened {
  height: 200px;
  margin-bottom: 30px;
}
body #header {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
}
body #header .container {
  position: relative;
}
body #header a.logo-hold {
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  width: auto;
  text-align: center;
  top: 30px;
}
@media (max-width: 600px) {
  body #header a.logo-hold {
    left: 40px;
    text-align: left;
  }
}
body #header a.logo-hold img {
  width: 200px;
}
body #header #showRightPush {
  color: #8f7a4e;
  background: transparent;
  border: none;
  font-size: 60px;
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 20;
}
@media (max-width: 400px) {
  body #header #showRightPush {
    right: -10px;
  }
}
body .mobile-header {
  background-color: #8f7a4e;
  display: none;
  position: fixed;
  top: -72px;
  z-index: 6000;
  width: 100%;
  margin-bottom: -5px;
  transition: all 200ms ease-in;
}
@media (max-width: 479px) {
  body .mobile-header {
    display: inline-block;
  }
}
body .mobile-header .seal-home {
  width: 67px;
  padding: 15px;
}
body .mobile-header .seal-home img {
  width: 100%;
}
body .mobile-header .togglemenu {
  color: white;
  font-size: 36px;
  padding: 15px 15px 0px;
}
body .mobile-header .togglemenu #nav-icon3 {
  margin: 0;
}
body .mobile-header .togglemenu #nav-icon3.open span {
  background: white;
}
body .mobile-header.show {
  top: 0px;
}
body#home .the-banner-container {
  background-position-y: 50%;
  /*@media (max-width:375px) {background-position-x:-255px}
		@media (max-width:320px) {background-position-x:-345px}*/
}
@media (max-width: 1400px) {
  body#home .the-banner-container {
    background-position: bottom center;
  }
}
@media (max-width: 1200px) {
  body#home .the-banner-container {
    background-size: inherit;
    background-position: center center;
  }
}
body#home #header {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}
body#home a.logo-hold {
  text-align: left;
}
@media (max-width: 600px) {
  body#home a.logo-hold {
    left: 0;
  }
}
@media (max-width: 479px) {
  body#home a.logo-hold {
    text-align: center;
  }
}
body#home a.logo-hold img {
  margin-top: 25px;
  margin-left: 0px;
  width: 340px;
}
@media (max-width: 767px) {
  body#home a.logo-hold img {
    margin-left: 30px;
  }
}
@media (max-width: 500px) {
  body#home a.logo-hold img {
    width: 50%;
    margin-left: 20px;
  }
}
@media (max-width: 479px) {
  body#home a.logo-hold img {
    width: 80%;
    margin-top: 120px;
    margin-left: 0px;
  }
}
body#past .the-banner-container {
  height: 640px;
}
body .navbar {
  background-color: transparent;
  width: 100%;
  display: inline-block;
  margin-top: 25px;
}
body .navbar .nav-pills {
  display: inline-block !important;
  width: 100%;
}
body .navbar .nav-pills > li {
  border: none;
  width: 100%;
  display: inline-block;
  /*border-bottom: 0px solid !important;*/
}
body .navbar .nav-pills > li a {
  font-size: 31px;
  padding: 30px 10px;
  /*padding-bottom: 10px;*/
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 350px) {
  body .navbar .nav-pills > li a {
    font-size: 27px;
  }
}
body .navbar .nav-pills > li .dropdown-menu {
  background-color: white;
  display: inline-block !important;
  position: relative !important;
  background-color: transparent;
  border: none;
  box-shadow: none;
  width: 100%;
  text-align: right;
}
body .navbar .nav-pills > li .dropdown-menu li {
  padding: 5px 15px;
}
body .navbar .nav-pills > li .dropdown-menu li a {
  color: black;
  font-size: 21px;
  padding: 4px;
  text-transform: none;
  color: white;
}
@media (max-width: 350px) {
  body .navbar .nav-pills > li .dropdown-menu li a {
    font-size: 16px;
  }
}
body .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
  text-decoration: underline;
}
body .navbar .nav-pills > li .dropdown-menu li:hover {
  background-color: #705c34;
}
body .navbar .nav-pills > li .dropdown-menu li:hover a {
  /*color:black;
									background-color: transparent;*/
}
body .navbar .nav-pills > li:hover {
  background-color: #705c34;
}
body .navbar .nav-pills > li:hover a {
  /*color: @yellow;*/
}
body .navbar .togglemenu {
  color: white;
  font-size: 23px;
  display: none;
}
body .navbar .srchbuttonmodal {
  color: white;
  font-size: 34px;
  position: relative;
  display: block !important;
  text-align: right;
  /*top: 2px;
			margin-right: 8px;
			width: 30px;
			float:left;*/
}
@media (max-width: 350px) {
  body .navbar .srchbuttonmodal {
    font-size: 24px;
  }
}
body .navbar .srchbutton {
  display: none;
}
body .navbar #search {
  display: none;
  /*width: 0%;
			display: inline-block;
			overflow: hidden;
			position: absolute;
			left: 0;*/
}
body .navbar #search.showme {
  /*width: 96%;*/
}
body .navbar #search #sitesearch {
  /*padding: 12px 0px;*/
}
body .navbar #search #sitesearch #search-field {
  /*width: 575px;
					border: none;
					background-color: #6BB336;
					color: white;
					border-bottom: 3px solid white;*/
  /*&::-webkit-input-placeholder {
					color:white;
					}
					&::-moz-placeholder {
					color:white;
					}
					&:-moz-placeholder {
					color:white;
					}
					&:-ms-input-placeholder {
					color:white;
					}*/
}
body .navbar #search #sitesearch button {
  /*background-color:@green;
					color: white;
					border: none;
					padding: 3px 6px;
					margin-left: -5px;*/
}
body#home .navbar .nav-pills > li .dropdown-menu li a:hover {
  background-color: transparent;
}
#NavMobileModal {
  width: 100%;
}
#NavMobileModal .fade.in {
  background-color: #8f7a4e;
}
#NavMobileModal .modal-dialog {
  margin: 1% auto;
}
#NavMobileModal .modal-dialog .modal-content .close {
  color: white;
  font-size: 79px !important;
  margin-right: 30px;
  opacity: 1 !important;
  text-shadow: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-header .close {
  /*color: black;
				    	margin-right: 30px;*/
}
#NavMobileModal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body a {
  color: black;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li {
  text-align: center;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li:last-child {
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li > a {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Md';
  font-size: 35px;
  text-transform: uppercase;
  margin-top: 30px;
  display: inline-block;
}
#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: 24px;
  width: 100%;
}
@media (max-width: 375px) {
  #NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu {
    font-size: 20px;
  }
}
#NavMobileModal .modal-dialog .modal-content .modal-body .nav > li .dropdown-menu > li > a {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Md';
}
/* General styles for all menus */
.cbp-spmenu {
  background: #8f7a4e;
  position: fixed;
}
.cbp-spmenu h3 {
  color: #afdefa;
  font-size: 1.9em;
  padding: 20px;
  margin: 0;
  font-weight: 300;
  background: #0d77b6;
}
.cbp-spmenu a {
  display: block;
  color: #fff;
  font-size: 1.1em;
  font-weight: 300;
}
.cbp-spmenu a:hover {
  background: #705c34;
}
.cbp-spmenu a:active {
  background: #afdefa;
  color: #47a3da;
}
/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
  width: 340px;
  height: 100%;
  top: 0;
  z-index: 1000;
}
@media (max-width: 479px) {
  .cbp-spmenu-vertical {
    width: 300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-vertical {
    width: 250px;
  }
}
.cbp-spmenu-vertical a {
  font-family: 'ITC Avant Garde Gothic W01 Md';
  padding: 1em;
  width: 100%;
  display: block;
  text-align: center;
}
.cbp-spmenu-vertical li {
  width: 100%;
}
/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
  left: -340px;
}
@media (max-width: 479px) {
  .cbp-spmenu-left {
    left: -300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-left {
    left: -250px;
  }
}
.cbp-spmenu-right {
  right: -340px;
}
@media (max-width: 479px) {
  .cbp-spmenu-right {
    right: -300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-right {
    right: -250px;
  }
}
.cbp-spmenu-left.cbp-spmenu-open {
  left: 0px;
}
.cbp-spmenu-right.cbp-spmenu-open {
  right: 0px;
}
/* Push classes applied to the body */
.cbp-spmenu-push {
  overflow-x: hidden;
  position: relative;
  left: 0;
}
.cbp-spmenu-push-toright {
  left: 340px;
}
@media (max-width: 479px) {
  .cbp-spmenu-push-toright {
    left: 300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-push-toright {
    left: 250px;
  }
}
.cbp-spmenu-push-toleft {
  left: -340px;
}
@media (max-width: 479px) {
  .cbp-spmenu-push-toleft {
    left: -300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-push-toleft {
    left: -250px;
  }
}
/* Transitions */
.cbp-spmenu,
.cbp-spmenu-push,
.cbp-spmenu-push-toleft {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cbp-spmenu-push-toleft #cover {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 5;
  width: 100%;
  height: 100%;
}
.cbp-spmenu-push-toleft #header .container {
  position: initial;
}
/* Example media queries */
@media screen and (max-width: 55.1875em) {
  .cbp-spmenu-top {
    top: -110px;
  }
  .cbp-spmenu-bottom {
    bottom: -110px;
  }
}
@media screen and (max-height: 26.375em) {
  .cbp-spmenu-vertical {
    font-size: 90%;
    width: 190px;
  }
  .cbp-spmenu-left,
  .cbp-spmenu-push-toleft {
    left: -190px;
  }
  .cbp-spmenu-right {
    right: -190px;
  }
  .cbp-spmenu-push-toright {
    left: 190px;
  }
}
.cbp-spmenu-left {
  left: -340px;
}
@media (max-width: 479px) {
  .cbp-spmenu-left {
    left: -300px;
  }
}
@media (max-width: 350px) {
  .cbp-spmenu-left {
    left: -250px;
  }
}
.cbp-spmenu-left.cbp-spmenu-open {
  left: 0px;
}
/* General Demo Style */
body,
html {
  font-size: 100%;
  padding: 0;
  margin: 0;
}
/* Reset */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.icon-drop:before,
.icon-arrow-left:before {
  font-family: 'fontawesome';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  speak: none;
  font-style: normal;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  color: #47a3da;
  -webkit-font-smoothing: antialiased;
  text-indent: 8000px;
  padding-left: 8px;
}
.container > header nav a:hover:before {
  color: #fff;
}
.icon-drop:before {
  content: "\e000";
}
.icon-arrow-left:before {
  content: "\f060";
}
/*Menu icon styles */
#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (max-width: 400px) {
  #nav-icon1,
  #nav-icon2,
  #nav-icon3,
  #nav-icon4 {
    height: 50px;
    width: 40px;
  }
}
#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
@media (max-width: 400px) {
  #nav-icon1 span,
  #nav-icon3 span,
  #nav-icon4 span {
    height: 5px;
  }
}
/* Icon 4 */
#nav-icon4 span:nth-child(1),
#nav-icon3 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(2),
#nav-icon3 span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
@media (max-width: 400px) {
  #nav-icon4 span:nth-child(2),
  #nav-icon3 span:nth-child(2) {
    top: 14px;
  }
}
#nav-icon4 span:nth-child(3),
#nav-icon3 span:nth-child(3) {
  top: 36px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
@media (max-width: 400px) {
  #nav-icon4 span:nth-child(3),
  #nav-icon3 span:nth-child(3) {
    top: 28px;
  }
}
#nav-icon4.open span:nth-child(1),
#nav-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #8f7a4e;
  top: -3px;
  left: 8px;
}
@media (max-width: 479px) {
  #nav-icon4.open span:nth-child(1),
  #nav-icon3.open span:nth-child(1) {
    left: 20px;
  }
}
@media (max-width: 414px) {
  #nav-icon4.open span:nth-child(1),
  #nav-icon3.open span:nth-child(1) {
    left: 9px;
  }
}
#nav-icon4.open span:nth-child(2),
#nav-icon3.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
  background: #8f7a4e;
}
#nav-icon4.open span:nth-child(3),
#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #8f7a4e;
  top: 39px;
  left: 8px;
}
@media (max-width: 400px) {
  #nav-icon4.open span:nth-child(3),
  #nav-icon3.open span:nth-child(3) {
    left: 21px;
    top: 26px;
  }
}
@media (max-width: 375px) {
  #nav-icon4.open span:nth-child(3),
  #nav-icon3.open span:nth-child(3) {
    left: 10px;
    top: 26px;
  }
}
#nav-icon.open span {
  background: #8f7a4e;
}
body#home .nav-hold #nav-icon4 span,
body#home .nav-hold #nav-icon3 span {
  background: #8f7a4e;
}
.banner img {
  width: 100%;
}
.container.padded {
  padding-left: 90px;
  padding-right: 90px;
}
@media (max-width: 767px) {
  .container.padded {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.container.padded.adjusted {
  right: 0;
  left: 0;
  position: absolute;
  margin: 0 auto;
  display: inline-block;
  height: 93%;
}
.pi-logo {
  width: 80px;
}
.pi-text {
  width: 500px;
}
.livestream {
  text-align: center;
}
.livestream iframe {
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
}
@media (max-width: 820px) {
  .livestream iframe {
    height: 400px;
  }
}
@media (max-width: 520px) {
  .livestream iframe {
    height: 300px;
  }
}
.live-stream-alert {
  background-color: #FBFBF9;
  border: 1px solid #8f7a4e;
  color: #8f7a4e;
  font-size: 40px;
  width: 85%;
  max-width: 605px;
  margin: 0 auto 57px auto;
  height: 317px;
  text-align: center;
  display: table;
}
.live-stream-alert h3 {
  line-height: 40px;
  display: table-cell;
  vertical-align: middle;
  font-family: 'ITC Garamond W01 Book';
}
.home-download {
  font-family: 'ITC Garamond W01 Book';
}
.link-box {
  border: 1px solid #8f7a4e;
  border-radius: 4px;
  padding: 10px 15px;
  max-width: 280px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  margin-bottom: 60px;
}
.link-box:hover {
  background-color: #8f7a4e;
  color: white;
}
.pi-area {
  padding: 60px 0px;
}
.pi-area .top-images {
  float: left;
}
.pi-area .top-images img {
  display: inline-block;
}
.pi-area .top-images .pi-text {
  width: 35%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .pi-area .top-images .pi-text {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .pi-area .top-images .pi-text {
    width: 100%;
  }
}
.pi-area .top-images .pi-logo {
  width: 7%;
  padding: 18px 0px;
  padding-left: 15px;
  border-left: 1px solid #8f7a4e;
}
@media (max-width: 767px) {
  .pi-area .top-images .pi-logo {
    width: 11%;
  }
}
@media (max-width: 500px) {
  .pi-area .top-images .pi-logo {
    width: 30%;
    margin: 0 auto;
    display: block;
    border: none;
  }
}
.pi-area .pi-desc {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 50%;
  font-family: 'ITC Garamond W01 Book';
  font-size: 22px;
  padding: 15px;
}
@media (max-width: 767px) {
  .pi-area .pi-desc {
    width: 100%;
    margin-top: 50px;
    padding: 0;
  }
}
@media (max-width: 500px) {
  .pi-area .pi-desc {
    text-align: center;
  }
}
.pi-area a {
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  display: block;
  margin-top: 24px;
}
.social-list {
  text-align: center;
  margin-top: 20px;
}
.social-list li {
  display: inline-block;
}
.social-list li a {
  color: white;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  padding-top: 3px;
  border-radius: 30px;
  display: block;
  background-color: #8f7a4e;
}
.social-list li a:hover {
  background-color: #705c34;
}
.img-container {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  position: relative;
  height: 780px;
}
@media (max-width: 767px) {
  .img-container {
    height: 500px;
  }
}
.img-container .text {
  color: white;
  position: absolute;
  width: 50%;
  display: inline-block;
  text-shadow: 0px 0px 10px black;
  font-family: 'ITC Garamond W01 Book';
}
@media (max-width: 479px) {
  .img-container .text {
    width: 60%;
  }
}
.img-container .text h2 {
  margin-top: 0px;
  font-size: 64px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .img-container .text h2 {
    font-size: 48px;
  }
}
.img-container .text h3 {
  font-size: 44px;
  margin-bottom: -7px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .img-container .text h3 {
    font-size: 30px;
  }
}
.img-container .text .description {
  font-size: 22px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .img-container .text .description {
    font-size: 18px;
    line-height: 30px;
  }
}
.img-container .text .link {
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 767px) {
  .img-container .text .link {
    font-size: 16px;
  }
}
.img-container .text .link:hover {
  color: #8f7a4e;
}
.img-container .text.left {
  left: 90px;
}
@media (max-width: 767px) {
  .img-container .text.left {
    left: 50px;
  }
}
.img-container .text.right {
  right: 90px;
  text-align: right;
}
@media (max-width: 767px) {
  .img-container .text.right {
    right: 50px;
  }
}
.img-container .text.top {
  top: 0px;
}
.img-container .text.bottom {
  bottom: 50px;
}
.slideshow-area {
  background-image: url('/themes/inaugural/images/ceremony.jpeg');
}
.slideshow-area .text {
  text-shadow: 0px 0px 10px white;
  color: black;
}
.slideshow-area h3,
.slideshow-area h2 {
  color: white;
  text-shadow: 0px 0px 10px black;
}
.slideshow-area a.link {
  color: white !important;
  text-shadow: 0px 0px 10px black;
}
.slideshow-area a.link:hover {
  color: #5a87cb !important;
}
.lunch-area {
  background-image: url('/themes/inaugural/images/luncheon4.jpg');
  background-position: center center;
}
.twitter-area {
  padding-top: 100px;
  padding-bottom: 120px;
  text-align: center;
}
@media (max-width: 600px) {
  .twitter-area {
    padding: 50px 20px;
  }
}
.twitter-area .twit-logo {
  width: 70px;
}
.twitter-area h3 {
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  font-size: 34px;
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .twitter-area h3 {
    font-size: 24px;
  }
}
.twitter-area h3 img {
  width: 30px;
  margin-left: 10px;
  vertical-align: bottom;
}
@media (max-width: 600px) {
  .twitter-area h3 img {
    display: none;
  }
}
.twitter-area .twit-link {
  margin-top: 3px;
  display: block;
  font-family: 'ITC Avant Garde Gothic W01 Md';
  font-size: 24px;
}
.twitter-area .tweet {
  font-family: 'ITC Garamond W01 Book';
  padding-top: 45px;
  font-size: 24px;
  word-break: break-word;
}
/*
default interior styles

commonly made fixes / tweaks
*/
.modal-backdrop {
  z-index: 1;
}
.modal-dialog {
  z-index: 5;
}
li.previous {
  margin-right: 10px;
}
.no-breadcrumbs #breadcrumb {
  display: none;
}
#form_thomas_search .col-xs-9 {
  padding-right: 0;
}
#filter-legislation {
  margin: 0;
}
#filter-legislation h3 {
  margin-top: 0;
}
#filter-legislation aside form select {
  font-size: 16px;
}
#filter-legislation #session_select,
#filter-legislation #sponsored {
  height: 33px;
  font-size: 16px;
}
#filterbuttons a {
  background-color: transparent;
  color: #8f7a4e;
}
#breadcrumb a {
  color: #cecece;
  text-transform: uppercase;
  font-weight: bold;
}
body#past #timeline {
  margin-top: 2em;
  margin-bottom: 0em;
}
body#past #timeline .timelineblock {
  margin: 0em 0;
  height: 400px;
  margin-top: 0;
  position: relative;
}
body#past #timeline .timelineimg {
  background-color: #eeeeee;
  background-image: url(/imo/media/image/donaldtrump.jpg);
  left: 18%;
  visibility: visible;
  -webkit-animation: cd-bounce-1 0.6s;
  -moz-animation: cd-bounce-1 0.6s;
  animation: cd-bounce-1 0.6s;
  width: 320px;
  height: 320px;
  margin-left: -30px;
  z-index: 200;
  position: absolute;
  top: 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}
body#past #timeline .timelinecontent {
  margin-left: 0;
  padding: 1.6em;
  width: 50%;
  position: relative;
  background: white;
  border-radius: 0.25em;
  background-color: transparent;
  float: right;
  padding-right: 150px;
  padding-left: 0px;
  animation: cd-bounce-2 0.6s;
  visibility: visible;
}
body#past #timeline .timelinecontent h5 {
  color: #8f7a4e;
  font-size: 25px;
  margin-bottom: 0;
  text-transform: uppercase;
}
body#past #timeline .timelinecontent date {
  font-size: 20px;
  display: block;
}
body#past #timeline .timelinecontent span {
  font-size: 20px;
}
body#past #timeline .timelinecontent a {
  background-color: white;
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  border: 1px solid #8f7a4e;
  transition: all 200ms ease-in;
}
body#past #timeline .timelinecontent a:hover {
  background-color: #8f7a4e;
  color: white;
}
#newscontent #press .main_page_title {
  color: #8f7a4e;
  font-family: 'ITC Garamond W01 Book';
}
#newscontent #press p {
  line-height: 35px;
  font-size: 18px;
  margin-bottom: 40px;
}
.light-gold.panorama {
  background-color: #fbfbf9;
  text-align: center;
  margin-top: -20px;
  padding: 53px;
}
.light-gold.panorama h3 {
  color: #8f7a4e;
  margin-bottom: 25px !important;
}
body#past #header a.logo-hold img {
  display: none;
}
#newscontent #photos {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .download-image {
    width: 100% !important;
  }
}
.download {
  background-color: white;
  padding: 13px 0px;
  display: inline-block;
  width: 100%;
  background-size: cover;
  color: white;
  text-align: center;
  padding-bottom: 25px;
  line-height: 36px;
}
.download a {
  color: #ccb482;
}
.download p {
  color: #000;
}
.download h3 {
  text-align: center;
  color: white;
  margin-bottom: 50px;
  margin-top: 10px;
}
@media (max-width: 479px) {
  .download .col-super-small {
    width: 100%;
  }
}
.download img {
  width: 80px;
  margin-top: 80px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .download img {
    margin-top: 110px;
  }
}
@media (max-width: 767px) {
  .download img {
    margin-top: 50px;
  }
}
.download .circle {
  display: table;
  width: 250px;
  height: 250px;
  border-radius: 280px;
  background-color: #8f7a4e;
  color: white;
  font-size: 23px;
  margin: 20px auto;
  text-align: center;
  transition: all 250ms ease-in;
}
@media (max-width: 1200px) {
  .download .circle {
    width: 200px;
    height: 200px;
    margin: 20px auto;
  }
}
@media (max-width: 991px) {
  .download .circle {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 600px) {
  .download .circle {
    width: 200px;
    height: 200px;
    margin: 20px auto;
  }
}
@media (max-width: 479px) {
  .download .circle {
    width: 280px;
    height: 280px;
    margin: 20px auto;
  }
}
.download .circle .cell {
  display: table-cell;
  vertical-align: middle;
}
.download .circle:hover {
  transform: scale(0.9);
}
#listblocks {
  margin-top: 40px;
}
#listblocks .block {
  display: table;
  height: 110px;
}
#listblocks .block a {
  display: table-cell;
  vertical-align: middle;
  /*background-color: @lightblue;*/
  font-weight: bold;
}
#listblocks .block a .media-heading {
  top: 2px;
}
#listblocks .block a:hover {
  /*background-color: @yellow;*/
}
.slick-next:before,
.slick-prev:before {
  content: '' !important;
}
.slick-dotted .slick-current .slide-img {
  border: 6px solid #8f7a4e;
}
.slideshow-class .slick-prev,
.slider-nav .slick-prev,
.slideshow-class .slick-next,
.slider-nav .slick-next {
  font-size: 24px;
  color: #8f7a4e;
  top: 34%;
}
.slideshow-class .slick-prev:hover,
.slider-nav .slick-prev:hover,
.slideshow-class .slick-next:hover,
.slider-nav .slick-next:hover {
  color: #705c34;
}
.slideshow-class .slide,
.slider-nav .slide {
  padding: 5px;
}
.slideshow-class .slide a,
.slider-nav .slide a,
.slideshow-class .slide img,
.slider-nav .slide img {
  display: inline-block;
  width: 100%;
}
.slideshow-class .slide iframe,
.slider-nav .slide iframe,
.slideshow-class .slide #akamai-media-player,
.slider-nav .slide #akamai-media-player {
  width: 100%;
  height: 165px;
  cursor: pointer;
}
.slideshow-class h5,
.slider-nav h5 {
  color: #8f7a4e;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 0;
}
.slideshow-class date,
.slider-nav date {
  font-size: 14px;
  text-transform: uppercase;
}
.video-container h5 {
  color: #8f7a4e;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 0;
}
.video-container date {
  font-size: 14px;
  text-transform: uppercase;
}
.modal.video-modal {
  width: 100%;
  max-width: none;
}
.modal.video-modal .modal-backdrop.in {
  background-color: black;
  opacity: 0.8;
}
.modal.video-modal .modal-content {
  box-shadow: none;
  border: none;
  padding: 40px;
  background-color: transparent;
  width: 100%;
}
.modal.video-modal .modal-content iframe,
.modal.video-modal .modal-content object {
  width: 100%;
}
.modal.video-modal .modal-dialog {
  margin: 100px auto;
}
.modal.video-modal .close {
  font-size: 34px;
  color: white;
  opacity: 1;
}
.slick-slide:focus {
  outline: none;
  background-color: #f2efea;
}
.cbp-spmenu-left {
  padding-top: 55px;
}
.cbp-spmenu-left a:hover {
  color: white;
}
@keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.center-this {
  text-align: center;
}
.gold-up {
  color: #8f7a4e;
  text-transform: uppercase;
}
.more-circle,
.more-circle:focus {
  display: inline-block;
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: 2px solid white;
  padding-top: 5px;
  color: white;
  font-size: 36px;
  margin-top: 70px;
  position: relative;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 20px;
}
.more-circle:hover,
.more-circle:focus:hover {
  color: white;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.event-title .more-circle {
  position: absolute;
  margin-top: 170px;
}
.no-padding {
  padding: 0;
}
.dark-blue {
  background-color: #323C67;
  color: white;
  margin-bottom: 50px;
  padding: 10px 50px 50px;
  line-height: 35px;
}
.dark-blue h3 {
  color: #E8D1A4 !important;
}
.first-nail {
  width: 100%;
}
body.event-detail .event-title {
  height: auto;
  min-height: 300px;
}
body#lunch-detail .event-title {
  height: 440px;
}
#past,
#events,
.event-detail,
body.single-line {
  font-family: 'ITC Garamond W01 Book';
}
#past .scrollnav li a:hover,
#events .scrollnav li a:hover,
.event-detail .scrollnav li a:hover,
body.single-line .scrollnav li a:hover,
#past .nav-pills > li.active > a,
#events .nav-pills > li.active > a,
.event-detail .nav-pills > li.active > a,
body.single-line .nav-pills > li.active > a,
#past .nav-pills > li.active > a:focus,
#events .nav-pills > li.active > a:focus,
.event-detail .nav-pills > li.active > a:focus,
body.single-line .nav-pills > li.active > a:focus,
#past .nav-pills > li.active > a:hover,
#events .nav-pills > li.active > a:hover,
.event-detail .nav-pills > li.active > a:hover,
body.single-line .nav-pills > li.active > a:hover {
  background-color: #705c34;
}
#past .scrollnav li a,
#events .scrollnav li a,
.event-detail .scrollnav li a,
body.single-line .scrollnav li a {
  padding: 15px;
}
#past .main_page_title,
#events .main_page_title,
.event-detail .main_page_title,
body.single-line .main_page_title {
  display: none;
}
#past h6,
#events h6,
.event-detail h6,
body.single-line h6 {
  color: #705c34;
  text-transform: uppercase;
  font-size: 20px;
}
#past #media,
#events #media,
.event-detail #media,
body.single-line #media {
  padding: 60px 0px;
  text-align: left;
}
@media (max-width: 820px) {
  #past #media,
  #events #media,
  .event-detail #media,
  body.single-line #media {
    padding: 60px 30px;
  }
}
#past #media h2,
#events #media h2,
.event-detail #media h2,
body.single-line #media h2,
#past #media h3,
#events #media h3,
.event-detail #media h3,
body.single-line #media h3 {
  text-align: center;
}
#past #media iframe,
#events #media iframe,
.event-detail #media iframe,
body.single-line #media iframe {
  width: 100%;
}
#past #media img,
#events #media img,
.event-detail #media img,
body.single-line #media img {
  width: 100%;
}
#past .gold-area,
#events .gold-area,
.event-detail .gold-area,
body.single-line .gold-area {
  background-color: #8f7a4e;
  color: white;
  width: 100%;
  display: inline-block;
  padding-bottom: 50px;
}
#past .gold-area h3,
#events .gold-area h3,
.event-detail .gold-area h3,
body.single-line .gold-area h3 {
  color: white;
}
#past .gold-area ul,
#events .gold-area ul,
.event-detail .gold-area ul,
body.single-line .gold-area ul {
  margin-top: 40px;
}
#past .gold-area ul li,
#events .gold-area ul li,
.event-detail .gold-area ul li,
body.single-line .gold-area ul li {
  padding: 10px;
}
#past .gold-area .container,
#events .gold-area .container,
.event-detail .gold-area .container,
body.single-line .gold-area .container {
  max-width: 1000px;
}
#past .gold-area a,
#events .gold-area a,
.event-detail .gold-area a,
body.single-line .gold-area a {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Md';
}
#past .gold-area a:hover,
#events .gold-area a:hover,
.event-detail .gold-area a:hover,
body.single-line .gold-area a:hover {
  text-decoration: underline;
}
#past #typenav,
#events #typenav,
.event-detail #typenav,
body.single-line #typenav {
  top: 30px;
  left: 50px;
  position: fixed;
  text-align: center;
  opacity: 1;
  z-index: 1;
  transition: all 500ms ease-in;
}
@media (max-width: 991px) {
  #past #typenav,
  #events #typenav,
  .event-detail #typenav,
  body.single-line #typenav {
    display: none !important;
  }
}
#past #typenav a,
#events #typenav a,
.event-detail #typenav a,
body.single-line #typenav a {
  color: white;
}
#past #typenav a:hover,
#events #typenav a:hover,
.event-detail #typenav a:hover,
body.single-line #typenav a:hover {
  color: #8f7a4e;
}
#past #typenav li,
#events #typenav li,
.event-detail #typenav li,
body.single-line #typenav li {
  margin-bottom: 2px;
  position: relative;
  width: 200px;
  height: auto;
  top: 0;
  transition: all 500ms ease-in;
}
#past #typenav li a,
#events #typenav li a,
.event-detail #typenav li a,
body.single-line #typenav li a {
  padding: 5px 15px;
}
#past #typenav li:after,
#events #typenav li:after,
.event-detail #typenav li:after,
body.single-line #typenav li:after {
  width: 1px;
  height: 45px;
  background-color: #8f7a4e;
  content: "";
  display: inline-block;
  position: relative;
  top: 4px;
}
#past #typenav li:last-child:after,
#events #typenav li:last-child:after,
.event-detail #typenav li:last-child:after,
body.single-line #typenav li:last-child:after {
  display: none;
}
#past #typenav.collapsse,
#events #typenav.collapsse,
.event-detail #typenav.collapsse,
body.single-line #typenav.collapsse {
  /*transition: all 2s ease-in;*/
  left: -120px;
  top: 120px;
  opacity: 0;
}
#past #typenav li.ab,
#events #typenav li.ab,
.event-detail #typenav li.ab,
body.single-line #typenav li.ab {
  height: 40px;
  top: 80px;
}
#past #typenav li.ab:after,
#events #typenav li.ab:after,
.event-detail #typenav li.ab:after,
body.single-line #typenav li.ab:after {
  display: none;
}
#past #showLeftPush,
#events #showLeftPush,
.event-detail #showLeftPush,
body.single-line #showLeftPush {
  background-color: #705c34;
  border: none;
  position: fixed;
  /*left: 0;*/
  color: white;
  font-size: 30px;
  top: 200px;
  z-index: 500;
  -moz-border-radius: 0px 5px 5px 0px;
  -webkit-border-radius: 0px 5px 5px 0px;
  border-radius: 0px 5px 5px 0px;
  padding: 0px 10px;
  height: 100px;
  transition: all 200ms ease-in;
}
#past #showLeftPush .fa-angle-left,
#events #showLeftPush .fa-angle-left,
.event-detail #showLeftPush .fa-angle-left,
body.single-line #showLeftPush .fa-angle-left {
  display: none;
}
#past #showLeftPush:hover,
#events #showLeftPush:hover,
.event-detail #showLeftPush:hover,
body.single-line #showLeftPush:hover {
  background-color: #705c34;
  padding-left: 20px;
}
#past #showLeftPush.active .fa-angle-right,
#events #showLeftPush.active .fa-angle-right,
.event-detail #showLeftPush.active .fa-angle-right,
body.single-line #showLeftPush.active .fa-angle-right {
  display: none;
}
#past #showLeftPush.active .fa-angle-left,
#events #showLeftPush.active .fa-angle-left,
.event-detail #showLeftPush.active .fa-angle-left,
body.single-line #showLeftPush.active .fa-angle-left {
  display: block;
}
@media (max-width: 768px) {
  #past #showLeftPush,
  #events #showLeftPush,
  .event-detail #showLeftPush,
  body.single-line #showLeftPush {
    display: none;
  }
}
#past .event-title,
#events .event-title,
.event-detail .event-title,
body.single-line .event-title {
  position: absolute;
  top: 200px;
  margin: 0 auto;
  right: 0;
  left: 0;
  height: 440px;
  text-align: center;
  color: white;
}
@media (max-width: 767px) {
  #past .event-title,
  #events .event-title,
  .event-detail .event-title,
  body.single-line .event-title {
    width: 100%;
  }
}
#past h2,
#events h2,
.event-detail h2,
body.single-line h2,
#past h3,
#events h3,
.event-detail h3,
body.single-line h3 {
  text-transform: uppercase;
}
#past h3,
#events h3,
.event-detail h3,
body.single-line h3 {
  font-size: 38px;
  margin-bottom: 0px;
}
@media (max-width: 450px) {
  #past h3,
  #events h3,
  .event-detail h3,
  body.single-line h3 {
    font-size: 30px;
  }
}
#past h2,
#events h2,
.event-detail h2,
body.single-line h2 {
  font-size: 64px;
  margin-top: -5px;
}
@media (max-width: 450px) {
  #past h2,
  #events h2,
  .event-detail h2,
  body.single-line h2 {
    font-size: 50px;
  }
}
@media (max-width: 380px) {
  #past h2,
  #events h2,
  .event-detail h2,
  body.single-line h2 {
    font-size: 35px;
  }
}
@media (max-width: 340px) {
  #past h2,
  #events h2,
  .event-detail h2,
  body.single-line h2 {
    font-size: 30px;
  }
}
#past .seal,
#events .seal,
.event-detail .seal,
body.single-line .seal {
  width: 125px;
}
#past .white,
#events .white,
.event-detail .white,
body.single-line .white {
  text-align: center;
}
#past .white h2,
#events .white h2,
.event-detail .white h2,
body.single-line .white h2,
#past .white h3,
#events .white h3,
.event-detail .white h3,
body.single-line .white h3 {
  color: #8f7a4e;
}
#past .white .music,
#events .white .music,
.event-detail .white .music,
body.single-line .white .music {
  font-size: 24px;
}
#past .white .music span,
#events .white .music span,
.event-detail .white .music span,
body.single-line .white .music span {
  font-size: 20px;
}
#past .white .more-circle,
#events .white .more-circle,
.event-detail .white .more-circle,
body.single-line .white .more-circle {
  color: #8f7a4e;
  border-color: #8f7a4e;
  margin-top: 70px;
}
#past .white .more-circle:hover,
#events .white .more-circle:hover,
.event-detail .white .more-circle:hover,
body.single-line .white .more-circle:hover {
  color: #8f7a4e;
}
#past .inner,
#events .inner,
.event-detail .inner,
body.single-line .inner {
  width: 550px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
  padding: 80px 0px;
}
@media (max-width: 600px) {
  #past .inner,
  #events .inner,
  .event-detail .inner,
  body.single-line .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#past .gold,
#events .gold,
.event-detail .gold,
body.single-line .gold {
  margin-top: -1px;
  background-color: #8f7a4e;
  color: white;
  text-align: center;
}
#past .gold h3,
#events .gold h3,
.event-detail .gold h3,
body.single-line .gold h3 {
  margin-bottom: 20px;
}
#past .gold .read-more,
#events .gold .read-more,
.event-detail .gold .read-more,
body.single-line .gold .read-more {
  background-color: white;
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  border-radius: 5px;
  padding: 7px 12px;
  display: inline-block;
  margin-top: 40px;
  font-size: 18px;
  border: 2px solid white;
}
#past .gold .read-more:hover,
#events .gold .read-more:hover,
.event-detail .gold .read-more:hover,
body.single-line .gold .read-more:hover {
  background-color: #8f7a4e;
  color: white;
}
#past .gold .inner,
#events .gold .inner,
.event-detail .gold .inner,
body.single-line .gold .inner {
  padding-bottom: 20px;
}
#past .gold .more-circle,
#events .gold .more-circle,
.event-detail .gold .more-circle,
body.single-line .gold .more-circle {
  margin-top: 40px;
}
#past #theme,
#events #theme,
.event-detail #theme,
body.single-line #theme {
  margin-top: -31px;
}
#past .facts,
#events .facts,
.event-detail .facts,
body.single-line .facts {
  width: 100%;
  background-image: url('/themes/inaugural/images/blue.jpg');
  background-size: cover;
  display: table;
  text-align: center;
  color: white;
  margin-top: -6px;
}
#past .facts h2,
#events .facts h2,
.event-detail .facts h2,
body.single-line .facts h2,
#past .facts h3,
#events .facts h3,
.event-detail .facts h3,
body.single-line .facts h3,
#past .facts h6,
#events .facts h6,
.event-detail .facts h6,
body.single-line .facts h6 {
  color: #ceb689;
  text-transform: uppercase;
}
#past .facts a,
#events .facts a,
.event-detail .facts a,
body.single-line .facts a {
  color: #ceb689;
}
#past .facts a:hover,
#events .facts a:hover,
.event-detail .facts a:hover,
body.single-line .facts a:hover {
  color: #705c34;
}
#past .facts h6,
#events .facts h6,
.event-detail .facts h6,
body.single-line .facts h6 {
  font-size: 20px;
  margin-top: 50px;
}
#past .facts ul,
#events .facts ul,
.event-detail .facts ul,
body.single-line .facts ul {
  list-style: none;
}
#past .menu,
#events .menu,
.event-detail .menu,
body.single-line .menu {
  background-color: #8f7a4e;
  color: white;
  text-transform: uppercase;
  height: 165px;
  width: 100%;
  padding: 44px;
  text-align: center;
}
@media (max-width: 800px) {
  .light-gold .video iframe {
    width: 80%;
  }
}
@media (max-width: 630px) {
  .light-gold .video iframe {
    height: 300px;
  }
}
@media (max-width: 430px) {
  .light-gold .video iframe {
    height: 230px;
    width: 95%;
  }
}
#events #cd-timeline,
.single-line #cd-timeline {
  margin-top: 5em;
}
#events .event-title h3,
.single-line .event-title h3 {
  font-size: 57px;
}
@media (max-width: 640px) {
  #events .event-title h3,
  .single-line .event-title h3 {
    font-size: 40px;
  }
}
#events .event-title h2,
.single-line .event-title h2 {
  font-size: 80px;
}
@media (max-width: 640px) {
  #events .event-title h2,
  .single-line .event-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 413px) {
  #events .event-title h2,
  .single-line .event-title h2 {
    font-size: 47px;
  }
}
#events #showLeftPush,
.single-line #showLeftPush {
  left: auto;
}
#events #typenav,
.single-line #typenav {
  top: 35px;
}
#events #typenav li,
.single-line #typenav li {
  height: auto;
  width: 226px;
}
#events #typenav li:after,
.single-line #typenav li:after {
  height: 20px;
}
#events .main-page-title,
.single-line .main-page-title {
  display: block;
  text-align: center;
  position: relative;
  top: -500px;
  font-family: 'ITC Garamond W01 Book';
  font-size: 40px;
}
#events .read-more,
.single-line .read-more {
  background-color: white;
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  border: 1px solid #8f7a4e;
  transition: all 200ms ease-in;
}
#events .read-more:hover,
.single-line .read-more:hover {
  background-color: #8f7a4e;
  color: white;
}
#events h4,
.single-line h4 {
  color: #8f7a4e;
}
.cbp-spmenu-push-toright#past #showLeftPush {
  left: 340px;
}
body.event-detail,
body.single-line {
  font-size: 20px;
}
body.event-detail #content-main,
body.single-line #content-main {
  padding-top: 50px;
}
@media (max-width: 767px) {
  body.event-detail #content-main .worshipbody,
  body.single-line #content-main .worshipbody {
    padding: 0 15px!important;
  }
}
body.event-detail .caption,
body.single-line .caption {
  font-size: 15px;
}
body.event-detail .amend-textarea h3,
body.single-line .amend-textarea h3 {
  color: #8f7a4e;
}
body.event-detail h3,
body.single-line h3 {
  margin-top: 40px;
}
body.event-detail figure,
body.single-line figure {
  padding: 15px;
}
@media (max-width: 767px) {
  body.event-detail figure,
  body.single-line figure {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  body.event-detail figure img,
  body.single-line figure img {
    width: 100%!important;
    height: auto;
    margin: 0!important;
  }
}
@media (max-width: 767px) {
  body.event-detail figure figcaption .caption,
  body.single-line figure figcaption .caption {
    font-size: 20px;
    width: 100%!important;
    padding: 0!important;
  }
}
body.event-detail .event-title,
body.single-line .event-title {
  top: -350px;
}
body.event-detail .event-title h3,
body.single-line .event-title h3 {
  color: white;
  margin-top: 10px;
}
body.event-detail .blue-footer,
body.single-line .blue-footer {
  margin-top: 50px;
}
body.event-detail p,
body.single-line p {
  margin: 20px 0 30px;
  line-height: 30px;
}
body.event-detail .light-gold,
body.single-line .light-gold {
  background-color: #f4f1ed;
  margin-right: -999px;
  margin-left: -999px;
  padding: 30px 0px;
  font-size: 26px;
}
@media (max-width: 767px) {
  body.event-detail .light-gold,
  body.single-line .light-gold {
    margin-left: 0;
    margin-right: 0;
    padding: 30px 30px;
  }
}
body.event-detail .light-gold .quote,
body.single-line .light-gold .quote {
  width: 50%;
}
@media (max-width: 767px) {
  body.event-detail .light-gold .quote,
  body.single-line .light-gold .quote {
    width: 100%;
  }
}
body.event-detail .light-gold .quote h4,
body.single-line .light-gold .quote h4 {
  font-size: 30px;
  text-align: center;
  color: #8f7a4e;
  margin-top: 35px;
}
body.event-detail .light-gold .quote h5,
body.single-line .light-gold .quote h5 {
  font-size: 24px;
  text-align: center;
  color: #8f7a4e;
  font-family: 'ITC Garamond W01 Book Italic';
}
.detail-footer {
  display: inline-block;
  border-top: 1px solid #8f7a4e;
  width: 100%;
  margin-top: 60px;
  padding-top: 40px;
}
.detail-footer .pull-left {
  text-align: right;
}
.detail-footer .pull-left .arrow {
  float: left;
  top: 0;
  padding: 10px 15px;
}
.detail-footer .pull-right .arrow {
  float: right;
}
.detail-footer a {
  font-family: 'ITC Avant Garde Gothic W01 Md';
  display: inline-block;
  min-width: 230px;
  font-size: 17px;
}
.detail-footer a:hover {
  color: #705c34;
}
.detail-footer a:hover .arrow {
  background-color: #705c34;
}
@media (max-width: 500px) {
  .detail-footer a {
    font-size: 0px;
    min-width: 50px;
  }
}
.detail-footer .arrow {
  background-color: #8f7a4e;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: inline-block;
  float: right;
  font-size: 23px;
  top: -25px;
  position: relative;
  padding: 10px 20px;
}
body.single-line .event-title {
  top: 275px;
}
@media (max-width: 600px) {
  body.single-line .event-title {
    width: 100%;
  }
}
body.single-line .event-title img {
  width: 100%;
}
body#past-landing h3,
body#luncheon h3 {
  margin-top: -23px;
}
body#past-landing h5,
body#luncheon h5 {
  color: #8f7a4e;
  font-size: 25px;
  margin-bottom: 0;
}
body#past-landing date,
body#luncheon date {
  text-transform: uppercase;
  font-size: 18px;
  display: block;
}
body#past-landing .location,
body#luncheon .location {
  display: block;
  margin-bottom: 10px;
}
body#past-landing .lunch-detail,
body#luncheon .lunch-detail {
  line-height: 40px;
}
body#past-landing .lunch-detail h3,
body#luncheon .lunch-detail h3 {
  margin-top: 60px;
  text-align: left;
  margin-bottom: 15px;
}
body#past-landing .lunch-detail.white,
body#luncheon .lunch-detail.white {
  text-align: left;
}
body#lunch-detail #nextprevious .nextbutton {
  float: right;
  background-color: white;
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  border: 1px solid #8f7a4e;
  transition: all 200ms ease-in;
}
body#lunch-detail #nextprevious .nextbutton:hover {
  background-color: #8f7a4e;
  color: white;
}
body#lunch-detail #nextprevious .backbutton {
  float: left;
  background-color: white;
  color: #8f7a4e;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  border: 1px solid #8f7a4e;
  transition: all 200ms ease-in;
}
body#lunch-detail #nextprevious .backbutton:hover {
  background-color: #8f7a4e;
  color: white;
}
body#lunch-detail .event-title {
  top: 200px;
}
@media (max-width: 1200px) {
  body#lunch-detail #centered {
    background-color: #fbfbf9;
    text-align: center;
  }
}
@media (max-width: 767px) {
  body#lunch-detail #centered {
    height: 650px;
    margin-bottom: 80px;
  }
}
@media (max-width: 479px) {
  body#lunch-detail #centered {
    height: 800px;
    padding-top: 20px;
  }
}
body#lunch-detail #centered .cd-timeline-img {
  width: 100%;
  left: 16%;
  padding-right: 0px;
}
@media (max-width: 1200px) {
  body#lunch-detail #centered .cd-timeline-img {
    left: 0%;
  }
}
body#lunch-detail #centered .cd-timeline-img h4 {
  float: left;
  clear: left;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  body#lunch-detail #centered .cd-timeline-img h4 {
    float: none;
  }
}
body#lunch-detail #centered .cd-timeline-img h5 {
  float: left;
  max-width: 320px;
  width: 100%;
}
@media (max-width: 1200px) {
  body#lunch-detail #centered .cd-timeline-img h5 {
    float: none;
  }
}
body#lunch-detail #centered .small-round {
  height: 200px;
  width: 200px;
  display: inline-block;
  border-radius: 200px;
  margin: 0 5px;
}
body#lunch-detail .gold-menu {
  background-color: #fbfbf9;
  text-align: center;
}
body#lunch-detail .gold-menu .cd-timeline-circle {
  left: 0%;
}
body#lunch-detail .gold-menu .inner {
  font-size: 27px;
  line-height: 41px;
}
body#lunch-detail .gold-menu .inner a {
  font-size: 18px;
}
body#lunch-detail .circle-crop {
  height: 600px;
  width: 600px;
  overflow: hidden;
  border-radius: 600px;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 30px;
  transition: all 400ms ease-in;
}
@media (max-width: 767px) {
  body#lunch-detail .circle-crop {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 479px) {
  body#lunch-detail .circle-crop {
    width: 100%;
    border-radius: 0;
    height: 300px;
  }
}
body#lunch-detail .circle-crop img {
  height: 100%;
}
body#lunch-detail .circle-crop.show {
  width: 100%;
  border-radius: 0;
  overflow: visible;
}
body#lunch-detail .painting-description {
  text-align: left;
  width: 550px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body#lunch-detail .painting-description {
    width: 450px;
  }
}
@media (max-width: 479px) {
  body#lunch-detail .painting-description {
    width: 100%;
    padding: 0 20px;
  }
}
body#lunch-detail .painting-description h4 {
  text-align: center;
  font-size: 27px;
  margin-top: 20px;
}
body#lunch-detail .painting-description h5 {
  font-size: 24px;
  text-align: center;
  font-family: 'ITC Garamond W01 Book Italic';
}
body#newsroom .video {
  padding-top: 50px;
}
body#newsroom .video .main_page_title {
  color: #8f7a4e;
  text-transform: uppercase;
  font-family: 'ITC Garamond W01 Book';
}
body#media .twitter-area h3 img {
  vertical-align: baseline;
}
body#media .instagram {
  background-color: #323c67;
  text-align: center;
  padding: 50px 0px;
}
@media (max-width: 991px) {
  body#media .instagram {
    padding: 50px 30px;
  }
}
body#media .instagram .avante {
  font-family: 'ITC Avant Garde Gothic W01 Bk';
  color: white;
  margin-bottom: 30px;
  text-transform: none;
}
body#media .instagram .insta-logo {
  width: 150px;
  margin-top: 30px;
}
body#media .slideshow-sub {
  text-align: left;
  color: #8f7a4e;
  margin-top: 60px;
  margin-left: 4px;
  text-transform: uppercase;
  font-size: 22px;
}
body#media .light-gold {
  background-color: #f9f8f6;
}
body#media .light-gold h3 {
  text-align: center;
  color: #8f7a4e;
  margin-bottom: 50px;
}
body#media .slide {
  padding-bottom: 20px;
}
body#media .slide .slide-img {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
}
body#media .slide.big img {
  width: 100%;
}
body#media .slide.big .slide-img {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 845px;
}
@media (max-width: 1330px) {
  body#media .slide.big .slide-img {
    height: 750px;
  }
}
@media (max-width: 1200px) {
  body#media .slide.big .slide-img {
    height: 630px;
  }
}
@media (max-width: 991px) {
  body#media .slide.big .slide-img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  body#media .slide.big .slide-img {
    height: 59vw;
  }
}
body#media .slide.big h5 {
  color: #8f7a4e;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: -6px;
}
body#media .slide.big date {
  font-size: 18px;
  text-transform: uppercase;
}
body#media #pressreleases {
  padding-bottom: 55px;
  padding-top: 10px;
}
body#media #pressreleases h3 {
  text-align: center;
  margin-bottom: 50px;
}
body#media #pressreleases h5 {
  color: #8f7a4e;
  text-transform: uppercase;
  font-size: 30px;
}
body#media #pressreleases #press #press-item {
  padding: 20px 15px;
}
body#media #pressreleases #press #press-item .date {
  padding-right: 30px;
  padding-bottom: 30px;
  float: left;
}
@media (max-width: 667px) {
  body#media #pressreleases #press #press-item .date {
    padding-right: 10px;
    padding-bottom: 0px;
  }
}
body#media #pressreleases #press #press-item a {
  color: black;
}
body#media #pressreleases #press #press-item a:hover {
  color: #8f7a4e;
}
body#media #pressreleases #press .morepress {
  padding: 20px 120px;
  color: #8f7a4e;
}
body#media #pressreleases #press .morepress i {
  font-size: 18px;
}
body#media #pressreleases #press .morepress:hover {
  color: #705c34;
}
@media (max-width: 667px) {
  body#media #pressreleases #press .morepress {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  body#media #videos {
    padding: 0 30px;
  }
}
body#media .press {
  background-color: #323c67;
  padding: 40px 0px;
  margin-top: 50px;
  background-image: url('/themes/inaugural/images/PressCreds-final.jpg');
  background-size: cover;
  color: white;
  text-align: center;
  padding-bottom: 70px;
  line-height: 36px;
}
body#media .press a {
  color: #ccb482;
}
body#media .press h3 {
  text-align: center;
  color: white;
  margin-bottom: 50px;
  margin-top: 10px;
}
@media (max-width: 479px) {
  body#media .press .col-super-small {
    width: 100%;
  }
}
body#media .press .circle {
  display: table;
  width: 280px;
  height: 280px;
  border-radius: 280px;
  background-color: white;
  color: #8f7a4e;
  font-size: 30px;
  margin: 20px 5px;
  text-align: center;
  transition: all 250ms ease-in;
}
@media (max-width: 1200px) {
  body#media .press .circle {
    width: 200px;
    height: 200px;
    margin: 20px auto;
  }
}
@media (max-width: 991px) {
  body#media .press .circle {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 600px) {
  body#media .press .circle {
    width: 200px;
    height: 200px;
    margin: 20px auto;
  }
}
@media (max-width: 479px) {
  body#media .press .circle {
    width: 280px;
    height: 280px;
    margin: 20px auto;
  }
}
body#media .press .circle .cell {
  display: table-cell;
  vertical-align: middle;
}
body#media .press .circle:hover {
  transform: scale(0.9);
}
body#media .blue-footer {
  margin-top: 0px;
}
body#media .white {
  text-align: left;
  padding-bottom: 50px;
}
body.main-title .main_page_title {
  color: white;
  font-family: 'ITC Garamond W01 Book';
  text-align: center;
  position: relative;
  font-size: 55px;
  top: -30vw;
}
body#past .detail-footer,
body#lunch-detail .detail-footer {
  border-top: none;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}
body#past .detail-footer .arrow,
body#lunch-detail .detail-footer .arrow {
  top: 0px;
}
body#past #facts-ul ul,
body#lunch-detail #facts-ul ul {
  list-style: initial;
  text-align: left;
}
/*body#past{
	.modal-dialog{
		width: 800px;
		@media (max-width: 900px) {width:700px;}
		@media (max-width: 767px) {position: relative; width: auto; margin: 10px;}
	}
}*/
body#committee .cmte-previous {
  margin-bottom: 100px;
}
body#committee .cmte-previous ul {
  list-style: none;
  padding-left: 0px;
  padding: 5px;
}
body#committee .cmte-previous h5 {
  display: none;
}
body#committee .cmte-previous h3 {
  color: #8f7a4e;
  text-transform: none;
  font-size: 30px;
}
body#committee .cmte-previous h4 {
  color: black;
  font-size: 20px;
  line-height: 30px;
  margin: 20px 0px;
}
body#committee .modified {
  padding: 0px 60px;
}
body#committee .big-logo {
  padding: 50px;
}
body#committee .big-logo img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  body#committee .big-logo {
    padding: 40px 20px;
  }
}
@media (max-width: 479px) {
  body#committee .big-logo {
    padding: 40px 0px;
  }
}
body#committee .members {
  border: 1px solid #8f7a4e;
  background-color: #fbfbf9;
  padding: 10px 30px 50px;
  margin-bottom: 50px;
  display: inline-block;
}
body#committee .members h5 {
  margin-top: 40px;
}
.days-detail {
  text-align: left !important;
  font-size: 21px;
  line-height: 41px;
}
.days-detail h3 {
  margin-top: 60px;
  margin-bottom: 15px !important;
}
body#about .modified,
body#past .modified {
  padding: 0px 60px;
}
body#about .big-logo,
body#past .big-logo {
  padding: 50px;
}
body#about .big-logo img,
body#past .big-logo img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  body#about .big-logo,
  body#past .big-logo {
    padding: 40px 20px;
  }
}
@media (max-width: 479px) {
  body#about .big-logo,
  body#past .big-logo {
    padding: 40px 0px;
  }
}
body#about .members,
body#past .members {
  border: 1px solid #8f7a4e;
  background-color: #fbfbf9;
  padding: 10px 30px 50px;
  margin-bottom: 50px;
  display: inline-block;
}
@media (max-width: 479px) {
  body#about .members,
  body#past .members {
    padding: 10px 10px 50px;
  }
}
body#about .members h5,
body#past .members h5 {
  margin-top: 40px;
}
body#about .group-pic,
body#past .group-pic {
  width: 100%;
}
body#about .about-text,
body#past .about-text {
  margin: 50px 0px 80px;
  line-height: 45px;
}
@media (max-width: 479px) {
  body#about .about-text,
  body#past .about-text {
    font-size: 18px;
    line-height: 35px;
  }
}
body#about .past-button,
body#past .past-button {
  width: 100%;
  height: 400px;
  display: table;
  text-align: center;
  color: white;
  background-size: cover;
  background-repeat: no-repeat;
  text-transform: uppercase;
  font-size: 38px;
  transition: all 200ms ease;
}
body#about .past-button .cell,
body#past .past-button .cell {
  display: table-cell;
  vertical-align: middle;
  transition: all 200ms ease;
}
body#about .past-button.gold:hover .cell,
body#past .past-button.gold:hover .cell {
  background-color: #8f7a4e;
}
body#about .past-button.blue:hover .cell,
body#past .past-button.blue:hover .cell {
  background-color: #323c67;
}
body#about .past-button.light-blue:hover .cell,
body#past .past-button.light-blue:hover .cell {
  background-color: #5a87cb;
}
body#about .blue-footer,
body#past .blue-footer {
  margin-top: 0;
}
#pagetools #actions a {
  background-color: #8f7a4e;
  color: white;
}
#pagetools #actions a:hover {
  background-color: #705c34;
}
body#default .main_page_title {
  color: #8f7a4e;
  text-transform: uppercase;
  font-family: 'ITC Garamond W01 Book';
}
.event-title.long h3.top i,
.event-title.long h2.top i {
  font-family: 'ITC Garamond W01 Book Italic';
}
.event-title.long h3.top i span,
.event-title.long h2.top i span {
  text-transform: none;
  vertical-align: super;
  font-size: 26px;
  margin-left: 4px;
}
@media (max-width: 375px) {
  .event-title.long h2#top {
    font-size: 38px;
  }
}
.event-title.long h3#bottom {
  margin-top: 35px;
  text-transform: none;
}
.event-title.long h4 {
  font-size: 26px;
  font-family: 'ITC Garamond W01 Book Italic';
}
.event-title.long h5 {
  font-size: 20px;
}
.event-title.long .more-circle {
  margin-top: 70px;
}
.past-modal {
  overflow-y: hidden;
  width: 100% !important;
  padding: 0 50px;
}
.past-modal .modal-content {
  border: none;
  box-shadow: none;
}
.past-modal .modal-header {
  width: 100%;
  border-bottom: none;
  height: 52px;
  padding: 2px;
  margin-top: 60px;
}
.past-modal .modal-dialog {
  width: 100%;
}
.past-modal .modal-body {
  max-width: 600px;
  margin: 0 auto;
}
.past-modal .modal-body h5 {
  margin-top: 65px;
}
.past-modal .cd-timeline-img {
  position: relative;
  left: 0;
  margin-right: 40px;
  float: left;
}
.past-modal button.close {
  background-color: #8f7a4e;
  color: white;
  opacity: 1;
  padding: 15px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-family: 'ITC Avant Garde Gothic W01 Md';
  border: 1px solid #8f7a4e;
  margin-right: 40px;
}
.past-modal button.close:hover {
  background-color: white;
  color: #8f7a4e;
}
@media (max-width: 1200px) {
  .past-modal button.close {
    margin-right: 50px;
  }
}
.past-modal .body-text {
  max-height: 40vh;
  height: 60vh;
  overflow: hidden;
  overflow-y: scroll;
  clear: both;
  top: 40px;
  position: relative;
}
.past-modal .body-text p:last-child {
  margin-bottom: 50px;
}
.past-modal .body-text h2 {
  font-size: 30px !important;
}
.past-modal .fadeout {
  position: fixed;
  bottom: -30px;
  height: 4em;
  width: 100%;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.past-modal.just-the-title .body-text {
  max-height: 65vh;
}
.past-modal.past-video-modal {
  max-width: none;
}
.past-modal.past-video-modal .modal-body {
  max-width: 800px;
}
.past-modal.past-video-modal .modal-body h5 {
  color: #ceb689;
}
.past-modal.past-video-modal .modal-body h4 {
  color: white;
}
.past-modal.past-video-modal .modal-backdrop.in {
  opacity: 0.75;
  background-color: black;
}
.past-modal.past-video-modal .modal-content {
  background-color: transparent;
}
.past-modal.past-video-modal .cd-timeline-img {
  display: none;
}
.past-modal.past-video-modal .modal-video {
  width: 100%;
  background-color: black;
}
@media (max-width: 970px) {
  .past-modal.past-video-modal .modal-video {
    padding-right: 50px;
  }
}
@media (max-width: 680px) {
  .past-modal.past-video-modal .modal-video {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .past-modal.past-video-modal .modal-video {
    height: 300px;
  }
}
.past-modal.past-video-modal .modal-video iframe {
  width: 100%;
  height: 450px;
}
/*Timeline CSS */
/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container,
.modal {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container h5,
.modal h5 {
  font-size: 20px;
  color: #8f7a4e;
  text-transform: uppercase;
}
.cd-container h4,
.modal h4 {
  font-size: 34px;
}
@media (max-width: 640px) {
  .cd-container h4,
  .modal h4 {
    font-size: 30px;
  }
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
/* --------------------------------

Main components

-------------------------------- */
#cd-timeline {
  position: relative;
  padding: 0;
  margin-top: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  height: 100%;
  width: 1px;
  background: #8f7a4e;
  z-index: 1;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 6em;
    margin-bottom: 0em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}
.cd-timeline-block {
  position: relative;
  margin: 2em 0;
  height: 400px;
}
@media (max-width: 479px) {
  .cd-timeline-block {
    margin: 5em 0;
  }
}
.cd-timeline-block.circle {
  height: 700px;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
    height: 400px;
  }
  .cd-timeline-block.circle {
    height: 700px;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}
.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  z-index: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
}
.cd-timeline-img.cd-timeline-circle {
  position: relative;
  left: 0%;
}
@media (max-width: 1200px) {
  .cd-timeline-img.cd-timeline-circle {
    width: 112% !important;
    border-radius: 0;
    left: -6% !important;
  }
}
/*.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}*/
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 320px;
    height: 320px;
    left: 40%;
    z-index: 1;
    margin-left: -30px;
    z-index: 200;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-block:first-child .cd-timeline-img.is-hidden {
    visibility: visible;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}
@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-circle {
  height: 600px;
  width: 600px;
  border-radius: 600px;
  overflow: hidden;
  background-color: #8f7a4e;
  color: white;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding: 0px 40px;
}
.cd-timeline-circle .inner {
  display: table-cell;
  vertical-align: middle;
}
.cd-timeline-circle .modal-body {
  color: black;
}
.circle-button,
.circle-button:focus {
  display: inline-block;
  color: white;
  background-color: transparent;
  padding: 7px 27px;
  text-transform: uppercase;
  border: 1px solid white;
  border-radius: 5px;
  font-family: 'ITC Avant Garde Gothic W01 Bd';
  margin-top: 30px;
}
.circle-button.gold-button,
.circle-button:focus.gold-button {
  color: #8f7a4e;
  background-color: transparent;
  border: 1px solid #8f7a4e;
}
.circle-button.gold-button:hover,
.circle-button:focus.gold-button:hover {
  background-color: #8f7a4e;
  color: white;
}
.circle-button:hover,
.circle-button:focus:hover {
  background-color: white;
  color: #8f7a4e;
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  padding: 1em;
  background-color: #fbfbf9;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}
@media only screen and (min-width: 768px) {
  /*.cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }*/
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 50%;
    padding-right: 160px;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-img {
    /*left: 39%;*/
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
    padding-left: 190px;
    padding-right: 0px;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-block:first-child .cd-timeline-content.is-hidden {
    visibility: visible;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}
.streaminghearing {
  width: 100%;
  max-width: 680px;
  height: 400px;
}
@media (max-width: 700px) {
  .streaminghearing {
    height: 380px;
  }
}
@media (max-width: 650px) {
  .streaminghearing {
    height: 350px;
  }
}
@media (max-width: 570px) {
  .streaminghearing {
    height: 320px;
  }
}
@media (max-width: 500px) {
  .streaminghearing {
    height: 275px;
  }
}
@media (max-width: 440px) {
  .streaminghearing {
    height: 250px;
  }
}
@media (max-width: 400px) {
  .streaminghearing {
    height: 220px;
  }
}
@media (max-width: 380px) {
  .streaminghearing {
    height: 190px;
  }
}
@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  body#past .cd-timeline-content,
  body#lunch-detail .cd-timeline-content,
  #luncheon .cd-timeline-content {
    width: 50%;
    float: right;
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  body#past .cd-timeline-content,
  body#lunch-detail .cd-timeline-content,
  #luncheon .cd-timeline-content {
    width: 60%;
  }
}
@media (max-width: 640px) {
  body#past .cd-timeline-content,
  body#lunch-detail .cd-timeline-content,
  #luncheon .cd-timeline-content {
    width: 55%;
    padding-top: 0px !important;
  }
}
@media (max-width: 600px) {
  body#past .cd-timeline-content,
  body#lunch-detail .cd-timeline-content,
  #luncheon .cd-timeline-content {
    width: 95%;
  }
}
@media (max-width: 1200px) {
  body#past #cd-timeline::before,
  body#lunch-detail #cd-timeline::before,
  #luncheon #cd-timeline::before {
    left: 21%;
  }
}
@media (max-width: 600px) {
  body#past #cd-timeline::before,
  body#lunch-detail #cd-timeline::before,
  #luncheon #cd-timeline::before {
    left: 50%;
  }
}
@media (max-width: 1200px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    left: 6%;
  }
}
@media (max-width: 991px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    left: 2%;
  }
}
@media (max-width: 640px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 600px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    position: relative;
    margin: 0 auto;
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 450px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-img,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1170px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-content,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-content,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-content {
    padding: 30px;
    width: 60%;
    float: right;
  }
}
@media (max-width: 600px) {
  body#past .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body#lunch-detail .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  #luncheon .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body#past .cd-timeline-block:nth-child(even) .cd-timeline-content,
  body#lunch-detail .cd-timeline-block:nth-child(even) .cd-timeline-content,
  #luncheon .cd-timeline-block:nth-child(even) .cd-timeline-content {
    width: 95%;
  }
}
@media (max-width: 640px) {
  body#past .cd-timeline-block,
  body#lunch-detail .cd-timeline-block,
  #luncheon .cd-timeline-block {
    height: 400px;
  }
}
@media (max-width: 600px) {
  body#past .cd-timeline-block,
  body#lunch-detail .cd-timeline-block,
  #luncheon .cd-timeline-block {
    height: 800px;
  }
}
@media (max-width: 450px) {
  body#past .cd-timeline-block,
  body#lunch-detail .cd-timeline-block,
  #luncheon .cd-timeline-block {
    height: 700px;
  }
}
@media (max-width: 375px) {
  body#past .cd-timeline-block,
  body#lunch-detail .cd-timeline-block,
  #luncheon .cd-timeline-block {
    height: auto;
  }
}
@media (max-width: 600px) {
  body#luncheon #cd-timeline::before {
    display: none;
  }
}
#events .cd-timeline-content,
body.single-line .cd-timeline-content {
  background-color: transparent;
}
@media (max-width: 1200px) {
  #events .cd-timeline-content,
  body.single-line .cd-timeline-content {
    width: 50%;
  }
}
@media (max-width: 991px) {
  #events .cd-timeline-content,
  body.single-line .cd-timeline-content {
    width: 60%;
  }
}
@media (max-width: 640px) {
  #events .cd-timeline-content,
  body.single-line .cd-timeline-content {
    width: 55%;
    padding-top: 0px !important;
  }
}
@media (max-width: 479px) {
  #events .cd-timeline-content,
  body.single-line .cd-timeline-content {
    margin-left: 10px;
  }
}
#events #cd-timeline::before,
body.single-line #cd-timeline::before {
  left: 33%;
  height: 95%;
}
@media (max-width: 1200px) {
  #events #cd-timeline::before,
  body.single-line #cd-timeline::before {
    left: 21%;
  }
}
@media (max-width: 479px) {
  #events #cd-timeline::before,
  body.single-line #cd-timeline::before {
    display: none;
  }
}
#events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
#events .cd-timeline-block:nth-child(even) .cd-timeline-img,
body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
  left: 22%;
}
@media (max-width: 1200px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
    left: 6%;
  }
}
@media (max-width: 991px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
    left: 2%;
  }
}
@media (max-width: 640px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 479px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-img,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-img,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-img {
    position: relative;
    margin: 0 auto;
  }
}
#events .cd-timeline-block:nth-child(odd) .cd-timeline-content,
body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content,
#events .cd-timeline-block:nth-child(even) .cd-timeline-content,
body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-content {
  float: right;
  padding-right: 150px;
  padding-left: 0px;
}
@media (max-width: 1170px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-content,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-content {
    padding: 30px;
    text-align: center;
  }
}
@media (max-width: 479px) {
  #events .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content,
  #events .cd-timeline-block:nth-child(even) .cd-timeline-content,
  body.single-line .cd-timeline-block:nth-child(even) .cd-timeline-content {
    width: 100%;
  }
}
#events .cd-timeline-block:nth-child(odd) .cd-timeline-content::before,
body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content::before {
  top: 24px;
  left: auto;
  right: 100%;
  border-color: transparent;
  border-right-color: white;
}
#events .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-read-more,
body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-read-more {
  float: right;
}
#events .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-date,
body.single-line .cd-timeline-block:nth-child(odd) .cd-timeline-content .cd-date {
  left: auto;
  right: 122%;
  text-align: right;
}
@media (max-width: 640px) {
  #events .cd-timeline-block,
  body.single-line .cd-timeline-block {
    height: 300px;
  }
}
@media (max-width: 479px) {
  #events .cd-timeline-block,
  body.single-line .cd-timeline-block {
    height: auto;
  }
}
#past-landing #cd-timeline::before {
  height: 99%;
}
.timeline-loader {
  position: relative;
  margin: 0 auto;
  height: 50px;
  width: 50px;
  border-left: 7px solid rgba(204, 204, 204, 0.15);
  border-right: 7px solid rgba(204, 204, 204, 0.15);
  border-bottom: 7px solid rgba(204, 204, 204, 0.15);
  border-top: 7px solid rgba(204, 204, 204, 0.8);
  border-radius: 100%;
  -webkit-animation: rotation 1s infinite linear;
  -moz-animation: rotation 1s infinite linear;
  -o-animation: rotation 1s infinite linear;
  animation: rotation 1s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#share-buttons #share-copy-link {
  cursor: pointer;
}
#multimedia-browser .loading div#search-results-header {
  display: none;
}
body .footer-date {
  font-family: 'ITC Garamond W01 Light Italic';
  letter-spacing: 1px;
  color: white;
  font-size: 20px;
  margin-top: 15px;
}
body .blue-footer {
  width: 100%;
  background-color: #5a87cb;
  padding: 35px;
  margin-top: -6px;
  text-align: center;
}
@media (max-width: 479px) {
  body .blue-footer {
    padding: 25px 15px 40px;
  }
}
body .blue-footer h3 {
  text-transform: uppercase;
  margin-top: 0;
}
body .blue-footer .footer-text {
  width: 60%;
  color: white;
  margin: 0 auto;
  line-height: 27px;
  text-align: center;
  font-family: 'ITC Garamond W01 Book';
}
@media (max-width: 767px) {
  body .blue-footer .footer-text {
    width: 100%;
  }
}
body .blue-footer .foot-logo {
  background-color: white;
  height: 70px;
  width: 70px;
  border-radius: 60px;
  text-align: center;
  padding: 8px;
  border: 4px solid #5a87cb;
}
body .blue-footer .foot-logo img {
  width: 40px;
}
body .blue-footer .social-list {
  position: absolute;
  right: 0;
  left: 0;
  margin-top: 2px;
}
body .blue-footer .social-list li a {
  background-color: white;
  color: #8f7a4e;
  display: block;
  height: 40px;
  width: 40px;
  padding-top: 4px;
  border: 3px solid #5a87cb;
}
body .blue-footer .social-list li a:hover {
  color: #5a87cb;
}
body footer {
  background-color: #323c67;
  padding: 50px;
  text-align: center;
}
body footer .footernav {
  width: 100%;
  text-align: center;
}
body footer .footernav li {
  padding-top: 7px;
}
body footer .footernav li a {
  color: white;
  font-family: 'ITC Avant Garde Gothic W01 Md';
}
body footer .footernav li a:hover {
  color: #8f7a4e;
}
body footer .subfooternav {
  /*float:left;*/
  width: 100%;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
}
body footer .subfooternav a {
  font-family: 'ITC Avant Garde Gothic W01 Md';
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}
body footer .subfooternav a:hover {
  color: #8f7a4e;
}
body footer .subfooternav > li {
  padding: 0px 9px;
}
body footer .subfooternav > li + li:before {
  content: "|";
  position: relative;
  display: inline-block;
  left: -10px;
  font-size: 18px;
  color: #fff;
}
/* collapse ------------------------------- */
#content .amend-form-container form {
  /*input[type="submit"] {
				padding: .25em .5em;
				font-size: 1.3em;
			}*/
}
.hide-on-submit {
  display: none !important;
}
/*


font-family:'ITC Avant Garde Gothic W01 XLt';
font-family:'ITC Avant GardeGothicW01XLtObl';
font-family:'ITC Avant Garde Gothic W01 Bk';
font-family:'ITC Avant Garde GothicW01BkObl';
font-family:'ITC Avant Garde Got 
font-family:'ITC Avant Garde GothicW01MdObl';
font-family:'ITC Avant Garde Gothic W01 Dm';
font-family:'ITC Avant Garde GothicW01DmObl';
font-family:'ITC Avant Garde Gothic W01 Bd';
font-family:'ITC Avant Garde GothicW01BdObl';
font-family:'ITC Avant Garde GothicW01XLtCn';
font-family:'ITCAvantGardeGothicW01XLtCnObl';
font-family:'ITC Avant Garde Gothic W01BkCn';
font-family:'ITC AvantGardeGothicW01BkCnObl';
font-family:'ITC Avant Garde Gothic W01MdCn';
font-family:'ITC AvantGardeGothicW01MdCnObl';
font-family:'ITC Avant Garde Gothic W01DmCn';
font-family:'ITC AvantGardeGothicW01DmCnObl';
font-family:'ITC Avant Garde Gothic W01BdCn';
font-family:'ITC AvantGardeGothicW01BdCnObl';
font-family:'ITC Garamond W01 Light';
font-family:'ITC Garamond W01 Light Italic';
font-family:'ITC Garamond W01 Book';
font-family:'ITC Garamond W01 Book Italic';
font-family:'ITC Garamond W01 Bold';
font-family:'ITC Garamond W01 Bold Italic';
font-family:'ITC Garamond W01 Ultra';
font-family:'ITC Garamond W01 Ultra Italic';
font-family:'ITC Garamond W01 Light Cond';
font-family:'ITC Garamond W01 Light Cond It';
font-family:'ITC Garamond W01 Book Cond';
font-family:'ITC Garamond W01 Book Cond It';
font-family:'ITC Garamond W01 Bold Cond';
font-family:'ITC Garamond W01 Bold Cond It';
font-family:'ITC Garamond W01 Ult Condensed';
font-family:'ITC Garamond W01 Ult Cond It';
font-family:'ITC Garamond W01 Light Narrow';
font-family:'ITC Garamond W01 Light Nr It';
font-family:'ITC Garamond W01 Book Narrow';
font-family:'ITC Garamond W01 Book Narrow It';
font-family:'ITC Garamond W01 Bold Narrow';
font-family:'ITC Garamond W01 Bold Narrow It';
font-family:'ITC Garamond W01 Ultra Narrow';
font-family:'ITC Garamond W01 Ult Narrow It';


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;

*/
.gara-book {
  font-family: 'ITC Garamond W01 Book';
}
.avante-bold {
  font-family: 'ITC Avant Garde Gothic W01 Bd';
}
.avante-medium {
  font-family: 'ITC Avant Garde Gothic W01 Md';
}
/*set up serif font quick class if we have one*/
/*set up sans-serif font quick class if we have one*/
/*body color and font*/
/*header styles*/
/*anchor stlyes*/
a {
  color: #8f7a4e;
}
a:hover {
  text-decoration: none;
  color: #705c34;
}
a:focus,
a:visited,
a:link {
  background-color: transparent;
}
button:focus {
  border: inherit;
}
/*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: #8f7a4e;
  color: white;
}
.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: #705c34;
}
/*interior page content default styles */
@media (max-width: 767px) {
  #multimedia-browser .row .media-thumbnail {
    display: block;
    float: none !important;
    margin: 1em 0;
    width: 100%;
  }
}
@media (max-width: 479px) {
  #newscontent #photos ul {
    height: auto!important;
  }
  #newscontent #photos ul li {
    margin-bottom: 30px;
    display: block;
    position: static!important;
    padding: 5px;
    margin: 0 auto;
    left: 0!important;
  }
}
.ieold .ieoldonly {
  display: block !important;
}
.ie .ieonly {
  display: block !important;
}
.ie .notie {
  display: none !important;
}
.ie11 .ieonly {
  display: block !important;
}
.ie11 .notie {
  display: none !important;
}
.ie10 .ieonly {
  display: block !important;
}
.ie10 .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 body#about .the-banner-container {
    display: none;
  }
  html body#about .event-title {
    display: none;
  }
  html body#about .container .big-logo {
    padding: 10px!important;
  }
  html body#about .container .members {
    padding: 10px!important;
  }
  html body#about .past-button {
    display: none!important;
  }
  html body#committee .the-banner-container {
    display: none;
  }
  html body#committee .event-title {
    height: auto;
    padding: 0px;
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  html body#committee .container .big-logo {
    padding: 10px!important;
  }
  html body#committee .container .members {
    padding: 10px!important;
  }
  html body#committee .past-button {
    display: none!important;
  }
  html body#newsroom .the-banner-container {
    display: none;
  }
  html body#luncheon .the-banner-container {
    display: none;
  }
  html body#luncheon .cd-timeline-img {
    display: none;
  }
  html body#luncheon .cd-timeline-block {
    margin: 0 auto;
    height: auto;
    float: left;
  }
  html body#luncheon .event-title {
    height: auto;
    padding: 0px;
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  html body#luncheon .container .big-logo {
    padding: 10px!important;
  }
  html body#luncheon .container .members {
    padding: 10px!important;
  }
  html body#luncheon .past-button {
    display: none!important;
  }
  html body#lunch-detail .the-banner-container {
    display: none;
  }
  html body#lunch-detail .cd-timeline-img {
    display: none;
  }
  html body#lunch-detail .cd-timeline-block {
    margin: 0 auto;
    height: auto;
    float: left;
  }
  html body#lunch-detail .event-title {
    height: auto;
    padding: 0px;
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  html body#lunch-detail .container .big-logo {
    padding: 10px!important;
  }
  html body#lunch-detail .container .members {
    padding: 10px!important;
  }
  html body#lunch-detail .past-button {
    display: none!important;
  }
  html body.event-detail .the-banner-container {
    display: none;
  }
  html body.event-detail .event-title {
    height: auto;
    padding: 0px;
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  html body.event-detail .detail-footer {
    display: none;
  }
  html body#events .the-banner-container {
    display: none;
  }
  html body#events .cd-timeline-img {
    display: none;
  }
  html body#events .cd-timeline-block {
    margin: 0 auto;
    height: auto;
    float: left;
  }
  html body#events .event-title {
    height: auto;
    padding: 0px;
    top: 0;
    position: relative;
    margin: 0 auto;
  }
  html body#events .container .big-logo {
    padding: 10px!important;
  }
  html body#events .container .members {
    padding: 10px!important;
  }
  html body#events .past-button {
    display: none!important;
  }
  html body#past .cd-timeline-img {
    display: none;
  }
  html body#past .cd-timeline-block {
    margin: 0 auto;
    height: auto;
  }
  html body#past .detail-footer {
    display: none;
  }
  html #logo,
  html .logohold,
  html .navbar,
  html #toolbar,
  html .footer,
  html .blue-footer,
  html footer,
  html #breadcrumb {
    display: none;
  }
}
