/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700|Montserrat:400,700,800");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

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

:root {
  font-size: 16px; }
  @media screen and (min-width: 700px) {
    :root {
      font-size: calc( 16px + (18 - 16) * ( (100vw - 700px) / (1000 - 700) )); } }
  @media screen and (min-width: 1000px) {
    :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. 
*/
/*
	How To Use:
	@include media($mobile){
	}
*/
/* ----------------------------------------------------------------------------
= 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; }

body:not(.user-is-tabbing) a:focus, body:not(.user-is-tabbing) *[tabindex="0"]:focus {
  outline: 0; }

body.user-is-tabbing a:focus, body.user-is-tabbing *[tabindex="0"]:focus {
  outline: auto;
  outline-offset: -2px; }

/* 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 {
  -webkit-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'] {
  -webkit-box-sizing: border-box;
          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 */
  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
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= 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
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=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 mixin and utility classname
------------------------------------------------------------------------------ */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .clearfix:after {
    clear: both; }

.clear {
  clear: both; }

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

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

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

.invisible {
  visibility: hidden; }

.hide {
  display: none; }

* {
  letter-spacing: 0.00em; }

.header-base, h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0 0 7px;
  font-family: "Montserrat", sans-serif;
  color: #000;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase; }

h1, .h1 {
  font-size: 3.1573345183rem; }
  @media screen and (max-width: 700px) {
    h1, .h1 {
      font-size: 2.368593037rem; } }

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 {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Maven Pro", sans-serif; }

.p-base, p, .p, address, .address, ol > li, table tr td {
  font-size: 1.125rem;
  font-family: "Maven Pro", sans-serif;
  line-height: 1.5; }

p, .p {
  margin: 0 0 20px; }
  p.lead, .p.lead {
    font-size: 1.424rem; }
  p strong, .p strong {
    font-weight: 700; }

address, .address {
  margin: 0 0 20px;
  font-style: normal;
  font-weight: 400;
  font-family: "Montserrat", sans-serif; }

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

.cms ul, .textarea ul, .spotlight_text ul, .faq ul, .event_description ul {
  margin-bottom: 20px; }
  .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .event_description ul li {
    font-size: 20px;
    line-height: 1.5;
    padding: 0 0 0px 35px;
    z-index: 1; }
    .cms ul li:before, .textarea ul li:before, .spotlight_text ul li:before, .faq ul li:before, .event_description ul li:before {
      content: '';
      position: absolute;
      top: 11px;
      left: 0;
      width: 12px;
      height: 12px;
      z-index: -1;
      background-color: #000; }
    .cms ul li:after, .textarea ul li:after, .spotlight_text ul li:after, .faq ul li:after, .event_description ul li:after {
      content: '';
      position: absolute;
      top: 13px;
      left: 2px;
      width: 12px;
      height: 12px;
      z-index: -2;
      background-color: #CE181E; }
    .cms ul li ul, .textarea ul li ul, .spotlight_text ul li ul, .faq ul li ul, .event_description ul li ul {
      margin-top: 10px; }

.faq ul, .link .list ul {
  margin-bottom: 20px; }
  .faq ul li, .link .list ul li {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 0 0px 35px;
    z-index: 1; }
    .faq ul li:before, .link .list ul li:before {
      content: '';
      position: absolute;
      top: 11px;
      left: 0;
      width: 10px;
      height: 10px;
      z-index: -1;
      background-color: #000; }
    .faq ul li:after, .link .list ul li:after {
      content: '';
      position: absolute;
      top: 13px;
      left: 2px;
      width: 10px;
      height: 10px;
      z-index: -2;
      background-color: #CE181E; }
    .faq ul li ul, .link .list ul li ul {
      margin-top: 10px; }

ol {
  margin-bottom: 20px; }

ol > li {
  position: relative;
  padding-left: 35px;
  counter-increment: li-counter;
  font-size: 20px;
  line-height: 1.5; }
  ol > li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0px;
    width: 25px;
    height: 25px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    content: counter(li-counter) "."; }
  .faq ol > li, .link .list ol > li {
    font-size: 18px; }
    .faq ol > li:before, .link .list ol > li:before {
      font-size: 16px; }

a {
  border: none;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  a:hover, a:focus {
    color: #CE181E; }
  .textarea p a:after, .textarea li a:after,
  .cms p a:after, .cms li a:after,
  .spotlight_content a:after, .m-eventDetailList__item a:after,
  .event_description a:after {
    bottom: -2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    width: 100%;
    content: "";
    display: block;
    background: #CE181E;
    -webkit-transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995);
    transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995); }
  .textarea p a:hover, .textarea p a:focus, .textarea p a:active, .textarea li a:hover, .textarea li a:focus, .textarea li a:active,
  .cms p a:hover,
  .cms p a:focus,
  .cms p a:active, .cms li a:hover, .cms li a:focus, .cms li a:active,
  .spotlight_content a:hover,
  .spotlight_content a:focus,
  .spotlight_content a:active, .m-eventDetailList__item a:hover, .m-eventDetailList__item a:focus, .m-eventDetailList__item a:active,
  .event_description a:hover,
  .event_description a:focus,
  .event_description a:active {
    color: #CE181E; }
    .textarea p a:hover:after, .textarea p a:focus:after, .textarea p a:active:after, .textarea li a:hover:after, .textarea li a:focus:after, .textarea li a:active:after,
    .cms p a:hover:after,
    .cms p a:focus:after,
    .cms p a:active:after, .cms li a:hover:after, .cms li a:focus:after, .cms li a:active:after,
    .spotlight_content a:hover:after,
    .spotlight_content a:focus:after,
    .spotlight_content a:active:after, .m-eventDetailList__item a:hover:after, .m-eventDetailList__item a:focus:after, .m-eventDetailList__item a:active:after,
    .event_description a:hover:after,
    .event_description a:focus:after,
    .event_description a:active:after {
      width: 0%; }

hr {
  display: block;
  height: 1px;
  background-color: #C2C2C2;
  border: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  clear: both; }

table {
  position: relative;
  margin: 0 0 15px; }
  table tr td {
    border: none;
    margin-bottom: 0;
    padding: 5px; }

.bold {
  font-weight: 900; }

.title_area {
  padding: 20px 0 0 0;
  margin: 0 auto 60px auto;
  text-align: left; }
  @media screen and (min-width: 1201px) {
    .title_area {
      max-width: calc(100% - 60px); } }
  @media screen and (max-width: 1200px) {
    .title_area {
      max-width: calc(100% - 40px); } }
  .title_area .breadcrumbs {
    margin: 0 0 40px 0;
    font-size: 13px;
    line-height: 16px;
    color: #000; }
    .title_area .breadcrumbs a:hover {
      color: #CE181E; }
    .title_area .breadcrumbs .breadcrumb_divider {
      color: #000;
      margin: 0 3px;
      display: inline-block; }
    .title_area .breadcrumbs span {
      color: #CE181E; }
  .title_area h1 {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 4px solid #CE181E; }
  .title_area .date {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 1px; }

.textarea h1,
.cms h1,
.spotlight_content h1, .m-eventDetailList__item h1,
.event_description h1, .textarea h2,
.cms h2,
.spotlight_content h2, .m-eventDetailList__item h2,
.event_description h2, .textarea h3,
.cms h3,
.spotlight_content h3, .m-eventDetailList__item h3,
.event_description h3, .textarea h4,
.cms h4,
.spotlight_content h4, .m-eventDetailList__item h4,
.event_description h4, .textarea h5,
.cms h5,
.spotlight_content h5, .m-eventDetailList__item h5,
.event_description h5, .textarea h6,
.cms h6,
.spotlight_content h6, .m-eventDetailList__item h6,
.event_description h6, .textarea
.h1,
.cms
.h1,
.spotlight_content
.h1, .m-eventDetailList__item
.h1,
.event_description
.h1, .textarea .h2,
.cms .h2,
.spotlight_content .h2, .m-eventDetailList__item .h2,
.event_description .h2, .textarea .h3,
.cms .h3,
.spotlight_content .h3, .m-eventDetailList__item .h3,
.event_description .h3, .textarea .h4,
.cms .h4,
.spotlight_content .h4, .m-eventDetailList__item .h4,
.event_description .h4, .textarea .h5,
.cms .h5,
.spotlight_content .h5, .m-eventDetailList__item .h5,
.event_description .h5, .textarea .h6,
.cms .h6,
.spotlight_content .h6, .m-eventDetailList__item .h6,
.event_description .h6 {
  margin-top: 60px; }
  .textarea h1.title,
  .cms h1.title,
  .spotlight_content h1.title, .m-eventDetailList__item h1.title,
  .event_description h1.title, .textarea h2.title,
  .cms h2.title,
  .spotlight_content h2.title, .m-eventDetailList__item h2.title,
  .event_description h2.title, .textarea h3.title,
  .cms h3.title,
  .spotlight_content h3.title, .m-eventDetailList__item h3.title,
  .event_description h3.title, .textarea h4.title,
  .cms h4.title,
  .spotlight_content h4.title, .m-eventDetailList__item h4.title,
  .event_description h4.title, .textarea h5.title,
  .cms h5.title,
  .spotlight_content h5.title, .m-eventDetailList__item h5.title,
  .event_description h5.title, .textarea h6.title,
  .cms h6.title,
  .spotlight_content h6.title, .m-eventDetailList__item h6.title,
  .event_description h6.title, .textarea
  .h1.title,
  .cms
  .h1.title,
  .spotlight_content
  .h1.title, .m-eventDetailList__item
  .h1.title,
  .event_description
  .h1.title, .textarea .h2.title,
  .cms .h2.title,
  .spotlight_content .h2.title, .m-eventDetailList__item .h2.title,
  .event_description .h2.title, .textarea .h3.title,
  .cms .h3.title,
  .spotlight_content .h3.title, .m-eventDetailList__item .h3.title,
  .event_description .h3.title, .textarea .h4.title,
  .cms .h4.title,
  .spotlight_content .h4.title, .m-eventDetailList__item .h4.title,
  .event_description .h4.title, .textarea .h5.title,
  .cms .h5.title,
  .spotlight_content .h5.title, .m-eventDetailList__item .h5.title,
  .event_description .h5.title, .textarea .h6.title,
  .cms .h6.title,
  .spotlight_content .h6.title, .m-eventDetailList__item .h6.title,
  .event_description .h6.title {
    margin-top: 0; }

blockquote {
  width: 1120px;
  max-width: calc(100vw - 80px);
  padding: 48px 50px 55px 170px;
  margin-top: 70px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  background: #000;
  margin-left: calc(-1/2*(1120px - 980px)); }
  @media screen and (max-width: 1320px) {
    blockquote {
      margin-left: calc((-1/2*(1120px - 980px)) - 1/2*(100vw - 1320px));
      max-width: calc(100vw - 180px); } }
  @media screen and (max-width: 1180px) {
    blockquote {
      margin-left: 0;
      max-width: 100%; } }
  @media screen and (max-width: 700px) {
    blockquote {
      padding: 70px 20px 20px 20px; } }
  blockquote:before {
    width: 112px;
    height: 77px;
    background-image: url("../images/svg/quote_marks.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 18px;
    z-index: 2; }
  blockquote:after {
    width: 150px;
    height: 192px;
    max-height: 50%;
    background: -webkit-gradient(linear, right top, left bottom, from(#1B1A1A), to(#000));
    background: linear-gradient(to bottom left, #1B1A1A, #000);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
  blockquote p {
    z-index: 5;
    position: relative;
    font-size: 1.424rem;
    color: #fff; }
    blockquote p:last-child {
      margin: 37px 0 0 0; }
      blockquote p:last-child strong {
        font-size: 12px;
        line-height: 16px;
        font-weight: 800;
        font-family: "Montserrat", sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        z-index: 1; }
        blockquote p:last-child strong:before {
          content: "";
          display: block;
          position: absolute;
          bottom: -2px;
          left: -2px;
          width: 100%;
          height: 8px;
          background: #CE181E;
          z-index: -1; }
        blockquote p:last-child strong em {
          font-family: "Maven Pro", sans-serif;
          font-size: 14px;
          line-height: 16px;
          font-weight: 400;
          display: inline-block;
          margin-left: 11px;
          font-style: normal;
          text-transform: capitalize;
          position: relative;
          z-index: 1; }
          blockquote p:last-child strong em:before {
            content: "";
            display: block;
            position: absolute;
            bottom: -4px;
            left: -11px;
            width: calc(100% + 11px);
            height: 12px;
            background: #000;
            z-index: -1; }

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail .news_thumb {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px; }
  @media screen and (min-width: 871px) {
    .news_detail .news_thumb {
      max-width: 50%; } }

.news_detail a.back {
  color: #000;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear; }
  .news_detail a.back svg {
    display: inline-block;
    margin: 0 9px 0 0; }
    .news_detail a.back svg polyline {
      stroke: #CE181E; }
  .news_detail a.back:hover {
    color: #CE181E; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list_header {
  width: 100%;
  color: #000; }
  .event_list_header .overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 auto 42px auto; }
    @media screen and (max-width: 1080px) {
      .event_list_header .overview {
        display: block; } }
  .event_list_header h1 {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    margin: 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase; }

.event_list_toggles {
  -ms-flex-item-align: center;
      align-self: center; }
  @media screen and (max-width: 1080px) {
    .event_list_toggles {
      display: inline-block;
      margin-top: 20px;
      vertical-align: top; } }
  @media screen and (max-width: 700px) {
    .event_list_toggles {
      display: block;
      margin-top: 10px; } }
  .event_list_toggles .toggle {
    margin-left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 116px;
    height: 40px;
    padding: 0 6px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    @media screen and (max-width: 700px) {
      .event_list_toggles .toggle {
        margin-left: 0; } }
    .event_list_toggles .toggle:hover {
      cursor: pointer;
      background: #CE181E; }
      .event_list_toggles .toggle:hover span {
        color: #fff; }
      .event_list_toggles .toggle:hover svg {
        fill: #fff; }
    .event_list_toggles .toggle.is-active svg {
      fill: #fff; }
  .event_list_toggles span {
    display: block;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 16px;
    font-weight: 800; }
  .event_list_toggles svg {
    fill: #fff;
    width: 28px;
    height: 28px;
    margin: 0 0 0 8px; }

.category-dropdown {
  position: relative;
  -ms-flex-item-align: center;
      align-self: center; }
  @media screen and (max-width: 1080px) {
    .category-dropdown {
      display: inline-block;
      margin-top: 20px;
      vertical-align: top; } }
  @media screen and (max-width: 700px) {
    .category-dropdown {
      display: block; } }
  .category-dropdown .select {
    background: rgba(0, 0, 0, 0.6);
    display: block;
    position: relative;
    width: 267px;
    height: 40px;
    line-height: 40px;
    border: none;
    margin: 0;
    padding: 0 0 0 20px;
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    cursor: pointer;
    outline: none;
    z-index: 8;
    text-align: left; }
    .category-dropdown .select .select_text {
      text-transform: capitalize; }
    .category-dropdown .select svg {
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear;
      float: right;
      position: absolute;
      top: 50%;
      right: 15px;
      width: 23px;
      height: 16px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      fill: none;
      fill-rule: evenodd;
      stroke: #fff;
      stroke-width: 1.5px;
      margin: 3px 0 0 0; }
    .category-dropdown .select.is-active {
      border-color: #CCCCCC; }
      .category-dropdown .select.is-active svg {
        -webkit-transform: rotate(180deg) translateY(-47%);
                transform: rotate(180deg) translateY(-47%);
        -webkit-transform-origin: 50% 0;
                transform-origin: 50% 0;
        margin: -2px 0 0 0; }
  .category-dropdown .choices {
    background: #fff;
    border-top: 2px solid #CE181E;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 267px;
    padding: 10px 10px 13px 10px;
    font-family: "Montserrat", sans-serif;
    z-index: 7;
    color: #000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    line-height: 29px;
    font-weight: 700; }
    .category-dropdown .choices.is-active {
      display: block; }
    .category-dropdown .choices li a, .category-dropdown .choices li span {
      display: block;
      padding: 0 10px;
      text-decoration: none;
      cursor: pointer;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear;
      text-transform: capitalize; }
    .category-dropdown .choices li:hover a,
    .category-dropdown .choices li:hover span,
    .category-dropdown .choices a.is-active span.is-active {
      background: #CE181E;
      color: #fff; }
    .category-dropdown .choices li:before {
      display: none; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail {
  min-height: 600px;
  zoom: 1;
  position: relative;
  margin-top: 40px; }
  .event_detail:before, .event_detail:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .event_detail:after {
    clear: both; }
  @media screen and (max-width: 870px) {
    .event_detail {
      margin-top: 20px; } }
  @media screen and (max-width: 700px) {
    .event_detail {
      margin-top: 10px; } }
  .event_detail.has_branding.one_sidebar_right .rightBreakout {
    top: -41px; }
    @media screen and (max-width: 870px) {
      .event_detail.has_branding.one_sidebar_right .rightBreakout {
        top: auto; } }
  .event_detail.has_branding .event_heading {
    padding: 34px 20px 48px 20px;
    margin: 0; }
    @media screen and (max-width: 870px) {
      .event_detail.has_branding .event_heading {
        background: #fff;
        padding-bottom: 40px; } }
    @media screen and (max-width: 700px) {
      .event_detail.has_branding .event_heading {
        padding: 30px 20px; } }
    .event_detail.has_branding .event_heading .title {
      color: #fff; }
      @media screen and (max-width: 870px) {
        .event_detail.has_branding .event_heading .title {
          color: #000; } }
    .event_detail.has_branding .event_heading .tagline {
      color: rgba(255, 255, 255, 0.6); }
      @media screen and (max-width: 870px) {
        .event_detail.has_branding .event_heading .tagline {
          color: #000; } }
    .event_detail.has_branding .event_heading.above_sidebar {
      display: none; }
    .event_detail.has_branding .event_heading.below_branding {
      display: block; }
  .event_detail .event_heading {
    margin: 0 0 81px 0; }
    @media screen and (max-width: 870px) {
      .event_detail .event_heading {
        margin: 0 0 60px 0; } }
    .event_detail .event_heading .title {
      color: #000;
      margin: 0; }
    .event_detail .event_heading .tagline {
      margin: -2px 0 0 0;
      color: #000;
      font-size: 1.424rem;
      font-family: "Maven Pro", sans-serif;
      font-weight: 400;
      text-transform: capitalize; }
    .event_detail .event_heading.above_sidebar {
      display: block; }
    .event_detail .event_heading.below_branding {
      display: none; }
  .event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
    display: none; }
  .event_detail .buttonWrapper .buttons {
    position: relative;
    color: white; }
    .event_detail .buttonWrapper .buttons a, .event_detail .buttonWrapper .buttons span {
      display: block;
      white-space: nowrap;
      width: 100%;
      padding: 20px;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 800;
      font-family: "Montserrat", sans-serif;
      background-color: #CE181E;
      background-image: url("../images/svg/edp_button_bg.svg");
      background-position: bottom center;
      background-size: 100% auto;
      background-repeat: no-repeat;
      text-align: center; }
    .event_detail .buttonWrapper .buttons a:hover, .event_detail .buttonWrapper .buttons a:focus, .event_detail .buttonWrapper .buttons a:active {
      background-image: none;
      background-color: #EC0C14; }
    .event_detail .buttonWrapper .buttons svg {
      display: none; }
  .event_detail .faq.content_item {
    max-width: 100%;
    width: 100%;
    margin: 0; }

.description_wrapper {
  margin: 0 0 60px 0; }
  .description_wrapper.short-description .event_description:after {
    display: none; }
  .description_wrapper .is-opened + .read-more:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin: -2px 0 0 10px; }
  .description_wrapper .read-more {
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    margin: 10px 0 0 0;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .description_wrapper .read-more:after {
      content: "";
      display: inline-block;
      background-image: url("../images/svg/read_more_arrow.svg");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 11px;
      height: 11px;
      margin: 2px 0 0 10px; }
    .description_wrapper .read-more:hover {
      color: #CE181E; }

.event_description {
  position: relative; }
  .event_description:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 96px;
    display: block;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
  .event_description.is-opened:after {
    display: none; }

.event_showings {
  margin: 0 0 60px 0; }
  .event_showings .list {
    position: relative;
    list-style-type: none; }
  .event_showings .cell {
    position: relative;
    float: left;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding-top: 4px; }
    .event_showings .cell .m-date__singleDate .m-date__month,
    .event_showings .cell .m-date__rangeFirst .m-date__month {
      font-weight: 800;
      font-size: 18px;
      line-height: 18px;
      color: #000;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif; }
    .event_showings .cell .m-date__singleDate .m-date__day,
    .event_showings .cell .m-date__rangeFirst .m-date__day {
      font-weight: 800;
      font-size: 18px;
      line-height: 18px;
      color: #000;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif; }
    .event_showings .cell .m-date__singleDate .m-date__weekday,
    .event_showings .cell .m-date__rangeFirst .m-date__weekday {
      font-family: "Maven Pro", sans-serif;
      font-size: 14px;
      line-height: 17px;
      font-weight: 400;
      color: #000;
      margin: 0 5px 0 8px; }
    .event_showings .cell .m-date__separator {
      font-weight: 800;
      font-size: 18px;
      line-height: 18px;
      color: #000;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif; }
    .event_showings .cell .m-date__rangeLast .m-date__day {
      font-weight: 800;
      font-size: 18px;
      line-height: 18px;
      color: #000;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif; }
    .event_showings .cell .m-date__rangeLast .m-date__weekday {
      font-family: "Maven Pro", sans-serif;
      font-size: 14px;
      line-height: 17px;
      font-weight: 400;
      color: #000;
      margin: 0 5px 0 8px; }
    .event_showings .cell.time {
      font-family: "Maven Pro", sans-serif;
      font-size: 14px;
      line-height: 17px;
      font-weight: 400;
      color: #000;
      margin-right: 5px; }
  .event_showings .additional_showings .listItem:first-child {
    padding-top: 22px; }
  .event_showings .listItem {
    position: relative;
    border-bottom: 1px solid #C2C2C2;
    padding: 22px 0 14px 0;
    min-height: 63px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .event_showings .listItem:hover {
      border-bottom-color: #000; }
    .event_showings .listItem:first-child {
      padding-top: 0;
      min-height: 41px; }
      @media screen and (max-width: 870px) {
        .event_showings .listItem:first-child {
          padding-top: 22px; } }
  .event_showings .buttons {
    float: right;
    padding-top: 0; }
    @media screen and (max-width: 700px) {
      .event_showings .buttons {
        width: 100%;
        margin: 10px 0 0 0; } }
    .event_showings .buttons a, .event_showings .buttons > span {
      position: relative;
      margin: 0;
      color: #000;
      padding: 5px 13px;
      font-weight: 800;
      letter-spacing: 1px;
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      line-height: 16px;
      display: inline-block;
      z-index: 1; }
      @media screen and (max-width: 700px) {
        .event_showings .buttons a, .event_showings .buttons > span {
          margin: 0;
          width: 100%;
          font-size: 14px;
          padding: 14.5px 12px;
          text-align: center; } }
      .event_showings .buttons a.more, .event_showings .buttons > span.more {
        display: none; }
      .event_showings .buttons a svg, .event_showings .buttons > span svg {
        display: none; }
    @media screen and (max-width: 870px) {
      .event_showings .buttons a {
        color: #fff; } }
    .event_showings .buttons a:before {
      display: block;
      content: "";
      width: 4px;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      background: #CE181E;
      z-index: -1;
      -webkit-transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995);
      transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995); }
      @media screen and (max-width: 870px) {
        .event_showings .buttons a:before {
          width: 100%; } }
    .event_showings .buttons a:hover, .event_showings .buttons a:focus, .event_showings .buttons a:active {
      color: #fff;
      -webkit-transition: all 650ms linear;
      transition: all 650ms linear; }
      .event_showings .buttons a:hover:before, .event_showings .buttons a:focus:before, .event_showings .buttons a:active:before {
        width: 100%; }
  .event_showings .additional_showings {
    display: none; }
  .event_showings .show-all-showings {
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    margin: 10px 0 0 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .event_showings .show-all-showings:after {
      content: "";
      display: inline-block;
      background-image: url("../images/svg/read_more_arrow.svg");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      width: 11px;
      height: 11px;
      margin: 2px 0 0 10px;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }
    .event_showings .show-all-showings:hover {
      color: #CE181E; }
    .event_showings .show-all-showings.is-opened:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      margin: -2px 0 0 10px; }

.eventDetailList {
  position: relative;
  font-family: "Maven Pro", sans-serif;
  color: #A4A4A4;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  overflow: hidden;
  padding: 0 11px;
  margin: 20px 0 0 0; }
  .eventDetailList a {
    color: #A4A4A4;
    position: relative; }
    .eventDetailList a:after {
      content: "";
      display: block;
      width: 100%;
      background: #A4A4A4;
      height: 1px;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      position: absolute;
      -webkit-transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995);
      transition: width 650ms cubic-bezier(0.795, 0.02, 0.225, 0.995); }
    .eventDetailList a:hover, .eventDetailList a:focus, .eventDetailList a:active {
      color: #fff; }
      .eventDetailList a:hover:after, .eventDetailList a:focus:after, .eventDetailList a:active:after {
        width: 0; }
  .eventDetailList .item {
    list-style-type: none;
    border-bottom: 1px solid #373737;
    padding: 0 0 20px 0;
    margin: 0 0 21px 0; }
    .eventDetailList .item:last-child {
      border-bottom: none;
      margin: 0; }
    .eventDetailList .item:before {
      display: none; }
    .eventDetailList .item .label {
      text-transform: uppercase;
      color: #fff;
      font-size: 16px;
      line-height: 16px;
      font-family: "Montserrat", sans-serif;
      letter-spacing: 1px;
      font-weight: 800;
      margin: 0 0 3px 0; }
    .eventDetailList .item p {
      font-size: 16px;
      line-height: 18px;
      font-weight: 500; }
      .eventDetailList .item p:last-child {
        margin: 0; }
    .eventDetailList .item svg {
      display: none; }

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content_item {
  width: 980px;
  margin: 0 auto 60px auto;
  max-width: calc(100% - 40px); }

.spotlight_image img {
  display: block;
  max-width: 100%;
  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 30px 30px 0; }
      @media screen and (max-width: 700px) {
        .content img[align=left], .content img.left {
          float: none;
          margin: 0 auto 20px;
          display: block; } }
    .content img[align=right], .content img.right {
      float: right;
      margin: 0 0 30px 30px; }
      @media screen and (max-width: 700px) {
        .content img[align=right], .content img.right {
          float: none;
          margin: 0 auto 20px;
          display: block; } }

.two-column {
  zoom: 1; }
  .two-column:before, .two-column:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .two-column:after {
    clear: both; }
  .two-column > ul {
    zoom: 1; }
    .two-column > ul:before, .two-column > ul:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .two-column > ul:after {
      clear: both; }
    .two-column > ul > li {
      width: 50%;
      float: left;
      margin: 0 0 30px 0;
      font-size: 1rem; }
      .two-column > ul > li:nth-child(odd) {
        clear: left; }
      @media screen and (max-width: 700px) {
        .two-column > ul > li {
          width: 100%;
          float: none; } }
      .two-column > ul > li strong {
        text-transform: uppercase;
        font-weight: 800; }

.side-by-side {
  zoom: 1;
  width: 50%;
  float: left; }
  .side-by-side:before, .side-by-side:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .side-by-side:after {
    clear: both; }
  .side-by-side:nth-child(2n+1) {
    clear: left; }
  @media screen and (max-width: 700px) {
    .side-by-side {
      width: 100%;
      float: none; } }

/* ----------------------------------------------------------------------------
= 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; } }
