@charset "UTF-8";
/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

:root {
  font-size: 14px;
}
@media screen and (min-width: 700px) {
  :root {
    font-size: calc(14px + (18 - 14) * (100vw - 700px) / (1500 - 700));
  }
}
@media screen and (min-width: 1500px) {
  :root {
    font-size: 18px;
  }
}

/*
	Note: The "mobile-nav" breakpoint is only used to set when the regular 
	nav goes away and the mobile nav shows up.
	It can/might be the same as another breakpoint but 
	is just here to help you get started. 
*/
/* ----------------------------------------------------------------------------
= Reset using normalize.css v3.0.1 | MIT License | git.io/normalize
----------------------------------------------------------------------------- */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  color: #000;
  background: #ff0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  margin: 0; /* 3 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type=button],
input[type=reset], input[type=submit] {
  cursor: pointer; /* 3 */
  -webkit-appearance: button; /* 2 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-box-sizing: content-box; /* 2 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  padding: 0; /* 2 */
  border: 0; /* 1 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* 
 * -- We already set these things per project.
 *
 */
/* ----------------------------------------------------------------------------
= SETUP FILE includes fonts, colors, media query values, custom mixins, utility classes
= Last updated July 2015
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= SELECTOR SORTING
= *) SASS Variable, Mixin, Include, Extend, Clearfix
= *) Positioning, Display & Box Model, Overflow, Floats
= *) Flexbox rules (if used)
= *) Sizing (Width and Height)
= *) Padding, Margin
= *) Colors, Borders, Backgrounds, Opacity (No Text Colors)
= *) Text Related Items (Including Text Colors)
= *) Enhancements, Animations, others
= *) pseudo Elements
= *) Any overrides needed to reset included rules from mixins
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= DEVELOPER NOTES
= *) using Bourbon latest (via Codekit)
= *) Sass set to compile extended, set to compressed before launch
= *) set to compile SASS with libsass (via Codekit)
= *) using FontAwesome Font with CSS link (in head_extra view)
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* Rectangle 16 Copy: */
/* ----------------------------------------------------------------------------
=media queries = Located in _grid-settings.scss
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Bourbon
=reference default mixin calls at http://bourbon.io/docs/
----------------------------------------------------------------------------- */
.ir {
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  white-space: nowrap;
  text-indent: 100%;
  direction: ltr;
}

.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
}
.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

@media screen and (max-width: 767px) {
  .hide_mobile {
    display: none;
  }
}

.show_mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .show_mobile {
    display: block;
  }
}

.visuallyhidden {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

* {
  letter-spacing: 0.02em;
}

.header-base, h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1.11111rem;
  font-family: "Libre Franklin", sans-serif;
  font-weight: inherit;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #25282A;
}

h1, .h1 {
  font-size: 3.1573345183rem;
}

h2, .h2 {
  font-size: 2.368593037rem;
}
h2.long_title, .h2.long_title {
  font-size: 1.776889rem;
}

h3, .h3 {
  font-size: 1.776889rem;
}

h4, .h4 {
  font-size: 1.333rem;
}

h5, .h5 {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.7501875469rem;
}

.small_paragraph, .small p {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #4C4F50;
}

.p-base, .textarea ul li, .textarea ol li, .spotlight_content ul li, .spotlight_content ol li, .faq ul li, .faq ol li, [name=icpsignup] tr td, address, .address, p, .p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.minus-margin + p, .cms ol + p, .full_column.non-widget-area ol + p, .textarea ol + p, .spotlight_content ol + p, .faq ol + p, .link .description ol + p, .event_description ol + p, .cms ul:not(.list) + p, .full_column.non-widget-area ul:not(.list) + p, .textarea ul:not(.list) + p, .spotlight_content ul:not(.list) + p, .faq ul:not(.list) + p, .link .description ul:not(.list) + p, .event_description ul:not(.list) + p, p + p, .p + p, .minus-margin + .p, .cms ol + .p, .full_column.non-widget-area ol + .p, .textarea ol + .p, .spotlight_content ol + .p, .faq ol + .p, .link .description ol + .p, .event_description ol + .p, .cms ul:not(.list) + .p, .full_column.non-widget-area ul:not(.list) + .p, .textarea ul:not(.list) + .p, .spotlight_content ul:not(.list) + .p, .faq ul:not(.list) + .p, .link .description ul:not(.list) + .p, .event_description ul:not(.list) + .p, p + .p, .p + .p, .minus-margin + ul, .cms ol + ul, .full_column.non-widget-area ol + ul, .textarea ol + ul, .spotlight_content ol + ul, .faq ol + ul, .link .description ol + ul, .event_description ol + ul, .cms ul:not(.list) + ul, .full_column.non-widget-area ul:not(.list) + ul, .textarea ul:not(.list) + ul, .spotlight_content ul:not(.list) + ul, .faq ul:not(.list) + ul, .link .description ul:not(.list) + ul, .event_description ul:not(.list) + ul, p + ul, .p + ul, .minus-margin + ol, .cms ol + ol, .full_column.non-widget-area ol + ol, .textarea ol + ol, .spotlight_content ol + ol, .faq ol + ol, .link .description ol + ol, .event_description ol + ol, .cms ul:not(.list) + ol, .full_column.non-widget-area ul:not(.list) + ol, .textarea ul:not(.list) + ol, .spotlight_content ul:not(.list) + ol, .faq ul:not(.list) + ol, .link .description ul:not(.list) + ol, .event_description ul:not(.list) + ol, p + ol, .p + ol {
  margin-top: -1.11111rem;
}

.lead, .cms blockquote p, .full_column.non-widget-area blockquote p, .textarea blockquote p, .spotlight_content blockquote p, .faq blockquote p, .link .description blockquote p, .event_description blockquote p {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-bottom: 2.22222rem;
  font-size: 1.444rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #88898A;
}

p, .p {
  margin: 0 0 2.6rem;
}
p strong, .p strong {
  font-weight: 700;
}

address, .address {
  margin: 0 0 20px;
  font-weight: 700;
  font-style: normal;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li, ol li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  color: #25282A;
  border: none;
  cursor: pointer;
}
.textarea p a:not(.button), .spotlight_content p a:not(.button), .event_description p a:not(.button), .cms li a:not(.button), .textarea li a:not(.button), .m-eventDetailList__item a:not(.button), .event_detail .eventDetailList a:not(.button), .faq dd a:not(.button) {
  z-index: 0;
  color: #EF7B45;
  transition: 750ms;
}
.textarea p a:not(.button):before, .spotlight_content p a:not(.button):before, .event_description p a:not(.button):before, .cms li a:not(.button):before, .textarea li a:not(.button):before, .m-eventDetailList__item a:not(.button):before, .event_detail .eventDetailList a:not(.button):before, .faq dd a:not(.button):before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #EF7B45;
  transform: scale(0, 1);
  will-change: transform;
}
.textarea p a:not(.button):hover:before, .spotlight_content p a:not(.button):hover:before, .event_description p a:not(.button):hover:before, .cms li a:not(.button):hover:before, .textarea li a:not(.button):hover:before, .m-eventDetailList__item a:not(.button):hover:before, .event_detail .eventDetailList a:not(.button):hover:before, .faq dd a:not(.button):hover:before {
  animation: linkAnimate 1.5s cubic-bezier(1, 0, 0, 1);
}

@keyframes linkAnimate {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 50%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 50%;
  }
  50.01% {
    transform: scale(1, 1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 50%;
  }
}
hr {
  display: block;
  clear: both;
  height: 2px;
  margin-top: 2.2222rem;
  margin-bottom: 2.2222rem;
  background-color: #EBEBEB;
  border: 0;
}

table {
  position: relative;
  margin: 0 0 15px;
}
table tr {
  font-size: 12px;
  color: black;
}
table tr td {
  margin-bottom: 0;
  padding: 5px;
  border: none;
}
table input[type=text] {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 46px;
  padding: 8px 10px;
  background: transparent;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFF;
  color: #25282A;
  border: 1px solid black;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

[name=icpsignup] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
[name=icpsignup] #SignUp {
  width: 400px;
  max-width: 100%;
}
[name=icpsignup] tr td {
  vertical-align: middle;
}
[name=icpsignup] table {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  border-collapse: separate;
}
[name=icpsignup] [type=hidden] + tr {
  display: none;
}

.sign-up-form {
  text-align: center;
}

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
#news .l-fullwidthHeader, .job_list .l-fullwidthHeader {
  margin-top: 50px;
}
#news .date, .job_list .date {
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  #news .info, .job_list .info {
    width: 100% !important;
  }
}
#news .m-date__singleDate .m-date__day, #news .m-date__singleDate .m-date__separator, .job_list .m-date__singleDate .m-date__day, .job_list .m-date__singleDate .m-date__separator {
  font-size: 24px;
  color: #EF7B45;
}
#news .m-date__singleDate .m-date__year, .job_list .m-date__singleDate .m-date__year {
  display: none;
}
#news .m-date__singleDate .m-date__weekday, .job_list .m-date__singleDate .m-date__weekday {
  display: none;
}

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail .news_heading .date {
  margin-bottom: 1.25rem;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .news_detail .news_heading .date {
    margin-top: 1.25rem;
  }
}
.news_detail .news_thumb {
  float: left;
  max-width: 50%;
  margin-right: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .news_detail .news_thumb {
    display: none;
  }
}
.news_detail #branding {
  width: calc(100% + 330px);
  margin-top: 0;
  margin-left: -165px;
}
@media screen and (max-width: 1024px) {
  .news_detail #branding {
    width: calc(100% + 130px);
    margin-left: -65px;
  }
}
@media screen and (max-width: 767px) {
  .news_detail #branding {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.news_detail p {
  margin-bottom: 1.1rem;
}
.news_detail .share {
  max-width: 972px;
  margin: 0 auto 2.1rem;
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
#events .full_column {
  overflow: visible;
  padding: 0;
  background: transparent;
}

.event_listing_page {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .event_listing_page {
    padding-top: 0;
  }
}

#loadMoreEvents {
  left: 50%;
  margin-top: -10px;
  background-color: #FFF !important;
  text-transform: capitalize;
  color: #25282A !important;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  #loadMoreEvents {
    margin-top: 10px;
  }
}
@media screen and (max-width: 320px) {
  #loadMoreEvents {
    width: 100%;
  }
}
#loadMoreEvents:hover:before {
  top: 10px;
}
#loadMoreEvents:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 10px;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  background-color: #FFF;
  transition: 350ms;
  pointer-events: none;
}
#loadMoreEvents[disabled=disabled] {
  display: none;
}

@media screen and (max-width: 1024px) {
  .content_item .m-eventList .eventItem {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #EBEBEB;
  }
}
@media screen and (max-width: 1024px) {
  .content_item .m-eventList .eventItem .date {
    border-top: none;
  }
}
@media screen and (min-width: 1025px) {
  .content_item .m-eventList .eventItem .date {
    border-top: none;
    border-bottom: 2px solid #EBEBEB;
  }
}

.event_list_header {
  width: 100%;
  color: #25282A;
}
.event_list_header .overview {
  display: flex;
  position: relative;
  margin: 1.6rem auto 0;
}
@media screen and (max-width: 767px) {
  .event_list_header .overview {
    margin-top: 0;
  }
}
.event_list_header h1 {
  flex-grow: 2;
  margin: 0;
  color: #FFF;
}

.category-dropdown {
  display: none !important;
}

.event_list_toggles {
  display: flex;
  align-self: center;
  position: absolute;
  right: 0;
  padding-bottom: 2.33333rem;
}
.event_list_toggles .toggle {
  display: flex;
  align-items: center;
  margin-left: 15px;
  padding: 14.5px 11px;
  color: #666;
}
@media screen and (max-width: 980px) {
  .event_list_toggles .toggle {
    display: none;
  }
}
.event_list_toggles .toggle span {
  position: absolute;
  opacity: 0;
  text-indent: -9999em;
}
.event_list_toggles .toggle svg {
  fill: #FFF;
}
.event_list_toggles .toggle.is-active, .event_list_toggles .toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 2px 6px 10px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.event_list_toggles .toggle.is-active svg, .event_list_toggles .toggle:hover svg {
  fill: #FFF;
}
.event_list_toggles .toggle.calendar {
  display: none;
}
.event_list_toggles span {
  display: block;
  text-align: center;
}
.event_list_toggles svg {
  fill: #999;
}

.category-dropdown {
  align-self: center;
  position: relative;
  margin-right: 37px;
}
.category-dropdown .select {
  display: block;
  position: relative;
  z-index: 8;
  width: 290px;
  height: 38px;
  margin: 0;
  padding: 0 0 0 20px;
  background: white;
  line-height: 38px;
  color: #222;
  border: 2px solid #E4E4E4;
  outline: none;
  cursor: pointer;
}
.category-dropdown .select svg {
  float: right;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 12px;
  transform: translateY(-50%);
  fill: none;
  fill-rule: evenodd;
  stroke: #CCC;
  stroke-width: 2px;
}
.category-dropdown .select.is-active {
  border-color: #CCC;
}
.category-dropdown .select.is-active svg {
  transform: rotate(180deg) translateY(-47%);
  transform-origin: 50% 0;
}
.category-dropdown .choices {
  display: none;
  position: absolute;
  z-index: 7;
  top: 16px;
  left: 0;
  width: 100%;
  padding: 35px 10px 10px 10px;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Libre Franklin", sans-serif;
}
.category-dropdown .choices.is-active {
  display: block;
}
.category-dropdown .choices li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
}
.category-dropdown .choices li:hover a, .category-dropdown .choices a.is-active {
  background: #000;
  color: #CCC;
}
.category-dropdown .choices li:before {
  display: none;
}

.event_list {
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 300ms;
}
.event_list.is-loaded {
  opacity: 1;
}
.event_list .eventItem {
  overflow: hidden;
  margin: 0 0 60px;
  background: #FFF;
  transition: 250ms;
}
.event_list .eventItem .group-info {
  display: none;
}
.event_list .eventItem .info {
  min-height: 7.5rem;
  padding: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info {
    min-height: 0;
  }
}
.event_list .eventItem .thumb {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.event_list .eventItem .thumb a {
  display: block;
  position: relative;
  z-index: 10;
  line-height: 0;
}
.event_list .eventItem .thumb a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: 250ms;
}
.event_list .eventItem .thumb a:hover:before {
  background-color: rgba(0, 0, 0, 0.25);
}
.event_list .eventItem .thumb:hover ~ .buttons {
  opacity: 1 !important;
}
.event_list .eventItem .thumb img {
  width: 100%;
  max-width: 100%;
}
.event_list .eventItem .date {
  order: 10;
  position: absolute;
  right: 5px;
  bottom: 0;
  left: 5px;
  padding: 9px 15px 11px;
  font-weight: 600;
  border-top: 2px solid #EBEBEB;
  min-height: 51px;
}
.event_list .eventItem .date.date-override {
  padding-top: 14px;
}
.event_list .eventItem .date .m-date__singleDate, .event_list .eventItem .date .m-date__rangeLast {
  position: relative;
}
.event_list .eventItem .date .m-date__day, .event_list .eventItem .date .m-date__separator {
  font-size: 24px;
  color: #EF7B45;
}
.event_list .eventItem .date .m-date__weekday {
  display: none;
  font-weight: 300;
}
.event_list .eventItem .date .m-date__year {
  display: none;
}
.event_list .eventItem .title {
  display: -webkit-box;
  overflow: hidden;
  max-height: 110px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: 0.8px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .event_list .eventItem .title {
    margin-bottom: 10px;
    font-size: 1.26rem;
    line-height: 1.5rem;
    letter-spacing: 0;
  }
}
.event_list .eventItem .title a {
  transition: 250ms;
}
.event_list .eventItem .title a:not(:hover) {
  color: #25282A;
}
.event_list .eventItem .title a:hover {
  color: #EF7B45;
}
.event_list .eventItem .tagline {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: #88898A;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .tagline {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .event_list .eventItem .tagline {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3125rem;
    letter-spacing: 0.6px;
    color: #555;
  }
}
.event_list .eventItem .meta {
  display: none;
}
.event_list .eventItem .buttons {
  display: flex;
  align-items: center;
  align-self: flex-end;
  position: absolute;
  z-index: 100;
  right: 20px;
  bottom: 0;
  height: 48px;
  opacity: 1;
  transition: opacity 250ms;
  pointer-events: none;
}
.event_list .eventItem .buttons:hover {
  opacity: 1 !important;
}
.event_list .eventItem .buttons a {
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  white-space: nowrap;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #25282A;
  transition: 250ms;
  pointer-events: auto;
}
.event_list .eventItem .buttons a:hover {
  color: #E35205;
}
.event_list .eventItem .buttons a:hover:before {
  border-left: 10px solid #E35205;
  animation: bounce 750ms;
}
.event_list .eventItem .buttons a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: -20px;
  width: 0;
  height: 0;
  border-top: 6.9px solid transparent;
  border-bottom: 6.9px solid transparent;
  border-left: 10px solid #EF7B45;
  transform: translate(0%, -50%);
}
.event_list .eventItem .buttons a + a {
  display: none;
}
.event_list .eventItem .buttons a:first-child:last-child {
  display: none;
}
.event_list .eventItem .buttons svg {
  display: none;
}
.event_list .eventItem .buttons span {
  display: none;
}
.event_list .eventItem .buttons a + a {
  margin-left: 1.25rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(0%, -50%);
  }
  50% {
    transform: translate(4px, -50%);
  }
}
@keyframes bounceX {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(4px);
  }
}
/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .event_detail .faq, .event_detail .event_showings, .event_detail .description_wrapper {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.event_detail {
  zoom: 1;
  position: relative;
  width: 100%;
  margin: auto;
  margin-top: 184px;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .event_detail {
    margin-top: 65px;
  }
}
@media screen and (max-width: 767px) {
  .event_detail {
    width: 100%;
    max-width: calc(100% - 20px);
    margin-top: 40px;
    padding: 0rem;
  }
}
.event_detail:before, .event_detail:after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
}
.event_detail:after {
  clear: both;
}
.event_detail .below_branding {
  margin-top: 1.6rem;
}
.event_detail #branding {
  overflow: hidden;
  width: calc(100% + 130px);
  margin-bottom: 1.25rem;
  margin-left: -50px;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .event_detail #branding {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .event_detail #branding {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
@media screen and (min-width: 1025px) {
  .event_detail #branding .rsArrowRight {
    right: 50px;
  }
}
.event_detail #branding + aside {
  margin-top: 0 !important;
}
.event_detail #branding img {
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}
.event_detail .event_heading {
  margin-bottom: 1.85rem;
}
@media screen and (max-width: 1024px) {
  .event_detail .event_heading {
    display: none;
  }
}
.event_detail .event_heading.above_branding {
  display: none;
}
.event_detail .event_heading .tagline {
  margin-bottom: 0;
  font-size: 1.444444rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.5px;
  color: #88898A;
}
.event_detail .spotlight_image ~ .event_heading .title, .event_detail .slideshow ~ .event_heading .title {
  margin-top: 0;
  margin-bottom: 10px;
}
.event_detail .event_showings {
  margin-top: 53px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .event_detail .event_showings {
    margin-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.event_detail .event_showings + h3 {
  margin-bottom: 0.85rem;
  font-size: 2.368593037rem;
}
@media screen and (max-width: 1024px) {
  .event_detail .event_showings + h3 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.event_detail .event_showings .m-date__singleDate {
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.8px;
  color: #4C4F50;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .m-date__singleDate {
    font-size: 15px;
  }
}
.event_detail .event_showings .m-date__singleDate .m-date__singleDate, .event_detail .event_showings .m-date__singleDate .m-date__rangeLast {
  position: relative;
}
.event_detail .event_showings .m-date__singleDate .m-date__day, .event_detail .event_showings .m-date__singleDate .m-date__separator {
  font-size: 24px;
  color: #EF7B45;
}
.event_detail .event_showings .m-date__singleDate .m-date__weekday {
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.8px;
  color: #4C4F50;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .m-date__singleDate .m-date__weekday {
    display: none;
  }
}
.event_detail .event_showings .m-date__singleDate .m-date__year {
  display: none;
}
.event_detail .event_showings .list {
  position: relative;
  font-size: 15px;
  list-style-type: none;
}
.event_detail .event_showings .listItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #E9E9E9;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .listItem {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.event_detail .event_showings .listItem.listItehasNoLink {
  justify-content: flex-start;
}
.event_detail .event_showings .listItem .cell {
  width: 20%;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.event_detail .event_showings .listItem .cell:nth-child(1) {
  width: 40%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .listItem .cell:nth-child(1) {
    width: calc(100% - 217px);
  }
}
.event_detail .event_showings .listItem .cell:last-child {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .listItem .cell:last-child {
    width: 140px;
  }
}
.event_detail .event_showings .listItem .cell:nth-child(2) {
  width: 20%;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #88898A;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .listItem .cell:nth-child(2) {
    width: 70px;
    font-size: 13px;
  }
}
.event_detail .event_showings .buttons a, .event_detail .event_showings .buttons span {
  justify-content: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #25282A;
  transition: 450ms;
}
@media screen and (max-width: 767px) {
  .event_detail .event_showings .buttons a, .event_detail .event_showings .buttons span {
    font-size: 12px;
  }
}
.event_detail .event_showings .buttons a:hover, .event_detail .event_showings .buttons span:hover {
  color: #E35205;
}
.event_detail .event_showings .buttons a:hover:before, .event_detail .event_showings .buttons span:hover:before {
  border-left: 10px solid #E35205;
  animation: bounceX 750ms;
}
.event_detail .event_showings .buttons a:before, .event_detail .event_showings .buttons span:before {
  content: "";
  display: inline-block;
  position: relative;
  top: initial;
  left: initial;
  width: 0;
  height: 0;
  margin-top: -5px;
  margin-right: 10px;
  vertical-align: middle;
  border-top: 6.9px solid transparent;
  border-bottom: 6.9px solid transparent;
  border-left: 10px solid #EF7B45;
  transform: translate(0%);
}
.event_detail .event_showings .buttons a svg, .event_detail .event_showings .buttons span svg {
  display: none;
}
.event_detail .event_showings .additional_showings {
  display: none;
}
@media screen and (max-width: 1024px) {
  .event_detail .faq {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.event_detail .description_wrapper {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .event_detail .description_wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .date {
    display: none !important;
  }
}
.event_detail .buttonWrapper .buttons {
  width: calc(100% + 20px);
  height: 60px;
  margin-bottom: 30px;
  margin-left: -10px;
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .buttons {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}
.event_detail .buttonWrapper .buttons a, .event_detail .buttonWrapper .buttons span {
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  background-color: #EF7B45;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  letter-spacing: 0.08px;
  text-transform: uppercase;
  color: #FFF;
  transition: 450ms;
}
.event_detail .buttonWrapper .buttons a:hover:not(.no_ticket_link), .event_detail .buttonWrapper .buttons span:hover:not(.no_ticket_link) {
  background-color: #E35205;
}
.event_detail .buttonWrapper .buttons a:hover:not(.no_ticket_link):before, .event_detail .buttonWrapper .buttons span:hover:not(.no_ticket_link):before {
  animation: bounceX 750ms;
}
.event_detail .buttonWrapper .buttons a:before, .event_detail .buttonWrapper .buttons span:before {
  content: "";
  display: inline-block;
  position: relative;
  top: initial;
  left: initial;
  width: 0;
  height: 0;
  margin-top: -3px;
  margin-right: 10px;
  vertical-align: middle;
  border-top: 6.9px solid transparent;
  border-bottom: 6.9px solid transparent;
  border-left: 10px solid #FFF;
  transform: translate(0%);
}
.event_detail .eventDetailList {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  font-family: "Libre Franklin", sans-serif;
}
.event_detail .eventDetailList a, .event_detail .eventDetailList a:focus, .event_detail .eventDetailList p {
  font-weight: 400;
  letter-spacing: 0.03px;
}
.event_detail .eventDetailList .item {
  position: relative;
  width: 100%;
  margin-bottom: 17px;
  padding-bottom: 17px;
  padding-left: 0.5rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #88898A;
  border-bottom: 1px solid #D8D8D8;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .event_detail .eventDetailList .item {
    width: 50%;
    padding-left: 0;
  }
  .event_detail .eventDetailList .item.sidebar_event_date, .event_detail .eventDetailList .item.itelong {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .event_detail .eventDetailList .item {
    width: 100%;
  }
  .event_detail .eventDetailList .item:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (min-width: 1025px) {
  .event_detail .eventDetailList .item:last-child {
    border-bottom: 0;
  }
}
.event_detail .eventDetailList .item:before {
  display: none;
}
.event_detail .eventDetailList .item label {
  margin-bottom: 9px;
}
.event_detail .eventDetailList .item label, .event_detail .eventDetailList .item.sidebar_event_date > span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0.8px;
  color: #25282A;
}
.event_detail .eventDetailList .item label .m-date__weekday, .event_detail .eventDetailList .item.sidebar_event_date > span .m-date__weekday {
  display: none;
}
.event_detail .eventDetailList .item a .m-date__singleDate {
  font-size: 16px;
  /* $79.50 - $119.50: */
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.6px;
  color: #25282A;
}
.event_detail .eventDetailList .item a .m-date__singleDate:hover {
  color: #25282A;
}
.event_detail .eventDetailList .item svg {
  display: none;
}
.event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
  display: none;
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
    display: block;
    margin-bottom: 0.5rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .date {
    padding-top: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .event_detail .buttonWrapper .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: #959595;
  }
}
.event_detail .buttonWrapper .buttons {
  position: relative;
  color: white;
}
.event_detail .buttonWrapper .buttons a, .event_detail .buttonWrapper .buttons span {
  width: 100%;
  font-size: 0.9rem;
  white-space: nowrap;
}
.event_detail .buttonWrapper .buttons svg {
  display: none;
}

.read-more, .event_detail .event_showings .show-all-showings {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #25282A;
  cursor: pointer;
}
.read-more.is-opened:after, .event_detail .event_showings .show-all-showings.is-opened:after {
  transform: rotate(-90deg);
}
.read-more:after, .event_detail .event_showings .show-all-showings:after {
  content: "";
  display: inline-block;
  position: relative;
  top: initial;
  left: initial;
  width: 0;
  height: 0;
  margin-top: -5px;
  margin-left: 10px;
  vertical-align: middle;
  border-top: 6.9px solid transparent;
  border-bottom: 6.9px solid transparent;
  border-left: 10px solid #EF7B45;
  transition: 450ms;
  transform: rotate(90deg);
}

.is-opened + .read-more:after {
  transform: rotate(-90deg);
}

.description_wrapper:before {
  content: "Event Info";
  display: block;
  margin: 0 0 1.11111rem;
  font-family: "Libre Franklin", sans-serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #25282A;
}
@media screen and (max-width: 1024px) {
  .description_wrapper:before {
    font-size: 2rem;
  }
}

.short-description .description_inner:after {
  display: none !important;
}

.event_description {
  position: relative;
}
.event_description:not(.is-opened) .description_inner:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.01) 0%, white 100%);
}
.event_description .description_inner {
  overflow: hidden;
}
.event_description .description_inner p:last-child {
  margin-bottom: 0;
}
.event_description:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.event_description.is-opened:after {
  display: none;
}

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content_item {
  margin-bottom: 2.222222rem;
  transform: translateZ(0);
}
.content_item:first-child {
  margin-top: 3.333333rem;
}
.content_item:first-child.slide, .content_item:first-child.map {
  width: calc(100% + 330px);
  margin-top: 0;
  margin-left: -165px;
}
@media screen and (max-width: 1024px) {
  .content_item:first-child.slide, .content_item:first-child.map {
    width: calc(100% + 130px);
    margin-left: -65px;
  }
}
@media screen and (max-width: 767px) {
  .content_item:first-child.slide, .content_item:first-child.map {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.content_item.slide img {
  width: 100%;
}

.spotlight_image img {
  display: block;
  max-width: 100%;
}

.content {
  position: relative;
  margin: 0;
  padding: 0;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
}
.content img {
  max-width: 100%;
}
.content img[align=left], .content img.left {
  float: left;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .content img[align=left], .content img.left {
    display: block;
    float: none;
    margin: 0 auto 20px;
  }
}
.content img[align=right], .content img.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .content img[align=right], .content img.right {
    display: block;
    float: none;
    margin: 0 auto 20px;
  }
}

.two-column {
  zoom: 1;
}
.two-column:before, .two-column:after {
  content: " ";
  display: block;
  visibility: hidden;
  height: 0;
}
.two-column:after {
  clear: both;
}
.two-column > ul > li {
  float: left;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .two-column > ul > li {
    float: none;
    width: 100%;
  }
}
.two-column > ul > li:nth-child(odd) {
  clear: left;
}

.cms h1, .full_column.non-widget-area h1, .textarea h1, .spotlight_content h1, .faq h1, .link .description h1, .event_description h1 {
  margin-bottom: 2rem;
  padding-bottom: 1.11111rem;
  border-bottom: 2px solid #EF7B45;
}
.cms blockquote, .full_column.non-widget-area blockquote, .textarea blockquote, .spotlight_content blockquote, .faq blockquote, .link .description blockquote, .event_description blockquote {
  overflow: visible;
  position: relative;
  z-index: 10;
  margin: 0 0 2.22222rem;
  padding: 56px 0 34px;
  color: #4C4F50;
}
@media screen and (max-width: 767px) {
  .cms blockquote, .full_column.non-widget-area blockquote, .textarea blockquote, .spotlight_content blockquote, .faq blockquote, .link .description blockquote, .event_description blockquote {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.cms blockquote:after, .full_column.non-widget-area blockquote:after, .textarea blockquote:after, .spotlight_content blockquote:after, .faq blockquote:after, .link .description blockquote:after, .event_description blockquote:after {
  content: "";
  display: block;
  visibility: visible;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: calc(100% + 150px);
  max-width: calc(100vw - 80px);
  height: 100%;
  opacity: 1;
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateZ(0);
}
.cms blockquote + blockquote, .full_column.non-widget-area blockquote + blockquote, .textarea blockquote + blockquote, .spotlight_content blockquote + blockquote, .faq blockquote + blockquote, .link .description blockquote + blockquote, .event_description blockquote + blockquote {
  margin-top: -40px;
  border-top: 0;
}
.cms blockquote p, .full_column.non-widget-area blockquote p, .textarea blockquote p, .spotlight_content blockquote p, .faq blockquote p, .link .description blockquote p, .event_description blockquote p {
  color: #4C4F50;
}
.cms blockquote p:last-child, .full_column.non-widget-area blockquote p:last-child, .textarea blockquote p:last-child, .spotlight_content blockquote p:last-child, .faq blockquote p:last-child, .link .description blockquote p:last-child, .event_description blockquote p:last-child {
  margin-bottom: 0;
}
.cms blockquote p:last-child:not(:first-child), .full_column.non-widget-area blockquote p:last-child:not(:first-child), .textarea blockquote p:last-child:not(:first-child), .spotlight_content blockquote p:last-child:not(:first-child), .faq blockquote p:last-child:not(:first-child), .link .description blockquote p:last-child:not(:first-child), .event_description blockquote p:last-child:not(:first-child) {
  position: relative;
  margin-top: 0;
  padding-top: 1.111111rem;
}
.cms blockquote p:last-child:not(:first-child) strong, .full_column.non-widget-area blockquote p:last-child:not(:first-child) strong, .textarea blockquote p:last-child:not(:first-child) strong, .spotlight_content blockquote p:last-child:not(:first-child) strong, .faq blockquote p:last-child:not(:first-child) strong, .link .description blockquote p:last-child:not(:first-child) strong, .event_description blockquote p:last-child:not(:first-child) strong {
  font-size: 1.3333333333rem;
  /* Monica Gellar: */
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.8px;
  color: #25282A;
}
.cms blockquote p:last-child:not(:first-child) em, .full_column.non-widget-area blockquote p:last-child:not(:first-child) em, .textarea blockquote p:last-child:not(:first-child) em, .spotlight_content blockquote p:last-child:not(:first-child) em, .faq blockquote p:last-child:not(:first-child) em, .link .description blockquote p:last-child:not(:first-child) em, .event_description blockquote p:last-child:not(:first-child) em {
  font-size: 0.8333333333rem;
  /* / Marketing Director: */
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0.5px;
  color: #EF7B45;
}
.cms blockquote p:last-child:not(:first-child) em:before, .full_column.non-widget-area blockquote p:last-child:not(:first-child) em:before, .textarea blockquote p:last-child:not(:first-child) em:before, .spotlight_content blockquote p:last-child:not(:first-child) em:before, .faq blockquote p:last-child:not(:first-child) em:before, .link .description blockquote p:last-child:not(:first-child) em:before, .event_description blockquote p:last-child:not(:first-child) em:before {
  content: " /  ";
}
.cms blockquote p:last-child:not(:first-child) strong, .cms blockquote p:last-child:not(:first-child) em, .full_column.non-widget-area blockquote p:last-child:not(:first-child) strong, .full_column.non-widget-area blockquote p:last-child:not(:first-child) em, .textarea blockquote p:last-child:not(:first-child) strong, .textarea blockquote p:last-child:not(:first-child) em, .spotlight_content blockquote p:last-child:not(:first-child) strong, .spotlight_content blockquote p:last-child:not(:first-child) em, .faq blockquote p:last-child:not(:first-child) strong, .faq blockquote p:last-child:not(:first-child) em, .link .description blockquote p:last-child:not(:first-child) strong, .link .description blockquote p:last-child:not(:first-child) em, .event_description blockquote p:last-child:not(:first-child) strong, .event_description blockquote p:last-child:not(:first-child) em {
  font-style: normal;
}
.cms blockquote p:last-child:not(:first-child):before, .full_column.non-widget-area blockquote p:last-child:not(:first-child):before, .textarea blockquote p:last-child:not(:first-child):before, .spotlight_content blockquote p:last-child:not(:first-child):before, .faq blockquote p:last-child:not(:first-child):before, .link .description blockquote p:last-child:not(:first-child):before, .event_description blockquote p:last-child:not(:first-child):before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  max-width: 100%;
  height: 2px;
  background: #EBEBEB;
}
.cms ul:not(.list), .full_column.non-widget-area ul:not(.list), .textarea ul:not(.list), .spotlight_content ul:not(.list), .faq ul:not(.list), .link .description ul:not(.list), .event_description ul:not(.list) {
  margin-bottom: 2.22222rem;
  padding-left: 10px;
}
.cms ul:not(.list) li, .full_column.non-widget-area ul:not(.list) li, .textarea ul:not(.list) li, .spotlight_content ul:not(.list) li, .faq ul:not(.list) li, .link .description ul:not(.list) li, .event_description ul:not(.list) li {
  margin-bottom: 7px;
  padding: 0 0 0 30px;
  font-weight: 300;
  line-height: 1.5;
}
.cms ul:not(.list) li:before, .full_column.non-widget-area ul:not(.list) li:before, .textarea ul:not(.list) li:before, .spotlight_content ul:not(.list) li:before, .faq ul:not(.list) li:before, .link .description ul:not(.list) li:before, .event_description ul:not(.list) li:before {
  content: "";
  display: block;
  visibility: visible;
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C3C4C4;
}
@media screen and (max-width: 767px) {
  .cms ul:not(.list) li:before, .full_column.non-widget-area ul:not(.list) li:before, .textarea ul:not(.list) li:before, .spotlight_content ul:not(.list) li:before, .faq ul:not(.list) li:before, .link .description ul:not(.list) li:before, .event_description ul:not(.list) li:before {
    top: 6px;
  }
}
.cms ul:not(.list) li ul, .cms ul:not(.list) li ol, .full_column.non-widget-area ul:not(.list) li ul, .full_column.non-widget-area ul:not(.list) li ol, .textarea ul:not(.list) li ul, .textarea ul:not(.list) li ol, .spotlight_content ul:not(.list) li ul, .spotlight_content ul:not(.list) li ol, .faq ul:not(.list) li ul, .faq ul:not(.list) li ol, .link .description ul:not(.list) li ul, .link .description ul:not(.list) li ol, .event_description ul:not(.list) li ul, .event_description ul:not(.list) li ol {
  margin-top: 10px;
  padding-left: 0;
}
.cms ol, .full_column.non-widget-area ol, .textarea ol, .spotlight_content ol, .faq ol, .link .description ol, .event_description ol {
  margin-bottom: 2.22222rem;
  padding-left: 2px;
}
.cms ol > li, .full_column.non-widget-area ol > li, .textarea ol > li, .spotlight_content ol > li, .faq ol > li, .link .description ol > li, .event_description ol > li {
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 0 53px;
  font-weight: 300;
  line-height: 1.5;
  counter-increment: li-counter;
}
.cms ol > li:before, .cms ol > li:after, .full_column.non-widget-area ol > li:before, .full_column.non-widget-area ol > li:after, .textarea ol > li:before, .textarea ol > li:after, .spotlight_content ol > li:before, .spotlight_content ol > li:after, .faq ol > li:before, .faq ol > li:after, .link .description ol > li:before, .link .description ol > li:after, .event_description ol > li:before, .event_description ol > li:after {
  content: counter(li-counter);
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 9px;
  width: 25px;
  height: 25px;
  font-size: 1.125rem;
  font-weight: 500;
}
.cms ol > li:after, .full_column.non-widget-area ol > li:after, .textarea ol > li:after, .spotlight_content ol > li:after, .faq ol > li:after, .link .description ol > li:after, .event_description ol > li:after {
  content: "/";
  z-index: 0;
  left: 25px;
  color: #EF7B45;
}
.cms ol > li ul, .cms ol > li ol, .full_column.non-widget-area ol > li ul, .full_column.non-widget-area ol > li ol, .textarea ol > li ul, .textarea ol > li ol, .spotlight_content ol > li ul, .spotlight_content ol > li ol, .faq ol > li ul, .faq ol > li ol, .link .description ol > li ul, .link .description ol > li ol, .event_description ol > li ul, .event_description ol > li ol {
  margin-top: 10px;
  padding-left: 0;
}

/* ----------------------------------------------------------------------------
= print styles
----------------------------------------------------------------------------- */
@media print {
  * {
    color: #444 !important;
    background: transparent !important;
    text-shadow: none !important;
  }
  header, footer, #branding, #cal_holder, #fb_window, #fb-root, .paging, .buttons, .one_sidebar_right #column_2, .ticket, .faq, .banner, .addthis_toolbox, .print, .seating, .no_print {
    display: none;
    height: 0 !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ")";
  }
  abbr:after {
    content: " (" attr(title) ")";
  }
  .ir a:after {
    content: "";
  } /* Don't show links for images */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  .news_tools {
    display: none;
  }
  .print_logo {
    display: block;
    width: 150px;
    height: 44px;
    padding-bottom: 10px;
  }
  .print_map {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #layout {
    padding-top: 10px;
    border-top: 1px solid #000;
  }
  .event_list a:after {
    content: "";
  }
  body#events.detail #column_1 .main_column {
    width: 600px;
  }
  body#events.detail #column_2 {
    display: block;
  }
  .column {
    width: 100% !important;
  }
}
