/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Arvo:400,400i,700|Poppins:500,600,700,800,900&display=swap");
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 + (20 - 16) * ( (100vw - 700px) / (1000 - 700) )); } }
  @media screen and (min-width: 1000px) {
    :root {
      font-size: 20px; } }

/*
	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, body:not(.user-is-tabbing) button:focus {
  outline: 0; }

body.user-is-tabbing a:focus, body.user-is-tabbing *[tabindex="0"]:focus, body.user-is-tabbing button: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; }

button {
  background: none;
  border: none;
  padding: 0px; }

.hide, .hidden {
  display: none; }

.user-is-tabbing *:focus {
  outline: auto; }

/* ----------------------------------------------------------------------------
= 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, .news_detail .news_heading .date, .h6, address, .address, ol > li:before, blockquote p:last-child:not(:first-child) strong, .event_list_toggles span, .category-dropdown .select, .category-dropdown .choices ul li span, .description_wrapper .read-more, .event_showings .show-all-showings, .eventDetailList .item .label {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  color: #393D3F;
  letter-spacing: 0;
  line-height: 1.05;
  font-weight: 700; }

h1, .h1 {
  font-size: 3.05rem;
  font-weight: 800;
  width: 1140px;
  max-width: calc(100vw - 20px);
  padding: 0 0 10px 0;
  border-bottom: 1px solid #393D3F;
  margin: 0 0 40px 0;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }
  @media screen and (max-width: 870px) {
    h1, .h1 {
      width: 100%;
      max-width: 100%;
      left: 0;
      -webkit-transform: none;
              transform: none; } }
  @media screen and (max-width: 700px) {
    h1, .h1 {
      text-align: center;
      margin: 0 0 20px 0;
      font-size: 39px; } }
  h1:before, .h1:before {
    display: none; }

h2, .h2 {
  font-size: 1.953125rem;
  position: relative;
  padding-bottom: 15px; }
  h2:before, .h2:before {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #CB333B;
    bottom: 0;
    left: 0;
    position: absolute; }
  h2:not(.title), .h2:not(.title) {
    margin-top: 60px; }
  h2.long_title, .h2.long_title {
    font-size: 1.5625rem; }

h3, .h3 {
  font-size: 1.5625rem; }
  h3:before, .h3:before {
    display: none; }
  h3:not(.title), .h3:not(.title) {
    margin-top: 60px; }

h4, .h4 {
  font-size: 1.25rem; }
  h4:before, .h4:before {
    display: none; }
  h4:not(.title), .h4:not(.title) {
    margin-top: 60px; }

h5, .h5, .news_detail .news_heading .date {
  font-size: 1rem; }
  h5:before, .h5:before, .news_detail .news_heading .date:before {
    display: none; }
  h5:not(.title), .h5:not(.title), .news_detail .news_heading .date:not(.title) {
    margin-top: 60px; }

h6, .h6 {
  font-size: 0.8rem; }
  h6:before, .h6:before {
    display: none; }
  h6:not(.title), .h6:not(.title) {
    margin-top: 60px; }

.small_paragraph, .small p {
  font-size: 14px; }

.p-base, p, .p, .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, .event_description ul li, ol > li, table tr td, blockquote p:last-child:not(:first-child) strong em, .event_detail.one_sidebar_right .event_heading .tagline, .event_showings .listItem .time, .event_showings .listItem .cell:nth-child(2), .eventDetailList .item > span {
  font-size: 1rem;
  font-family: "Arvo", serif;
  letter-spacing: 0;
  line-height: 1.6; }

p, .p {
  margin: 0 0 20px; }
  p.lead, .p.lead {
    font-size: 24px;
    margin: 0 0 60px 0; }
    @media screen and (max-width: 700px) {
      p.lead, .p.lead {
        margin: 0 0 40px 0;
        text-align: center; } }
  p strong, .p strong {
    font-weight: 700; }

address, .address {
  font-weight: 600;
  margin: 0 0 20px;
  font-style: normal;
  line-height: 23px;
  font-size: 16px; }

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, .link .description ul, .event_description ul {
  margin-bottom: 20px; }
  .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, .event_description ul li {
    margin: 0 0 20px;
    padding: 0 0 0 50px; }
    .cms ul li:before, .textarea ul li:before, .spotlight_text ul li:before, .faq ul li:before, .link .description ul li:before, .event_description ul li:before {
      content: '';
      position: absolute;
      top: 13px;
      left: 0;
      width: 25px;
      height: 5px;
      background-color: #CB333B; }
    .cms ul li ul, .textarea ul li ul, .spotlight_text ul li ul, .faq ul li ul, .link .description ul li ul, .event_description ul li ul {
      margin-top: 10px; }

ol {
  margin-bottom: 20px; }

ol > li {
  margin: 0 0 20px;
  position: relative;
  padding-left: 50px;
  counter-increment: li-counter; }
  ol > li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0px;
    width: 30px;
    height: 30px;
    content: counter(li-counter);
    text-align: center;
    color: #fff;
    background: #A6192E;
    border-bottom-right-radius: 10px;
    font-size: 16px;
    padding-top: 7px; }

a {
  border: none;
  color: #A6192E;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  a:hover, a:focus {
    color: #CB333B; }
  .textarea p a, .textarea li a,
  .cms p a, .cms li a,
  .spotlight_content a, .m-eventDetailList__item a,
  .event_description a {
    text-decoration: underline; }
    .textarea p a:hover, .textarea p a:focus, .textarea li a:hover, .textarea li a:focus,
    .cms p a:hover,
    .cms p a:focus, .cms li a:hover, .cms li a:focus,
    .spotlight_content a:hover,
    .spotlight_content a:focus, .m-eventDetailList__item a:hover, .m-eventDetailList__item a:focus,
    .event_description a:hover,
    .event_description a:focus {
      text-decoration: none; }

hr {
  display: block;
  height: 1px;
  background-color: #393D3F;
  border: 0;
  margin-top: 40px;
  margin-bottom: 46px;
  clear: both; }

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

.breadcrumbs {
  margin: 0 auto;
  width: 1140px;
  max-width: calc(100% - 20px);
  margin: 0 auto 20px auto;
  font-size: 13px;
  line-height: 14px; }
  @media screen and (max-width: 700px) {
    .breadcrumbs {
      max-width: calc(100% - 20px);
      text-align: center; } }
  .breadcrumbs a, .breadcrumbs span {
    font-family: "Poppins", sans-serif;
    color: #393D3F;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 14px; }
  .breadcrumbs .breadcrumb_divider {
    margin: 0 7px; }
  .breadcrumbs a:hover, .breadcrumbs a:focus {
    color: #CB333B; }
  .breadcrumbs span:last-child {
    font-weight: 700; }

blockquote {
  padding: 0 0 0 120px;
  position: relative;
  margin: 60px 0 40px 0; }
  @media screen and (max-width: 700px) {
    blockquote {
      padding: 68px 0 0 0;
      text-align: center; } }
  blockquote:before {
    width: 61px;
    height: 48px;
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    left: 19px;
    background-image: url("../images/svg/quote.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
    @media screen and (max-width: 700px) {
      blockquote:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
  blockquote p {
    font-size: 1.44rem;
    line-height: 1.82; }
    blockquote p:last-child:not(:first-child) {
      margin: 15px 0 0 0;
      padding: 0 0 0 40px;
      line-height: 1;
      font-size: 20px;
      position: relative; }
      @media screen and (max-width: 700px) {
        blockquote p:last-child:not(:first-child) {
          margin: 20px 0 0 0;
          text-align: left; } }
      blockquote p:last-child:not(:first-child):before {
        width: 25px;
        height: 5px;
        position: absolute;
        z-index: 1;
        content: "";
        top: 13px;
        left: 0;
        background: #CB333B; }
      blockquote p:last-child:not(:first-child) strong {
        font-size: 20px;
        margin: 0;
        line-height: 27px; }
        blockquote p:last-child:not(:first-child) strong em {
          font-size: 17px;
          line-height: 27px;
          margin: 0;
          font-style: normal;
          font-weight: 400; }

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail .news_heading .date {
  font-size: 16px;
  padding: 0 0 12px 0;
  margin: 0 0 20px 0;
  position: relative; }
  .news_detail .news_heading .date:after {
    width: 50px;
    height: 5px;
    position: absolute;
    z-index: 1;
    content: "";
    bottom: 0;
    left: 0;
    background: #CB333B; }

.news_detail .news_thumb {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  max-width: 50%; }
  @media screen and (max-width: 700px) {
    .news_detail .news_thumb {
      max-width: 100%;
      width: 100%; } }
  .news_detail .news_thumb img {
    width: 100%;
    display: block; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
#events:not(.detail) .full_column {
  background: none; }
  #events:not(.detail) .full_column .breadcrumbs {
    margin-bottom: 10px;
    width: 1180px; }

.event_list_header {
  width: 1180px;
  max-width: calc(100% - 20px);
  border-bottom: 1px solid #393D3F;
  color: #393D3F;
  margin: 0 auto 40px auto; }
  .event_list_header .overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 auto; }
    @media screen and (max-width: 700px) {
      .event_list_header .overview {
        display: block; } }
  .event_list_header h1 {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    margin: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: auto;
    max-width: 100%;
    border-bottom: none; }

.event_list_toggles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 870px) {
    .event_list_toggles {
      display: none; } }
  .event_list_toggles .toggle {
    margin-left: 30px;
    color: #393D3F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    position: relative;
    z-index: 1; }
    .event_list_toggles .toggle:before {
      bottom: -1px;
      left: 0;
      height: 5px;
      background: #CB333B;
      content: "";
      position: absolute;
      width: 0;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .event_list_toggles .toggle:hover, .event_list_toggles .toggle:focus {
      cursor: pointer; }
      .event_list_toggles .toggle:hover svg *, .event_list_toggles .toggle:focus svg * {
        fill: #393D3F; }
    .event_list_toggles .toggle.calendar {
      display: none; }
    .event_list_toggles .toggle.is-active:before {
      width: 100%; }
    .event_list_toggles .toggle.is-active svg * {
      fill: #393D3F; }
  .event_list_toggles span {
    display: block;
    text-align: left;
    text-transform: uppercase;
    margin: 0 10px 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 13px; }
  .event_list_toggles svg {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    .event_list_toggles svg * {
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
      fill: transparent; }

.category-dropdown {
  position: relative;
  margin-right: 30px;
  margin-bottom: 15px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  z-index: 20;
  width: 300px; }
  @media screen and (max-width: 700px) {
    .category-dropdown {
      margin-right: auto;
      margin-left: auto; } }
  .category-dropdown .select {
    font-size: 16px;
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 41px;
    background: white;
    margin: 0;
    padding: 0 40px 0 15px;
    color: #393D3F;
    cursor: pointer;
    outline: none;
    z-index: 5;
    text-align: left;
    border-left: 10px solid rgba(220, 204, 163, 0.7);
    border-bottom-right-radius: 10px;
    -webkit-transition: 200ms box-shadow linear;
    -webkit-transition: 200ms -webkit-box-shadow linear;
    transition: 200ms -webkit-box-shadow linear;
    transition: 200ms box-shadow linear;
    transition: 200ms box-shadow linear, 200ms -webkit-box-shadow linear; }
    .category-dropdown .select:after {
      width: 0;
      height: 5px;
      left: -10px;
      bottom: 0;
      position: absolute;
      content: "";
      display: block;
      background: #CB333B;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .category-dropdown .select svg {
      float: right;
      position: absolute;
      top: 50%;
      right: 15px;
      width: 15px;
      height: 12px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      fill: none;
      fill-rule: evenodd;
      stroke: #393D3F;
      stroke-width: 2px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .category-dropdown .select:hover, .category-dropdown .select:focus {
      -webkit-box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25);
              box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25); }
    .category-dropdown .select.is-active {
      -webkit-transition: none;
      transition: none;
      background: none;
      border-left-color: transparent;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .category-dropdown .select.is-active:after {
        width: 80px; }
      .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; }
  .category-dropdown .choices {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 25px 20px 25px;
    font-family: "Poppins", sans-serif;
    z-index: 3; }
    .category-dropdown .choices:before {
      width: 100%;
      height: calc(100% + 40px);
      -webkit-box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25);
              box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25);
      border-bottom-right-radius: 10px;
      border-left: 10px solid rgba(220, 204, 163, 0.8);
      bottom: 0;
      left: 0;
      position: absolute;
      background: #fff;
      content: "";
      display: block; }
    .category-dropdown .choices.is-active {
      display: block; }
    .category-dropdown .choices ul li span {
      cursor: pointer;
      font-weight: 500;
      font-size: 13px;
      line-height: 16px;
      padding: 7px 0;
      display: block;
      margin: 0;
      color: #393D3F; }
      .category-dropdown .choices ul li span:hover, .category-dropdown .choices ul li span:focus, .category-dropdown .choices ul li span.active {
        color: #CB333B; }

.event_list {
  /******
    *
    *    The following files are also available for you to use:
    *    _events_list_grid.scss
    *    _events_list_listing.scss
    *
    *****/ }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail.one_sidebar_right {
  min-height: 600px;
  zoom: 1;
  position: relative;
  z-index: 1;
  padding-top: 66px; }
  .event_detail.one_sidebar_right:before, .event_detail.one_sidebar_right:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .event_detail.one_sidebar_right:after {
    clear: both; }
  @media screen and (max-width: 700px) {
    .event_detail.one_sidebar_right {
      padding-top: 20px; } }
  .event_detail.one_sidebar_right:before {
    content: "";
    display: block;
    width: calc(1075px + 1/2*(100vw - 1440px));
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    max-width: 100%;
    background: #fff;
    z-index: -1;
    visibility: visible; }
    @media screen and (max-width: 1440px) {
      .event_detail.one_sidebar_right:before {
        width: 1075px; } }
  .event_detail.one_sidebar_right.has_branding {
    padding-top: 0; }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right.has_branding {
        padding-top: 0; } }
    .event_detail.one_sidebar_right.has_branding .event_heading {
      padding: 30px 0 0 0; }
      @media screen and (max-width: 700px) {
        .event_detail.one_sidebar_right.has_branding .event_heading {
          padding: 10px; } }
    .event_detail.one_sidebar_right.has_branding .rightBreakout {
      top: 0; }
  .event_detail.one_sidebar_right .rightBreakout {
    top: 17px; }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right .rightBreakout {
        top: auto; } }
  .event_detail.one_sidebar_right .event_heading {
    margin: 0 0 60px 0;
    padding: 0; }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right .event_heading {
        padding: 0 10px 10px 10px;
        text-align: center;
        margin: 0; } }
    .event_detail.one_sidebar_right .event_heading.below_branding, .event_detail.one_sidebar_right .event_heading.inside_sidebar {
      display: none; }
    .event_detail.one_sidebar_right .event_heading .title {
      width: auto;
      left: 0;
      position: static;
      padding: 0;
      border: none;
      max-width: 100%;
      margin: 0 0 15px 0;
      -webkit-transform: none;
              transform: none; }
      @media screen and (max-width: 700px) {
        .event_detail.one_sidebar_right .event_heading .title {
          margin: 0 0 10px 0; } }
    .event_detail.one_sidebar_right .event_heading .tagline {
      font-weight: 400;
      margin: 0;
      padding: 0; }
      @media screen and (max-width: 700px) {
        .event_detail.one_sidebar_right .event_heading .tagline {
          font-size: 14px; } }
      .event_detail.one_sidebar_right .event_heading .tagline:before {
        display: none; }
  .event_detail.one_sidebar_right .buttonWrapper .buttons > a.tickets, .event_detail.one_sidebar_right .buttonWrapper .buttons > span.tickets {
    margin: -17px 0 0 0;
    width: calc(100% - 15px); }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right .buttonWrapper .buttons > a.tickets, .event_detail.one_sidebar_right .buttonWrapper .buttons > span.tickets {
        width: 280px;
        margin: 0 auto -20px auto;
        max-width: calc(100% - 40px); } }
  .event_detail.one_sidebar_right .buttonWrapper .title, .event_detail.one_sidebar_right .buttonWrapper .tagline {
    display: none; }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right .buttonWrapper .title, .event_detail.one_sidebar_right .buttonWrapper .tagline {
        display: block; } }
  .event_detail.one_sidebar_right .buttonWrapper .date {
    display: none; }
  .event_detail.one_sidebar_right .buttons {
    position: relative;
    color: white; }
    .event_detail.one_sidebar_right .buttons a, .event_detail.one_sidebar_right .buttons span {
      white-space: nowrap; }
    .event_detail.one_sidebar_right .buttons svg {
      display: inline-block;
      vertical-align: middle;
      margin-right: 5px;
      fill: #fff; }
  .event_detail.one_sidebar_right .content_item {
    width: 100%;
    max-width: 100%; }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right .content_item {
        margin: 0 auto;
        max-width: calc(100% - 20px); } }
  .event_detail.one_sidebar_right #branding.spotlight_image, .event_detail.one_sidebar_right #branding .rsContent, .event_detail.one_sidebar_right #branding .rsVideoContainer {
    overflow: hidden;
    max-height: calc(100vh - 275px); }
    @media screen and (max-width: 1080px) {
      .event_detail.one_sidebar_right #branding.spotlight_image, .event_detail.one_sidebar_right #branding .rsContent, .event_detail.one_sidebar_right #branding .rsVideoContainer {
        max-height: calc(100vh - 240px); } }
    @media screen and (max-width: 700px) {
      .event_detail.one_sidebar_right #branding.spotlight_image, .event_detail.one_sidebar_right #branding .rsContent, .event_detail.one_sidebar_right #branding .rsVideoContainer {
        max-height: calc(100vh - 280px); } }

@media screen and (max-width: 700px) {
  h2.details {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 20px); } }

.description_wrapper {
  margin: 0 0 60px 0; }
  @media screen and (max-width: 700px) {
    .description_wrapper {
      margin: 0 auto 30px auto;
      max-width: calc(100% - 20px); } }
  .description_wrapper.short-description .event_description:after {
    display: none; }
  .description_wrapper .event_description {
    position: relative; }
    .description_wrapper .event_description:after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0px;
      width: 100%;
      height: 50px;
      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 ); }
    .description_wrapper .event_description.is-opened:after {
      display: none; }
    .description_wrapper .event_description.is-opened + .read-more:before, .description_wrapper .event_description.is-opened + .read-more:after {
      -webkit-transform: translate(-50%, -50%) rotate(180deg);
              transform: translate(-50%, -50%) rotate(180deg); }
  .description_wrapper .read-more {
    margin: 10px 0 0 0;
    font-size: 13px;
    letter-spacing: 0;
    color: #A6192E;
    text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    position: relative;
    padding: 0 0 0 20px; }
    @media screen and (max-width: 700px) {
      .description_wrapper .read-more {
        margin: 30px 0 0 0; } }
    .description_wrapper .read-more:hover, .description_wrapper .read-more:focus {
      cursor: pointer;
      color: #CB333B; }
      .description_wrapper .read-more:hover:before, .description_wrapper .read-more:focus:before {
        opacity: 0; }
      .description_wrapper .read-more:hover::after, .description_wrapper .read-more:focus::after {
        opacity: 1; }
    .description_wrapper .read-more:before {
      content: "";
      display: block;
      width: 13px;
      height: 10px;
      background: url("../images/svg/arrow_down.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .description_wrapper .read-more:after {
      content: "";
      display: block;
      width: 13px;
      height: 10px;
      background: url("../images/svg/arrow_down_highlight.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 0;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }

.event_showings {
  margin: 0 0 60px 0; }
  @media screen and (max-width: 700px) {
    .event_showings {
      width: 500px;
      margin: 0 auto 30px auto;
      max-width: calc(100% - 20px); } }
  .event_showings .listItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: end;
        align-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 0 30px 0; }
    @media screen and (max-width: 870px) {
      .event_showings .listItem {
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid #393D3F;
        margin: 0 0 20px 0; } }
    .event_showings .listItem:hover .showings_date .m-date__month:after, .event_showings .listItem:focus .showings_date .m-date__month:after {
      width: 65px; }
    .event_showings .listItem.listItehasNoLink {
      border-bottom: 1px solid #393D3F; }
      .event_showings .listItem.listItehasNoLink .showings_date,
      .event_showings .listItem.listItehasNoLink .time,
      .event_showings .listItem.listItehasNoLink .cell:nth-child(2) {
        border-bottom: none; }
    .event_showings .listItem .showings_date {
      border-bottom: 1px solid #393D3F;
      width: 40%; }
      @media screen and (max-width: 870px) {
        .event_showings .listItem .showings_date {
          width: 100%;
          border-bottom: none;
          margin: 0 0 12px 0;
          display: block; } }
      .event_showings .listItem .showings_date .m-date__month, .event_showings .listItem .showings_date .m-date__day, .event_showings .listItem .showings_date .m-date__year, .event_showings .listItem .showings_date .m-date__separator {
        font-family: "Poppins", sans-serif;
        color: #393D3F;
        letter-spacing: 0;
        line-height: 1.05;
        font-weight: 700;
        font-size: 16px;
        position: relative;
        display: inline-block;
        margin-right: 2px; }
        @media screen and (max-width: 700px) {
          .event_showings .listItem .showings_date .m-date__month, .event_showings .listItem .showings_date .m-date__day, .event_showings .listItem .showings_date .m-date__year, .event_showings .listItem .showings_date .m-date__separator {
            font-size: 14px; } }
      .event_showings .listItem .showings_date .m-date__month {
        position: relative;
        padding: 0 0 12px 0;
        display: inline-block;
        margin-right: 1px; }
        @media screen and (max-width: 870px) {
          .event_showings .listItem .showings_date .m-date__month {
            padding: 0 0 10px 0; } }
        .event_showings .listItem .showings_date .m-date__month:after {
          width: 50px;
          height: 5px;
          position: absolute;
          z-index: 1;
          content: "";
          bottom: -1px;
          left: 0;
          background: #CB333B;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          @media screen and (max-width: 870px) {
            .event_showings .listItem .showings_date .m-date__month:after {
              left: 0;
              width: 50px; } }
      .event_showings .listItem .showings_date .m-date__weekday {
        position: relative;
        display: inline-block;
        font-family: "Arvo", serif;
        letter-spacing: 0;
        line-height: 25px;
        font-size: 14px;
        font-weight: 400;
        padding: 0 0 2px 26px;
        vertical-align: middle; }
        @media screen and (max-width: 700px) {
          .event_showings .listItem .showings_date .m-date__weekday {
            font-size: 12px;
            line-height: 20px; } }
        .event_showings .listItem .showings_date .m-date__weekday:before {
          height: 25px;
          width: 1px;
          background: #393D3F;
          content: "";
          position: absolute;
          top: 50%;
          left: 14px;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%); }
          @media screen and (max-width: 700px) {
            .event_showings .listItem .showings_date .m-date__weekday:before {
              height: 20px; } }
    .event_showings .listItem .cell:nth-child(2) {
      text-transform: uppercase; }
      .event_showings .listItem .cell:nth-child(2).time {
        text-transform: lowercase; }
    .event_showings .listItem .time, .event_showings .listItem .cell:nth-child(2) {
      border-bottom: 1px solid #393D3F;
      width: 20%;
      text-align: center;
      padding: 0 0 12px 0;
      font-size: 14px; }
      @media screen and (max-width: 870px) {
        .event_showings .listItem .time, .event_showings .listItem .cell:nth-child(2) {
          width: 100%;
          border-bottom: none;
          margin: 0 0 10px 0;
          padding: 0;
          text-align: left;
          display: block; } }
    .event_showings .listItem .buttons {
      width: 40%;
      position: relative;
      z-index: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end; }
      @media screen and (max-width: 870px) {
        .event_showings .listItem .buttons {
          width: 100%;
          display: block; } }
      .event_showings .listItem .buttons:before {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        bottom: 0;
        left: 0;
        background: #393D3F;
        z-index: 1; }
        @media screen and (max-width: 870px) {
          .event_showings .listItem .buttons:before {
            display: none; } }
  .event_showings .additional_showings {
    display: none; }
  .event_showings .show-all-showings {
    font-size: 13px;
    letter-spacing: 0;
    color: #A6192E;
    text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    position: relative;
    padding: 0 0 0 20px;
    margin: 30px 0 0 0;
    display: block; }
    .event_showings .show-all-showings:hover, .event_showings .show-all-showings:focus {
      cursor: pointer;
      color: #CB333B; }
      .event_showings .show-all-showings:hover:before, .event_showings .show-all-showings:focus:before {
        opacity: 0; }
      .event_showings .show-all-showings:hover::after, .event_showings .show-all-showings:focus::after {
        opacity: 1; }
    .event_showings .show-all-showings:before {
      content: "";
      display: block;
      width: 13px;
      height: 10px;
      background: url("../images/svg/arrow_down.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .event_showings .show-all-showings:after {
      content: "";
      display: block;
      width: 13px;
      height: 10px;
      background: url("../images/svg/arrow_down_highlight.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 0;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .event_showings .show-all-showings.is-opened:before, .event_showings .show-all-showings.is-opened:after {
      -webkit-transform: translate(-50%, -50%) rotate(180deg);
              transform: translate(-50%, -50%) rotate(180deg); }

.eventDetailList {
  position: relative;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  padding: 25px 15px 20px 15px;
  border-left: 10px solid rgba(220, 204, 163, 0.7);
  border-bottom: 10px solid rgba(220, 204, 163, 0.7); }
  @media screen and (max-width: 700px) {
    .eventDetailList {
      border-top: 10px solid rgba(220, 204, 163, 0.7);
      border-left: none;
      padding: 30px 20px 20px 20px;
      margin: 0 0 30px 0; } }
  .eventDetailList .item {
    padding: 0 5px 15px 5px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #393D3F; }
    .eventDetailList .item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0; }
    .eventDetailList .item:before {
      display: none; }
    .eventDetailList .item .label {
      font-size: 16px;
      color: #393D3F;
      margin: 0 0 4px 0; }
    .eventDetailList .item > span {
      font-size: 17px;
      color: #393D3F; }
      .eventDetailList .item > span a {
        color: #393D3F;
        text-decoration: underline; }
        .eventDetailList .item > span a:hover, .eventDetailList .item > span a:focus {
          text-decoration: none;
          color: #CB333B; }
    .eventDetailList .item svg {
      display: none; }

.event_next_prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px; }
  .event_next_prev .event_next_button {
    margin-left: auto;
    text-align: right; }

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content_item {
  margin: 0 auto 60px auto;
  width: 900px;
  max-width: calc(100% - 20px); }
  @media screen and (max-width: 700px) {
    .content_item {
      margin: 0 auto 40px auto; } }
  .content_item#branding {
    width: 100%;
    margin: 0;
    max-width: 100%; }

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

.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; } }
