@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" /> */
/* 
  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 {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #CCC;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */ }

/* 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; } */ }
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Myriad Pro Typekit Weights:
=Light -----300 
=Regular ---400 
=Semibold --600 
=Bold ------700
=Black -----900 
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Superclarendon Typekit Weights:
=Light -----300 
=Regular ---400  
=Bold ------700
=Black -----900 
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=News Gothic STD Typekit Weights:
=Regular ---400  
=Bold ------700
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=League Gothic Typekit Weights:
=Regular ---400  
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=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/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Compass support variables
=Determine what css3 support levels are generated from mixins
=Reference at http://compass-style.org/reference/compass/support/
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* Dividers and Element Colors */
/* Base Backgrounds */
/* Event Item Size Variables */
h1 {
  margin: 0 0 8px;
  padding: 0;
  color: #2F93C0;
  font: 700 20px/120% "superclarendon";
  text-transform: uppercase; }
  h1 a, h1 a:link, h1 a:visited {
    text-decoration: none; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #B7502C;
  font: 700 18px/120% "news-gothic-std";
  text-transform: uppercase; }
  h2 a, h2 a:link, h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  color: #2F93C0;
  text-transform: uppercase;
  font: bold 16px/130% "news-gothic-std"; }
  h3 a, h3 a:link, h3 a:visited {
    text-decoration: none; }

h4 {
  margin: 0;
  padding: 0;
  color: #B7502C;
  font: bold 14px/150% "news-gothic-std";
  text-transform: uppercase; }
  h4 a, h4 a:link, h4 a:visited {
    text-decoration: none; }

h5 {
  margin: 0;
  padding: 0 0 2px 0;
  color: black;
  font: bold 12px/140% Arial, Helvetica, sans-serif; }
  h5 a, h5 a:link, h5 a:visited {
    text-decoration: none; }

h6 {
  margin: 0;
  padding: 0 0 4px;
  color: black;
  font: bold 10px/140% Arial, Helvetica, sans-serif; }

p, address {
  margin: 0 0 15px;
  padding: 0;
  color: #666;
  font: normal 12px/140% Arial, Helvetica, sans-serif; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 5px;
  padding: 5px 0 8px 15px;
  color: #666;
  font: 12px/140% Arial, Helvetica, sans-serif;
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit;
    line-height: 130%; }
  ul ul, ol ul {
    margin: 0; }

ol {
  list-style: none; }

a, a:link, a:visited {
  color: #2F93C0;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus, a:link:hover, a:link:focus, a:visited:hover, a:visited:focus {
    text-decoration: underline; }

hr {
  margin: 0 0 10px;
  clear: both; }

tr {
  font-size: 12px;
  color: #666; }
  tr td {
    padding: 5px;
    border: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative; }
  .event_list .overview {
    padding: 0 0 10px;
    margin: 0;
    border-bottom: 1px solid #2F93C0; }
    .event_list .overview h1 {
      display: block;
      width: 620px;
      padding: 0;
      margin: 0;
      color: #2F93C0;
      font: normal 22px/130% "superclarendon";
      text-transform: uppercase; }
    .event_list .overview p {
      display: block;
      padding: 5px 0 0;
      margin: 0;
      width: 610px;
      color: #666;
      font: normal 12px/140% Arial, Helvetica, sans-serif; }
  .event_list .list {
    padding: 0;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: black;
      font: normal 16px/20px "superclarendon";
      text-align: left; }
  .event_list .entry {
    border-top: 1px solid #E6E6E6;
    padding: 15px 4px;
    width: 612px; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 5px 0 0;
      width: 323px;
      margin: 0 15px 0 0; }
      .event_list .entry .info .date {
        display: block;
        position: relative;
        margin: 0 0 10px;
        padding: 0;
        width: 323px;
        font: bold 12px/120% "superclarendon";
        color: #3195C2; }
      .event_list .entry .info h3 {
        position: relative;
        margin: 0 0 10px;
        text-transform: none; }
        .event_list .entry .info h3 a {
          position: relative;
          text-decoration: none;
          color: #12417B;
          font: normal 16px/110% "superclarendon";
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .entry .info h3 a:hover {
            color: #333;
            text-decoration: none; }
      .event_list .entry .info .venue {
        position: relative;
        margin: 0;
        text-transform: none;
        color: #3195C2;
        font: normal 11px/120% Arial, Helvetica, sans-serif;
        font-style: italic; }
        .event_list .entry .info .venue a {
          display: inline;
          color: #2B87B2;
          text-decoration: none;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .entry .info .venue a:hover {
            text-decoration: none;
            color: #333; }
      .event_list .entry .info .group_text {
        display: none; }
    .event_list .entry .thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .event_list .entry .thumb a {
        display: block;
        width: 175px;
        height: 95px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 175px;
        height: 95px; }
      .event_list .entry .thumb:hover {
        border-color: #2B87B2; }
    .event_list .entry .buttons {
      position: relative;
      float: right;
      width: 75px;
      display: block;
      margin: 13px 0 0; }
      .event_list .entry .buttons a, .event_list .entry .buttons a:link, .event_list .entry .buttons a:visited {
        display: block;
        width: 65px;
        height: 30px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: #3195C2;
        text-transform: uppercase;
        font: 400 14px/270% "league-gothic"; }
        .event_list .entry .buttons a.more, .event_list .entry .buttons a:link.more, .event_list .entry .buttons a:visited.more {
          background-position: 0 0px;
          width: 55px;
          height: 36px;
          border-bottom: 2px solid #E8EAEB; }
          .event_list .entry .buttons a.more:hover, .event_list .entry .buttons a:link.more:hover, .event_list .entry .buttons a:visited.more:hover {
            background-position: 0 -40px;
            color: #333;
            text-decoration: none; }
        .event_list .entry .buttons a.tickets, .event_list .entry .buttons a:link.tickets, .event_list .entry .buttons a:visited.tickets {
          background-position: 0 -84px; }
          .event_list .entry .buttons a.tickets:hover, .event_list .entry .buttons a:link.tickets:hover, .event_list .entry .buttons a:visited.tickets:hover {
            background-position: 0 -124px;
            color: #333;
            text-decoration: none; }
      .event_list .entry .buttons span {
        display: block;
        width: 65px;
        height: 22px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: white;
        text-transform: uppercase;
        font: 400 14px/190% "league-gothic";
        cursor: default; }
        .event_list .entry .buttons span.tickets {
          display: none;
          background-position: 0 -287px;
          color: #333; }
          .event_list .entry .buttons span.tickets:hover {
            background-position: 0 -287px; }
        .event_list .entry .buttons span.soon {
          background-position: 0 -287px;
          color: #333; }
          .event_list .entry .buttons span.soon:hover {
            background-position: 0 -287px; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail #column_1 {
  width: 228px;
  margin: 25px 0 25px 10px;
  background: url(../images/white_noise.jpg) repeat 0 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }
.event_detail #column_2 {
  width: 480px;
  margin: 0 auto;
  padding: 5px 10px 20px; }
.event_detail #column_3 {
  width: 230px;
  margin: 0 auto; }
.event_detail .header {
  margin: 0 0 0 -1px;
  width: 230px;
  height: auto;
  background: url(../images/event_detail_header.jpg) no-repeat center top;
  padding: 0 0 10px; }
  .event_detail .header h1 {
    display: block;
    width: 210px;
    margin: 0 auto;
    padding: 20px 0 0;
    text-transform: uppercase;
    color: #3399C5;
    font: normal 16px/130% "superclarendon"; }
  .event_detail .header h2 {
    display: block;
    width: 210px;
    margin: 0 auto;
    padding: 4px 0 0;
    text-transform: uppercase;
    color: #333;
    font: bold 12px/160% Arial, Helvetica, sans-serif; }
.event_detail .date_tickets {
  padding: 0 0 10px;
  margin: 0 auto;
  width: 210px;
  border-bottom: 1px solid #ccc; }
  .event_detail .date_tickets .date {
    display: block;
    position: relative;
    text-align: center;
    width: 208px;
    height: 30px;
    background: url(../images/event_tickets.png) no-repeat 0 0;
    color: white;
    text-transform: uppercase;
    font: normal 22px/150% "league-gothic";
    text-shadow: 0px -2px 2px #1D5C77;
    padding: 0;
    margin: 0 auto; }
    .event_detail .date_tickets .date span {
      display: inline; }
  .event_detail .date_tickets .ticket {
    display: block;
    position: relative;
    text-align: center;
    width: 208px;
    height: 30px;
    margin: 10px auto 0;
    padding: 0; }
    .event_detail .date_tickets .ticket span, .event_detail .date_tickets .ticket a, .event_detail .date_tickets .ticket a:link, .event_detail .date_tickets .ticket a:visited {
      display: block;
      position: relative;
      text-align: center;
      width: 208px;
      height: 30px;
      background: url(../images/event_tickets.png) no-repeat 0 -30px;
      color: white;
      text-transform: uppercase;
      font: normal 22px/150% "league-gothic";
      text-shadow: 0px -2px 2px #1D5C77;
      padding: 0;
      margin: 0 auto; }
      .event_detail .date_tickets .ticket span:hover, .event_detail .date_tickets .ticket a:hover, .event_detail .date_tickets .ticket a:link:hover, .event_detail .date_tickets .ticket a:visited:hover {
        text-decoration: none;
        background-position: 0 0; }
    .event_detail .date_tickets .ticket span:hover {
      background-position: 0 -30px;
      cursor: default; }
.event_detail .details {
  display: block;
  width: 212px;
  margin: 0 auto;
  position: relative;
  padding: 15px 0 5px;
  list-style: none; }
  .event_detail .details li {
    display: block;
    margin: 0;
    padding: 0 0 10px; }
    .event_detail .details li label {
      cursor: default;
      text-transform: uppercase;
      padding: 0;
      margin: 0;
      display: block;
      color: #2D91BE;
      font: normal 14px/140% "superclarendon";
      background: #E8E8E8;
      width: 212px;
      height: 20px;
      text-indent: 5px; }
    .event_detail .details li span, .event_detail .details li p {
      display: block;
      width: 208px;
      margin: 0 auto;
      padding: 3px 0 0 4px;
      color: #333;
      font: normal 12px/140% Arial, Helvetica, sans-serif; }
      .event_detail .details li span a, .event_detail .details li span a:visited, .event_detail .details li p a, .event_detail .details li p a:visited {
        display: inline; }
    .event_detail .details li a, .event_detail .details li a:visited {
      display: block;
      width: 208px;
      margin: 0 auto;
      padding: 5px 0 0 4px;
      color: #3599C6;
      font: normal 12px/140% Arial, Helvetica, sans-serif;
      text-decoration: underline; }
      .event_detail .details li a:hover, .event_detail .details li a:visited:hover {
        text-decoration: underline;
        color: #333; }
.event_detail .description {
  width: 463px;
  margin: 35px auto 0; }
  .event_detail .description h3 {
    display: block;
    width: 463px;
    padding: 0 0 10px;
    margin: 0 0 10px;
    background: url(../images/event_descrip.jpg) no-repeat center bottom;
    color: #3296C3;
    font: normal 16px/130% "superclarendon";
    text-transform: uppercase; }
  .event_detail .description p {
    display: block;
    width: 456px;
    color: #666;
    font: normal 12px/140% Arial, Helvetica, sans-serif;
    padding: 0 0 5px; }
    .event_detail .description p a, .event_detail .description p a:visited {
      color: #379AC7;
      text-decoration: none; }
      .event_detail .description p a:hover, .event_detail .description p a:visited:hover {
        text-decoration: underline; }
.event_detail .showings {
  width: 463px;
  margin: 35px auto; }
  .event_detail .showings h3 {
    display: block;
    width: 463px;
    padding: 0 0 10px;
    margin: 0;
    background: url(../images/event_descrip.jpg) no-repeat center bottom;
    color: #3296C3;
    font: normal 16px/130% "superclarendon";
    text-transform: uppercase; }
  .event_detail .showings ul {
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      position: relative;
      width: 463px;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
      margin: 0;
      background: url(../images/showings_bullet.png) no-repeat 0 9px; }
      .event_detail .showings ul li span.date {
        display: block;
        line-height: 24px;
        padding: 0 0 0 15px;
        color: #333;
        font: bold 12px/130% Arial, Helvetica, sans-serif; }
        .event_detail .showings ul li span.date span {
          display: inline; }
      .event_detail .showings ul li a.ical {
        position: absolute;
        right: -3px;
        top: 6px;
        display: block;
        width: 30px;
        height: 22px;
        background: url(../images/cal_sprite.png) no-repeat 31px 0;
        padding: 0 20px 0 0;
        margin: 0;
        color: #429AC2;
        text-transform: uppercase;
        font: bold 12px/190% Arial, Helvetica, sans-serif; }
        .event_detail .showings ul li a.ical:hover {
          background-position: 31px -23px;
          color: #333;
          text-decoration: none; }
.event_detail a.print {
  display: block;
  height: 20px;
  background: url(../images/print_icon.png) no-repeat 0 1px;
  padding: 0 0 0 26px;
  margin: 0 20px 0 10px;
  text-decoration: none;
  float: left;
  text-transform: uppercase;
  color: #429AC2;
  font: bold 12px/190% Arial, Helvetica, sans-serif; }
  .event_detail a.print:hover {
    background-position: 0 -20px;
    color: #333;
    text-decoration: none; }
.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 List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .content .overview {
    border: none;
    margin: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    border-bottom: 1px solid #AAA;
    padding: 15px 10px;
    position: relative;
    margin: 0; }
    .news_list .entry .news_thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .news_list .entry .news_thumb a {
        display: block;
        width: 175px;
        height: 95px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
      .news_list .entry .news_thumb img {
        padding: 0;
        width: 175px;
        height: 95px; }
      .news_list .entry .news_thumb:hover {
        border-color: #2B87B2; }
    .news_list .entry .info {
      width: auto;
      position: relative; }
      .news_list .entry .info h3 {
        margin: 0 0 10px;
        font-size: 14px;
        text-transform: none;
        color: #2F93C0;
        text-decoration: none;
        font-weight: bold;
        font-style: italic;
        width: 480px; }
        .news_list .entry .info h3 a {
          font-size: 16px;
          text-transform: none;
          color: #2F93C0;
          text-decoration: none;
          font-weight: bold;
          font-style: normal; }
          .news_list .entry .info h3 a:hover {
            color: #333; }
      .news_list .entry .info h4 {
        font-size: 14px;
        margin: 0 0 5px;
        width: 480px; }
      .news_list .entry .info p {
        color: #222;
        width: 480px; }
      .news_list .entry .info .date {
        display: block;
        margin: 0 0 10px;
        font-size: 11px;
        text-transform: none;
        color: #164962;
        text-decoration: none;
        font-weight: normal;
        font-style: italic; }
    .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
      position: absolute;
      right: 0;
      top: 0;
      display: block;
      width: 55px;
      height: 36px;
      padding: 0 0 0 26px;
      margin: 0;
      background: url(../images/event_buttons.png) no-repeat 0 0;
      color: #3195C2;
      text-transform: uppercase;
      font: 400 14px/270% "league-gothic"; }
      .news_list .entry a.more:hover, .news_list .entry a.more:link:hover, .news_list .entry a.more:visited:hover {
        background-position: 0 -40px;
        color: #333;
        text-decoration: none; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail .overview {
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/overview_rule.png) repeat-x center bottom; }
    .news_detail .overview h1 {
      font-size: 24px; }
    .news_detail .overview span.date {
      color: black;
      font-weight: 500;
      font-style: italic; }
    .news_detail .overview a.viewall, .news_detail .overview a.viewall:visited {
      position: absolute;
      display: block;
      right: 0px;
      bottom: 16px;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      padding: 0 10px 0 20px;
      text-transform: none;
      margin: 0;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      .news_detail .overview a.viewall:hover, .news_detail .overview a.viewall:focus, .news_detail .overview a.viewall:visited:hover, .news_detail .overview a.viewall:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }
      .news_detail .overview a.viewall:before, .news_detail .overview a.viewall:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 -18px; }
  .news_detail .slideshow {
    margin: 0 0 15px; }
    .news_detail .slideshow img {
      position: absolute;
      width: 600px;
      height: 325px;
      overflow: hidden;
      left: 10px;
      top: 10px;
      border-bottom: 2px solid #5DADD1; }
  .news_detail .description {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
    .news_detail .description .news_thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .news_detail .description .news_thumb img {
        padding: 0;
        margin: 0;
        width: 175px;
        height: 95px; }
  .news_detail .event_list {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
    .news_detail .event_list .list {
      padding: 0; }
  .news_detail .link {
    float: left; }
  .news_detail a.print, .news_detail a.print:link, .news_detail a.print:visited {
    position: absolute;
    display: block;
    bottom: 10px;
    right: 0px;
    color: white;
    text-decoration: none;
    height: 18px;
    background: url(../images/blue_buttons.png) repeat-x 0 -18px;
    margin: 0 0 0 12px;
    font: bold 9px/200% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    width: auto;
    padding: 0 10px 0 20px;
    text-transform: none; }
    .news_detail a.print:hover, .news_detail a.print:focus, .news_detail a.print:link:hover, .news_detail a.print:link:focus, .news_detail a.print:visited:hover, .news_detail a.print:visited:focus {
      color: white;
      text-decoration: none;
      background-position: 0 0; }
    .news_detail a.print:before, .news_detail a.print:link:before, .news_detail a.print:visited:before {
      content: "";
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 17px;
      background: url(../images/icons.png) no-repeat 0 -105px; }
  .news_detail .share_bar {
    border-top: 1px solid black;
    padding: 15px 0 0; }
    .news_detail .share_bar .addthis_toolbox {
      float: left;
      width: 305px; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
#content {
  clear: both; }

.textarea {
  width: 620px;
  margin: 0 auto; }
  .textarea .content {
    clear: both; }
    .textarea .content label {
      font-weight: bold; }

.form {
  width: 620px;
  margin: 0 auto; }

.content {
  margin: 0 0 10px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content img[align=left], .content img[align=left].gh-image {
    float: left;
    margin: 0 15px 15px 0;
    padding: 6px; }
  .content img[align=right], .content img[align=right].gh-image {
    float: right;
    margin: 0 0 15px 15px;
    padding: 6px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content .image-left {
    clear: both; }
    .content .image-left h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-left img {
      width: 175px;
      height: 130px;
      padding: 6px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both; }
    .content .image-right h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px; }
    .content .image-right p {
      line-height: 140%; }
  .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 .overview {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/overview_rule.png) repeat-x center bottom; }
    .content .overview h1 {
      font-size: 24px; }
    .content .overview p {
      font-size: 14px;
      padding: 0;
      line-height: 140%;
      color: #666; }
    .content .overview a, .content .overview a:link, .content .overview a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus, .content .overview a:link:hover, .content .overview a:link:focus, .content .overview a:visited:hover, .content .overview a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: #666; }
      .content table tr td {
        padding: 5px;
        border: none; }

/* ----------------------------------------------------------------------------
=Pagination
----------------------------------------------------------------------------- */
body#events.all #column_1 .paging.final {
  display: none; }

#column_1 .paging.final {
  background: url(../images/med_blue_swatch.jpg) repeat-x left top; }

.paging {
  position: relative;
  margin: 0 0 8px;
  color: #333;
  position: relative;
  padding: 8px 0 12px;
  background: url(../images/overview_rule.png) no-repeat center bottom;
  height: 18px; }
  .paging .nav {
    float: left;
    zoom: 1; }
    .paging .nav:before, .paging .nav:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .paging .nav:after {
      clear: both; }
  .paging .record {
    width: 70px;
    float: left;
    color: #333;
    font: normal 11px/180% Arial, Helvetica, sans-serif; }
  .paging .pages {
    margin: 0;
    float: left;
    width: auto;
    text-align: left; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      height: 18px;
      width: auto;
      float: left;
      margin: 0 6px 0 0;
      padding: 0 6px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-align: center;
      color: white;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        background-position: 0 0;
        text-decoration: none; }
    .paging .pages strong {
      color: white;
      background-position: 0 0;
      text-decoration: none; }
  .paging .links {
    width: auto;
    float: right;
    margin: 0;
    padding: 0;
    height: 18px; }
    .paging .links a, .paging .links a:link, .paging .links a:visited {
      position: relative;
      display: block;
      float: left;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      margin: 0 0 0 12px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      .paging .links a:hover, .paging .links a:focus, .paging .links a:link:hover, .paging .links a:link:focus, .paging .links a:visited:hover, .paging .links a:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }
    .paging .links a.rss, .paging .links a:link.rss, .paging .links a:visited.rss {
      width: auto;
      padding: 0 10px 0 20px;
      text-transform: none; }
      .paging .links a.rss:before, .paging .links a:link.rss:before, .paging .links a:visited.rss:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 0; }
    .paging .links .rss_before {
      content: "";
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 18px;
      background: url(../images/icons.png) no-repeat 0 0; }
    .paging .links a.print, .paging .links a.print:link, .paging .links a.print:visited {
      width: auto;
      padding: 0 10px 0 20px;
      text-transform: none; }
      .paging .links a.print:before, .paging .links a.print:link:before, .paging .links a.print:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 17px;
        background: url(../images/icons.png) no-repeat 0 -105px; }
    .paging .links .print_before {
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 17px;
      background: url(../images/icons.png) no-repeat 0 -105px; }
    .paging .links a.full_list, .paging .links a.full_list:link, .paging .links a.full_list:visited {
      padding: 0 10px 0 20px;
      text-transform: none;
      margin: 0; }
      .paging .links a.full_list:before, .paging .links a.full_list:link:before, .paging .links a.full_list:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 -18px; }
    .paging .links .full_list_before {
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 18px;
      background: url(../images/icons.png) no-repeat 0 -18px; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 15px;
  position: relative; }
  .link ul.list {
    width: 620px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font-size: 14px;
    border-top: 1px solid #ccc; }
    .link ul.list li {
      height: 28px;
      padding: 2px 0;
      margin: 0;
      border-bottom: 1px solid #ccc; }
      .link ul.list li:hover a, .link ul.list li:hover a:link, .link ul.list li:hover a:visited, .link ul.list li:focus a, .link ul.list li:focus a:link, .link ul.list li:focus a:visited {
        color: #164962;
        background-position: 0 -16px; }
    .link ul.list p {
      padding: 0 0 0 25px;
      font-style: italic; }
    .link ul.list .description {
      font-style: italic;
      font-size: 12px; }
    .link ul.list a, .link ul.list a:link, .link ul.list a:visited {
      display: block;
      padding: 0 0 0 25px;
      margin: 0 0 0 2px;
      text-decoration: none;
      color: #2F93C0;
      line-height: 26px; }
      .link ul.list a:hover, .link ul.list a:link:hover, .link ul.list a:visited:hover {
        color: #164962;
        background-position: 0 -16px; }
      .link ul.list a.external, .link ul.list a:link.external, .link ul.list a:visited.external {
        background: url(../images/icon_link.png) no-repeat 0 4px; }
        .link ul.list a.external:hover, .link ul.list a:link.external:hover, .link ul.list a:visited.external:hover {
          background-position: 0 -16px; }
      .link ul.list a.image, .link ul.list a:link.image, .link ul.list a:visited.image {
        background: url(../images/icon_img.png) no-repeat 0 4px; }
        .link ul.list a.image:hover, .link ul.list a:link.image:hover, .link ul.list a:visited.image:hover {
          background-position: 0 -16px; }
      .link ul.list a.pdf, .link ul.list a:link.pdf, .link ul.list a:visited.pdf {
        background: url(../images/icon_doc.png) no-repeat 0 4px; }
        .link ul.list a.pdf:hover, .link ul.list a:link.pdf:hover, .link ul.list a:visited.pdf:hover {
          background-position: 0 -16px; }
    .link ul.list a.email, .link ul.list a.email:link, .link ul.list a.email:visited {
      background: url(../images/icon_email.png) no-repeat 0 4px; }
      .link ul.list a.email:hover, .link ul.list a.email:link:hover, .link ul.list a.email:visited:hover {
        background-position: 0 -16px; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap .column {
    float: left;
    width: 270px;
    padding: 0;
    position: relative; }
  .sitemap #sitemap_column_1 {
    margin: 0 20px 0 20px; }
  .sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sitemap ul li {
      margin: 0 0 10px 0;
      padding: 0;
      font-size: 18px;
      font-weight: normal;
      line-height: 25px; }
      .sitemap ul li ul li {
        margin: 0;
        font-size: 12px;
        font-weight: bold; }
        .sitemap ul li ul li a, .sitemap ul li ul li a:link, .sitemap ul li ul li a:visited {
          color: #2A8EBB;
          padding: 0 0 0 20px;
          background: url(../images/subnav_arrows.png) no-repeat 5px 1px; }
          .sitemap ul li ul li a:hover, .sitemap ul li ul li a:focus, .sitemap ul li ul li a:link:hover, .sitemap ul li ul li a:link:focus, .sitemap ul li ul li a:visited:hover, .sitemap ul li ul li a:visited:focus {
            color: #333;
            text-decoration: underline; }
        .sitemap ul li ul li ul {
          display: none; }
  .sitemap a, .sitemap a:link, .sitemap a:visited {
    text-decoration: none;
    color: #2F93C0; }
    .sitemap a:hover, .sitemap a:focus, .sitemap a:link:hover, .sitemap a:link:focus, .sitemap a:visited:hover, .sitemap a:visited:focus {
      color: #333; }

/* ----------------------------------------------------------------------------
=Seating Charts
----------------------------------------------------------------------------- */
.seating_charts {
  clear: both;
  margin: 0;
  padding: 0; }
  .seating_charts .entry {
    margin: 0 20px 20px 0px;
    padding: 4px;
    height: 182px;
    display: block;
    float: left;
    position: relative;
    width: 282px;
    overflow: hidden;
    background: #3195C2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; }
    .seating_charts .entry.alt {
      margin-right: 0; }
    .seating_charts .entry .thumb {
      display: block;
      margin: 0 0px 0 0;
      padding: 0;
      width: 282px;
      height: 216px; }
      .seating_charts .entry .thumb img {
        margin: 0;
        padding: 0;
        border: none;
        display: block; }
      .seating_charts .entry .thumb a, .seating_charts .entry .thumb a:link, .seating_charts .entry .thumb a:visited {
        margin: 0;
        padding: 0;
        display: block;
        width: 282px;
        height: 216px; }
        .seating_charts .entry .thumb a img, .seating_charts .entry .thumb a:link img, .seating_charts .entry .thumb a:visited img {
          width: 282px;
          height: 216px; }
  .seating_charts .info {
    display: block;
    width: 262px;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    bottom: 0px;
    left: 4px;
    background: #3195C2;
    overflow: hidden;
    opacity: 0.9; }
  .seating_charts h3 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background: transparent;
    opacity: 1.0; }
    .seating_charts h3 a, .seating_charts h3 a:link, .seating_charts h3 a:visited {
      margin: 0;
      padding: 0;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
      opacity: 1.0; }
  .seating_charts .info-buttons {
    padding: 0;
    text-align: left;
    float: left; }
    .seating_charts .info-buttons a, .seating_charts .info-buttons a:link, .seating_charts .info-buttons a:visited {
      display: block;
      text-transform: uppercase;
      font-size: 10px;
      float: left;
      padding: 0px 6px 0 0;
      text-decoration: underline;
      line-height: 25px;
      opacity: 1;
      color: white; }
      .seating_charts .info-buttons a:hover, .seating_charts .info-buttons a:focus, .seating_charts .info-buttons a:link:hover, .seating_charts .info-buttons a:link:focus, .seating_charts .info-buttons a:visited:hover, .seating_charts .info-buttons a:visited:focus {
        text-decoration: none; }

/* ----------------------------------------------------------------------------
=Group Events Listing
----------------------------------------------------------------------------- */
.group-sales .event_list .entry .info h3 {
  line-height: 13px; }
  .group-sales .event_list .entry .info h3 a {
    line-height: 13px;
    font-size: 12px; }
.group-sales .event_list .entry .info .date {
  font-size: 10px; }
.group-sales .event_list .entry .info .group_text {
  display: block; }

/* ----------------------------------------------------------------------------
=Custom page content
----------------------------------------------------------------------------- */
a.tw_link, a.facebook_link, a.flickr_link {
  display: block;
  padding: 5px 0 0 29px;
  text-decoration: none;
  background: url(../images/social_link_icons.png) no-repeat 0 0;
  font-size: 14px; }
  a.tw_link:hover, a.facebook_link:hover, a.flickr_link:hover {
    text-decoration: none;
    background-position: 0 0;
    color: #333; }

a.tw_link {
  background-position: 0 0; }
  a.tw_link:hover {
    background-position: 0 -25px; }

a.facebook_link {
  background-position: 0 -50px; }
  a.facebook_link:hover {
    background-position: 0 -75px; }

a.flickr_link {
  background-position: 0 -100px; }
  a.flickr_link:hover {
    background-position: 0 -125px; }

#cse-search-results {
  padding: 0 10px; }
  #cse-search-results iframe {
    width: 98%; }

.contact-us .baseline {
  width: 45%;
  float: left;
  height: 125px; }

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

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

  .one_sidebar_right #column_2 {
    display: none; }

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

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