@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;
  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
 */
select, input, textarea {
  color: #111; }

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

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: #464646;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #464646;
  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
 */
/* 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';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Global site variables
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
/********** add-ons **************************************************/
/* ----------------------------------------------------------------------------
=Compass support variables
=Determine what css3 support levels are generated from mixins
=Reference at http://compass-style.org/reference/compass/support/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Mobile Variables
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* added 07/10/12 */
/* #FFC342 added 07/10/12 */
/* Dividers and Element Colors */
/* added 07/10/12 ****/
/* Base Backgrounds */
/* Event Item Size Variables */
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: none; }

h1 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 26px;
  font-weight: 500; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 24px;
  font-weight: 500; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 22px;
  font-weight: 300; }

h4 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 20px;
  font-weight: 300; }

h5 {
  display: inline-block;
  background-color: #dcddde;
  margin: 0 0 8px;
  padding: 2px 8px;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase; }

h6 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 16px;
  font-weight: 500; }

p, address {
  margin: 0 0 20px;
  padding: 0; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 6px 0px;
    list-style-type: inherit; }

a {
  color: #7a7878;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus {
    color: #f2ac2f;
    text-decoration: underline; }

hr {
  background-color: #ccc;
  margin: 0 0 20px;
  clear: both; }

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

.icons-sprite, .icons-bullet, .icons-ftlogo-bbruins, .icons-ftlogo-dcc, .icons-ftlogo-ddc, .icons-ftlogo-pbruins, .icons-ftlogo-pcfriars, .icons-ftlogo-pse, .icons-ftlogo-ricc, .icons-ftlogo-smg, .icons-ftlogo-thevets, .icons-ical, .icons-ico-email, .icons-ico-faqClosed, .icons-ico-faqOpen, .icons-ico-image, .icons-ico-minfo, .icons-ico-pdf, .icons-ico-rss, .icons-ico-ticket, .icons-ico-ticketd, .icons-ico-url, .event_detail .showings ul li a.ical:before, .event_detail .extra_links ul li:before, .content ul li:before, .links a.rss {
  background-image: url('../images/icons-sc47ef33e84.png');
  background-repeat: no-repeat; }

.icons-bullet {
  background-position: 0 0;
  height: 11px;
  width: 11px; }

.icons-ftlogo-bbruins {
  background-position: 0 -21px;
  height: 39px;
  width: 38px; }

.icons-ftlogo-dcc {
  background-position: 0 -70px;
  height: 33px;
  width: 100px; }

.icons-ftlogo-ddc {
  background-position: 0 -113px;
  height: 33px;
  width: 100px; }

.icons-ftlogo-pbruins {
  background-position: 0 -156px;
  height: 45px;
  width: 46px; }

.icons-ftlogo-pcfriars {
  background-position: 0 -211px;
  height: 28px;
  width: 47px; }

.icons-ftlogo-pse {
  background-position: 0 -249px;
  height: 26px;
  width: 70px; }

.icons-ftlogo-ricc {
  background-position: 0 -285px;
  height: 35px;
  width: 35px; }

.icons-ftlogo-smg {
  background-position: 0 -330px;
  height: 25px;
  width: 65px; }

.icons-ftlogo-thevets {
  background-position: 0 -365px;
  height: 41px;
  width: 116px; }

.icons-ical {
  background-position: 0 -416px;
  height: 18px;
  width: 17px; }

.icons-ico-email {
  background-position: 0 -444px;
  height: 16px;
  width: 21px; }

.icons-ico-faqClosed {
  background-position: 0 -470px;
  height: 14px;
  width: 13px; }

.icons-ico-faqOpen {
  background-position: 0 -494px;
  height: 17px;
  width: 17px; }

.icons-ico-image {
  background-position: 0 -521px;
  height: 17px;
  width: 23px; }

.icons-ico-minfo {
  background-position: 0 -548px;
  height: 17px;
  width: 17px; }
  .icons-ico-minfo:hover, .icons-ico-minfo.ico-minfo-hover {
    background-position: 0 -575px; }

.icons-ico-pdf {
  background-position: 0 -602px;
  height: 19px;
  width: 16px; }

.icons-ico-rss {
  background-position: 0 -631px;
  height: 15px;
  width: 18px; }

.icons-ico-ticket {
  background-position: 0 -656px;
  height: 21px;
  width: 22px; }

.icons-ico-ticketd {
  background-position: 0 -687px;
  height: 21px;
  width: 22px; }

.icons-ico-url {
  background-position: 0 -718px;
  height: 20px;
  width: 19px; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative; }
  .event_list .overview {
    height: 42px;
    border-bottom: 1px solid #ccc;
    *zoom: 1; }
    .event_list .overview:before, .event_list .overview:after {
      content: "\0020";
      display: table; }
    .event_list .overview:after {
      clear: both; }
    .event_list .overview h1 {
      float: left;
      line-height: 100%;
      text-transform: uppercase; }
  .event_list .list {
    position: relative;
    background: none;
    margin: 0 0 15px;
    padding: 0; }
    .event_list .list p.noevents {
      padding: 10px;
      color: #464646; }
  .event_list .entry {
    border-top: 1px solid #ccc;
    padding: 20px 0px 24px; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .thumb {
      float: left;
      width: 245px;
      height: 115px;
      margin: 0 25px 0 0; }
      .event_list .entry .thumb a {
        display: block;
        width: 100%;
        height: 100%;
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -webkit-transition: opacity 0.3s ease-in-out; }
        .event_list .entry .thumb a:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
          opacity: 0.8; }
        .event_list .entry .thumb a img {
          width: 100%;
          height: 100%;
          padding: 0; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 0; }
      .event_list .entry .info .date {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase; }
      .event_list .entry .info h3 {
        width: 265px;
        margin: 0 0 10px;
        line-height: 115%; }
        .event_list .entry .info h3 a {
          font-size: 22px;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none; }
      .event_list .entry .info h4 {
        display: none; }
      .event_list .entry .info .buttons a,
      .event_list .entry .info .buttons span {
        float: left;
        margin-right: 10px; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .spotlight_image {
  margin-bottom: 30px; }
.event_detail .header {
  margin: 0;
  padding: 0; }
  .event_detail .header h1 {
    margin-bottom: 2px;
    font-size: 27px;
    font-weight: 300;
    line-height: 100%;
    color: #7a7878; }
  .event_detail .header h2 {
    display: none; }
  .event_detail .header h3.date {
    font-weight: 700;
    text-transform: uppercase; }
.event_detail .event_body {
  padding: 0 10px; }
  .event_detail .event_body p {
    font-size: 15px; }
.event_detail .showings {
  width: 100%;
  margin: 20px 0; }
  .event_detail .showings ul {
    list-style: none; }
    .event_detail .showings ul li {
      position: relative;
      height: 32px;
      background-color: #fff;
      margin: 0 0 10px;
      padding: 0; }
      .event_detail .showings ul li:before {
        display: none; }
      .event_detail .showings ul li span.date,
      .event_detail .showings ul li span.time {
        font-size: 13px;
        line-height: 32px;
        color: #333; }
        .event_detail .showings ul li span.date.date,
        .event_detail .showings ul li span.time.date {
          margin-left: 13px;
          margin-right: 2px; }
        .event_detail .showings ul li span.date.time,
        .event_detail .showings ul li span.time.time {
          font-weight: 700;
          color: #666; }
      .event_detail .showings ul li .buttons {
        float: right;
        margin-right: 4px; }
        .event_detail .showings ul li .buttons a, .event_detail .showings ul li .buttons span {
          height: 32px;
          padding-right: 6px;
          padding-top: 8px;
          padding-bottom: 8px; }
          .event_detail .showings ul li .buttons a:before, .event_detail .showings ul li .buttons span:before {
            top: 5px; }
      .event_detail .showings ul li a.ical {
        position: relative;
        float: right;
        display: block;
        width: 32px;
        height: 32px;
        background-color: #231f20;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden; }
        .event_detail .showings ul li a.ical:hover {
          background-color: #f2ac2f; }
        .event_detail .showings ul li a.ical:before {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          top: 7px;
          left: 7px;
          background-position: 0 -416px;
          height: 18px;
          width: 17px; }
.event_detail .details {
  position: relative;
  margin: 0;
  padding: 0;
  width: 300px; }
  .event_detail .details ul {
    list-style: none; }
    .event_detail .details ul li {
      margin: 0 0 3px;
      padding: 0; }
      .event_detail .details ul li:last-child {
        margin-bottom: 10px; }
  .event_detail .details .buttons a, .event_detail .details .buttons span {
    width: 100%;
    text-align: center; }
    .event_detail .details .buttons a.tickets, .event_detail .details .buttons span.tickets {
      padding-left: 0; }
      .event_detail .details .buttons a.tickets:before, .event_detail .details .buttons span.tickets:before {
        left: 76px; }
  .event_detail .details ul.outputinfo {
    background-color: #fff;
    padding: 20px;
    text-align: center; }
    .event_detail .details ul.outputinfo li {
      border-top: 1px solid #f1f1f1;
      margin-top: 12px;
      padding-top: 12px; }
      .event_detail .details ul.outputinfo li:first-child {
        border-top: 0;
        margin-top: 0;
        padding-top: 0; }
    .event_detail .details ul.outputinfo h4 {
      margin-bottom: 3px;
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase; }
    .event_detail .details ul.outputinfo p {
      font-size: 13px; }
    .event_detail .details ul.outputinfo .sidebar-group li {
      border: 0;
      margin-top: 0;
      padding-top: 0; }
.event_detail .share-holder {
  margin-bottom: 20px; }
.event_detail .extra_links {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 10px; }
  .event_detail .extra_links ul {
    position: relative; }
    .event_detail .extra_links ul li {
      position: relative;
      padding-left: 24px; }
      .event_detail .extra_links ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 5px;
        left: 0;
        background-position: 0 0;
        height: 11px;
        width: 11px; }

/* ----------------------------------------------------------------------------
=Events Sidebar Group Module
----------------------------------------------------------------------------- */
.sidebar-group {
  background-color: #fff;
  margin: 0 0 20px;
  padding: 17px 20px; }
  .sidebar-group h4 {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center; }
  .sidebar-group ul.buttons {
    margin: 0; }
    .sidebar-group ul.buttons li {
      margin: 0 0 3px;
      padding: 0; }
    .sidebar-group ul.buttons a {
      width: 100%; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .overview {
    height: 42px;
    border-bottom: 1px solid #ccc;
    *zoom: 1; }
    .news_list .overview:before, .news_list .overview:after {
      content: "\0020";
      display: table; }
    .news_list .overview:after {
      clear: both; }
    .news_list .overview h1 {
      float: left;
      line-height: 100%;
      text-transform: uppercase; }
  .news_list .list {
    position: relative;
    background: none;
    margin: 0 0 15px;
    padding: 0; }
    .news_list .list p.noevents {
      padding: 10px;
      color: #464646; }
  .news_list .entry {
    position: relative;
    border-top: 1px solid #ccc;
    padding: 15px 0px;
    clear: both;
    *zoom: 1; }
    .news_list .entry:before, .news_list .entry:after {
      content: "\0020";
      display: table; }
    .news_list .entry:after {
      clear: both; }
    .news_list .entry:first-child {
      border-top: none; }
    .news_list .entry .thumb {
      float: left;
      width: 245px;
      height: 115px;
      margin: 0 25px 0 0; }
      .news_list .entry .thumb a {
        display: block;
        width: 100%;
        height: 100%;
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -webkit-transition: opacity 0.3s ease-in-out; }
        .news_list .entry .thumb a:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
          opacity: 0.8; }
        .news_list .entry .thumb a img {
          width: 100%;
          height: 100%;
          padding: 0; }
    .news_list .entry .info {
      position: relative;
      background: none;
      margin: 0 0 15px;
      padding: 0; }
      .news_list .entry .info .date {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase; }
      .news_list .entry .info h3 {
        width: 265px;
        margin: 0 0 10px;
        line-height: 115%; }
        .news_list .entry .info h3 a {
          font-size: 22px;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none; }
      .news_list .entry .info .tagline,
      .news_list .entry .info .teaser {
        display: none; }
    .news_list .entry .buttons a, .news_list .entry span {
      float: left;
      margin-right: 10px; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .header {
    margin: 0 0 15px;
    padding: 0; }
    .news_detail .header h1 {
      margin-bottom: 2px;
      font-size: 27px;
      font-weight: 400;
      line-height: 100%;
      color: #7a7878; }
    .news_detail .header h2 {
      display: none; }
    .news_detail .header .date {
      display: block;
      font-weight: 500;
      text-transform: uppercase; }
  .news_detail .body {
    margin: 0 0 5px; }
    .news_detail .body .thumb {
      display: none; }
  .news_detail .link {
    display: block; }
    .news_detail .link a, .news_detail .link span {
      display: block;
      width: 100%;
      background-color: #717172;
      margin: 0;
      padding: 2px 0;
      text-align: center;
      font-family: "nimbus-sans", sans-serif;
      font-size: 17px;
      line-height: 120%;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #fff;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      .news_detail .link a:hover, .news_detail .link span:hover {
        text-decoration: none;
        background-color: #f2ac2f;
        color: #333; }
    .news_detail .link a {
      padding: 8px 0; }
  .news_detail .event_list {
    background: none;
    border: 0; }
    .news_detail .event_list .entry .info h2 a {
      font-size: 18px;
      line-height: 18px; }
    .news_detail .event_list .entry .info .buttons a, .news_detail .event_list .entry .info span {
      float: left;
      margin-right: 10px; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  position: relative;
  margin: 0;
  padding: 0;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    position: relative;
    clear: both; }
  .content img {
    padding: 0;
    margin: 0 15px 15px 0; }
    .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 .overview {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 2px solid black; }
    .content .overview p {
      font-size: 16px;
      padding: 0 0 15px;
      line-height: 130%;
      color: black; }
    .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;
    border-bottom: 1px solid black; }
    .content .baseline p {
      font-size: 16px;
      padding: 10px 0 15px;
      line-height: 130%;
      color: black; }
  .content ul {
    position: relative; }
    .content ul li {
      position: relative;
      padding-left: 24px; }
      .content ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 5px;
        left: 0;
        background-position: 0 0;
        height: 11px;
        width: 11px; }
  .content ol {
    counter-reset: li;
    margin-left: 0;
    padding-left: 0; }
    .content ol li {
      position: relative;
      margin: 0;
      padding-left: 24px;
      list-style: none; }
      .content ol li:before {
        content: counter(li);
        counter-increment: li;
        position: absolute;
        top: 0px;
        left: 0;
        width: 0;
        font-weight: 500;
        color: #f2ac2f; }
  .content .button a, .content .button span {
    display: block;
    width: auto;
    background-color: #717172;
    margin: 0;
    padding: 2px 0;
    text-align: center;
    font-family: "nimbus-sans", sans-serif;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .content .button a:hover, .content .button span:hover {
      text-decoration: none;
      background-color: #f2ac2f;
      color: #333; }
  .content .button a, .content .button span {
    display: inline-block;
    padding: 5px 40px 4px;
    font-weight: 700; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: black; }
      .content table tr td {
        padding: 5px;
        border: none; }

/* ----------------------------------------------------------------------------
= Login Custom styles
----------------------------------------------------------------------------- */
.login #column_2 {
  border-left: 1px solid #ccc; }
.login #column_1 .container {
  width: 58%;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 0 auto;
  padding: 20px 30px 25px;
  -moz-border-radius: 8px / 8px;
  -webkit-border-radius: 8px 8px;
  border-radius: 8px / 8px; }
  .login #column_1 .container input[name=login] {
    margin-left: 4px; }

/* ----------------------------------------------------------------------------
=Listing page links
----------------------------------------------------------------------------- */
.links {
  float: right;
  width: 160px;
  padding: 5px 0 0; }
  .links a {
    display: block;
    float: right;
    padding: 6px 0 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden; }
    .links a.print, .links a.full_list {
      display: none; }
    .links a.rss {
      background-position: 0 -631px;
      height: 15px;
      width: 18px; }

.content-sponsor-logos {
  width: 100%; }
  .content-sponsor-logos li {
    display: inline-block;
    margin-left: 25px;
    margin-bottom: 12px; }
    .content-sponsor-logos li:nth-child(4n+1) {
      margin-left: 0; }
    .content-sponsor-logos li a {
      display: block;
      width: 130px;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
      -moz-transition: opacity 0.3s ease-in-out;
      -o-transition: opacity 0.3s ease-in-out;
      -webkit-transition: opacity 0.3s ease-in-out; }
      .content-sponsor-logos li a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
      .content-sponsor-logos li a img {
        width: 100%; }

/*
 * 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, .paging {
    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: 5px; }

  .img-colorbar h3 {
    border-bottom: 1px solid #666;
    margin-bottom: 10px; }
  .img-colorbar h3.customimage {
    display: none; }

  .sponsors_list,
  .ad-serve,
  .breadcrumb,
  .full-slideshow {
    display: none; }

  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: ""; }

  .event_detail .header h3.date {
    margin: 10px 0;
    font-size: 14px; }

  .event_detail .details ul.outputinfo {
    text-align: left; } }
