@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html {
  box-sizing: border-box; }

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

/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: none; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* END RESET CSS */
/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {
  font: 13px/1.231 sans-serif;
  *font-size: small; }

/* hack retained to preserve specificity */
select, input, textarea, button {
  font: 99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* 
 * minimal base styles 
 */
body, select, input, textarea {
  color: #111; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none; }

a, a:active, a:visited {
  color: #FD0; }

a:hover {
  color: #fff; }

ul, ol {
  margin-left: 1.8em; }

ol {
  list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li {
  margin: 0; }

small {
  font-size: 85%; }

strong, th {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

sub {
  vertical-align: sub;
  font-size: smaller; }

sup {
  vertical-align: super;
  font-size: smaller; }

pre {
  padding: 15px;
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

textarea {
  overflow: auto; }

/* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
  margin-left: -7px; }

/* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
input[type=button], input[type=submit], button {
  cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* colors for form validity */
input:invalid, textarea:invalid {
  /*      border-radius: 1px;
      -moz-box-shadow: 0px 0px 5px red; 
   -webkit-box-shadow: 0px 0px 5px red; 
           box-shadow: 0px 0px 5px red;*/ }

.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
  /* background-color: #f0dddd; */ }

/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #333;
  color: #fff;
  text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #333; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
  width: auto;
  overflow: visible; }

/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* 
 * Non-semantic helper classes 
 */
/* for image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden; }

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden; }

.clearfix:after {
  clear: both; }

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
  zoom: 1; }

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */ }
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */ }
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ }
/*
	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($tablet){
	
	}
	@include media($mobile){
	
	}

*/
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
@font-face {
  font-family: 'allerbold';
  src: url("/fonts/aller-bold-webfont.eot");
  src: url("/fonts/aller-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/aller-bold-webfont.woff") format("woff"), url("/fonts/aller-bold-webfont.ttf") format("truetype"), url("/fonts/aller-bold-webfont.svg#allerbold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'allerregular';
  src: url("/fonts/aller-webfont.eot");
  src: url("/fonts/aller-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/aller-webfont.woff") format("woff"), url("/fonts/aller-webfont.ttf") format("truetype"), url("/fonts/aller-webfont.svg#allerregular") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Default Text Styles
----------------------------------------------------------------------------- */
h1 {
  margin: 0 0 10px;
  padding: 0;
  color: #FF9000;
  font: normal 30px/120% "allerbold", Verdana, sans-serif; }
  h1 a, h1 a:visited {
    text-decoration: none;
    color: #FF9000; }
    h1 a:hover, h1 a:focus, h1 a:visited:hover, h1 a:visited:focus {
      color: #FF9000;
      text-decoration: underline; }

h2 {
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font: normal 22px/120% "allerbold", Verdana, sans-serif; }
  h2 a, h2 a:visited {
    text-decoration: none;
    color: #333; }
    h2 a:hover, h2 a:focus, h2 a:visited:hover, h2 a:visited:focus {
      color: #333;
      text-decoration: underline; }

h3 {
  margin: 0 0 10px;
  padding: 0;
  color: #006BB6;
  font: normal 20px/150% "allerbold", Verdana, sans-serif; }
  h3 a, h3 a:visited {
    text-decoration: none;
    color: #006BB6; }
    h3 a:hover, h3 a:focus, h3 a:visited:hover, h3 a:visited:focus {
      color: #006BB6;
      text-decoration: underline; }

h4 {
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font: normal 16px/150% "allerbold", Verdana, sans-serif; }
  h4 a, h4 a:visited {
    text-decoration: none;
    color: #333; }
    h4 a:hover, h4 a:focus, h4 a:visited:hover, h4 a:visited:focus {
      color: #333;
      text-decoration: underline; }

h5 {
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font: normal 14px/150% "allerbold", Verdana, sans-serif; }
  h5 a, h5 a:visited {
    color: #333;
    text-decoration: none; }
    h5 a:hover, h5 a:focus, h5 a:visited:hover, h5 a:visited:focus {
      color: #333;
      text-decoration: underline; }

h6 {
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font: normal 14px/150% "allerbold", Verdana, sans-serif; }
  h6 a, h6 a:visited {
    color: #333;
    text-decoration: none; }
    h6 a:hover, h6 a:focus, h6 a:visited:hover, h6 a:visited:focus {
      color: #333;
      text-decoration: underline; }

p, address {
  margin: 0;
  padding: 0 0 10px;
  color: #333;
  font: normal 14px/150% "allerregular", Verdana, sans-serif; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0;
  padding: 5px 0 8px;
  color: #333;
  font: normal 14px/24px "allerregular", Verdana, sans-serif; }

ul {
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none; }
  ul li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit;
    line-height: 130%; }
  ul ul {
    margin: 0; }
  .cms ul, .textarea ul, .spotlight_text ul, .faq ul, .link .description ul, .map_window ul {
    list-style-type: none;
    list-style-position: inside;
    list-style-image: none;
    padding: 5px 0 8px 0;
    margin: 0; }
    .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, .map_window ul li {
      margin: 0;
      padding: 0 0 6px 15px;
      list-style-type: inherit;
      line-height: 130%;
      background: url(../images/bullet-orange.png) no-repeat 1px 6px; }
    .cms ul ul, .textarea ul ul, .spotlight_text ul ul, .faq ul ul, .link .description ul ul, .map_window ul ul {
      margin: 0; }

ol {
  list-style: decimal;
  list-style-position: inside; }
  ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit;
    line-height: 130%; }

a, a:visited {
  color: #006BB6;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    text-decoration: underline;
    color: #FF9000; }

hr {
  padding: 0 0 125px;
  margin-bottom: -110px;
  background: url(../images/lead-p-footer.png) no-repeat center 0;
  background-size: 100% auto;
  clear: both;
  border-color: transparent;
  position: relative;
  z-index: -1; }

tr {
  color: #333;
  font: normal 14px/150% "allerregular", Verdana, sans-serif;
  color: #333; }
  tr td {
    padding: 5px;
    border: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative; }
  .event_list .list {
    padding: 0 10px;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: black; }
  .event_list .entry {
    border-top: 1px solid black;
    padding: 15px 10px; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 5px 0 0;
      width: 365px; }
      .event_list .entry .info h3 {
        margin: 0; }
        .event_list .entry .info h3 a {
          font-size: 16px;
          text-transform: none;
          color: red;
          text-decoration: none;
          font-weight: 500; }
          .event_list .entry .info h3 a:hover {
            color: black; }
      .event_list .entry .info h4 {
        color: black;
        font-size: 14px;
        font-weight: 500;
        margin: 0 0 5px;
        text-transform: none; }
      .event_list .entry .info .date {
        font-size: 12px;
        color: black;
        font-weight: 500;
        text-transform: uppercase;
        font-style: normal;
        margin: 0 0 10px; }
    .event_list .entry .thumb {
      width: 110px;
      height: 85px;
      margin: 0 15px 0 0;
      float: left;
      border: 5px solid black; }
      .event_list .entry .thumb a {
        display: block;
        width: 110px;
        height: 85px; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 110px;
        height: 85px; }
      .event_list .entry .thumb:hover {
        border-color: grey; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .header {
  margin: 0 0 10px;
  float: left;
  width: 400px;
  padding: 0;
  border-bottom: 1px solid black; }
.event_detail .details {
  width: 200px;
  background: grey;
  margin: 0 0 15px;
  position: relative;
  padding: 0 0 10px; }
  .event_detail .details ul {
    list-style: none;
    list-style-image: none;
    padding: 10px;
    margin: 0 0 5px; }
    .event_detail .details ul li {
      margin: 0;
      padding: 10px 0 0;
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      font-size: 12px;
      color: black; }
      .event_detail .details ul li label {
        cursor: default;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        color: black;
        line-height: 100%;
        padding: 0;
        margin: 0 0 5px;
        display: block;
        clear: both; }
      .event_detail .details ul li.date {
        border-top: none; }
      .event_detail .details ul li.availability {
        border-bottom: none; }
  .event_detail .details .ticket {
    width: 165px;
    height: 40px;
    padding: 0;
    margin: 0 auto 10px; }
    .event_detail .details .ticket span, .event_detail .details .ticket a, .event_detail .details .ticket a:link, .event_detail .details .ticket a:visited {
      color: red;
      font-size: 22px;
      display: block;
      width: 115px;
      height: 40px;
      text-align: left;
      text-decoration: none;
      line-height: 44px;
      padding: 0 0 0 50px;
      position: relative;
      font-weight: 400; }
      .event_detail .details .ticket span:hover, .event_detail .details .ticket a:hover, .event_detail .details .ticket a:link:hover, .event_detail .details .ticket a:visited:hover {
        text-decoration: underline; }
.event_detail .event_body {
  padding: 0 10px; }
.event_detail .showings {
  margin: 0 0 20px;
  float: left;
  width: 530px; }
  .event_detail .showings h3 {
    text-align: left;
    width: 100%;
    padding: 4px 0;
    margin: 0 0 5px;
    font-size: 14px;
    text-transform: uppercase; }
  .event_detail .showings ul {
    border-top: 1px solid black;
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      border-bottom: 1px solid black;
      padding: 8px 0 6px;
      margin: 0 25px 0 0;
      color: black;
      font-size: 12px;
      position: relative;
      font-weight: bold;
      line-height: 24px;
      width: 252px;
      float: left; }
      .event_detail .showings ul li.entry.alt {
        margin-right: 0; }
      .event_detail .showings ul li span.date {
        line-height: 24px; }
      .event_detail .showings ul li span.time {
        color: black;
        position: absolute;
        right: 35px; }
      .event_detail .showings ul li .buttons {
        float: right;
        margin: 0; }
      .event_detail .showings ul li a.ical {
        text-indent: -5000px;
        display: block;
        width: 22px;
        height: 22px;
        background: url(../images/icons.png) no-repeat 0 0;
        padding: 0;
        margin: 0; }
        .event_detail .showings ul li a.ical:hover {
          background-position: 0 -22px; }
.event_detail a.print {
  display: block;
  height: 22px;
  background: url(../images/icons.png) no-repeat 0 -44px;
  padding: 0 0 0 26px;
  margin: 0 20px 0 0;
  line-height: 22px;
  text-decoration: none;
  float: left;
  color: black;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase; }
  .event_detail a.print:hover {
    background-position: 0 -66px; }
.event_detail .share_bar {
  padding: 15px 0;
  margin: 0 0 15px;
  float: left;
  width: 400px; }
.event_detail .dsq-global-toolbar-dropdown-container {
  display: none !important; }
.event_detail .group_sales {
  padding: 0;
  margin: 0 0 15px 0;
  float: left;
  width: 530px; }
  .event_detail .group_sales h3 {
    text-align: left;
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative; }
  .event_list .list {
    padding: 0 10px;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: black; }
  .event_list .entry {
    border-top: 1px solid black;
    padding: 15px 10px; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 5px 0 0;
      width: 365px; }
      .event_list .entry .info h3 {
        margin: 0; }
        .event_list .entry .info h3 a {
          font-size: 16px;
          text-transform: none;
          color: red;
          text-decoration: none;
          font-weight: 500; }
          .event_list .entry .info h3 a:hover {
            color: black; }
      .event_list .entry .info h4 {
        color: black;
        font-size: 14px;
        font-weight: 500;
        margin: 0 0 5px;
        text-transform: none; }
      .event_list .entry .info .date {
        font-size: 12px;
        color: black;
        font-weight: 500;
        text-transform: uppercase;
        font-style: normal;
        margin: 0 0 10px; }
    .event_list .entry .thumb {
      width: 110px;
      height: 85px;
      margin: 0 15px 0 0;
      float: left;
      border: 5px solid black; }
      .event_list .entry .thumb a {
        display: block;
        width: 110px;
        height: 85px; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 110px;
        height: 85px; }
      .event_list .entry .thumb:hover {
        border-color: grey; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .header {
  margin: 0 0 10px;
  float: left;
  width: 400px;
  padding: 0;
  border-bottom: 1px solid black; }
.event_detail .details {
  width: 200px;
  background: grey;
  margin: 0 0 15px;
  position: relative;
  padding: 0 0 10px; }
  .event_detail .details ul {
    list-style: none;
    list-style-image: none;
    padding: 10px;
    margin: 0 0 5px; }
    .event_detail .details ul li {
      margin: 0;
      padding: 10px 0 0;
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      font-size: 12px;
      color: black; }
      .event_detail .details ul li label {
        cursor: default;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        color: black;
        line-height: 100%;
        padding: 0;
        margin: 0 0 5px;
        display: block;
        clear: both; }
      .event_detail .details ul li.date {
        border-top: none; }
      .event_detail .details ul li.availability {
        border-bottom: none; }
  .event_detail .details .ticket {
    width: 165px;
    height: 40px;
    padding: 0;
    margin: 0 auto 10px; }
    .event_detail .details .ticket span, .event_detail .details .ticket a, .event_detail .details .ticket a:link, .event_detail .details .ticket a:visited {
      color: red;
      font-size: 22px;
      display: block;
      width: 115px;
      height: 40px;
      text-align: left;
      text-decoration: none;
      line-height: 44px;
      padding: 0 0 0 50px;
      position: relative;
      font-weight: 400; }
      .event_detail .details .ticket span:hover, .event_detail .details .ticket a:hover, .event_detail .details .ticket a:link:hover, .event_detail .details .ticket a:visited:hover {
        text-decoration: underline; }
.event_detail .event_body {
  padding: 0 10px; }
.event_detail .showings {
  margin: 0 0 20px;
  float: left;
  width: 530px; }
  .event_detail .showings h3 {
    text-align: left;
    width: 100%;
    padding: 4px 0;
    margin: 0 0 5px;
    font-size: 14px;
    text-transform: uppercase; }
  .event_detail .showings ul {
    border-top: 1px solid black;
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      border-bottom: 1px solid black;
      padding: 8px 0 6px;
      margin: 0 25px 0 0;
      color: black;
      font-size: 12px;
      position: relative;
      font-weight: bold;
      line-height: 24px;
      width: 252px;
      float: left; }
      .event_detail .showings ul li.entry.alt {
        margin-right: 0; }
      .event_detail .showings ul li span.date {
        line-height: 24px; }
      .event_detail .showings ul li span.time {
        color: black;
        position: absolute;
        right: 35px; }
      .event_detail .showings ul li .buttons {
        float: right;
        margin: 0; }
      .event_detail .showings ul li a.ical {
        text-indent: -5000px;
        display: block;
        width: 22px;
        height: 22px;
        background: url(../images/icons.png) no-repeat 0 0;
        padding: 0;
        margin: 0; }
        .event_detail .showings ul li a.ical:hover {
          background-position: 0 -22px; }
.event_detail a.print {
  display: block;
  height: 22px;
  background: url(../images/icons.png) no-repeat 0 -44px;
  padding: 0 0 0 26px;
  margin: 0 20px 0 0;
  line-height: 22px;
  text-decoration: none;
  float: left;
  color: black;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase; }
  .event_detail a.print:hover {
    background-position: 0 -66px; }
.event_detail .share_bar {
  padding: 15px 0;
  margin: 0 0 15px;
  float: left;
  width: 400px; }
.event_detail .dsq-global-toolbar-dropdown-container {
  display: none !important; }
.event_detail .group_sales {
  padding: 0;
  margin: 0 0 15px 0;
  float: left;
  width: 530px; }
  .event_detail .group_sales h3 {
    text-align: left;
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black; }

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .heading {
    *zoom: 1; }
    .news_list .heading:before, .news_list .heading:after {
      content: "\0020";
      display: table; }
    .news_list .heading:after {
      clear: both; }
    .news_list .heading h1 {
      float: left; }
    .news_list .heading .links {
      width: auto;
      float: right;
      padding: 14px 0 0; }
      .news_list .heading .links a, .news_list .heading .links a:link, .news_list .heading .links a:visited {
        position: relative;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        width: 31px;
        height: 31px;
        float: left;
        margin: 0 0 0 5px;
        padding: 0;
        border-radius: 25px;
        border: 3px solid white; }
      .news_list .heading .links a.rss, .news_list .heading .links a:link.rss, .news_list .heading .links a:visited.rss {
        background: #FF9000 url(../images/icons-paging.png) no-repeat 2px -24px; }
        .news_list .heading .links a.rss:hover, .news_list .heading .links a.rss:focus, .news_list .heading .links a:link.rss:hover, .news_list .heading .links a:link.rss:focus, .news_list .heading .links a:visited.rss:hover, .news_list .heading .links a:visited.rss:focus {
          background-color: #EF7001; }
      .news_list .heading .links a.full_list, .news_list .heading .links a.full_list:link, .news_list .heading .links a.full_list:visited {
        background: #FF9000 url(../images/icons-paging.png) no-repeat 2px 4px; }
        .news_list .heading .links a.full_list:hover, .news_list .heading .links a.full_list:focus, .news_list .heading .links a.full_list:link:hover, .news_list .heading .links a.full_list:link:focus, .news_list .heading .links a.full_list:visited:hover, .news_list .heading .links a.full_list:visited:focus {
          background-color: #EF7001; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    border-bottom: 1px solid #BBB;
    padding: 20px 0;
    position: relative;
    *zoom: 1; }
    .news_list .entry:before, .news_list .entry:after {
      content: "\0020";
      display: table; }
    .news_list .entry:after {
      clear: both; }
    .news_list .entry:last-child {
      border-bottom: 0; }
    .news_list .entry .date {
      font-size: 12px; }
    .news_list .entry .info .date {
      padding-top: 4px; }
    .news_list .entry .info h3 {
      padding-right: 100px;
      margin: 5px 0;
      display: block;
      width: 100%; }
      .news_list .entry .info h3 a {
        display: block;
        font-size: 16px;
        line-height: 22px;
        text-transform: none;
        color: #006BB6;
        text-decoration: none;
        text-transform: uppercase; }
        .news_list .entry .info h3 a:hover {
          color: #FF9000;
          text-decoration: none; }
      @media screen and (max-width: 700px) {
        .news_list .entry .info h3 {
          padding-right: 0; } }
    .news_list .entry .info h4 {
      font-size: 14px;
      margin: 0 0 5px;
      display: block; }
    .news_list .entry .info p {
      display: block; }
    @media screen and (max-width: 700px) {
      .news_list .entry .info {
        text-align: center; } }
    .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
      border-radius: 5px;
      display: block;
      position: absolute;
      top: 42px;
      right: 0px;
      background: #FF9000;
      padding: 0 8px;
      height: 24px;
      color: #fff;
      font-size: 10px;
      text-transform: uppercase;
      text-align: center;
      text-decoration: none;
      line-height: 24px; }
      .news_list .entry a.more:hover, .news_list .entry a.more:link:hover, .news_list .entry a.more:visited:hover {
        background-color: #EF7001; }
      @media screen and (max-width: 700px) {
        .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
          position: relative;
          margin: auto;
          display: inline-block;
          top: auto;
          right: auto; } }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .heading {
    *zoom: 1; }
    .news_detail .heading:before, .news_detail .heading:after {
      content: "\0020";
      display: table; }
    .news_detail .heading:after {
      clear: both; }
    .news_detail .heading .links {
      position: absolute;
      top: 0;
      right: 0;
      padding: 26px 0 0; }
      .news_detail .heading .links a, .news_detail .heading .links a:link, .news_detail .heading .links a:visited {
        position: relative;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        width: 31px;
        height: 31px;
        float: left;
        margin: 0 0 0 5px;
        padding: 0;
        border-radius: 50%;
        border: 3px solid white; }
      .news_detail .heading .links a.full_list, .news_detail .heading .links a.full_list:link, .news_detail .heading .links a.full_list:visited {
        background: #FF9000 url(../images/icons-paging.png) no-repeat 2px 4px; }
        .news_detail .heading .links a.full_list:hover, .news_detail .heading .links a.full_list:focus, .news_detail .heading .links a.full_list:link:hover, .news_detail .heading .links a.full_list:link:focus, .news_detail .heading .links a.full_list:visited:hover, .news_detail .heading .links a.full_list:visited:focus {
          background-color: #EF7001; }
      @media screen and (max-width: 700px) {
        .news_detail .heading .links {
          display: none; } }
  .news_detail .body {
    margin: 0 0 15px; }
  .news_detail .link {
    margin: 0 0 20px;
    position: relative;
    font-size: 13px; }
    .news_detail .link a, .news_detail .link a:link, .news_detail .link a:visited {
      display: block;
      width: 560px;
      height: auto;
      padding: 9px 49px 9px 15px;
      margin: 0;
      text-decoration: none;
      color: #333;
      line-height: 26px;
      background: #E8E8E8 url(../images/icon-doc.png) no-repeat 570px 0;
      border-radius: 10px; }
      .news_detail .link a:hover, .news_detail .link a:focus, .news_detail .link a:link:hover, .news_detail .link a:link:focus, .news_detail .link a:visited:hover, .news_detail .link a:visited:focus {
        color: #333;
        background-color: #ccc;
        text-decoration: none; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Spotlight Lists
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content iframe {
    width: 100%; }
  .content img {
    max-width: 100%; }
    .content img.left {
      float: left;
      margin: 0 15px 15px 0;
      padding: 6px; }
    .content img.right {
      float: right;
      margin: 0 0 15px 15px;
      padding: 6px; }
  .content .image-three {
    text-align: left;
    float: left;
    width: 140px;
    padding: 0 24px 30px;
    margin: 0; }
    .content .image-three a, .content .image-three a:link, .content .image-three a:visited {
      display: block;
      width: 132px;
      height: 106px; }
      .content .image-three a img, .content .image-three a img.image, .content .image-three a img.gh-image, .content .image-three a:link img, .content .image-three a:link img.image, .content .image-three a:link img.gh-image, .content .image-three a:visited img, .content .image-three a:visited img.image, .content .image-three a:visited img.gh-image {
        padding: 2px;
        margin: 0;
        width: 132px;
        height: 106px; }
      .content .image-three a:hover, .content .image-three a:focus, .content .image-three a:link:hover, .content .image-three a:link:focus, .content .image-three a:visited:hover, .content .image-three a:visited:focus {
        text-decoration: none; }
    .content .image-three p {
      color: black;
      width: 132px;
      text-align: center;
      padding: 5px 0 0;
      font-weight: bold; }
  .content .image-four {
    text-align: center;
    float: left;
    width: 130px;
    padding: 0 10px;
    margin: 0; }
    .content .image-four a, .content .image-four a:link, .content .image-four a:visited {
      display: block;
      margin: 0;
      padding: 0;
      width: auto;
      height: auto; }
    .content .image-four img, .content .image-four img.image, .content .image-four img.gh-image {
      padding: 0;
      background: none;
      margin: 0 0 10px; }
  .content .container > .textarea:first-child > .content > h1,
  .content .container > .full-slideshow + .textarea > .content > h1 {
    margin: 0 0 20px;
    padding: 0;
    background: none; }
  .content .news_detail .container > .textarea:first-child > .content > h1,
  .content .news_detail .container > .full-slideshow + .textarea > .content > h1 {
    padding-right: 40px; }
    @media screen and (max-width: 700px) {
      .content .news_detail .container > .textarea:first-child > .content > h1,
      .content .news_detail .container > .full-slideshow + .textarea > .content > h1 {
        padding-right: 0; } }
  .content p.lead {
    display: block;
    font: normal 16px/150% "allerregular", Verdana, sans-serif;
    padding: 0 0 20px; }
    .content p.lead:last-child {
      position: relative;
      padding: 0 0 145px;
      margin-bottom: -117px; }
      .content p.lead:last-child:after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        display: block;
        height: 128px;
        width: 100%;
        background: url(../images/lead-p-footer.png) no-repeat center top;
        background-size: 100% auto; }
    .content p.lead strong {
      font: normal 16px/150% "allerbold", Verdana, sans-serif; }
  .content ul {
    list-style-type: none;
    list-style-position: inside;
    list-style-image: none;
    padding: 5px 0 8px 0;
    margin: 0; }
    .content ul li {
      margin: 0;
      padding: 0 0 6px 15px;
      list-style-type: inherit;
      line-height: 130%;
      background: url(../images/bullet-orange.png) no-repeat 1px 3px; }
    .content ul ul {
      margin: 0; }
  .content .spotlight {
    margin: 0 0 10px;
    padding: 0;
    z-index: 2;
    position: relative; }
    .content .spotlight .spotlight_item {
      *zoom: 1;
      padding: 20px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .content .spotlight .spotlight_item:before, .content .spotlight .spotlight_item:after {
        content: "\0020";
        display: table; }
      .content .spotlight .spotlight_item:after {
        clear: both; }
      .content .spotlight .spotlight_item:first-child {
        border-top: none; }
      .content .spotlight .spotlight_item .thumb {
        float: left;
        display: block;
        width: 60px;
        margin-right: 0px; }
        .content .spotlight .spotlight_item .thumb a, .content .spotlight .spotlight_item .thumb a:visited {
          display: block;
          width: 100%;
          margin: 0 auto; }
        .content .spotlight .spotlight_item .thumb img {
          display: block;
          margin: 0 auto;
          text-align: center; }
      .content .spotlight .spotlight_item .thumb + .info {
        width: 395px;
        width: calc(100% - 60px); }
      .content .spotlight .spotlight_item .info {
        width: 100%;
        float: right; }
        .content .spotlight .spotlight_item .info .near {
          margin: 5px 0;
          padding: 0 0 0 0px;
          display: block;
          font-size: 15px;
          line-height: 21px;
          font-style: italic;
          color: #002C59; }
          .content .spotlight .spotlight_item .info .near:before {
            content: '';
            height: 21px;
            width: 21px;
            background: url(../images/pier-icon.png) no-repeat 0px 0px;
            display: inline-block;
            vertical-align: top; }
        .content .spotlight .spotlight_item .info h3 {
          margin: 0px 0 10px;
          display: block;
          display: block;
          font-size: 16px;
          line-height: 22px;
          text-transform: none;
          color: #006BB6;
          text-decoration: none;
          text-transform: uppercase; }
          .content .spotlight .spotlight_item .info h3 a {
            display: block;
            font-size: 16px;
            line-height: 22px;
            text-transform: none;
            color: #006BB6;
            text-decoration: none;
            text-transform: uppercase; }
            .content .spotlight .spotlight_item .info h3 a:hover {
              color: #FF9000;
              text-decoration: none; }
        .content .spotlight .spotlight_item .info p {
          display: block; }
        @media screen and (max-width: 700px) {
          .content .spotlight .spotlight_item .info {
            width: 100%;
            float: left;
            text-align: left; } }
      .content .spotlight .spotlight_item .gen-button {
        border-radius: 3px;
        display: block;
        background: #FF9000;
        padding: 0 20px;
        float: left;
        height: 24px;
        color: #fff;
        font-size: 10px;
        font-weight: normal;
        font-family: "allerbold", Verdana, sans-serif;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        line-height: 24px;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.65); }
        .content .spotlight .spotlight_item .gen-button:hover {
          background-color: #EF7001; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: black; }
      .content table tr td {
        padding: 5px;
        border: none; }
    .content table.pier-chart {
      width: 100%; }
      .content table.pier-chart tr {
        border-bottom: 1px solid #333; }
        .content table.pier-chart tr:first-child {
          border-bottom: 2px solid #333; }
          .content table.pier-chart tr:first-child td {
            text-align: center; }
            .content table.pier-chart tr:first-child td:nth-child(2) {
              border-left: 0;
              border-right: 0; }
        .content table.pier-chart tr td {
          padding: 10px 5px 0; }
          .content table.pier-chart tr td:nth-child(2) {
            border-left: 1px solid #ccc;
            border-right: 1px solid #ccc; }
          .content table.pier-chart tr td a, .content table.pier-chart tr td a:visited {
            cursor: pointer; }
      @media screen and (max-width: 700px) {
        .content table.pier-chart tr:first-child {
          display: none; } }

/* signup form */
.form-signup {
  position: relative;
  z-index: 10;
  border: 0px;
  padding: 0;
  margin: 0;
  width: 400px;
  height: 390px;
  background: transparent; }
  .form-signup input[type="text"] {
    display: block;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
    margin: 0 0 18px;
    border: 1px solid #E8E8E8;
    width: 380px;
    height: 27px;
    background: white;
    border-radius: 5px;
    color: #999;
    font-family: "allerbold", Verdana, sans-serif;
    font-size: 14px;
    outline: none; }
    .form-signup input[type="text"]:focus {
      outline: none;
      -webkit-appearance: none;
      -moz-appearance: none; }
  .form-signup .checkbox-area {
    padding: 10px 0; }
    .form-signup .checkbox-area input {
      vertical-align: middle; }
    .form-signup .checkbox-area label {
      padding-left: 5px; }
  .form-signup .submit input {
    margin-top: 15px;
    padding: 0 0 10px;
    border: 0;
    outline: none;
    height: 23px;
    width: 130px;
    background: #FF9000;
    font: normal 15px/29px "allerbold", Verdana, sans-serif;
    color: white;
    z-index: 20;
    text-align: center;
    border-radius: 5px;
    -webkit-appearance: none; }
    .form-signup .submit input:hover {
      background: #EF7001; }

/* 
 * print styles
 */
@media print {
  * {
    background: transparent !important;
    color: #444 !important;
    text-shadow: none !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; }

  h2 {
    font-size: 14px; }

  .news_tools {
    display: none; }

  .print_logo {
    display: block;
    width: 150px;
    height: 44px;
    padding-bottom: 10px; }

  .print_map {
    display: block;
    text-align: center;
    margin: 0 auto; }

  #layout {
    padding-top: 10px;
    border-top: 1px solid #000000; }

  #cc-notification {
    display: none !important; }

  header, footer, .nav-main, nav, #branding, #cal_holder, #branding_toggle_btn, #fb_window, #fb-root, .paging, #branding_container, .buttons {
    display: none; }

  .one_sidebar_right #column_2, #toolbar, #footer-toolbar, #buy-tickets-widget, .subnav,
  .ticket, .faq, .banner, .addthis_toolbox, .print, .seating {
    display: none; }

  body#events.detail #branding_container, body#news.detail #branding_container {
    display: none;
    height: 0px !important; }

  .no_print {
    display: none; }

  body#events.detail #column_1 .main_column {
    width: 600px; }

  body#events.detail #column_2 {
    display: block; }

  .column {
    width: 100% !important; }

  .news_list a:after {
    content: ""; } }
