@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 **************************************************/
.sponsors_list .carousel.horizontal .entry a, .home-slideshow .rsInfo .buttons {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* ----------------------------------------------------------------------------
=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 */
/*____________________________* oocss grid system *____________________________________*/
.left, nav ul li,
.unit,
.col1of2,
.sitemap .column,
.col1of3,
.one_sidebar_right #column_2,
.home .lower .promo-blocks,
.col2of3,
.one_sidebar_right #column_1,
.col1of4,
.col3of4,
.col1of5,
.footer .add-details,
.col2of5,
.col3of5,
.col4of5,
.footer .ad-serve {
  float: left; }

.right, header .team-banners li {
  float: right; }

.col1of1 {
  float: none; }

.col1of2, .sitemap .column {
  width: 50%; }

.col1of3, .one_sidebar_right #column_2, .home .lower .promo-blocks {
  width: 33.33333%; }

.col2of3, .one_sidebar_right #column_1 {
  width: 66.66666%; }

.col1of4 {
  width: 25%; }

.col3of4 {
  width: 75%; }

.col1of5, .footer .add-details {
  width: 20%; }

.col2of5 {
  width: 40%; }

.col3of5 {
  width: 60%; }

.col4of5, .footer .ad-serve {
  width: 80%; }

.lastCol, .one_sidebar_right #column_2, .sitemap .column:last-child {
  overflow: hidden;
  *overflow: visible;
  *zoom: 1; }

.lastCol, .one_sidebar_right #column_2, .sitemap .column:last-child,
.lastUnit {
  float: none;
  width: auto;
  _position: relative;
  _left: -3px;
  _margin-right: -3px; }

/*______________________________________________________________________________________*/
.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, .footer .add-details .ft-mnlogo, .footer .logos a.ftddc-logo, .footer .logos a.ftpse-logo, .footer .logos a.ftbbruins-logo, .content ul li:before, .links a.rss, .link ul.list a.external:after, .link ul.list a.pdf:after, .link ul.list a.image:after, .link ul.list a.email:after, .faq dt p:after, .faq dt:hover p:after, .faq dt.active p:after, .faq dt.open p:after, .faq ul li:before, .event_detail .showings ul li a.ical:before, .event_detail .extra_links ul li:before, .buttons a.tickets:before, .buttons span.tickets:before, .buttons a.more:before, .buttons span.more:before, .buttons a.more:hover:before, .buttons span.more:hover:before, .buttons a.tickets:hover:before {
  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; }

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

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
/* apply a natural box layout model to all elements */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  height: 100%; }

body {
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-position: center 0;
  margin: 0;
  padding: 0;
  font-family: "nimbus-sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.41;
  letter-spacing: 0px;
  color: #464646;
  text-align: left; }

#layout {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0; }

.topper.ad-serve {
  background-color: #000;
  height: 110px; }
  .topper.ad-serve .site_wrapper {
    width: 1020px; }
    .topper.ad-serve .site_wrapper .content-item {
      display: inline-block;
      width: 800px;
      overflow: hidden;
      float: left; }
    .topper.ad-serve .site_wrapper .hb-banner {
      float: right;
      width: 220px;
      height: 110px;
      overflow: hidden; }
      .topper.ad-serve .site_wrapper .hb-banner .banner {
        border: 1px solid transparent;
        padding-top: 12px; }
        .topper.ad-serve .site_wrapper .hb-banner .banner a:hover {
          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; }
          .topper.ad-serve .site_wrapper .hb-banner .banner a:hover:hover {
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
            opacity: 0.8; }

.site_wrapper {
  width: 980px;
  margin: 0 auto; }

#content {
  position: relative;
  width: 100%;
  min-height: 410px;
  margin: 0 auto;
  padding: 0; }

.img-colorbar {
  background-color: #231f20;
  width: 100%;
  height: 152px;
  overflow: hidden;
  clear: both; }
  .img-colorbar h3 {
    position: relative;
    width: 980px;
    height: 100%;
    margin: 0 auto; }
    .img-colorbar h3.designer-image {
      background: transparent url('../images/pageTitleimg.jpg?1507127325') no-repeat center center;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
    .img-colorbar h3:before, .img-colorbar h3:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      width: 200px;
      height: 100%; }
    .img-colorbar h3:before {
      top: 0;
      left: 0;
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #231f20), color-stop(100%, rgba(35, 31, 32, 0)));
      background-image: -moz-linear-gradient(left, #231f20 0%, rgba(35, 31, 32, 0) 100%);
      background-image: -webkit-linear-gradient(left, #231f20 0%, rgba(35, 31, 32, 0) 100%);
      background-image: linear-gradient(to right, #231f20 0%, rgba(35, 31, 32, 0) 100%); }
    .img-colorbar h3:after {
      top: 0;
      right: 0;
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMzFmMjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(35, 31, 32, 0)), color-stop(100%, #231f20));
      background-image: -moz-linear-gradient(left, rgba(35, 31, 32, 0) 0%, #231f20 100%);
      background-image: -webkit-linear-gradient(left, rgba(35, 31, 32, 0) 0%, #231f20 100%);
      background-image: linear-gradient(to right, rgba(35, 31, 32, 0) 0%, #231f20 100%); }
    .img-colorbar h3 img {
      width: 100%;
      margin-top: -3px; }

.one_sidebar_right {
  width: 980px;
  margin: 40px auto;
  padding-bottom: 35px;
  *zoom: 1; }
  .one_sidebar_right:before, .one_sidebar_right:after {
    content: "\0020";
    display: table; }
  .one_sidebar_right:after {
    clear: both; }
  .one_sidebar_right #column_1.has_slideshow {
    margin-top: 0; }
  .one_sidebar_right #column_1 .container {
    width: 100%;
    padding-right: 20px;
    border-right: 1px solid #ccc;
    word-break: break-word; }
  .one_sidebar_right #column_2 {
    float: right; }
    .one_sidebar_right #column_2 .banner,
    .one_sidebar_right #column_2 .ad-serve {
      margin-bottom: 20px; }
    .one_sidebar_right #column_2 .ad-serve {
      width: 300px;
      overflow: hidden;
      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; }
      .one_sidebar_right #column_2 .ad-serve:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }

.full {
  width: 100%;
  padding-bottom: 35px;
  *zoom: 1; }
  .full:before, .full:after {
    content: "\0020";
    display: table; }
  .full:after {
    clear: both; }
  .full .full_column {
    padding: 10px;
    background: #fff; }
  .full .container {
    width: 980px;
    margin: 40px auto; }

.breadcrumb {
  margin-bottom: 10px;
  clear: both;
  *zoom: 1; }
  .breadcrumb:before, .breadcrumb:after {
    content: "\0020";
    display: table; }
  .breadcrumb:after {
    clear: both; }
  .breadcrumb li {
    position: relative;
    float: left;
    margin-right: 20px; }
    .breadcrumb li a, .breadcrumb li span {
      font-size: 14px;
      font-weight: 300;
      color: #464646; }
    .breadcrumb li:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 4px;
      left: -10px;
      width: 1px;
      height: 15px;
      background-color: #a0a0a0; }
    .breadcrumb li:first-child:before {
      display: none; }

#cse-search-results {
  background-color: #fff;
  padding: 10px 20px; }
  #cse-search-results iframe {
    width: 100%;
    height: 1050px; }

/* //////////////////////////////////////////////////////
= Lower slideshow on all pages
  ///////////////////////////////////////////////////// */
.sponsors_list {
  position: relative;
  width: 100%;
  height: 85px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  margin: 0 0 20px;
  padding: 8px 0;
  clear: both; }
  .sponsors_list .wrapper {
    position: relative;
    width: 980px;
    margin: 0 auto;
    padding-left: 20px; }
    .sponsors_list .wrapper:before, .sponsors_list .wrapper:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: -9px;
      bottom: -11px;
      left: 10px;
      right: 10px;
      -moz-box-shadow: 0 0 20px #c5c5c5;
      -webkit-box-shadow: 0 0 20px #c5c5c5;
      box-shadow: 0 0 20px #c5c5c5;
      -moz-border-radius: 100px / 10px;
      -webkit-border-radius: 100px 10px;
      border-radius: 100px / 10px;
      z-index: -1; }
    .sponsors_list .wrapper:after {
      right: 10px;
      left: auto;
      -webkit-transform: skew(8deg) rotate(3deg);
      -moz-transform: skew(8deg) rotate(3deg);
      -ms-transform: skew(8deg) rotate(3deg);
      -o-transform: skew(8deg) rotate(3deg);
      transform: skew(8deg) rotate(3deg); }
  .sponsors_list h3 {
    float: left;
    width: 152px;
    width: 144px;
    border-left: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #717171; }
    .sponsors_list h3 span {
      color: #9a9999; }
  .sponsors_list .carousel.horizontal {
    margin-left: 172px;
    margin-left: 160px; }
    .sponsors_list .carousel.horizontal .list_holder {
      height: 65px; }
    .sponsors_list .carousel.horizontal .entry {
      width: 160px;
      height: 60px;
      text-align: center; }
    .sponsors_list .carousel.horizontal .prev-scroller,
    .sponsors_list .carousel.horizontal .next-scroller {
      display: none; }

/* ----------------------------------------------------------------------------
= OVERLAY
----------------------------------------------------------------------------- */
#overlay_container {
  padding: 100px 0 0; }
  #overlay_container .close-overlay {
    background: transparent url('../images/button_close.png?1404848086') no-repeat center center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    display: block;
    z-index: 50; }
  #overlay_container a {
    display: block;
    width: 640px;
    height: 480px;
    position: relative;
    z-index: 10; }
    #overlay_container a img {
      width: 640px;
      height: 480px; }

.overlay_content {
  margin: 0 auto;
  padding: 0;
  width: 640px;
  height: 480px;
  position: relative;
  background: #fff; }

.close-overlay-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  padding: 0;
  min-height: 100%; }

.dontshow-overlay {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #000;
  color: #fff;
  font: 12px/20px bold Arial, Helvetica, sans-serif;
  cursor: pointer; }
  .dontshow-overlay:hover {
    background: #999;
    color: #222; }

/* ----------------------------------------------------------------------------
= Header Styles
----------------------------------------------------------------------------- */
header {
  width: 100%;
  height: 155px;
  border-top: 10px solid #f5b031; }
  header .site_wrapper {
    position: relative;
    height: 145px; }
  header .logo {
    position: relative;
    width: 100%; }
    header .logo img {
      max-width: 100%;
      height: auto; }
    header .logo a {
      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; }
      header .logo a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
  header .team-banners {
    position: absolute;
    top: -16px;
    right: 0px;
    width: 75%;
    height: 107px; }
    header .team-banners li a {
      display: block;
      margin: 0 auto;
      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; }
      header .team-banners li a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
    header .team-banners li:first-child .banner {
      margin-left: 30px; }

nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  margin: 0;
  padding: 0;
  z-index: 500;
  background-color: #f2ac2f; }
  nav:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 490;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
  nav ul {
    background-color: #f2ac2f;
    position: relative;
    z-index: 499;
    *zoom: 1; }
    nav ul:before, nav ul:after {
      content: "\0020";
      display: table; }
    nav ul:after {
      clear: both; }
    nav ul li {
      position: relative;
      width: 14.285714%;
      height: 25px; }
      nav ul li:first-child a:before {
        display: none; }
  nav a, nav a:link, nav a:visited {
    display: block;
    background-color: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    nav a:before, nav a:link:before, nav a:visited:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 1px;
      height: 100%;
      background-color: #D48D11; }
    nav a:after, nav a:link:after, nav a:visited:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 100%;
      height: 25px;
      background-color: transparent; }
    nav a:hover, nav a.hover, nav a.active, nav a:link:hover, nav a:link.hover, nav a:link.active, nav a:visited:hover, nav a:visited.hover, nav a:visited.active {
      background-color: #D48D11;
      color: #fff;
      text-decoration: none; }
  nav .hover a {
    background-color: #f2ac2f;
    color: #fff; }

nav .sub {
  display: none;
  position: absolute;
  top: 25px;
  width: auto;
  z-index: 500; }
nav .sub {
  left: 50%;
  margin-left: -100px; }

nav .sub ul {
  float: left;
  background: none;
  width: 200px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 0; }
  nav .sub ul li {
    float: none;
    height: auto;
    margin: 2px 0 0;
    padding: 0;
    clear: both; }
    nav .sub ul li:first-child {
      display: block;
      border-top: none; }
    nav .sub ul li a {
      display: block;
      width: 200px;
      height: auto;
      background-color: #1d1a12;
      background-color: rgba(29, 26, 18, 0.9);
      margin: 0px;
      padding: 7px 0;
      font-size: 12px;
      font-weight: 700;
      line-height: 120%;
      color: #fff;
      text-align: center;
      text-decoration: none;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      nav .sub ul li a:before {
        display: none; }
      nav .sub ul li a:hover, nav .sub ul li a.active, nav .sub ul li a:focus {
        background-color: #f2ac2f;
        text-decoration: none;
        color: #333; }

nav .sub2 {
  display: none;
  margin-top: 2px; }
  nav .sub2 ul li a {
    background-color: #3b598d;
    background-color: rgba(59, 89, 141, 0.95); }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
.footer {
  position: relative;
  width: 100%;
  margin-top: 32px;
  clear: both; }
  .footer .upper,
  .footer .lower {
    clear: both;
    *zoom: 1; }
    .footer .upper:before, .footer .upper:after,
    .footer .lower:before,
    .footer .lower:after {
      content: "\0020";
      display: table; }
    .footer .upper:after,
    .footer .lower:after {
      clear: both; }
  .footer .upper {
    margin-bottom: 30px; }
  .footer .add-details {
    font: normal 11px/130% Helvetica, Arial, sans-serif;
    color: #888; }
    .footer .add-details .ft-mnlogo {
      display: block;
      margin-bottom: 7px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      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;
      background-position: 0 -156px;
      height: 45px;
      width: 46px; }
      .footer .add-details .ft-mnlogo:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
    .footer .add-details .street-address,
    .footer .add-details .country {
      display: block; }
  .footer .ad-serve {
    padding-left: 55px; }
  .footer .logos {
    float: left; }
    .footer .logos li {
      float: left;
      margin-left: 22px; }
      .footer .logos li:first-child {
        margin-left: 0; }
    .footer .logos a {
      display: inline-block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      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; }
      .footer .logos a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
      .footer .logos a.ftddc-logo {
        background-position: 0 -113px;
        height: 33px;
        width: 100px;
        margin-top: -3px; }
      .footer .logos a.ftpse-logo {
        background-position: 0 -249px;
        height: 26px;
        width: 70px;
        margin-top: 3px; }
      .footer .logos a.ftbbruins-logo {
        background-position: 0 -21px;
        height: 39px;
        width: 38px;
        margin-top: -3px; }
  .footer .nav {
    float: left;
    margin-top: 4px;
    padding-left: 293px; }
    .footer .nav li {
      float: left; }
      .footer .nav li:first-child a {
        border-left: 0; }
      .footer .nav li a {
        display: inline-block;
        border-left: 1px solid #676767;
        margin-left: 10px;
        padding-left: 10px;
        font-family: Helvetica, Arial, sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: #676767;
        text-transform: uppercase;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
  .footer #search {
    float: left;
    position: relative;
    margin: 2px 0 0 25px;
    padding: 0;
    width: 96px;
    height: 23px; }
    .footer #search input[type="text"] {
      position: relative;
      width: 96px;
      height: 23px;
      background-color: #9e9e9e;
      border: 0;
      font: normal 10px "nimbus-sans", sans-serif;
      color: #fff;
      text-align: center;
      text-transform: uppercase;
      -moz-border-radius: 6px / 6px;
      -webkit-border-radius: 6px 6px;
      border-radius: 6px / 6px; }
      .footer #search input[type="text"]::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #fff;
        opacity: 1 !important; }
      .footer #search input[type="text"]:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #fff; }
      .footer #search input[type="text"]::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #fff; }
      .footer #search input[type="text"]:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #fff; }
      .footer #search input[type="text"]:focus {
        outline: none;
        -webkit-appearance: none; }
    .footer #search button {
      display: none; }
  .footer .global_footer {
    height: 35px;
    clear: both;
    background-color: #f5b031;
    *zoom: 1; }
    .footer .global_footer:before, .footer .global_footer:after {
      content: "\0020";
      display: table; }
    .footer .global_footer:after {
      clear: both; }
    .footer .global_footer .copyright {
      float: left;
      display: inline-block;
      margin: 0;
      padding: 13px 0 0;
      font: normal 9px/100% Verdana, sans-serif;
      color: #fff; }
    .footer .global_footer a#carbonhouse {
      float: right;
      display: inline-block;
      position: relative;
      margin: 0;
      padding-top: 10px;
      font-size: 8px;
      font-weight: bold;
      font-family: 'helvetica';
      color: #fff;
      cursor: pointer;
      text-align: right;
      text-decoration: none; }
      .footer .global_footer a#carbonhouse span {
        font-size: 12px; }
        .footer .global_footer a#carbonhouse span.carbon {
          margin-left: 2px;
          color: #fff; }
        .footer .global_footer a#carbonhouse span.house {
          margin-right: 2px;
          color: #fff; }
      .footer .global_footer a#carbonhouse:hover {
        text-decoration: none;
        color: #FFF; }
        .footer .global_footer a#carbonhouse:hover span {
          color: #FFF; }

.home #branding {
  width: 100%;
  background-color: #231f20; }
.home .site_wrapper {
  width: 980px; }
.home .lower {
  width: 980px;
  margin: 0 auto;
  *zoom: 1; }
  .home .lower:before, .home .lower:after {
    content: "\0020";
    display: table; }
  .home .lower:after {
    clear: both; }
  .home .lower .promo-blocks {
    width: 300px;
    height: 250px;
    margin-left: 40px;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.4); }
    .home .lower .promo-blocks:first-child {
      margin-left: 0; }
.home .sponsors_list .wrapper {
  padding-left: 0px; }
.home .sponsors_list h3 {
  width: 162px; }
.home .sponsors_list .carousel.horizontal {
  margin-left: 182px; }

.feature-hmevents {
  margin-bottom: 20px; }
  .feature-hmevents .carousel.horizontal {
    width: 980px;
    height: 295px;
    margin: 0 auto;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9); }
    .feature-hmevents .carousel.horizontal .entry {
      width: 172px;
      margin-top: 40px;
      margin-left: 21px;
      overflow: visible; }
      .feature-hmevents .carousel.horizontal .entry:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 0;
        left: 0;
        width: 172px;
        height: 200px;
        box-shadow: 0 0 9px rgba(0, 0, 0, 0.4); }
    .feature-hmevents .carousel.horizontal .info {
      position: relative;
      height: 200px;
      overflow: hidden;
      z-index: 2; }
      .feature-hmevents .carousel.horizontal .info:hover .details {
        bottom: 0;
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1; }
    .feature-hmevents .carousel.horizontal .thumb {
      width: 172px;
      height: 200px;
      background-color: #000;
      z-index: 3; }
      .feature-hmevents .carousel.horizontal .thumb img {
        width: 100%;
        height: 100%; }
    .feature-hmevents .carousel.horizontal .details {
      position: absolute;
      bottom: -20px;
      width: 100%;
      background-color: #292e35;
      background-color: rgba(0, 0, 0, 0.75);
      padding: 10px;
      z-index: 4;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
      -webkit-transition: all 200ms linear;
      -moz-transition: all 200ms linear;
      -o-transition: all 200ms linear;
      transition: all 200ms linear; }
      .feature-hmevents .carousel.horizontal .details h3 {
        margin-bottom: 0; }
      .feature-hmevents .carousel.horizontal .details h3 a, .feature-hmevents .carousel.horizontal .details .date {
        font-size: 12px;
        line-height: 125%;
        color: #fff; }
    .feature-hmevents .carousel.horizontal .buttons {
      width: 100%;
      margin-top: 12px;
      text-align: center;
      z-index: 5; }
      .feature-hmevents .carousel.horizontal .buttons a, .feature-hmevents .carousel.horizontal .buttons span {
        display: inline-block;
        width: 55px;
        font-size: 11px;
        text-align: center;
        margin-right: -2px; }
        .feature-hmevents .carousel.horizontal .buttons a:first-child, .feature-hmevents .carousel.horizontal .buttons span:first-child {
          margin-left: 0; }
        .feature-hmevents .carousel.horizontal .buttons a.tickets:before, .feature-hmevents .carousel.horizontal .buttons a.more:before, .feature-hmevents .carousel.horizontal .buttons span.tickets:before, .feature-hmevents .carousel.horizontal .buttons span.more:before {
          display: none; }
        .feature-hmevents .carousel.horizontal .buttons a.more:before, .feature-hmevents .carousel.horizontal .buttons span.more:before {
          display: none; }
        .feature-hmevents .carousel.horizontal .buttons a.group, .feature-hmevents .carousel.horizontal .buttons span.group {
          width: 60px; }
        .feature-hmevents .carousel.horizontal .buttons a.more, .feature-hmevents .carousel.horizontal .buttons span.more {
          width: 45px;
          padding-left: 7px; }
        .feature-hmevents .carousel.horizontal .buttons a.tickets, .feature-hmevents .carousel.horizontal .buttons span.tickets {
          width: 60px;
          background-color: #dcddde;
          padding-left: 5px;
          color: #231f20; }
          .feature-hmevents .carousel.horizontal .buttons a.tickets:hover, .feature-hmevents .carousel.horizontal .buttons span.tickets:hover {
            background-color: #f2ac2f;
            color: #fff; }
        .feature-hmevents .carousel.horizontal .buttons a.custom-buttons, .feature-hmevents .carousel.horizontal .buttons span.custom-buttons {
          width: auto;
          padding-left: 8px;
          padding-right: 8px; }
  .feature-hmevents .carousel-nav {
    position: relative;
    top: -57%; }
    .feature-hmevents .carousel-nav .arrow-left, .feature-hmevents .carousel-nav .rsArrowLeft .rsArrowIcn, .rsArrowLeft .feature-hmevents .carousel-nav .rsArrowIcn,
    .feature-hmevents .carousel-nav .arrow-right,
    .feature-hmevents .carousel-nav .rsArrowRight .rsArrowIcn,
    .rsArrowRight .feature-hmevents .carousel-nav .rsArrowIcn {
      display: block;
      position: absolute;
      cursor: pointer; }
    .feature-hmevents .carousel-nav .arrow-left, .feature-hmevents .carousel-nav .rsArrowLeft .rsArrowIcn, .rsArrowLeft .feature-hmevents .carousel-nav .rsArrowIcn {
      left: -58px; }
    .feature-hmevents .carousel-nav .arrow-right, .feature-hmevents .carousel-nav .rsArrowRight .rsArrowIcn, .rsArrowRight .feature-hmevents .carousel-nav .rsArrowIcn {
      right: -58px; }

.home-spotlights {
  width: 300px;
  background-color: #000; }
  .home-spotlights .spotlight:first-child {
    display: block; }
  .home-spotlights .title {
    width: 100%;
    background-color: #231f20;
    height: 24px;
    margin: 0 0 2px;
    text-align: center;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .home-spotlights .title:hover, .home-spotlights .title.open {
      background-color: #f2ac2f; }
    .home-spotlights .title span {
      display: block;
      font-size: 13px;
      font-weight: 500;
      line-height: 24px;
      color: #fff;
      text-transform: uppercase; }
  .home-spotlights .content {
    display: none;
    height: 174px;
    margin: -2px 0 2px;
    overflow: hidden; }
    .home-spotlights .content.item_10 {
      display: block; }

#tabs.tabgroup {
  position: relative;
  width: 300px;
  height: 250px;
  background-color: #333;
  overflow: hidden; }
#tabs .social_feed {
  position: absolute;
  top: 25px;
  left: 0;
  width: 300px;
  height: 225px;
  background-color: #fff; }
  #tabs .social_feed.face .rsTmb {
    left: -2px; }
  #tabs .social_feed.twitter .rsTmb {
    left: 99px; }
  #tabs .social_feed.twitter .holder {
    padding: 10px; }
  #tabs .social_feed.connect .rsTmb {
    right: 0; }
#tabs .rsTmb {
  display: block;
  position: absolute;
  top: -25px;
  width: 98px;
  height: 25px;
  background: #808080;
  margin-left: 2px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  #tabs .rsTmb:hover, #tabs .rsTmb.active {
    background-color: #f2ac2f;
    cursor: pointer; }
#tabs .holder {
  display: none;
  position: absolute;
  top: 0;
  width: 300px;
  height: 225px;
  z-index: 5;
  *zoom: 1; }
  #tabs .holder.active {
    display: block; }
#tabs .chirp {
  position: relative;
  width: 280px;
  height: 210px;
  list-style: none;
  padding: 0;
  margin: 0; }
#tabs .news-filler {
  background-color: #fff;
  height: 225px; }
  #tabs .news-filler .jspVerticalBar {
    top: 3px;
    right: 6px;
    height: 188px;
    width: 2px;
    background-color: #cfcfcf; }
  #tabs .news-filler .jspTrack {
    left: 0px;
    width: 2px; }
    #tabs .news-filler .jspTrack .jspDrag {
      background: #231f20;
      left: -5px;
      width: 12px;
      height: 12px !important;
      border-radius: 8px 8px; }
  #tabs .news-filler li {
    border-top: 1px solid #ccc;
    margin: 6px 14px 5px 0px;
    padding: 11px 0 0; }
    #tabs .news-filler li:first-child {
      border-top: 0;
      margin-top: 0;
      padding-top: 0; }
#tabs .news_feed {
  position: relative;
  width: 260px;
  height: 210px;
  list-style: none;
  padding: 12px;
  margin: 0; }
  #tabs .news_feed .news-filler {
    width: 280px; }
  #tabs .news_feed .news_item h3 {
    font-size: 16px; }

/* v1.0.5 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr; }

.royalSlider > * {
  float: left; }

.rsWebkit3d .rsSlide {
  -webkit-transform: translateZ(0); }

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden; }

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none; }

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0; }

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent; }

.rsArrow,
.rsThumbsArrow {
  cursor: pointer; }

.rsThumb {
  float: left;
  position: relative; }

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; }

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear; }

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center; }

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important; }

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none; }

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%; }

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto; }

.rsContent {
  width: 100%;
  height: 100%;
  position: relative; }

.rsPreloader {
  position: absolute;
  z-index: 0; }

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none; }

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25); }

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22; }

.rsTabs {
  float: left;
  background: none !important; }

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent; }

.rsVideoContainer {
  /*left: 0;
  top: 0;
  position: absolute;*/
  /*width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  float: left;*/
  width: auto;
  height: auto;
  line-height: 0;
  position: relative; }

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s; }

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1; }

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px; }

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15; }

img.rsImg {
  max-width: none; }

/*.grab-cursor {
	cursor:image-url('grab.png') 8 8, move; 
}

.grabbing-cursor{ 
	cursor:image-url('grabbing.png') 8 8, move;
}*/
.rsNoDrag {
  cursor: auto; }

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  /*	background: image-url('blank.gif');*/ }

/******************************
*
*  RoyalSlider Default Skin
*
*    1. Arrows
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    9. Overrides
*
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
*
******************************/
/* Override width/height */
.royalSlider {
  width: 600px;
  height: 280px;
  margin-bottom: 36px;
  *zoom: 1; }
  .royalSlider:before, .royalSlider:after {
    content: "\0020";
    display: table; }
  .royalSlider:after {
    clear: both; }

/* Background */
.rsDefault,
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
  background: #231F20;
  color: #FFF; }

.royalSlider > .rsContent {
  visibility: hidden; }

/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  width: 39px;
  height: 87%;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21; }

.rsDefault.rsVer .rsArrow {
  width: 100%;
  height: 50px; }
.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0; }
.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0; }

.rsDefault.rsHor .rsArrowLeft {
  left: 0;
  top: 0; }
.rsDefault.rsHor .rsArrowRight {
  right: 0;
  top: 0; }

.rsDefault .rsArrowIcn {
  position: absolute;
  top: 43%;
  cursor: pointer; }

.rsArrowLeft .rsArrowIcn {
  left: -58px; }

.rsArrowRight .rsArrowIcn {
  right: -58px; }

.container .full-slideshow .rsDefault .rsArrow {
  height: 100%; }
.container .full-slideshow .rsArrowLeft .rsArrowIcn {
  left: 10px; }
.container .full-slideshow .rsArrowRight .rsArrowIcn {
  right: 10px; }

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 39;
  left: 0;
  bottom: 0px;
  width: auto;
  height: auto;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 8px;
  overflow: hidden; }

.rsDefault .rsBullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  padding: 6px 5px 6px; }

.rsDefault .rsBullet span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer; }

.rsDefault .rsBullet.rsNavSelected span {
  background-color: #FFF;
  cursor: default; }

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  position: absolute;
  width: 100%;
  height: 183px;
  bottom: -129px;
  border-bottom-color: #ccc;
  border-bottom: 1px solid rgba(221, 221, 221, 0.4); }

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  margin-top: 71px;
  background: white; }

.rsDefault .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
  padding-left: 8px;
  margin-left: -8px; }

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%; }

.rsDefault .rsThumb {
  float: left;
  overflow: visible !important;
  width: 160px;
  height: 92px;
  background: #666;
  -moz-box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.2); }
  .rsDefault .rsThumb.tooltip-left .tooltip {
    right: auto;
    left: 0; }
  .rsDefault .rsThumb:last-child {
    margin-right: 0 !important; }
  .rsDefault .rsThumb .rsTmb {
    display: block;
    position: relative; }
  .rsDefault .rsThumb:hover .tooltip, .rsDefault .rsThumb:focus .tooltip {
    display: block; }
  .rsDefault .rsThumb:hover .arrow, .rsDefault .rsThumb:focus .arrow {
    display: block; }

.rsDefault .rsThumb img {
  display: block;
  position: relative;
  width: 160px;
  height: 92px; }

.rsDefault .rsThumb .arrow {
  position: absolute;
  display: none;
  bottom: 102px;
  right: 67px;
  width: 35px;
  height: 18px;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  visibility: visible;
  z-index: 5; }

.rsDefault .rsThumb .tooltip {
  display: none;
  position: absolute;
  bottom: 118px;
  right: 0px;
  margin: 0;
  padding: 2px 20px 10px 19px;
  width: auto;
  height: 30px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  z-index: 4;
  -moz-box-sizing: none;
  -webkit-box-sizing: none;
  box-sizing: none; }
  .rsDefault .rsThumb .tooltip .details {
    position: relative;
    width: auto;
    white-space: nowrap; }
  .rsDefault .rsThumb .tooltip span {
    display: inline;
    padding: 0;
    margin: 0;
    text-indent: 0;
    color: #333;
    text-transform: uppercase;
    font: normal 16px/120% Arial, Helvetica, sans-serif; }
    .rsDefault .rsThumb .tooltip span span {
      font: normal 13px/120% Arial, Helvetica, sans-serif;
      text-transform: none; }

.rsDefault .rsThumb.rsNavSelected {
  background: #02874a; }

.rsDefault .rsTmb {
  display: none; }

/* Thumbnails with text */
.rsDefault .rsTmb h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 20px;
  color: #FFF; }

.rsDefault .rsTmb span {
  color: #DDD;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px; }

/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75); }

.rsDefault .rsThumbsArrow:hover {
  background: rgba(0, 0, 0, 0.9); }

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0; }

.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: image-image-url("rs-default.png"); }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px; }

.rsDefault .rsThumbsArrowDisabled {
  display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px; }

  .rsDefault .rsThumbsHor {
    height: 44px; }

  .rsDefault .rsThumbsVer {
    width: 59px; } }
/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden; }

.rsDefault .rsTab {
  display: inline-block;
  text-align: center;
  height: auto;
  width: auto;
  text-decoration: none;
  cursor: pointer;
  *display: inline;
  *zoom: 1; }

/***************
*
*  5. Fullscreen button
*
****************/
.rsDefault .rsFullscreenBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 22;
  display: block;
  position: absolute;
  cursor: pointer; }

.rsDefault .rsFullscreenIcn {
  display: block;
  margin: 6px;
  width: 32px;
  height: 32px;
  background: image-image-url("rs-default.png") 0 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
  border-radius: 2px; }

.rsDefault .rsFullscreenIcn:hover {
  background-color: rgba(0, 0, 0, 0.9); }

.rsDefault.rsFullscreen .rsFullscreenIcn {
  background-position: -32px 0; }

/***************
*
*  6. Play/close video button
*
****************/
.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer; }

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  background: url('../images/rs-default.png?1404848089') no-repeat 0 -32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }

.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9); }

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%; }

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0); }

.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px; }

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url('../images/rs-default.png?1404848089') -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }

.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9); }

/***************
*
*  7. Preloader
*
****************/
.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url('../images/preloader-white.gif?1404848089');
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 38;
  /*	.ie9 & {
  		filter:none;
  	}*/ }
  .rsDefault .rsGCaption .rsABlock {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 176, 49, 0.8); }
    .rsDefault .rsGCaption .rsABlock p {
      width: 100%;
      height: 38px;
      padding: 0 15px;
      margin-bottom: 0;
      font-size: 12px;
      font-weight: 600;
      line-height: 38px;
      color: #fff;
      text-transform: uppercase; }
      .rsDefault .rsGCaption .rsABlock p:empty {
        display: none; }

/***************
*
*  9. Overrides/Customization
*
****************/
.rsDefault img {
  display: block;
  width: 100%; }
.rsDefault .rsGCaption {
  margin: 0 0 30px; }

.home-slideshow {
  position: relative;
  width: 980px;
  height: 305px;
  margin: 0 auto; }
  .home-slideshow:before, .home-slideshow:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 150px;
    height: 87%;
    z-index: 2; }
  .home-slideshow:before {
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #231f20), color-stop(100%, rgba(35, 31, 32, 0)));
    background-image: -moz-linear-gradient(left, #231f20 0%, rgba(35, 31, 32, 0) 100%);
    background-image: -webkit-linear-gradient(left, #231f20 0%, rgba(35, 31, 32, 0) 100%);
    background-image: linear-gradient(to right, #231f20 0%, rgba(35, 31, 32, 0) 100%); }
  .home-slideshow:after {
    top: 0;
    right: -1px;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzIzMWYyMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMzFmMjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(35, 31, 32, 0)), color-stop(100%, #231f20));
    background-image: -moz-linear-gradient(left, rgba(35, 31, 32, 0) 0%, #231f20 100%);
    background-image: -webkit-linear-gradient(left, rgba(35, 31, 32, 0) 0%, #231f20 100%);
    background-image: linear-gradient(to right, rgba(35, 31, 32, 0) 0%, #231f20 100%); }
  .home-slideshow .royalSlider {
    width: 100%;
    height: 100%;
    position: absolute; }
  .home-slideshow .rsDefault img {
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    margin-left: 0 !important;
    margin-top: 0 !important; }
  .home-slideshow .rsInfo {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 22; }
    .home-slideshow .rsInfo .desc {
      display: none; }
    .home-slideshow .rsInfo .buttons {
      float: right;
      margin-right: 10px; }
      .home-slideshow .rsInfo .buttons a, .home-slideshow .rsInfo .buttons span {
        float: left;
        margin-left: 10px; }
        .home-slideshow .rsInfo .buttons a:before, .home-slideshow .rsInfo .buttons span:before {
          display: none; }
        .home-slideshow .rsInfo .buttons a:hover, .home-slideshow .rsInfo .buttons span:hover {
          background-color: #f2ac2f; }
          .home-slideshow .rsInfo .buttons a:hover:before, .home-slideshow .rsInfo .buttons span:hover:before {
            display: none; }
        .home-slideshow .rsInfo .buttons a.more, .home-slideshow .rsInfo .buttons a.tickets, .home-slideshow .rsInfo .buttons span.more, .home-slideshow .rsInfo .buttons span.tickets {
          padding-left: 0; }
  .home-slideshow .rsDefault .rsBullets {
    background-color: transparent;
    bottom: 11px;
    left: 12px; }
  .home-slideshow .rsDefault .rsBullet {
    width: 15px;
    height: 16px;
    background-color: #717172;
    margin-left: 8px;
    cursor: pointer; }
    .home-slideshow .rsDefault .rsBullet:first-child {
      margin-left: 0; }
    .home-slideshow .rsDefault .rsBullet:hover, .home-slideshow .rsDefault .rsBullet.rsNavSelected {
      background-color: #eba82c; }
    .home-slideshow .rsDefault .rsBullet span {
      width: 100%;
      height: 100%;
      background-color: transparent;
      border-radius: 0; }

.arrows, .rsArrowIcn {
  background-color: transparent;
  background-image: url('../images/arrow-sprite.png?1405542712');
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  .arrows:hover, .rsArrowIcn:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }

.arrow-left, .rsArrowLeft .rsArrowIcn {
  width: 40px;
  height: 40px;
  background-position: 0 -48px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-left:after, .rsArrowLeft .rsArrowIcn:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrow-sprite.png?1405542712');
    background-position: 0 0;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-left:hover:after, .rsArrowLeft .rsArrowIcn:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }
  .arrow-left:active, .rsArrowLeft .rsArrowIcn:active {
    margin-top: 1px; }

.arrow-right, .rsArrowRight .rsArrowIcn {
  width: 40px;
  height: 40px;
  background-position: 0 -142px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-right:after, .rsArrowRight .rsArrowIcn:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrow-sprite.png?1405542712');
    background-position: 0 -95px;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-right:hover:after, .rsArrowRight .rsArrowIcn:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }
  .arrow-right:active, .rsArrowRight .rsArrowIcn:active {
    margin-top: 1px; }

.carousel.horizontal {
  position: relative; }
  .carousel.horizontal .list_holder {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden; }
  .carousel.horizontal .list {
    position: relative;
    width: 1000em;
    list-style: none;
    *zoom: 1; }
    .carousel.horizontal .list:before, .carousel.horizontal .list:after {
      content: "\0020";
      display: table; }
    .carousel.horizontal .list:after {
      clear: both; }
  .carousel.horizontal .entry {
    position: relative;
    float: left;
    margin: 2px 0 0;
    padding: 0px;
    overflow: hidden;
    background: none; }
    .carousel.horizontal .entry a {
      display: block;
      z-index: 5; }
      .carousel.horizontal .entry a:hover img {
        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; }
        .carousel.horizontal .entry a:hover img:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
          opacity: 0.8; }

.banner {
  position: relative; }

#column_2 .banner {
  position: relative;
  display: block;
  width: 300px;
  height: 100px;
  margin: 0;
  padding: 0px;
  overflow: hidden; }
  #column_2 .banner:hover, #column_2 .banner:focus {
    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; }
    #column_2 .banner:hover:hover, #column_2 .banner:focus:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      opacity: 0.8; }

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

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  position: relative;
  margin: 0 0 20px;
  padding: 0; }
  .link ul.list {
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 0;
    list-style: none; }
    .link ul.list li {
      height: 40px;
      border-top: 1px solid #ccc;
      padding: 0;
      margin: 0 0 5px; }
    .link ul.list a, .link ul.list span {
      position: relative;
      display: block;
      padding: 0;
      font-size: 14px;
      font-weight: 700;
      color: #464646;
      line-height: 44px;
      text-decoration: none; }
    .link ul.list a {
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      .link ul.list a:hover, .link ul.list a:focus {
        color: #003a74; }
      .link ul.list a:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible; }
      .link ul.list a.external:after {
        background-position: 0 -718px;
        height: 20px;
        width: 19px;
        top: 12px;
        right: 3px; }
      .link ul.list a.pdf:after {
        background-position: 0 -602px;
        height: 19px;
        width: 16px;
        top: 12px;
        right: 4px; }
      .link ul.list a.image:after {
        background-position: 0 -521px;
        height: 17px;
        width: 23px;
        top: 13px;
        right: 0; }
      .link ul.list a.email:after {
        background-position: 0 -444px;
        height: 16px;
        width: 21px;
        top: 14px;
        right: 0; }

/* @group FAQ */
.faq {
  position: relative;
  margin: 0 0 25px;
  padding: 0; }
  .faq dl {
    border-bottom: 1px solid #ccc; }
  .faq dt {
    position: relative;
    margin: 0;
    padding: 0;
    border-top: 1px solid #CCC;
    overflow: auto;
    cursor: pointer; }
    .faq dt a {
      display: block;
      padding: 10px 0;
      text-decoration: none; }
    .faq dt p {
      margin: 0;
      padding: 0;
      font-size: 14px;
      font-weight: 700;
      color: #464646; }
      .faq dt p:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 11px;
        right: 3px;
        background-position: 0 -494px;
        height: 17px;
        width: 17px; }
    .faq dt:hover p, .faq dt.active p, .faq dt.open p {
      color: #f2ac2f; }
      .faq dt:hover p:after, .faq dt.active p:after, .faq dt.open p:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 11px;
        right: 5px;
        background-position: 0 -470px;
        height: 14px;
        width: 13px; }
  .faq dd {
    display: none;
    margin-top: 8px;
    padding: 0 20px 0 0;
    overflow: hidden; }
  .faq ul {
    position: relative; }
    .faq ul ul {
      padding-top: 5px;
      margin-bottom: 0;
      border: none; }
    .faq ul li {
      position: relative;
      padding-left: 24px; }
      .faq ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 5px;
        left: 0;
        background-position: 0 0;
        height: 11px;
        width: 11px; }
      .faq ul li li {
        border-bottom: none; }

/* @end */
.tabs-wrapper {
  background: none;
  width: 300px;
  height: 250px; }

.tabs {
  background-color: #000;
  margin: 0;
  *zoom: 1; }
  .tabs:before, .tabs:after {
    content: "\0020";
    display: table; }
  .tabs:after {
    clear: both; }
  .tabs li {
    float: left;
    width: 33.3%;
    height: 25px; }
  .tabs a {
    display: block;
    background-color: #231f20;
    font-size: 13px;
    line-height: 25px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .tabs a:hover, .tabs a.active {
      background-color: #f2ac2f; }

section.tabgroup {
  margin: 0;
  padding: 0; }
  section.tabgroup .tabs-content {
    display: none;
    background-color: #fff; }

/* ----------------------------------------------------------------------------
=Sidebar Subnav
----------------------------------------------------------------------------- */
.subnav {
  position: relative;
  width: 300px;
  margin: 0 0 20px;
  padding: 0; }
  .subnav ul {
    width: 300px;
    margin: 0; }
    .subnav ul li {
      padding: 0; }
      .subnav ul li a {
        display: block;
        background-color: #717172;
        margin-bottom: 2px;
        font-size: 12px;
        font-weight: 600;
        line-height: 24px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none; }
        .subnav ul li a:hover, .subnav ul li a.active:hover {
          background-color: #403336;
          color: #fff; }
        .subnav ul li a.active {
          background-color: #f2ac2f;
          color: #fff; }
        .subnav ul li a.active + div.sub ul {
          display: block; }
    .subnav ul ul li {
      border-bottom: none;
      margin: 0 20px; }
      .subnav ul ul li:first-child a {
        line-height: 24px; }

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

.buttons a, .buttons span {
  display: block;
  width: 130px;
  background-color: #717172;
  margin: 0;
  padding: 2px 0;
  text-align: center;
  font-family: "nimbus-sans", sans-serif;
  font-size: 12px;
  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; }
  .buttons a:hover, .buttons span:hover {
    text-decoration: none;
    background-color: #f2ac2f;
    color: #333; }
.buttons a, .buttons span {
  position: relative;
  padding: 6px 5px;
  font-weight: 700; }
  .buttons a.tickets, .buttons span.tickets {
    padding-left: 31px;
    background-color: #fcba42;
    color: #333333; }
    .buttons a.tickets:before, .buttons span.tickets:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 3px;
      left: 6px;
      background-position: 0 -687px;
      height: 21px;
      width: 22px; }
    .buttons a.tickets.tba, .buttons a.tickets.onsale.soon, .buttons span.tickets.tba, .buttons span.tickets.onsale.soon {
      padding-left: 0; }
      .buttons a.tickets.tba:before, .buttons a.tickets.onsale.soon:before, .buttons span.tickets.tba:before, .buttons span.tickets.onsale.soon:before {
        display: none; }
  .buttons a.more, .buttons span.more {
    padding-left: 25px; }
    .buttons a.more:before, .buttons span.more:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 4px;
      left: 12px;
      background-position: 0 -575px;
      height: 17px;
      width: 17px; }
    .buttons a.more:hover:before, .buttons span.more:hover:before {
      background-position: 0 -548px;
      height: 17px;
      width: 17px; }
      .buttons a.more:hover:before:hover, .buttons a.more:hover:before.ico-minfo-hover, .buttons span.more:hover:before:hover, .buttons span.more:hover:before.ico-minfo-hover {
        background-position: 0 -575px; }
.buttons a.tickets:hover {
  color: #fff; }
  .buttons a.tickets:hover:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 3px;
    left: 6px;
    background-position: 0 -656px;
    height: 21px;
    width: 22px; }

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

.paging {
  position: relative;
  height: 42px;
  border-bottom: 1px solid #ccc;
  margin: 8px 0 0;
  padding: 0px;
  *zoom: 1; }
  .paging:before, .paging:after {
    content: "\0020";
    display: table; }
  .paging:after {
    clear: both; }
  .paging:last-child {
    border-bottom: 0;
    border-top: 1px solid #ccc;
    padding-top: 8px; }
  .paging .record {
    float: left;
    width: 100px;
    padding: 10px 0 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #666; }
  .paging .pages {
    float: right;
    width: auto;
    margin: 3px -19px 0 0;
    text-align: left; }
    .paging .pages strong, .paging .pages a {
      float: left;
      width: 25px;
      height: 25px;
      background-color: #717172;
      margin: 0 0 0 3px;
      font-size: 12px;
      font-weight: 700;
      line-height: 25px;
      color: #fff;
      text-align: center;
      text-decoration: none; }
      .paging .pages strong:first-child, .paging .pages a:first-child {
        margin-left: 0; }
    .paging .pages a:hover,
    .paging .pages strong {
      background-color: #f2ac2f;
      font-size: 13px;
      color: #333; }
    .paging .pages strong:last-child {
      margin-right: 5px; }
    .paging .pages .prev,
    .paging .pages .next {
      position: relative;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
      .paging .pages .prev:after,
      .paging .pages .next:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 7px;
        height: 0;
        width: 0;
        pointer-events: none;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent; }
    .paging .pages .prev:after {
      left: 9px;
      border-right: 6px solid #fff; }
    .paging .pages .next:after {
      right: 9px;
      border-left: 6px solid #fff; }
    .paging .pages .prev:hover:after {
      border-right: 6px solid #333; }
    .paging .pages .next:hover:after {
      border-left: 6px solid #333; }

/* ----------------------------------------------------------------------------
=Seating Charts
----------------------------------------------------------------------------- */
.seating {
  *zoom: 1; }
  .seating:before, .seating:after {
    content: "\0020";
    display: table; }
  .seating:after {
    clear: both; }

.seating_charts {
  margin: 0 auto;
  padding: 15px 0 0;
  clear: both; }
  .seating_charts .entry {
    position: relative;
    float: left;
    display: block;
    width: 280px;
    height: auto;
    background-color: #ccc;
    border: 1px solid #ccc;
    margin: 0 10px 20px 0px;
    padding: 3px 3px 0;
    overflow: hidden;
    *zoom: 1; }
    .seating_charts .entry:before, .seating_charts .entry:after {
      content: "\0020";
      display: table; }
    .seating_charts .entry:after {
      clear: both; }
    .seating_charts .entry.alt {
      float: right;
      margin-right: 0; }

.seating_charts .thumb {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 210px;
  overflow: hidden; }
  .seating_charts .thumb img {
    margin: 0;
    padding: 0;
    border: none;
    display: block; }
  .seating_charts .thumb a {
    margin: 0;
    padding: 0;
    display: block;
    width: 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; }
    .seating_charts .thumb a:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      opacity: 0.8; }
    .seating_charts .thumb a img {
      width: 100%; }

.seating_charts .info {
  width: 100%;
  background-color: #eee;
  margin: 0 auto 3px;
  padding: 7px 0; }
  .seating_charts .info h3 {
    background: transparent;
    margin: 0;
    padding: 0 0 5px;
    text-align: center; }
    .seating_charts .info h3 a {
      margin: 0;
      padding: 0;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      color: #333;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1; }

.seating_charts .buttons {
  width: 85%;
  margin: 0 auto;
  padding: 0;
  *zoom: 1; }
  .seating_charts .buttons a, .seating_charts .buttons span {
    display: block;
    width: 110px;
    background-color: #717172;
    margin: 0;
    padding: 2px 0;
    text-align: center;
    font-family: "nimbus-sans", sans-serif;
    font-size: 13px;
    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; }
    .seating_charts .buttons a:hover, .seating_charts .buttons span:hover {
      text-decoration: none;
      background-color: #f2ac2f;
      color: #333; }
  .seating_charts .buttons:before, .seating_charts .buttons:after {
    content: "\0020";
    display: table; }
  .seating_charts .buttons:after {
    clear: both; }
  .seating_charts .buttons a {
    float: left;
    margin-left: 10px;
    padding: 5px 0; }
    .seating_charts .buttons a:first-child {
      margin-left: 0; }

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  height: 500px; }

#jquery-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0; }
  #jquery-lightbox a img {
    border: none; }

#lightbox-container-image-box {
  position: relative;
  background-color: #fff;
  width: 250px;
  height: 250px;
  margin: 0 auto; }

#lightbox-container-image {
  padding: 10px; }

#lightbox-loading {
  position: absolute;
  top: 40%;
  left: 0%;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

#lightbox-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }
  #lightbox-nav a {
    outline: none; }

#lightbox-container-image-box > #lightbox-nav {
  left: 0; }

#lightbox-nav-btnPrev,
#lightbox-nav-btnNext {
  width: 49%;
  height: 100%;
  zoom: 1;
  display: block; }

#lightbox-nav-btnPrev {
  left: 0;
  float: left; }

#lightbox-nav-btnNext {
  right: 0;
  float: right; }

#lightbox-container-image-data-box {
  background-color: #fff;
  width: 100%;
  font-family: "nimbus-sans", sans-serif;
  font-size: 13px;
  line-height: 1.4em;
  margin: 0 auto;
  padding: 0 10px 0;
  overflow: auto; }

#lightbox-container-image-data {
  padding: 10px 0 0;
  color: #464646; }

#lightbox-container-image-data #lightbox-image-details {
  float: left;
  width: 70%;
  text-align: left; }

#lightbox-image-details-caption {
  font-weight: bold; }

#lightbox-image-details-currentNumber {
  display: none !important;
  font-size: 0px;
  line-height: 0px;
  clear: left;
  padding-bottom: 1.0em; }

#lightbox-secNav-btnClose {
  float: right;
  width: 66px;
  padding-bottom: 0.7em; }

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

#contests.index .overview {
  padding: 0 15px; }

.contest_list {
  position: relative; }
  .contest_list .entry {
    display: block;
    clear: both;
    margin: 0 0 10px;
    padding: 35px 15px 0px;
    width: 610px;
    position: relative;
    background: url(../images/event_list_bg.png) no-repeat top center; }
    .contest_list .entry:first-child {
      background: url(../images/event_list_bg.png) no-repeat center -13px;
      padding-top: 20px; }
    .contest_list .entry .info {
      float: right;
      width: 410px;
      margin: 5px 0 0; }
      .contest_list .entry .info h3 {
        width: 345px; }
        .contest_list .entry .info h3 a {
          font-weight: normal;
          font-size: 24px;
          color: #333;
          text-transform: none;
          font-family: Georgia, "Times New Roman", serif; }
          .contest_list .entry .info h3 a:hover {
            color: #222; }
      .contest_list .entry .info h4 {
        width: 345px;
        color: #111;
        font-style: italic;
        font-weight: bold;
        font-size: 12px; }
      .contest_list .entry .info p {
        color: #fff; }
    .contest_list .entry .thumb {
      height: 132px;
      width: 177px;
      margin: 0 5px 5px 0;
      padding: 5px;
      float: left;
      background: url(../images/thumb_border.png) no-repeat 0 0; }
      .contest_list .entry .thumb a {
        display: block;
        border: 1px solid transparent;
        width: 175px;
        height: 130px; }
        .contest_list .entry .thumb a:hover {
          border: 1px solid #F00;
          width: 175px;
          height: 130px; }
      .contest_list .entry .thumb img {
        padding: 0px;
        width: 175px;
        height: 130px; }
  .contest_list .date {
    color: #7F1211;
    font-size: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    line-height: 100%;
    margin: 0 0 10px;
    padding: 0;
    width: 345px; }
  .contest_list .buttons {
    width: auto;
    position: relative;
    background: url(../images/buttons_rule.png) no-repeat left top;
    padding: 1px 0 0; }
    .contest_list .buttons a {
      display: block;
      text-transform: uppercase;
      font-size: 18px;
      color: #7F1211;
      float: left;
      font-weight: normal;
      line-height: 20px;
      padding: 8px 10px;
      width: auto;
      text-align: left;
      letter-spacing: 1px; }
      .contest_list .buttons a:link, .contest_list .buttons a:visited {
        display: block;
        text-transform: uppercase;
        font-size: 18px;
        color: #7F1211;
        float: left;
        font-weight: normal;
        line-height: 20px;
        padding: 8px 10px;
        width: auto;
        text-align: left;
        letter-spacing: 1px; }
    .contest_list .buttons span {
      display: block;
      text-transform: uppercase;
      font-size: 18px;
      color: #7F1211;
      float: left;
      font-weight: normal;
      line-height: 20px;
      padding: 8px 10px;
      width: auto;
      text-align: left;
      letter-spacing: 1px;
      color: #666; }
    .contest_list .buttons a.more {
      background: url(../images/button_gradient.png) no-repeat right top;
      padding-left: 0; }
    .contest_list .buttons a:hover {
      color: #333; }

.contest_detail .date {
  margin: 0 0 5px; }
.contest_detail .overview, .contest_detail .description, .contest_detail .form {
  margin: 0 0 20px; }
.contest_detail h1 {
  text-transform: none; }

#contests.detail .event_list {
  width: 640px;
  margin-left: -20px; }
  #contests.detail .event_list .list .entry {
    width: 610px;
    background-position: center top;
    padding-top: 35px; }

.map_holder {
  display: block;
  position: relative;
  width: 980px;
  height: 400px;
  border: 1px solid #ccc;
  margin-bottom: 25px;
  -moz-border-radius: 2px 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px 2px; }
  .map_holder .map {
    width: 100%;
    height: 100%; }

.map_window .info {
  border-bottom: 1px dotted #ccc;
  padding: 0 0 4px;
  margin: 0 0 8px; }
  .map_window .info h4 {
    font-weight: 400;
    color: #464646; }
  .map_window .info address {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 140%;
    color: #464646; }
.map_window .desc {
  float: left;
  width: 120px; }
  .map_window .desc img {
    float: left;
    margin: 0 15px 0 0;
    width: 120px;
    height: auto; }
  .map_window .desc p {
    padding: 0;
    margin: 0; }
.map_window .directions {
  display: none;
  padding: 4px 0 0; }
  .map_window .directions label {
    display: block;
    margin: 0 0 8px;
    font-size: 12px;
    color: #464646; }
  .map_window .directions input[type=text] {
    border: 1px solid #ccc;
    padding: 4px 5px;
    margin: 0 0 8px;
    width: 72%;
    font-size: 12px;
    color: #464646; }
  .map_window .directions form button {
    float: right;
    display: block;
    background-color: #717172;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 5px;
    color: #fff;
    border: 0;
    -moz-border-radius: 3px 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px 3px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .map_window .directions form button:hover {
      background-color: #f2ac2f;
      color: #333; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both;
  *zoom: 1; }
  .sitemap:before, .sitemap:after {
    content: "\0020";
    display: table; }
  .sitemap:after {
    clear: both; }
  .sitemap .header {
    margin-bottom: 18px; }
  .sitemap ul {
    margin: 0; }
    .sitemap ul li {
      margin-bottom: 25px;
      padding: 0;
      color: #7a7878; }
    .sitemap ul a {
      font-size: 15px;
      font-weight: 400; }
      .sitemap ul a:hover {
        text-decoration: none; }
      .sitemap ul a.top-level {
        display: inline-block;
        font-size: 18px;
        line-height: 25px;
        color: #464646; }
    .sitemap ul.sub-level {
      margin-left: 10px;
      margin-top: 6px; }
      .sitemap ul.sub-level li {
        margin: 0 0 3px; }
      .sitemap ul.sub-level ul {
        display: none; }

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0 10px; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      width: 520px;
      position: relative;
      border-bottom: 1px solid #AAA; }
      .concierge_listing .list .entry .thumb {
        width: 110px;
        height: 85px;
        margin: 0 20px 5px 0;
        padding: 5px;
        float: left;
        border: 1px solid #AAA; }
        .concierge_listing .list .entry .thumb a {
          display: block;
          width: 110px;
          height: 85px; }
        .concierge_listing .list .entry .thumb img {
          width: 110px;
          height: 85px; }
    .concierge_listing .list .info {
      float: left;
      width: 370px;
      margin: 0; }
      .concierge_listing .list .info h3 a {
        color: red;
        text-decoration: none; }
        .concierge_listing .list .info h3 a:hover {
          color: #222; }
      .concierge_listing .list .info address {
        color: black;
        font-size: 12px;
        font-style: italic;
        line-height: 130%;
        padding: 0; }
  .concierge_listing .booking {
    width: auto;
    position: relative; }
    .concierge_listing .booking a, .concierge_listing .booking a:link, .concierge_listing .booking a:visited {
      display: block;
      float: left;
      line-height: 25px;
      padding: 0 5px;
      text-decoration: none;
      text-align: center;
      color: #fff;
      background: black;
      border: 1px solid black;
      width: auto;
      font-size: 12px;
      height: auto;
      margin: 0;
      height: 25px;
      text-transform: uppercase; }
      .concierge_listing .booking a:hover, .concierge_listing .booking a:link:hover, .concierge_listing .booking a:visited:hover {
        background: #333;
        border: 1px solid #333; }

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
.jspContainer {
  overflow: hidden;
  position: relative; }

.jspPane {
  position: absolute; }

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 6px;
  width: 10px;
  height: 236px;
  background: #DDD; }

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  opacity: 0; }

.jspVerticalBar *,
.jspHorizontalBar * {
  margin: 0;
  padding: 0; }

.jspCap {
  display: none; }

.jspHorizontalBar .jspCap {
  float: left; }

.jspTrack {
  background: none;
  position: relative;
  width: 10px; }

.jspDrag {
  position: relative;
  top: 0;
  left: 0px;
  background: url(../images/drag_arrow.jpg) no-repeat 0 0;
  width: 10px;
  height: 58px !important;
  cursor: pointer; }

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%; }

.jspArrow {
  display: block;
  background: none;
  text-indent: -20000px;
  cursor: pointer; }

.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d; }

.jspVerticalBar .jspArrow {
  height: 16px; }

.jspHorizontalBar .jspArrow {
  width: 16px;
  float: left;
  height: 100%; }

.jspVerticalBar .jspArrow:focus {
  outline: none; }

.jspCorner {
  background: #eeeef4;
  float: left;
  height: 100%; }

/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
.venue_detail .heading {
  border-bottom: 1px solid #ccc;
  padding: 0 0 15px;
  margin: 0 0 15px; }
  .venue_detail .heading h1 {
    display: block;
    width: 600px;
    margin: 0;
    padding: 27px 0 0px;
    font: bold 26px/120% "nimbus-sans", sans-serif;
    text-transform: uppercase;
    color: #333; }
.venue_detail .venue_body .events {
  border-top: 1px solid #ccc;
  padding-top: 15px; }
.venue_detail .main_column .seating img {
  max-width: 600px; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  padding: 15px;
  background: #fff; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: auto;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 1046; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.mfp-container .mfp-content {
  background: #f1f1f1;
  *zoom: 1; }
  .mfp-container .mfp-content:before, .mfp-container .mfp-content:after {
    content: "\0020";
    display: table; }
  .mfp-container .mfp-content:after {
    clear: both; }
.mfp-container .rsDefault,
.mfp-container .rsDefault .rsSlide,
.mfp-container .rsDefault .rsOverflow,
.mfp-container .rsDefault .rsVideoFrameHolder,
.mfp-container .rsDefault .rsThumbs {
  background: none; }
.mfp-container .royalSlider {
  height: 600px;
  width: 800px; }
  .mfp-container .royalSlider .rsThumb {
    width: 160px;
    height: 86px;
    overflow: hidden;
    text-align: center; }
    .mfp-container .royalSlider .rsThumb img {
      height: auto;
      width: 160px;
      min-height: 86px;
      margin: 0 auto; }
  .mfp-container .royalSlider .rsArrowLeft .rsArrowIcn {
    left: 15px; }
  .mfp-container .royalSlider .rsArrowRight .rsArrowIcn {
    right: 15px; }
  .mfp-container .royalSlider .rsGCaption {
    padding: 0;
    text-align: center;
    height: 18px;
    min-height: 18px;
    overflow: hidden;
    font: bold 14px/18px "nimbus-sans", sans-serif;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    bottom: 40px;
    left: 0;
    background-image: none;
    background-color: transparent;
    color: #333; }
  .mfp-container .royalSlider.rsDefault .rsThumbsHor {
    position: absolute;
    width: 830px;
    height: 100px;
    bottom: -75px;
    background: #f1f1f1;
    border-bottom-color: transparent;
    border-bottom: 0;
    margin-left: -15px; }
    .mfp-container .royalSlider.rsDefault .rsThumbsHor .rsThumbsContainer {
      background-color: transparent;
      margin-top: 0; }

/* @group Photo Gallery Listing page styles */
.gallery {
  float: left;
  background-color: #CCC;
  margin-bottom: 20px; }

.ie7 .gallery,
.ie8 .gallery {
  border: none;
  background-color: #000;
  filter: none;
  width: 200px;
  height: 220px; }

.gallery img {
  height: auto;
  overflow: auto; }

.gallery a {
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  line-height: 130%;
  color: #444; }
  .gallery a .thumb {
    border: 1px solid #fff;
    width: 180px;
    height: 150px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #111; }

.gallery_wrapper .royalSlider {
  display: none;
  height: auto;
  width: 800px; }
  .gallery_wrapper .royalSlider .rsGCaption,
  .gallery_wrapper .royalSlider a.rsImg {
    display: none; }
  .gallery_wrapper .royalSlider .rsThumbsHor {
    width: 800px; }

.photo_gallery {
  width: 32%;
  float: left;
  margin-right: 15px;
  margin-bottom: 20px;
  padding-top: 5px;
  text-align: center; }
  .photo_gallery p {
    margin: 0;
    padding: 0; }
    .photo_gallery p.title {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 2px;
      text-transform: uppercase; }
  .photo_gallery .view-gallery {
    display: inline-block;
    position: relative;
    margin: 10px 0; }
  .photo_gallery .open-gallery-link {
    width: 180px;
    height: 110px;
    overflow: hidden; }
    .photo_gallery .open-gallery-link img {
      width: 180px;
      height: 110px;
      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; }
      .photo_gallery .open-gallery-link img:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }

/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.ie7 .home .footer .nav {
  padding-left: 120px; }

.ie8 .img-colorbar {
  position: relative; }
.ie8 .home .footer .nav {
  padding-left: 291px; }

.ie9 .img-colorbar {
  position: relative; }
.ie9 .one_sidebar_right {
  margin-top: 10px; }
.ie9 .home .footer .nav {
  padding-left: 291px; }

.ie10 .img-colorbar {
  position: relative; }
.ie10 .one_sidebar_right {
  margin-top: 10px; }
.ie10 .home .footer .nav {
  padding-left: 291px; }

.ie11.no-smil .img-colorbar {
  position: relative; }
.ie11.no-smil .one_sidebar_right {
  margin-top: 10px; }
.ie11.no-smil .home .footer .nav {
  padding-left: 291px; }

#fb_connect_status {
  display: none; }

.fbtabs {
  padding: 0 0 15px;
  width: 200px;
  height: 370px;
  margin: 0 0 15px;
  position: relative; }
  .fbtabs h4 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    margin: 10px 0;
    padding: 0 0 0 28px;
    text-align: left;
    text-transform: uppercase;
    background: url(../images/social_icons.png) no-repeat 0 2px; }
  .fbtabs a.seeall {
    position: absolute;
    top: 45px;
    right: 12px;
    width: 16px;
    height: 12px;
    padding: 5px;
    z-index: 25;
    cursor: pointer;
    display: block;
    text-indent: -90000px;
    background: url(../images/icon_seeall.png) no-repeat center center; }
  .fbtabs .css-tabs {
    margin: 0 0 0 -1px;
    padding: 0; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0; }
    .fbtabs .css-tabs a {
      background-color: #2577C6;
      border: 1px solid #fff;
      color: #fff;
      display: block;
      font-size: 10px;
      margin: 0 1px 0;
      padding: 5px 10px 2px;
      text-transform: uppercase;
      text-decoration: none; }
      .fbtabs .css-tabs a.current {
        background-color: #fff;
        color: #2577C6; }
  .fbtabs .css-panes {
    background-color: #fff;
    clear: both;
    padding: 5px;
    width: 170px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    height: 260px;
    top: -1px; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 238px;
      padding: 10px 0;
      background: #ffffff; }
    .fbtabs .css-panes .attendee {
      float: left;
      height: 85px;
      padding: 0 3px;
      width: 50px;
      text-align: center;
      font-weight: bold;
      line-height: 110%; }
      .fbtabs .css-panes .attendee a {
        display: block;
        clear: both;
        text-align: left;
        line-height: 120%;
        font-size: 11px;
        color: #222;
        text-decoration: none; }
        .fbtabs .css-panes .attendee a div {
          font-weight: normal;
          font-size: 10px; }
      .fbtabs .css-panes .attendee img {
        display: block;
        height: 50px;
        width: 50px; }

.fbtabs_holder {
  padding: 5px 10px 10px;
  margin: 0;
  position: relative; }

#fb_connect_rsvpshare {
  position: absolute;
  bottom: 20px;
  left: 18px; }

#fb_connect_rsvpshare span.status {
  height: 20px;
  line-height: 20px;
  padding: 2px 0 0 5px;
  color: #333;
  font-size: 14px;
  margin: 0 20px 0 5px;
  display: block;
  font-weight: bold;
  float: left; }

#fb_connect_rsvpshare a, #fb_connect_rsvpshare a:link, #fb_connect_rsvpshare a:visited {
  width: 120px;
  color: #fff;
  text-transform: uppercase;
  height: 18px;
  display: block;
  float: left;
  text-align: center;
  padding: 5px 0 0;
  background: #0075AC;
  border: 2px solid #333;
  font-weight: bold;
  font-size: 12px; }

#fb_connect_rsvpshare a:first-child {
  margin-right: 10px; }

#fb_connect_rsvpshare a:hover {
  text-decoration: none;
  color: #0075AC;
  background: #FFF; }

/* tab pane */
.css-panes #fb_event_attendees strong, .css-panes #fb_event_friends strong {
  display: block;
  margin: 0 0 5px;
  text-align: center;
  width: 100%; }

#fb_rsvp {
  position: relative;
  z-index: 15;
  width: 180px;
  margin: 10px auto;
  text-align: center;
  display: none; }

#fb_rsvp_status {
  position: relative;
  z-index: 15;
  width: 180px;
  margin: 10px auto;
  text-align: center;
  display: none; }

#fb_rsvp button, #fb_rsvp_status button {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 0px;
  text-align: center;
  line-height: 11px;
  background: #FEE230;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid #EBBB2A;
  cursor: pointer; }

#fb_rsvp_status span {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 10px;
  text-align: center;
  line-height: 11px;
  background: #FEE230;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid #EBBB2A;
  cursor: pointer; }

#fb_rsvp #button_fb_rsvp_going {
  color: #222;
  margin-right: 10px; }

#fb_rsvp_status span, #fb_rsvp button:hover, #fb_rsvp_status button:hover {
  color: #222;
  background: #EBBB2A; }

/* @end */
#fb_window {
  position: absolute;
  width: 652px;
  height: 200px;
  left: -10000px;
  top: -10000px;
  z-index: 59999; }

#fb_window_cap {
  background: url(../images/fb_window_border.png) no-repeat center top;
  width: 100%;
  height: 10px; }

#fb_window_base {
  background: url(../images/fb_window_border.png) no-repeat center bottom;
  width: 100%;
  height: 10px; }

#fb_window_holder {
  background: url(../images/fb_window_bg.png) repeat-y center bottom;
  padding: 0 10px; }

#fb_window_header {
  border: 1px solid #3B5998;
  height: 27px;
  background: #6D84B4;
  padding-left: 26px;
  font: bold 14px/27px "Lucida Grande",Lucida,Verdana,sans-serif;
  color: #fff;
  text-align: left; }

#fb_window_content {
  background: #f7f7f7;
  border: 1px solid #555;
  border-top: 0px; }

#fb_window_content .textarea {
  text-align: left;
  padding: 15px 30px 25px;
  color: #333; }

#fb_window_content .sending {
  text-align: center;
  padding: 60px 30px 25px;
  color: #333;
  font: 11px/15px "Lucida Grande",Lucida,Verdana,sans-serif;
  background: url(../images/loading.gif) no-repeat center 25px; }

#fb_window_content .warning {
  background: #FFEBE8; }

#fb_window_content .textarea h3 {
  color: #333;
  font: bold 13px/15px "Lucida Grande",Lucida,Verdana,sans-serif;
  padding-bottom: 3px;
  margin-bottom: 0; }

#fb_window_content .textarea p {
  color: #333;
  font: 11px/15px "Lucida Grande",Lucida,Verdana,sans-serif; }

#fb_window_content .textarea textarea {
  width: 450px;
  border: 1px solid #BDC7D8;
  font: 11px/15px "Lucida Grande",Lucida,Verdana,sans-serif; }

#fb_window_content fieldset {
  margin: 0;
  padding: 0; }

#fb_window_content fieldset label {
  font: bold 11px/15px "Lucida Grande",Lucida,Verdana,sans-serif; }

#fb_window_content .toolbar {
  border-top: 1px solid #E7E7E7;
  padding: 6px 30px;
  background: #f0f0f0;
  text-align: center;
  height: 21px;
  position: relative;
  top: auto;
  right: auto; }

#fb_window_content .toolbar button {
  margin: 0 3px 0 0;
  padding: 0 18px;
  height: 21px;
  font: bold 10px/21px "Lucida Grande",Lucida,Verdana,sans-serif; }

#fb_window_content .toolbar button.submit {
  padding: 0 25px;
  background: #3B5998;
  border: 1px solid #0E1F5B;
  border-color: #D9DFEA #0E1F5B #0E1F5B #D9DFEA;
  color: #fff; }

#fb_window_content .toolbar button.cancel {
  background: #f0f0f0;
  border: 1px solid #666;
  border-color: #e7e7e7 #666 #666 #e7e7e7;
  color: #333; }

#fb_window_content .toolbar button.next {
  padding: 0 25px;
  background: #3B5998;
  border: 1px solid #0E1F5B;
  border-color: #D9DFEA #0E1F5B #0E1F5B #D9DFEA;
  color: #fff;
  float: right; }

#fb_window_content .toolbar a.next, #fb_window_content .toolbar a.next:link, #fb_window_content .toolbar a.next:visited {
  padding: 0 25px;
  background: #3B5998;
  border: 1px solid #0E1F5B;
  border-color: #D9DFEA #0E1F5B #0E1F5B #D9DFEA;
  color: #fff;
  float: right;
  margin: 0 3px 0 0;
  padding: 0 18px;
  height: 21px;
  font: bold 10px/21px "Lucida Grande",Lucida,Verdana,sans-serif;
  text-decoration: none; }

#fb_window_close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: url(../images/fb_window_close.png) no-repeat center top;
  width: 14px;
  height: 14px;
  cursor: pointer;
  text-indent: -444444px; }

#fb_window_close:hover {
  background-position: center bottom; }
