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

  style.css contains a reset, font normalization and some base styles.

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

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

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

del {
  text-decoration: line-through; }

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

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

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

input, select {
  vertical-align: middle; }

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

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

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

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

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

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself.

Native in almost all browsers**

h1,h2,h3,h4,h5,h6 { font-weight: bold; }*/
/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll; }

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

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

ol {
  list-style-type: decimal; }

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

small {
  font-size: 85%; }

strong, th {
  font-weight: bold; }

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

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

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

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

textarea {
  overflow: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix:after {
  clear: both; }

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

.clear {
  clear: both; }

/*
 * 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; } */ }
/*____________________________* oocss grid system *____________________________________*/
.left, .footer .nav .main-list, .home .promotions, .large-spotpromos, .paging.final .record,
.unit,
.col1of2,
.footer .main-logo,
.footer .social-extras,
.footer .info-numbers,
.event-filter .title,
.event-filter .dropdown,
.sitemap .column,
.col1of3,
.col2of3,
.one_sidebar_right #column_1,
.col1of4,
.col3of4,
.col1of5,
.col2of5,
.col3of5,
.col4of5 {
  float: left; }

.right, .footer .helper-nav, .home .promotions:last-child, .large-spotpromos:last-child, .paging.final .pages {
  float: right; }

.col1of1, .full {
  float: none;
  width: 100%; }

.col1of2, .footer .main-logo,
.footer .social-extras, .footer .info-numbers, .event-filter .title,
.event-filter .dropdown, .sitemap .column {
  width: 50%; }

.col1of3 {
  width: 33.33333%; }

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

.col1of4 {
  width: 25%; }

.col3of4 {
  width: 75%; }

.col1of5 {
  width: 20%; }

.col2of5 {
  width: 40%; }

.col3of5 {
  width: 60%; }

.col4of5 {
  width: 80%; }

.lastCol, .footer .social-extras, .sitemap .column:last-child {
  overflow: hidden;
  *overflow: visible;
  *zoom: 1; }

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

/*______________________________________________________________________________________*/
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Global site variables
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom placeholders
----------------------------------------------------------------------------- */
.places-venue h2, .home-slideshow .rsInfo .title, .event_detail .header .summary {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

/* ----------------------------------------------------------------------------
= Media Queries
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
/********** add-ons **************************************************/
/* ----------------------------------------------------------------------------
=Compass support variables
=Determine what css3 support levels are generated from mixins
=Reference at http://compass-style.org/reference/compass/support/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Mobile Variables
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* added 07/10/12 */
/* #FFC342 added 07/10/12 */
/* Dividers and Element Colors */
/* added 07/10/12 ****/
/* Base Backgrounds */
/* Event Item Size Variables */
@font-face {
  font-family: "nevis";
  src: url("//www.mbsuperdome.com/fonts/nevis.eot");
  src: url("//www.mbsuperdome.com/fonts/nevis.eot?#iefix") format("embedded-opentype"), url("//www.mbsuperdome.com/fonts/nevis.woff") format("woff"), url("//www.mbsuperdome.com/fonts/nevis.ttf") format("truetype"), url("//www.mbsuperdome.com/fonts/nevis.svg#nevis") format("svg"); }
.icons-sprite, .icons-arrow-bluedown, .icons-arrow-filterdown, .icons-arrow-reddown, .icons-cal, .icons-ico-closex, .icons-ico-search, .icons-lftarrow-carolrg, .icons-lftarrow-carolrgover, .icons-rtarrow-carolrg, .icons-rtarrow-carolrgover, .places-venue h2:after, .arrow-left-lrg, .arrow-right-lrg, #searchbar .icon:after, #searchbar .icon.active:hover:after, #searchbar .icon.active:after, #searchbar .icon:hover:after, .event-filter ul li.selected:after, .event_detail .showings ul li a.ical:hover:after, .event_detail .showings ul li a.ical:after {
  background-image: url('../images/icons-saaf0d2f62c.png');
  background-repeat: no-repeat; }

.icons-arrow-bluedown {
  background-position: 0 0;
  height: 40px;
  width: 40px; }

.icons-arrow-filterdown {
  background-position: 0 -50px;
  height: 40px;
  width: 40px; }

.icons-arrow-reddown {
  background-position: 0 -100px;
  height: 9px;
  width: 21px; }

.icons-cal {
  background-position: 0 -119px;
  height: 20px;
  width: 19px; }
  .icons-cal:hover, .icons-cal.cal-hover {
    background-position: 0 -149px; }

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

.icons-ico-search {
  background-position: 0 -210px;
  height: 22px;
  width: 23px; }
  .icons-ico-search:hover, .icons-ico-search.ico-search-hover {
    background-position: 0 -242px; }

.icons-lftarrow-carolrg {
  background-position: 0 -274px;
  height: 126px;
  width: 40px; }

.icons-lftarrow-carolrgover {
  background-position: 0 -410px;
  height: 126px;
  width: 40px; }

.icons-rtarrow-carolrg {
  background-position: 0 -546px;
  height: 126px;
  width: 40px; }

.icons-rtarrow-carolrgover {
  background-position: 0 -682px;
  height: 126px;
  width: 40px; }

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

html {
  height: 100%; }

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-align: left;
  letter-spacing: 0.1em; }
  body.fixednav #content {
    padding-top: 64px; }

#container {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #ceb885;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFCEB885', endColorstr='#FF827048');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NlYjg4NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzgyNzA0OCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ceb885), to(#827048));
  background-image: linear-gradient(to bottom, #ceb885 0%, #827048 100%);
  margin: 0;
  padding: 0; }
  .ie8 #container, .ie9 #container, .ie10 #container {
    min-width: 1020px; }

.bckimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 695px;
  min-height: 695px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120%;
  overflow-y: visible;
  overflow-x: visible;
  margin-left: 0;
  margin-right: 0;
  z-index: 1; }
  @media screen and (max-width: 1168px) {
    .bckimage {
      background-position: center top; } }
  @media screen and (max-width: 820px) {
    .bckimage {
      background-position: center top; } }

.layout {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  *zoom: 1;
  z-index: 2; }
  .layout:before, .layout:after {
    content: "\0020";
    display: table; }
  .layout:after {
    clear: both; }

.wrap-holder {
  background-color: #fff;
  margin-bottom: 60px;
  padding-bottom: 30px;
  *zoom: 1; }
  .wrap-holder:before, .wrap-holder:after {
    content: "\0020";
    display: table; }
  .wrap-holder:after {
    clear: both; }

.one_sidebar_right {
  width: 100%;
  max-width: 100%;
  margin: 20px auto 0;
  *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 {
    background-color: #fff;
    width: 65.68627%;
    margin-right: 0px; }
    .one_sidebar_right #column_1 .container {
      word-break: break-word; }
  .one_sidebar_right #column_2 {
    float: right;
    width: 32.352941176%; }
    .one_sidebar_right #column_2 .large-spotpromos {
      float: none;
      margin-bottom: 20px; }
  @media screen and (max-width: 820px) {
    .one_sidebar_right {
      margin-top: 0px; }
      .one_sidebar_right #column_1 {
        width: 100%;
        float: none; }
      .one_sidebar_right #column_2 {
        display: none; } }
  @media screen and (max-width: 600px) {
    .one_sidebar_right {
      margin-top: 0px; } }

.full {
  margin-top: 20px;
  margin-bottom: 20px;
  *zoom: 1; }
  .full:before, .full:after {
    content: "\0020";
    display: table; }
  .full:after {
    clear: both; }
  .full .full_column {
    z-index: 5; }
  .full .container {
    width: 100%; }
  @media screen and (max-width: 820px) {
    .full {
      margin-top: 0; } }
  @media screen and (max-width: 600px) {
    .full {
      margin-top: 0px; } }

#cse-search-results {
  padding: 0 25px; }
  #cse-search-results iframe {
    width: 100%; }

.social-sidebar {
  margin-bottom: 20px; }
  .social-sidebar .title {
    background-color: #222;
    height: 59px;
    margin-bottom: 0;
    padding: 30px 20px 0;
    color: #fff; }
  .social-sidebar .ct {
    background: #fff;
    padding: 20px; }
  .social-sidebar .share-holder 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; }
    .social-sidebar .share-holder a:hover:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }
  @media screen and (max-width: 820px) {
    .social-sidebar {
      width: 45%;
      margin-left: 5%;
      float: left; } }

.places-venue {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 64px;
  background-color: #001111;
  border-bottom: 4px solid #bf9648;
  text-align: center;
  z-index: 600;
  cursor: pointer;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear; }
  @media screen and (max-width: 1320px) {
    .places-venue {
      display: none; } }
  .places-venue.searchopen {
    border-bottom-color: #fff; }
  .places-venue h2 {
    position: relative;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.2em;
    top: 45%;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .places-venue h2:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      background-position: 0 -100px;
      height: 9px;
      width: 21px;
      left: 50%;
      margin-top: 8px;
      margin-left: -11px; }
  .places-venue:hover, .places-venue.active {
    border-color: #8c6e35; }
    .places-venue:hover h2, .places-venue.active h2 {
      color: #8c6e35; }
  .places-venue .golocals {
    display: none;
    position: absolute;
    top: 64px;
    background-color: #FFF;
    border-bottom: 4px solid #bf9648;
    padding: 0 10px 10px; }
    .places-venue .golocals li {
      position: relative;
      border-top: 1px solid #e8e8e8;
      padding: 0;
      z-index: 3; }
      .places-venue .golocals li:first-child {
        border-top: 0; }
    .places-venue .golocals a {
      position: relative;
      display: block;
      margin-top: 15px;
      padding: 15px 0;
      font-family: "nevis", sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: #333;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 5;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      .places-venue .golocals a:active, .places-venue .golocals a.active, .places-venue .golocals a.active:hover {
        color: #8c6e35; }
      .places-venue .golocals a:hover {
        color: #8c6e35; }

/* ----------------------------------------------------------------------------
= OVERLAY
----------------------------------------------------------------------------- */
#overlay_container {
  display: none;
  padding: 100px 0 0; }
  #overlay_container .close-overlay {
    position: absolute;
    display: block;
    z-index: 50;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: url(../images/button_close.png) no-repeat center center;
    cursor: pointer; }
  #overlay_container a, #overlay_container a:link, #overlay_container a:visited {
    position: relative;
    display: block;
    z-index: 10;
    max-width: 640px;
    height: auto; }
    #overlay_container a img, #overlay_container a:link img, #overlay_container a:visited img {
      width: 100%;
      height: auto;
      display: block; }

.overlay_content {
  position: relative;
  width: 95%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  padding: 0; }

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

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

.arrows, .rsArrowRight .rsArrowIcn:before, .rsArrowLeft .rsArrowIcn:before, .carousel.horizontal .carousel-nav .prev-scroller,
.carousel.horizontal .carousel-nav .next-scroller,
.carousel.horizontal .sponsors-nav .prev-scroller,
.carousel.horizontal .sponsors-nav .next-scroller {
  background-color: transparent;
  background-image: url('../images/arrows-ss.png?1505235253');
  background-repeat: no-repeat;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear; }

.arrow-left, .carousel.horizontal .carousel-nav .prev-scroller,
.carousel.horizontal .sponsors-nav .prev-scroller {
  width: 20px;
  height: 53px;
  background-position: -2px -188px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-left:after, .carousel.horizontal .carousel-nav .prev-scroller:after,
  .carousel.horizontal .sponsors-nav .prev-scroller:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrows-ss.png?1505235253');
    background-position: -1px -123px;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-left:hover:after, .carousel.horizontal .carousel-nav .prev-scroller:hover:after,
  .carousel.horizontal .sponsors-nav .prev-scroller:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }
  .arrow-left:active, .carousel.horizontal .carousel-nav .prev-scroller:active,
  .carousel.horizontal .sponsors-nav .prev-scroller:active {
    margin-top: 1px; }

.arrow-right, .carousel.horizontal .carousel-nav .next-scroller,
.carousel.horizontal .sponsors-nav .next-scroller {
  width: 20px;
  height: 53px;
  background-position: -2px -62px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-right:after, .carousel.horizontal .carousel-nav .next-scroller:after,
  .carousel.horizontal .sponsors-nav .next-scroller:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrows-ss.png?1505235253');
    background-position: -2px 0;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-right:hover:after, .carousel.horizontal .carousel-nav .next-scroller:hover:after,
  .carousel.horizontal .sponsors-nav .next-scroller:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }
  .arrow-right:active, .carousel.horizontal .carousel-nav .next-scroller:active,
  .carousel.horizontal .sponsors-nav .next-scroller:active {
    margin-top: 1px; }

.arrows-caro {
  width: 40px;
  height: 145px; }

.arrow-left-lrg {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -274px;
  height: 126px;
  width: 40px; }
  .arrow-left-lrg:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/icons-saaf0d2f62c.png?1505235253');
    background-position: 0 -410px;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .arrow-left-lrg:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }

.arrow-right-lrg {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-position: 0 -546px;
  height: 126px;
  width: 40px; }
  .arrow-right-lrg:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/icons-saaf0d2f62c.png?1505235253');
    background-position: 0 -682px;
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .arrow-right-lrg:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1; }

.arrow-left-sm, .rsArrowLeft .rsArrowIcn:before {
  width: 40px;
  height: 40px;
  background-position: -2px -341px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-left-sm:active, .rsArrowLeft .rsArrowIcn:active:before {
    margin-top: 1px; }

.arrow-right-sm, .rsArrowRight .rsArrowIcn:before {
  width: 40px;
  height: 40px;
  background-position: -3px -306px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-right-sm:active, .rsArrowRight .rsArrowIcn:active:before {
    margin-top: 1px; }

* {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6 {
  font-family: "nevis", sans-serif;
  letter-spacing: 0.1em;
  color: #333;
  text-transform: uppercase; }
  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: 22px; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 16px; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px; }

h4 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px; }

h5 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px; }

h6 {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px; }

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: #bf9648;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus {
    color: #8c6e35; }

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

tr td {
  padding: 5px;
  border: none; }

header {
  position: relative;
  height: 496px;
  z-index: 500; }

.site-logo {
  width: 100%;
  margin: 0 auto;
  padding-top: 65px; }
  .site-logo .main {
    display: block;
    width: 622px;
    height: 76px;
    background: transparent url('../images/main-logo.svg') no-repeat center center;
    margin: 0 auto;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden; }
  .site-logo a.main {
    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; }
    .site-logo a.main:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }

#searchbar {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto; }
  #searchbar .icon-holder {
    display: block;
    position: absolute;
    top: -64px;
    right: 0px;
    width: 67px;
    height: 64px;
    background-color: #001111; }
    #searchbar .icon-holder:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 19px;
      left: 0;
      width: 1px;
      height: 24px;
      background-color: #333; }
  #searchbar .icon {
    position: absolute;
    left: 0;
    display: block;
    width: 67px;
    height: 64px;
    border-bottom: 4px solid #bf9648;
    padding-left: 0px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    #searchbar .icon:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 20px;
      left: 20px;
      width: 23px;
      height: 22px;
      background-position: 0 -210px;
      height: 22px;
      width: 23px; }
      #searchbar .icon:after:hover, #searchbar .icon:after.ico-search-hover {
        background-position: 0 -242px; }
    #searchbar .icon:hover.active:after, #searchbar .icon.active:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 20px;
      left: 25px;
      width: 23px;
      height: 22px;
      background-position: 0 -179px;
      height: 21px;
      width: 16px; }
    #searchbar .icon:hover:after {
      background-position: 0 -242px;
      height: 22px;
      width: 23px; }
  #searchbar #cse-search-box {
    padding-left: 20px; }
  #searchbar .search-holder {
    display: none;
    position: absolute;
    width: 100%;
    top: -4px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    height: 64px;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 4px solid #bf9648;
    *zoom: 1; }
    #searchbar .search-holder:before, #searchbar .search-holder:after {
      content: "\0020";
      display: table; }
    #searchbar .search-holder:after {
      clear: both; }
  #searchbar .title,
  #searchbar input[type="text"],
  #searchbar button {
    float: left;
    font-family: "nevis", sans-serif;
    letter-spacing: 1px; }
  #searchbar .title {
    margin-right: 15px;
    font-size: 12px;
    color: #333;
    line-height: 64px; }
  #searchbar input[type="text"] {
    position: relative;
    width: 85%;
    height: 39px;
    background-color: #ededed;
    border: 0;
    margin: 11px 0;
    padding: 8px 10px 6px;
    text-transform: uppercase;
    font-size: 12px;
    color: #333;
    border-radius: 3px 0 0 3px;
    outline: none; }
    #searchbar input[type="text"] ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #333; }
    #searchbar input[type="text"] :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #333; }
    #searchbar input[type="text"] ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #333; }
    #searchbar input[type="text"] :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #333; }
    #searchbar input[type="text"]:focus {
      -webkit-appearance: none; }
    @media screen and (max-width: 820px) {
      #searchbar input[type="text"] {
        width: 60%; } }
  #searchbar button {
    position: relative;
    top: 11px;
    width: 58px;
    height: 39px;
    background-color: #222;
    margin: 0;
    padding: 0 0 0 6px;
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 36px;
    color: #fff;
    border: none;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear; }
    #searchbar button:hover, #searchbar button:focus {
      background-color: #8c6e35; }
  #searchbar.fixednav {
    float: left;
    display: inline-block;
    width: 100%; }
    #searchbar.fixednav .boxicon {
      position: relative;
      width: 100%;
      max-width: 1020px;
      height: 60px;
      margin: 0 auto;
      z-index: 80;
      cursor: pointer; }
    #searchbar.fixednav .search-holder {
      width: 100%;
      background-color: #fff;
      border-bottom: 4px solid #bf9648;
      *zoom: 1;
      z-index: 81; }
      #searchbar.fixednav .search-holder:before, #searchbar.fixednav .search-holder:after {
        content: "\0020";
        display: table; }
      #searchbar.fixednav .search-holder:after {
        clear: both; }
    #searchbar.fixednav #cse-search-box {
      width: 100%;
      margin: 0 auto; }

@media screen and (max-width: 600px) {
  .nav_wrapper {
    height: 0px; } }

@media screen and (min-width: 1020px) {
  .main-nav {
    display: block !important;
    overflow: visible !important; } }

nav {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 500;
  max-width: 1020px; }
  nav .site-logo {
    display: none; }
  nav .set-holder {
    width: 100%;
    margin: 0 auto;
    max-width: 1020px; }
  nav .main-nav {
    width: 96%;
    height: 64px;
    background-color: #001111;
    border-bottom: 4px solid #bf9648;
    margin: 0 0 0;
    padding: 0;
    z-index: 500; }
  nav .main-list {
    float: left;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 500; }
    nav .main-list.hover > a {
      color: #bf9648; }
    nav .main-list > a {
      position: relative;
      display: block;
      margin: 0;
      padding: 22px 22px;
      font-family: "nevis", sans-serif;
      font-size: 13px;
      line-height: 150%;
      letter-spacing: 0.18em;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      z-index: 500;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      nav .main-list > a:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 19px;
        left: 0;
        width: 1px;
        height: 24px;
        background-color: #333; }
      nav .main-list > a:hover, nav .main-list > a.active {
        color: #bf9648;
        text-decoration: none; }
    nav .main-list .hover a {
      color: #bf9648; }

nav li.page_3 a:before {
  display: none; }
nav li.page_4 .sub {
  left: -11px; }
nav li.page_5 .sub {
  left: -4px; }
nav li.page_6 .sub {
  left: -48px; }
nav li.page_7 .sub {
  left: -28px; }

nav .sub {
  display: none;
  position: absolute;
  top: 60px;
  min-width: 220px;
  z-index: 600; }
  nav .sub .dropdown-nav {
    background-color: #fff;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    padding: 8px 19px 8px;
    z-index: 500;
    *zoom: 1; }
    nav .sub .dropdown-nav:before, nav .sub .dropdown-nav:after {
      content: "\0020";
      display: table; }
    nav .sub .dropdown-nav:after {
      clear: both; }
    nav .sub .dropdown-nav:before, nav .sub .dropdown-nav:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      left: 0;
      width: 100%;
      height: 5px;
      z-index: 500; }
    nav .sub .dropdown-nav:before {
      top: 0;
      background-color: #8c6e35; }
    nav .sub .dropdown-nav:after {
      bottom: 0;
      background-color: #bf9648; }
  nav .sub .dropdown-list {
    position: relative;
    border-top: 1px solid #e8e8e8;
    margin: 0;
    padding: 0;
    z-index: 500; }
    nav .sub .dropdown-list:first-child {
      border-top: 0; }
    nav .sub .dropdown-list a {
      position: relative;
      display: block;
      padding: 15px 0;
      font-family: "nevis", sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: #333;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 500;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      nav .sub .dropdown-list a:active, nav .sub .dropdown-list a.active, nav .sub .dropdown-list a.active:hover {
        color: #bf9648; }
      nav .sub .dropdown-list a:hover {
        color: #bf9648; }

#mainnav.fixednav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 64px;
  background-color: #011;
  border-bottom: 4px solid #bf9648;
  z-index: 500; }
  #mainnav.fixednav .site-logo {
    float: left;
    display: inline-block;
    width: 230px;
    height: 60px;
    padding: 0; }
    #mainnav.fixednav .site-logo .main {
      position: relative;
      display: block;
      width: 203px;
      height: 100%;
      background: transparent url('../images/main-logo.svg') no-repeat center center;
      background-size: contain;
      margin: 0;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
  #mainnav.fixednav .main-nav {
    float: left;
    display: inline-block;
    width: 720px;
    z-index: 500; }
    #mainnav.fixednav .main-nav .main-list > a {
      font-size: 11px;
      letter-spacing: 0.1em;
      padding-left: 14px;
      padding-right: 14px;
      z-index: 500; }
  #mainnav.fixednav .main-list.page_3 a:before {
    display: none; }
  #mainnav.fixednav .main-list.page_3 .sub {
    left: -29px; }
  #mainnav.fixednav .main-list.page_4 .sub {
    left: -37px; }
  #mainnav.fixednav .main-list.page_5 .sub {
    left: -32px; }
  #mainnav.fixednav .main-list.page_6 .sub {
    left: -60px; }
  #mainnav.fixednav .main-list.page_7 .sub {
    left: -50px; }

/*********************/
/*	LETS GET MOBILE  */
/*********************/
#nav-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 15px;
  padding: 25px 25px; }
  #nav-toggle span {
    cursor: pointer;
    height: 5px;
    width: 35px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    margin-top: 0px;
    left: 0px;
    top: 10px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease; }
    #nav-toggle span.top {
      top: 0px; }
    #nav-toggle span.bottom {
      top: 20px; }
    #nav-toggle span.top, #nav-toggle span.bottom {
      cursor: pointer;
      height: 5px;
      width: 35px;
      background: #fff;
      position: absolute;
      display: block;
      content: '';
      margin-top: 0px;
      left: 0px; }
  #nav-toggle.active span.mid {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg); }
  #nav-toggle.active span.mid2 {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -webkit-transform: rotate(-45deg); }
  #nav-toggle.active span.top, #nav-toggle.active span.bottom {
    opacity: 0; }
  #nav-toggle.goback span.mid {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg); }
  #nav-toggle.goback span.mid2 {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg); }
  #nav-toggle.goback span.top, #nav-toggle.goback span.bottom {
    opacity: 1; }

@media screen and (max-width: 1020px) {
  header {
    height: 70px;
    background-size: 100%; }
    header .site-logo {
      display: none; }

  #nav-toggle {
    display: block; }

  #searchbar .search-holder {
    position: relative;
    top: 5px; }
  #searchbar .icon-holder {
    top: -59px;
    height: 61px; }
    #searchbar .icon-holder:before {
      height: 29px; }
  #searchbar .icon {
    border-bottom: none; }

  nav li.page_7 .sub {
    left: 0px; }

  nav {
    background: #0f0f0f;
    border-bottom: 4px solid #bf9648;
    position: fixed;
    height: 70px; }
    nav .site-logo {
      display: block;
      width: 230px;
      height: 60px;
      margin: auto;
      padding: 15px 0 0;
      text-align: center; }
      nav .site-logo .main {
        position: relative;
        display: block;
        width: 203px;
        height: 17px;
        background: url("../images/main-logo.svg") no-repeat center center;
        background-size: contain;
        margin: 10px auto 0;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden; }
    nav.is_opened {
      height: 100%;
      overflow-y: scroll; }
    nav ul.main-nav {
      top: 70px;
      display: none;
      width: 100%;
      position: absolute;
      left: 0px;
      border-top: 4px solid #bf9648;
      border-bottom: none; }
      nav ul.main-nav li a, nav ul.main-nav li a:link {
        padding: 25px; }
      nav ul.main-nav li ul li a,
      nav ul.main-nav li ul li a:link {
        padding: 15px 20px; }
    nav ul li {
      width: 100%;
      float: none;
      height: auto;
      border-bottom: 1px solid #d7d7d7; }
      nav ul li a, nav ul li a:link, nav ul li a:visited {
        padding: 15px 20px; }
        nav ul li a span, nav ul li a:link span, nav ul li a:visited span {
          display: inline; }
          nav ul li a span:after, nav ul li a:link span:after, nav ul li a:visited span:after {
            content: ' '; }
      nav ul li.page_6 .sub {
        left: 0px; }
      nav ul li .sub {
        width: 100%;
        top: auto;
        position: relative;
        left: 0px !important; }
        nav ul li .sub ul {
          float: none;
          width: 100%; }
          nav ul li .sub ul li {
            width: 100%; }
            nav ul li .sub ul li a:after {
              width: 90%; }
        nav ul li .sub .dropdown-list {
          border-top: none; }

  #cse-search-box {
    position: fixed;
    top: 64px;
    z-index: 900;
    width: 100%;
    right: 0px; }
    #cse-search-box input[type=text] {
      width: 72%; }
    #cse-search-box button {
      width: 15%;
      float: right;
      margin-right: 10px; } }
@media screen and (max-width: 647px) {
  #cse-search-box input[type=text] {
    width: 60%; } }
@media screen and (max-width: 321px) {
  #nav-toggle {
    left: 9px;
    padding: 19px; }
    #nav-toggle span {
      width: 30px; }
      #nav-toggle span.top, #nav-toggle span.bottom {
        width: 30px; }

  #searchbar .icon {
    left: -2px; }
  #searchbar .icon-holder {
    right: -5px;
    width: 60px; }
    #searchbar .icon-holder:before {
      left: 5px; }

  #cse-search-box input[type=text] {
    width: 55%; } }
/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
.footer {
  position: relative;
  width: 100%;
  background-color: #000;
  margin-top: 0;
  clear: both;
  *zoom: 1; }
  .footer:before, .footer:after {
    content: "\0020";
    display: table; }
  .footer:after {
    clear: both; }
  .footer .site-wrapper {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto; }
  .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: 32px;
    padding-top: 45px;
    border-bottom: 2px solid #222; }
  @media screen and (max-width: 600px) {
    .footer .main-logo,
    .footer .social-extras {
      width: 100%;
      display: block; } }
  .footer .social-extras {
    margin-top: 16px; }
    @media screen and (max-width: 600px) {
      .footer .social-extras {
        text-align: center; } }
  .footer .info-numbers {
    clear: both; }
    @media screen and (max-width: 820px) {
      .footer .info-numbers {
        width: 100%; }
        .footer .info-numbers .phone-numbers {
          text-align: center; } }
    @media screen and (max-width: 600px) {
      .footer .info-numbers {
        width: 100%;
        display: block;
        font-weight: 400; }
        .footer .info-numbers .phone-numbers {
          font-weight: 400;
          line-height: 1.5; }
          .footer .info-numbers .phone-numbers span {
            display: block;
            font-weight: 400;
            margin-bottom: 5px; } }
  .footer .site-logo {
    width: 523px;
    margin: 0;
    padding-top: 15px; }
    @media screen and (max-width: 820px) {
      .footer .site-logo {
        display: none;
        margin: auto; } }
    @media screen and (max-width: 600px) {
      .footer .site-logo {
        width: 100%;
        display: block;
        margin: auto;
        display: none; } }
    .footer .site-logo .main {
      width: 523px;
      height: 42px;
      background: transparent url('../images/ftlogo-main.svg') no-repeat 0 0;
      background-size: 100%;
    }
    @media screen and (max-width: 1010px) {
      .footer .site-logo .main {
        width: 400px;
        margin-left: 20px;
      }
    }
    .footer .site-logo a.main {
      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 .site-logo a.main:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
        opacity: 0.7; }
  .footer .helper-nav li {
    float: left;
    display: inline-block;
    margin-left: 10px; }
    .footer .helper-nav li:first-child {
      margin-left: 0; }
    .footer .helper-nav li.asm a:before {
      display: none; }
    .footer .helper-nav li.ada {
      margin-left: 22px; }
    .footer .helper-nav li a {
      position: relative;
      display: block;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      .footer .helper-nav li a:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: -2px;
        left: 1px;
        font-family: FontAwesome;
        font-size: 37px;
        content: "\f111";
        color: #222222;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear; }
      .footer .helper-nav li a:after {
        display: block;
        position: absolute;
        font-family: FontAwesome;
        font-size: 20px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      .footer .helper-nav li a:hover:after {
        color: #8c6e35; }
  @media screen and (max-width: 820px) {
    .footer .helper-nav {
      float: none;
      margin: auto;
      display: inline-block; } }
  @media screen and (max-width: 600px) {
    .footer .helper-nav {
      float: none;
      margin: 0 auto;
      display: inline-block;
      font-weight: 400; }
      .footer .helper-nav li:first-child {
        display: block;
        float: none;
        margin-bottom: 20px; }
        .footer .helper-nav li:first-child a {
          margin: 0 auto;
          text-align: center; } }
  .footer .ft-asm {
    width: 112px;
    height: 42px;
    background: transparent url('../images/asm.svg?1569874589') no-repeat 0 0;
    background-size: contain;
    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 .ft-asm:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }
    .footer .ft-asm:before {
      display: none; }
  .footer .ft-ada {
    width: 37px;
    height: 37px;
    padding-left: 37px;
    overflow: hidden; }
    .footer .ft-ada:after {
      content: "\f193";
      top: 6px;
      left: 9px; }
  .footer .ft-fb {
    width: 37px;
    height: 37px;
    padding-left: 37px;
    overflow: hidden; }
    .footer .ft-fb:after {
      content: "\f09a";
      top: 7px;
      left: 11px; }
  .footer .ft-tw {
    width: 37px;
    height: 37px;
    padding-left: 37px;
    overflow: hidden; }
    .footer .ft-tw:after {
      content: "\f099";
      top: 7px;
      left: 8px; }
  .footer .ft-utube {
    width: 37px;
    height: 37px;
    padding-left: 37px;
    overflow: hidden; }
    .footer .ft-utube:after {
      content: "\f16a";
      top: 7px;
      left: 7px; }
  .footer .ft-insta {
    width: 37px;
    height: 37px;
    padding-left: 37px;
    overflow: hidden; }
    .footer .ft-insta:after {
      content: "\f16d";
      top: 7px;
      left: 8px; }
  .footer .info-numbers {
    margin-top: 40px;
    padding-bottom: 16px; }
    .footer .info-numbers .phone-numbers {
      margin-bottom: 0;
      font-family: "Oswald", sans-serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #fff; }
    .footer .info-numbers span {
      color: #bf9648; }
    @media screen and (max-width: 600px) {
      .footer .info-numbers {
        font-weight: 400; }
        .footer .info-numbers .phone-numbers {
          font-weight: 400; } }
  .footer .nav {
    margin-bottom: 80px;
    *zoom: 1; }
    .footer .nav:before, .footer .nav:after {
      content: "\0020";
      display: table; }
    .footer .nav:after {
      clear: both; }
    @media screen and (max-width: 600px) {
      .footer .nav {
        margin-bottom: 40px; } }
    .footer .nav .main-list {
      width: 19%;
      margin-left: 25px;
      padding: 0; }
      .footer .nav .main-list:first-child {
        margin-left: 0; }
      .footer .nav .main-list:last-child {
        float: right;
        width: 14%; }
      .footer .nav .main-list > a {
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 215%;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
        .footer .nav .main-list > a.active {
          color: #8c6e35; }
      @media screen and (max-width: 820px) {
        .footer .nav .main-list {
          width: 31%;
          margin-left: 2%; }
          .footer .nav .main-list.page_6 {
            clear: left; }
          .footer .nav .main-list:first-child {
            margin-left: 2%; }
          .footer .nav .main-list:last-child {
            float: left; } }
      @media screen and (max-width: 600px) {
        .footer .nav .main-list {
          width: 100%;
          margin-left: 0%;
          text-align: center; }
          .footer .nav .main-list a {
            font-weight: 400; }
          .footer .nav .main-list .sub {
            display: none; }
          .footer .nav .main-list:hover .sub {
            display: block; }
          .footer .nav .main-list:first-child {
            margin-left: 0; }
          .footer .nav .main-list:last-child {
            float: none;
            width: 100%; } }
    .footer .nav .sub-list {
      padding: 0; }
      .footer .nav .sub-list > a {
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 240%;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #fff;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
        .footer .nav .sub-list > a:hover, .footer .nav .sub-list > a.active {
          color: #8c6e35; }
  .footer .global_footer {
    background-color: #222222;
    clear: both;
    *zoom: 1;
    text-align: center; }
    .footer .global_footer:before, .footer .global_footer:after {
      content: "\0020";
      display: table; }
    .footer .global_footer:after {
      clear: both; }
    @media screen and (max-width: 600px) {
      .footer .global_footer {
        height: auto; } }
    .footer .global_footer .site-wrapper {
      font-family: "Oswald", sans-serif;
      font-size: 9px;
      font-weight: 400;
      line-height: 30px;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: #fff;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;
      padding: 20px 0; }
      .footer .global_footer .site-wrapper .delimiter {
        margin: 0 5px; }
      .footer .global_footer .site-wrapper a {
        color: #fff; }
        .footer .global_footer .site-wrapper a:hover {
          color: #8c6e35; }
      @media screen and (max-width: 820px) {
        .footer .global_footer .site-wrapper {
          text-align: center; } }
      @media screen and (max-width: 600px) {
        .footer .global_footer .site-wrapper {
          padding: 10px 32px 0;
          font-weight: 400;
          text-align: center;
          line-height: 25px; }
          .footer .global_footer .site-wrapper a {
            display: block;
            text-align: center;
            font-weight: 400; }
          .footer .global_footer .site-wrapper .delimiter {
            display: none; } }
    .footer .global_footer a#carbonhouse {
      display: block;
      width: 145px;
      position: relative;
      margin: 0 auto;
      padding-top: 0px;
      font-family: 'helvetica';
      font-size: 10px;
      color: #fff;
      cursor: pointer;
      text-align: right;
      text-decoration: none;
      text-transform: none;
      letter-spacing: 0;
      -webkit-transition: all 300ms linear;
      transition: all 300ms linear; }
      .footer .global_footer a#carbonhouse span {
        font-size: 12px;
        font-weight: bold;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear; }
        .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: #bf9648; }
        .footer .global_footer a#carbonhouse:hover span {
          color: #8c6e35; }
      @media screen and (max-width: 820px) {
        .footer .global_footer a#carbonhouse {
          width: 100%;
          text-align: center; } }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content ul, .event_detail .description ul {
  position: relative; }
  .content ul li, .event_detail .description ul li {
    position: relative;
    padding-left: 20px; }
    .content ul li:before, .event_detail .description ul li:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 5px;
      left: 0;
      width: 8px;
      height: 8px;
      background-color: #222; }
.content ol, .event_detail .description ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0; }
  .content ol li, .event_detail .description ol li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    list-style: none; }
    .content ol li:before, .event_detail .description ol li:before {
      content: counter(li);
      counter-increment: li;
      position: absolute;
      top: 0px;
      left: 0;
      width: 0;
      font-weight: 600;
      color: #bf9648; }

.content {
  position: relative;
  margin: 0;
  padding: 0 35px;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content img {
    padding: 0;
    margin: 0 20px 20px 0; }
    .content img.right, .content .footer img.helper-nav, .footer .content img.helper-nav, .content .home img.promotions:last-child, .home .content img.promotions:last-child, .content img.large-spotpromos:last-child, .content .paging.final img.pages, .paging.final .content img.pages {
      margin: 0 0 20px 20px; }
  .content a 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; }
    .content a img:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }
  .content h1 {
    background-color: #222;
    margin: 0 -35px 35px;
    padding: 39px 35px 15px;
    letter-spacing: 0.17em;
    color: #fff; }
  .content h2 {
    line-height: 160%; }
  .content p {
    line-height: 170%;
    letter-spacing: 2px;
    color: #333; }
  .content .lead {
    font-size: 16px;
    letter-spacing: 0.19em; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr td {
      padding: 5px;
      border: none; }
    @media screen and (max-width: 600px) {
      .content table {
        width: 100% !important; }
        .content table td {
          display: block;
          width: 100%; } }

.managed .event_list {
  padding: 0 0 0 35px; }

/* ----------------------------------------------------------------------------
= Login Custom styles
----------------------------------------------------------------------------- */
.login #column_1 {
  margin: 0 auto; }
  .login #column_1 .container {
    width: 32%;
    margin: 20px auto 50px;
    padding: 20px 30px 25px; }
    .login #column_1 .container input[name=login] {
      margin-left: 4px; }

.home .full {
  padding-bottom: 0; }
  .home .full .full_column {
    width: 100%;
    -webkit-filter: none;
            filter: none; }
.home .carousel.horizontal.events {
  width: 1140px;
  margin-left: -60px;
  background-color: transparent; }
  .home .carousel.horizontal.events .list_holder {
    height: 381px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden; }
    @media screen and (max-width: 600px) {
      .home .carousel.horizontal.events .list_holder {
        height: 375px; } }
  .home .carousel.horizontal.events .carousel-nav {
    position: absolute;
    width: 1141px;
    margin: 0;
    top: 140px;
    -webkit-transition: all 350ms linear;
    transition: all 350ms linear; }
    .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg,
    .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg {
      display: block;
      position: absolute;
      cursor: pointer; }
    .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg {
      left: 0; }
      .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg:active {
        margin-top: 1px; }
    .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg {
      right: 0; }
      .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg:active {
        margin-top: 1px; }
    @media screen and (max-width: 1020px) {
      .home .carousel.horizontal.events .carousel-nav {
        width: 100%;
        top: 100px; }
        .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg, .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg {
          background: #bf9648;
          padding: 10px;
          height: 40px; }
          .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg:before, .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg:before {
            content: '';
            display: block;
            position: absolute;
            top: 10px;
            left: 10px;
            width: 18px;
            height: 30px;
            background: transparent url("../images/rs-default.png") -181px -114px no-repeat; }
          .home .carousel.horizontal.events .carousel-nav .arrow-right-lrg:after, .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg:after {
            display: none; }
        .home .carousel.horizontal.events .carousel-nav .arrow-left-lrg:before {
          background: transparent url("../images/rs-default.png") -181px -72px no-repeat; } }
  .home .carousel.horizontal.events:hover .carousel-nav {
    display: block; }
  .home .carousel.horizontal.events .list {
    margin-top: 0; }
    .home .carousel.horizontal.events .list:before, .home .carousel.horizontal.events .list:after {
      display: none; }
  .home .carousel.horizontal.events .entry {
    width: 261px;
    height: 381px;
    margin: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
    .home .carousel.horizontal.events .entry:before {
      display: none; }
    .home .carousel.horizontal.events .entry .thumb {
      width: 240px;
      height: 240px;
      overflow: hidden; }
      .home .carousel.horizontal.events .entry .thumb a {
        width: 100%;
        height: 100%;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
    .home .carousel.horizontal.events .entry:hover .thumb a {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
      opacity: 0.7; }
    .home .carousel.horizontal.events .entry:hover img {
      margin-top: 0; }
    .home .carousel.horizontal.events .entry:hover .info {
      border-color: #bf9648; }
      .home .carousel.horizontal.events .entry:hover .info .date {
        background-color: #bf9648; }
    @media screen and (max-width: 820px) {
      .home .carousel.horizontal.events .entry {
        width: 192px; }
        .home .carousel.horizontal.events .entry .thumb {
          width: 95%;
          height: auto; }
          .home .carousel.horizontal.events .entry .thumb img {
            width: 100%;
            height: auto;
            float: left; }
        .home .carousel.horizontal.events .entry .info {
          width: 95%; } }
    @media screen and (max-width: 600px) {
      .home .carousel.horizontal.events .entry {
        width: 171px;
        height: 320px; } }
  .home .carousel.horizontal.events .info {
    position: relative;
    width: 240px;
    height: 140px;
    background-color: #fff;
    border-bottom: 4px solid #222;
    padding: 15px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
    .home .carousel.horizontal.events .info .details {
      height: 72px;
      border-bottom: 3px solid #e7e7e7; }
      .home .carousel.horizontal.events .info .details h3 {
        margin: 12px 0 0; }
        .home .carousel.horizontal.events .info .details h3 a {
          line-height: 20px;
          color: #333;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .home .carousel.horizontal.events .info .details h3 a:hover {
            color: #bf9648; }
        @media screen and (max-width: 600px) {
          .home .carousel.horizontal.events .info .details h3 {
            font-size: 10px;
            height: 55px;
            overflow: hidden; }
            .home .carousel.horizontal.events .info .details h3 a {
              line-height: 16px; } }
      .home .carousel.horizontal.events .info .details .date {
        position: absolute;
        top: -25px;
        right: 10px;
        background-color: #222;
        margin: 0;
        padding: 11px 15px 10px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        color: #fff;
        text-transform: uppercase; }
        .home .carousel.horizontal.events .info .details .date .m {
          font-family: "proxima-nova", sans-serif;
          font-size: 16px;
          font-weight: normal; }
        .home .carousel.horizontal.events .info .details .date .d {
          font-family: "Montserrat", sans-serif;
          font-weight: 700;
          font-size: 16px; }
        .home .carousel.horizontal.events .info .details .date .y {
          display: none; }
        @media screen and (max-width: 820px) {
          .home .carousel.horizontal.events .info .details .date {
            padding: 10px 15px; } }
        @media screen and (max-width: 600px) {
          .home .carousel.horizontal.events .info .details .date {
            padding: 10px 15px; }
            .home .carousel.horizontal.events .info .details .date .d, .home .carousel.horizontal.events .info .details .date .m {
              font-size: 14px; } }
    .home .carousel.horizontal.events .info .buttons {
      padding-top: 10px; }
      .home .carousel.horizontal.events .info .buttons .more {
        display: none; }
      .home .carousel.horizontal.events .info .buttons .tickets {
        width: 100%;
        text-align: left; }
        .home .carousel.horizontal.events .info .buttons .tickets:hover {
          border-color: #8c6e35; }
        .home .carousel.horizontal.events .info .buttons .tickets:after {
          top: -1px;
          background: transparent url('../images/ticket-ico-sm.png?1505235253') no-repeat 0 0; }
          @media screen and (max-width: 600px) {
            .home .carousel.horizontal.events .info .buttons .tickets:after {
              top: 0px; } }
    @media screen and (max-width: 600px) {
      .home .carousel.horizontal.events .info {
        height: 154px; } }
  @media screen and (max-width: 1040px) {
    .home .carousel.horizontal.events {
      width: 100%;
      margin-left: 0px; } }
.home .promotions {
  margin-top: 39px;
  width: 66.66%; }
  .home .promotions:last-child {
    width: 32.05882352%;
    margin-left: 0px; }
    @media screen and (max-width: 820px) {
      .home .promotions:last-child {
        width: 100%;
        text-align: center; } }
    @media screen and (max-width: 600px) {
      .home .promotions:last-child {
        width: 100%; } }
  @media screen and (max-width: 820px) {
    .home .promotions {
      text-align: center;
      width: 100%;
      margin-top: 0px; } }
  @media screen and (max-width: 600px) {
    .home .promotions {
      width: 100%;
      margin: 0px;
      float: none; } }

.small-spotpromos {
  position: relative;
  width: 327px;
  height: 153px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 22px 44px 22px 22px;
  clear: both;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; }
  .small-spotpromos a {
    display: block;
    height: 100%;
    width: 100%;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear; }
    .small-spotpromos a:hover .title {
      background-color: #8c6e35; }
    .small-spotpromos a:hover .body {
      color: #8c6e35; }
  .small-spotpromos h2 {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 8px;
    font-size: 16px;
    letter-spacing: 0.15em; }
  .small-spotpromos.smsocial-box h2 {
    width: 94%; }
  .small-spotpromos .image {
    display: none; }
  .small-spotpromos .body {
    width: 90%;
    font-size: 12px;
    color: #333; }
    .small-spotpromos .body p {
      line-height: 22px;
      letter-spacing: 2px;
      color: #666; }
  .small-spotpromos .title {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background-color: #222;
    padding: 29px 16px;
    color: #fff;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear; }
    .small-spotpromos .title span {
      display: block;
      width: 12px;
      height: auto;
      font-size: 12px;
      line-height: 16px;
      word-wrap: break-word;
      text-align: center;
      text-transform: uppercase; }
  .small-spotpromos .social-links span {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 20px 26px auto auto;
    background-color: #212121;
    border-radius: 100px / 100px; }
    .small-spotpromos .social-links span:hover a:after {
      color: #8c6e35; }
    .small-spotpromos .social-links span a {
      position: relative;
      display: inline-block;
      width: 35px;
      height: 35px;
      padding-left: 35px;
      overflow: hidden;
      z-index: 2; }
      .small-spotpromos .social-links span a:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        width: 35px;
        height: 35px;
        font-family: FontAwesome;
        font-size: 18px;
        color: #bf9648;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear;
        z-index: 1; }
    .small-spotpromos .social-links span.fb a:after {
      content: "\f09a";
      top: 9px;
      left: 12px; }
    .small-spotpromos .social-links span.tw a:after {
      content: "\f099";
      top: 9px;
      left: 9px; }
    .small-spotpromos .social-links span.utube a:after {
      content: "\f16a";
      top: 9px;
      left: 9px; }
    .small-spotpromos .social-links span.ig a:after {
      content: "\f16d";
      top: 9px;
      left: 10px; }
    @media screen and (max-width: 1020px) {
      .small-spotpromos .social-links span {
        margin-right: 10px;
        text-align: left; } }
  @media screen and (max-width: 820px) {
    .small-spotpromos {
      margin: 0 auto 20px;
      display: block;
      float: none;
      display: inline-block; } }

.large-spotpromos {
  position: relative;
  max-width: 330px;
  width: 100%;
  height: 326px;
  background-color: #222;
  margin-right: 20px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; }
  .large-spotpromos:last-child {
    float: left;
    margin-right: 0px; }
    @media screen and (max-width: 820px) {
      .large-spotpromos:last-child {
        float: none; } }
  .large-spotpromos:hover {
    background-color: #8c6e35; }
  .large-spotpromos a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #fff; }
  .large-spotpromos .title {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 38px;
    margin: 0;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    line-height: 36px;
    z-index: 4;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear; }
    .large-spotpromos .title:before, .large-spotpromos .title:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      content: ".....";
      top: -4px;
      font-size: 19px; }
    .large-spotpromos .title:before {
      left: 29px; }
    .large-spotpromos .title:after {
      right: 29px; }
  .large-spotpromos .image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 288px;
    overflow: hidden; }
  .large-spotpromos .body {
    position: absolute;
    bottom: 38px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    padding: 10px 20px 4px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    z-index: 3; }
    .large-spotpromos .body h2, .large-spotpromos .body h3, .large-spotpromos .body h4, .large-spotpromos .body h5, .large-spotpromos .body h6 {
      margin-bottom: 4px;
      color: #fff;
      letter-spacing: 0.15em; }
    .large-spotpromos .body h1,
    .large-spotpromos .body h2 {
      font-size: 28px; }
    .large-spotpromos .body h3 {
      font-size: 16px; }
    .large-spotpromos .body p {
      margin: 0 0 4px;
      line-height: 170%; }

.home .large-spotpromos {
  max-width: 327px;
  width: 48%;
  margin-right: 2%; }
  @media screen and (max-width: 820px) {
    .home .large-spotpromos {
      margin: 0 auto 20px;
      display: block;
      float: none;
      display: inline-block;
      width: 100%;
      overflow: hidden; }
      .home .large-spotpromos h2.title {
        background: #222; } }

.home .small-spotpromos {
  float: right;
  max-width: 327px;
  width: 100%; }
  @media screen and (max-width: 820px) {
    .home .small-spotpromos {
      margin: 0 auto 20px;
      display: block;
      float: none;
      display: inline-block;
      height: 153px;
      width: 100%;
      overflow: hidden; } }

/* ----------------------------------------------------------------------------
=Sidebar Subnav
----------------------------------------------------------------------------- */
.subnav {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0; }
  .subnav ul {
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0 0 16px; }
    .subnav ul .main-list {
      padding: 0 32px; }
      .subnav ul .main-list:first-child {
        padding: 0; }
        .subnav ul .main-list:first-child a {
          height: 62px;
          background-color: #222;
          border-top: 0;
          margin: 0 0 16px 0;
          padding: 32px 0 0 32px;
          letter-spacing: 0.17em;
          line-height: normal;
          font-weight: 700;
          color: #fff; }
          .subnav ul .main-list:first-child a:active, .subnav ul .main-list:first-child a.active {
            color: #fff; }
      .subnav ul .main-list a {
        display: block;
        border-bottom: 1px solid #d7d7d7;
        padding: 14px 0;
        font-family: "nevis", sans-serif;
        font-size: 12px;
        line-height: 170%;
        color: #333;
        text-transform: uppercase; }
        .subnav ul .main-list a:hover, .subnav ul .main-list a.active:hover {
          color: #8c6e35; }
        .subnav ul .main-list a:active, .subnav ul .main-list a.active {
          color: #8c6e35; }
        .subnav ul .main-list a.active + div.sub ul {
          display: block; }
    .subnav ul ul {
      display: none;
      padding-bottom: 0; }
      .subnav ul ul .sub-list {
        border-bottom: none; }
        .subnav ul ul .sub-list a {
          margin-left: 15px; }

/* 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;
  transition: opacity 0.3s linear; }

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-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;
  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;
  -ms-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 {
  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: 100%;
  height: 340px;
  *zoom: 1; }
  .royalSlider:before, .royalSlider:after {
    content: "\0020";
    display: table; }
  .royalSlider:after {
    clear: both; }

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

.royalSlider > .rsContent {
  visibility: hidden; }

/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  position: absolute;
  display: block;
  width: 39px;
  height: 45px;
  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 {
  position: relative;
  float: right; }
  .rsDefault.rsHor .rsArrowLeft {
    left: 0;
    bottom: 76px; }
  .rsDefault.rsHor .rsArrowRight {
    right: 0px;
    bottom: 76px; }

.rsArrowRight {
  bottom: 0;
  background-color: rgba(0, 17, 17, 0.8); }
  .rsArrowRight .rsArrowIcn:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 10px;
    height: 30px;
    top: 13px;
    left: 12px; }
  @media screen and (max-width: 820px) {
    .rsArrowRight {
      right: 0px !important;
      left: auto !important; } }

.rsArrowLeft {
  bottom: 0;
  background-color: rgba(0, 17, 17, 0.8); }
  .rsArrowLeft .rsArrowIcn:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 10px;
    height: 30px;
    top: 14px;
    left: 12px; }
  @media screen and (max-width: 600px) {
    .rsArrowLeft {
      left: auto !important;
      right: 39px !important;
      border-right: 1px solid black; } }

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 39;
  left: 0;
  bottom: 0px;
  width: auto;
  height: auto;
  padding-right: 8px;
  text-align: center;
  line-height: 8px;
  overflow: hidden; }
  @media screen and (max-width: 820px) {
    .rsDefault .rsBullets {
      right: 39px !important; } }
  @media screen and (max-width: 600px) {
    .rsDefault .rsBullets {
      display: none; } }

.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%;
  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;
  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;
  background: url(../images/tool-social-tip.png) no-repeat 0 -2px;
  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;
  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: url('../images/rs-default.png?1505235253'); }

.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: 820px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px; }

  .rsDefault .rsThumbsHor {
    height: 44px; }

  .rsDefault .rsThumbsVer {
    width: 59px; } }
/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative; }

.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1; }

.rsDefault .rsTab:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.rsDefault .rsTab:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf; }

.rsDefault .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset; }

.rsDefault .rsTab.rsNavSelected {
  color: #FFF;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#acacac), to(#bbbbbb));
  background-image: linear-gradient(to bottom, #acacac, #bbbbbb); }

/***************
*
*  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;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
  background: url('../images/rs-default.png?1505235253') 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?1505235253') -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?1505235253');
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: relative;
  bottom: 41px;
  width: 98%;
  height: 35px;
  margin: 0 0 0 10px;
  padding: 0;
  font-size: 12px;
  text-align: center;
  z-index: 38;
  /*	.ie9 & {
  		filter:none;
  	}*/ }
  .rsDefault .rsGCaption:empty {
    display: none; }
  .rsDefault .rsGCaption .rsABlock {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
    text-indent: 11px; }
    .rsDefault .rsGCaption .rsABlock p {
      width: 100%;
      height: 35px;
      padding: 0 15px;
      margin-bottom: 0;
      font-size: 13px;
      font-weight: 700;
      line-height: 35px;
      font-family: Arial, Helvetica, sans-serif;
      color: red;
      text-transform: uppercase; }
      .rsDefault .rsGCaption .rsABlock p:empty {
        display: none; }

/***************
*
*  9. Overrides/Customization
*
****************/
/*-- Custom Bullets --*/
.rsDefault .rsBullets {
  bottom: 76px;
  right: 213px;
  left: auto;
  height: 45px;
  background-color: rgba(0, 17, 17, 0.8); }
  .rsDefault .rsBullets.has-video {
    bottom: 42px; }

.rsDefault .rsBullet {
  width: auto;
  height: auto;
  padding-top: 18px; }
  .rsDefault .rsBullet span {
    width: 10px;
    height: 10px;
    background-color: #e9e0cc; }
    .rsDefault .rsBullet span:hover {
      background-color: #bf9648; }
  .rsDefault .rsBullet.rsNavSelected span {
    background-color: #bf9648; }

.full-slideshow {
  width: 100%;
  margin-bottom: 20px; }
  .full-slideshow.spotlight_image {
    margin-bottom: 0px;
    border-bottom: 0; }
  .full-slideshow.contentslides {
    height: 340px; }
    .full-slideshow.contentslides .rsBullets {
      bottom: 0;
      right: 80px; }
    .full-slideshow.contentslides .rsArrow {
      bottom: 0; }
  .full-slideshow .rsDefault {
    position: relative;
    height: 340px; }
  .full-slideshow .rsGCaption {
    position: absolute;
    bottom: 8px;
    width: 600px;
    height: 59px;
    border: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75); }
    .full-slideshow .rsGCaption .rsABlock h5 {
      width: 100%;
      font-size: 13px;
      letter-spacing: 0.2em;
      line-height: 59px;
      color: #fff; }
    @media screen and (max-width: 820px) {
      .full-slideshow .rsGCaption {
        width: 50%;
        bottom: 0px;
        margin: 0px; } }
  @media screen and (max-width: 600px) {
    .full-slideshow {
      margin-bottom: 0px; } }

@media screen and (max-width: 820px) {
  .full-slideshow, .royalSlider {
    height: 300px !important; } }
@media screen and (max-width: 600px) {
  .full-slideshow, .royalSlider {
    height: 200px !important; } }

.event_slideshow .full-slideshow.contentslides {
  margin-bottom: 0;
  border-bottom: 0; }

.managed .full-slideshow.contentslides .rsBullets {
  display: none; }
.managed .full-slideshow.contentslides .rsArrow {
  bottom: 40%; }
.managed .full-slideshow.contentslides .rsArrowLeft {
  left: 0 !important; }
.managed .full-slideshow.contentslides .rsArrowRight {
  right: 0 !important;
  left: auto !important; }
.managed .full-slideshow .rsGCaption {
  width: 97%; }

.home-slideshow {
  position: relative;
  height: 415px;
  margin-bottom: 40px; }
  @media screen and (max-width: 820px) {
    .home-slideshow {
      height: 300px !important; } }
  @media screen and (max-width: 820px) {
    .home-slideshow {
      height: 340px !important; } }
  @media screen and (max-width: 600px) {
    .home-slideshow {
      height: 280px !important; } }
  @media screen and (max-width: 400px) {
    .home-slideshow {
      height: 205px !important; } }
  .home-slideshow .royalSlider {
    height: 100%; }
    @media screen and (max-width: 820px) {
      .home-slideshow .royalSlider {
        height: 340px !important; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .royalSlider {
        height: 280px !important; } }
    @media screen and (max-width: 400px) {
      .home-slideshow .royalSlider {
        height: 205px !important; } }
  .home-slideshow .rsImg {
    display: block;
    width: auto !important;
    height: 340px !important;
    margin-top: 0 !important;
    margin-left: 0 !important; }
    @media screen and (max-width: 820px) {
      .home-slideshow .rsImg {
        width: 100% !important;
        height: 300px !important; } }
    @media screen and (max-width: 820px) {
      .home-slideshow .rsImg {
        height: 260px !important; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsImg {
        height: 200px !important; } }
    @media screen and (max-width: 400px) {
      .home-slideshow .rsImg {
        height: 128px !important; } }
    @media screen and (max-width: 321px) {
      .home-slideshow .rsImg {
        height: 111px !important; } }
  .home-slideshow .rsDefault .rsBullets {
    bottom: 75px;
    right: 216px; }
    @media screen and (max-width: 820px) {
      .home-slideshow .rsDefault .rsBullets {
        bottom: 80px; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsDefault .rsBullets {
        display: none; } }
  .home-slideshow .rsDefault.rsHor .rsArrowRight,
  .home-slideshow .rsDefault.rsHor .rsArrowLeft {
    bottom: 75px; }
    @media screen and (max-width: 820px) {
      .home-slideshow .rsDefault.rsHor .rsArrowRight,
      .home-slideshow .rsDefault.rsHor .rsArrowLeft {
        bottom: 80px; } }
  .home-slideshow .rsInfo {
    height: 76px;
    background-color: #fff;
    border-bottom: 4px solid #222;
    margin: 0 0 30px;
    padding: 0; }
    .home-slideshow .rsInfo .title {
      float: left;
      display: inline-block;
      position: relative;
      width: calc(100% - 228px);
      text-align: left;
      padding-left: 20px;
      font-size: 22px;
      line-height: 28px; }
      @media screen and (max-width: 600px) {
        .home-slideshow .rsInfo .title {
          font-size: 12px;
          line-height: 1.5;
          text-indent: 0px;
          height: auto;
          width: calc(100% - 90px); } }
      @media screen and (max-width: 321px) {
        .home-slideshow .rsInfo .title {
          line-height: 1.5; } }
  .home-slideshow .desc {
    position: relative;
    height: 74px; }
    .home-slideshow .desc .date {
      position: absolute;
      top: -45px;
      right: 76px;
      background-color: #222;
      margin: 0;
      padding: 15px 20px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
      color: #fff;
      text-transform: uppercase;
      z-index: 22;
      min-width: 140px;
      max-width: 140px;
      height: 60px;
      text-indent: 0px;
      text-align: center;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased; }
      @media screen and (max-width: 820px) {
        .home-slideshow .desc .date {
          top: -105px; } }
      .home-slideshow .desc .date .m {
        font-family: "proxima-nova", sans-serif;
        font-size: 24px;
        letter-spacing: 3px;
        font-weight: 300; }
      .home-slideshow .desc .date .d {
        font-family: "Montserrat", sans-serif;
        font-size: 24px;
        font-weight: 700; }
      .home-slideshow .desc .date .y {
        display: none; }
      .home-slideshow .desc .date .more {
        display: block;
        max-height: 60px;
        margin: -7px -1px; }
        .home-slideshow .desc .date .more span.m + span.m {
          font-size: 18px; }
        .home-slideshow .desc .date .more .m,
        .home-slideshow .desc .date .more .d {
          font-size: 21px;
          line-height: 23px; }
      @media screen and (max-width: 820px) {
        .home-slideshow .desc .date {
          display: none; } }
      @media screen and (max-width: 600px) {
        .home-slideshow .desc .date {
          display: none;
          padding: 11px 10px;
          min-width: 50px; }
          .home-slideshow .desc .date .m, .home-slideshow .desc .date .d {
            font-size: 18px; } }
  .home-slideshow .date + .buttons {
    top: 34px; }
  .home-slideshow .buttons {
    float: right;
    display: inline-block;
    position: relative;
    top: 28px;
    right: 46px; }
    .home-slideshow .buttons:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: -11px;
      left: -18px;
      width: 3px;
      height: 36px;
      background-color: #b8b8b8; }
    .home-slideshow .buttons .tickets {
      padding-right: 60px;
      letter-spacing: 0.2em; }
      .home-slideshow .buttons .tickets:after {
        top: -6px !important;
        right: 4px; }
    @media screen and (max-width: 600px) {
      .home-slideshow .buttons {
        position: absolute;
        top: 0px;
        right: 0px; }
        .home-slideshow .buttons .tickets {
          font-size: 0px; }
          .home-slideshow .buttons .tickets:after {
            right: 20px; } }

/**CALENDARIO: A FLEXIBLE CALENDAR PLUGIN
/*-CORE STYLES: CAN INCLUDE THESE ON EVERY PROJECT-
/*-OVERRIDE IN THE CUSTOM SECTION FOR EACH INDIVIDUAL THEME -
/*-ORIGINAL: http://tympanus.net/codrops/2012/11/27/calendario-a-flexible-calendar-plugin/ -
**/
/**
 * Base Calendar - full page
 */
#calendario {
  margin: 0px auto 40px auto;
  /* IE 9 is rounding up the calc it seems */ }
  #calendario *,
  #calendario *:after,
  #calendario *:before {
    box-sizing: border-box; }
  #calendario .cal-wrap {
    margin-top: 20px;
    position: relative; }
  #calendario .fc-calendar-container {
    position: relative;
    *zoom: 1;
    height: auto;
    width: auto;
    padding-bottom: 10px; }
    #calendario .fc-calendar-container:before, #calendario .fc-calendar-container:after {
      content: "\0020";
      display: table; }
    #calendario .fc-calendar-container:after {
      clear: both; }
  #calendario .fc-calendar {
    width: 100%;
    height: 100%;
    position: relative; }
  #calendario .fc-calendar .fc-head {
    height: 50px;
    line-height: 50px;
    background: none;
    color: #333333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px; }
  #calendario .fc-calendar .fc-body {
    position: relative;
    padding: 4px 0 4px 11px;
    border: none;
    width: 100%;
    height: 470px; }
  #calendario .fc-calendar .fc-row {
    width: 100%;
    border-top: none;
    border-bottom: none;
    min-height: 120px; }
  #calendario .fc-four-rows .fc-row {
    height: 120px; }
  #calendario .fc-five-rows .fc-row {
    height: 120px; }
  #calendario .fc-six-rows .fc-row {
    height: 120px; }
  #calendario .fc-calendar .fc-row.selected {
    height: 50%; }
    #calendario .fc-calendar .fc-row.selected .date_overlay {
      display: none; }
  #calendario .fc-calendar .fc-row.highlight > div .fc-date {
    color: #666 !important; }
  #calendario .fc-calendar .fc-row.highlight > div p {
    color: #333 !important; }
  #calendario .fc-calendar .fc-row.selected > div.fc-content {
    background: #222;
    border: 1px solid #ddd; }
    #calendario .fc-calendar .fc-row.selected > div.fc-content .fc-date {
      color: #fff !important; }
    #calendario .fc-calendar .fc-row.selected > div.fc-content .time,
    #calendario .fc-calendar .fc-row.selected > div.fc-content p {
      color: #fff !important; }
    #calendario .fc-calendar .fc-row.selected > div.fc-content a {
      color: #8c6e35 !important; }
  #calendario .fc-calendar .fc-row > div {
    float: left;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: none;
    width: 13%;
    margin: 5px;
    border: 1px solid #e5e5e5; }
    #calendario .fc-calendar .fc-row > div .date_overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 10; }
  #calendario .fc-calendar .fc-head > div {
    float: left;
    height: 100%;
    width: 14.1%;
    position: relative; }
  #calendario .ie9 .fc-calendar .fc-row > div,
  #calendario .ie9 .fc-calendar .fc-head > div {
    width: 14.2%; }
  #calendario .fc-calendar .fc-head > div {
    text-align: center; }
  #calendario .fc-calendar .fc-row > div > span.fc-date {
    font-family: "proxima-nova", sans-serif;
    position: absolute;
    width: 25px;
    height: 20px;
    top: 5px;
    left: 5px;
    color: #333333;
    font-size: 15px;
    text-align: left;
    margin: 0px; }
  #calendario .fc-calendar .fc-row > div > span.fc-weekday {
    padding-left: 5px;
    display: none; }
  #calendario .fc-calendar .fc-row > div.fc-out {
    opacity: 0.6; }
  #calendario .fc-calendar .fc-row:last-child {
    border-bottom: none; }
  #calendario .fc-content:hover {
    background: #333; }
    #calendario .fc-content:hover:before {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 128px;
      height: 20px;
      content: '';
      z-index: 99; }
  #calendario .fc-row.selected .fc-content:hover {
    background: #fff; }
    #calendario .fc-row.selected .fc-content:hover:before {
      display: none; }
  #calendario .fc-row.selected .fc-content:after {
    display: none; }
  #calendario .fc-content, #calendario .fc-row > div.fc-content, #calendario .fc-row.highlight > div.fc-content {
    background: #fff;
    cursor: pointer;
    padding: 25px 5px 25px 5px; }
    #calendario .fc-content:after, #calendario .fc-row > div.fc-content:after, #calendario .fc-row.highlight > div.fc-content:after {
      z-index: 98;
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
      background-size: 100%;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%); }
    #calendario .fc-content:before, #calendario .fc-row > div.fc-content:before, #calendario .fc-row.highlight > div.fc-content:before {
      content: '';
      z-index: 100;
      position: absolute;
      bottom: 0px;
      left: 50%;
      margin-left: -10px;
      height: 20px;
      width: 20px;
      display: block;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
      -webkit-transition: 0.2s;
      transition: 0.2s;
      background: url(../images/bg_cal_open.png) no-repeat; }
      .ie8 #calendario .fc-content:before, .ie8 #calendario .fc-row > div.fc-content:before, .ie8 #calendario .fc-row.highlight > div.fc-content:before {
        display: none; }
    #calendario .fc-content:hover:before, #calendario .fc-row > div.fc-content:hover:before, #calendario .fc-row.highlight > div.fc-content:hover:before {
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10000);
      opacity: 100; }
      .ie8 #calendario .fc-content:hover:before, .ie8 #calendario .fc-row > div.fc-content:hover:before, .ie8 #calendario .fc-row.highlight > div.fc-content:hover:before {
        display: block; }
    #calendario .fc-content .preventLink, #calendario .fc-row > div.fc-content .preventLink, #calendario .fc-row.highlight > div.fc-content .preventLink {
      display: none; }
    #calendario .fc-content span.fc-date, #calendario .fc-row > div.fc-content span.fc-date, #calendario .fc-row.highlight > div.fc-content span.fc-date {
      color: #333 !important;
      text-shadow: none;
      z-index: 3; }
    #calendario .fc-content .entry, #calendario .fc-row > div.fc-content .entry, #calendario .fc-row.highlight > div.fc-content .entry {
      padding: 0 0 5px;
      margin-bottom: 10px;
      border-bottom: 1px solid #ccc; }
      #calendario .fc-content .entry .date, #calendario .fc-content .entry .buttons, #calendario .fc-row > div.fc-content .entry .date, #calendario .fc-row > div.fc-content .entry .buttons, #calendario .fc-row.highlight > div.fc-content .entry .date, #calendario .fc-row.highlight > div.fc-content .entry .buttons {
        display: none; }
      #calendario .fc-content .entry .time, #calendario .fc-row > div.fc-content .entry .time, #calendario .fc-row.highlight > div.fc-content .entry .time {
        font: 300 11px "nevis", sans-serif; }
      #calendario .fc-content .entry h3, #calendario .fc-row > div.fc-content .entry h3, #calendario .fc-row.highlight > div.fc-content .entry h3 {
        padding-top: 4px;
        margin-bottom: 3px;
        font-size: 12px;
        font-weight: 600;
        color: #222; }
        #calendario .fc-content .entry h3 a, #calendario .fc-row > div.fc-content .entry h3 a, #calendario .fc-row.highlight > div.fc-content .entry h3 a {
          text-decoration: none;
          color: #222; }
      #calendario .fc-content .entry:hover .info h3, #calendario .fc-content .entry:hover .info h3 a, #calendario .fc-row > div.fc-content .entry:hover .info h3, #calendario .fc-row > div.fc-content .entry:hover .info h3 a, #calendario .fc-row.highlight > div.fc-content .entry:hover .info h3, #calendario .fc-row.highlight > div.fc-content .entry:hover .info h3 a {
        color: #8c6e35; }
    #calendario .fc-content .event_item_wrapper:last-child .entry, #calendario .fc-row > div.fc-content .event_item_wrapper:last-child .entry, #calendario .fc-row.highlight > div.fc-content .event_item_wrapper:last-child .entry {
      border-bottom: 0; }

/**
 * Popover styles
 */
.calendar .modal.fade.in {
  position: absolute;
  top: 25%;
  border-radius: 0px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); }
  .calendar .modal.fade.in .modal-body {
    min-height: 160px;
    max-height: 320px;
    padding-top: 20px; }
  .calendar .modal.fade.in .close {
    margin: 10px;
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 20;
    border: none;
    background: none; }
    .calendar .modal.fade.in .close:after {
      top: 0;
      right: -3px;
      content: '';
      position: absolute; }
    .calendar .modal.fade.in .close:before {
      z-index: -1;
      content: '';
      top: 7px;
      position: absolute;
      width: 5px;
      height: 5px;
      display: block;
      box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7); }

#calendario .calendar_tooltip {
  position: absolute;
  min-height: 150px;
  z-index: 99;
  width: 204px;
  padding: 10px 10px 0;
  top: 0;
  left: 50%;
  margin-left: -23px;
  background: #fff;
  overflow: visible !important;
  display: none;
  border: 1px solid #ddd;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2); }
  #calendario .calendar_tooltip .entry {
    background: #fff;
    min-height: 180px;
    padding: 10px; }
    #calendario .calendar_tooltip .entry:after {
      content: '';
      position: absolute;
      top: 30px;
      left: -10px;
      border-right: 10px solid #fff;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent; }
  #calendario .calendar_tooltip .time {
    display: none; }
  #calendario .calendar_tooltip .date {
    font-size: 12px;
    text-transform: uppercase;
    font-style: normal;
    margin: 0 0 0px;
    line-height: 1;
    letter-spacing: 0.17px;
    font-family: "nevis", sans-serif; }
    #calendario .calendar_tooltip .date .time {
      display: inline; }
  #calendario .calendar_tooltip h3 {
    padding: 10px 0 0;
    word-wrap: break-word; }
    #calendario .calendar_tooltip h3 a {
      display: block;
      padding: 0 0px;
      font-family: "nevis", sans-serif;
      font-size: 15px;
      text-decoration: none; }
  #calendario .calendar_tooltip .thumb {
    overflow: hidden;
    display: block;
    margin-bottom: 5px; }
  #calendario .calendar_tooltip img {
    width: 160px;
    border: 1px solid rgba(0, 0, 0, 0.2); }
  #calendario .calendar_tooltip .info p {
    margin-bottom: 10px;
    font-size: 13px;
    display: block !important; }
  #calendario .calendar_tooltip .buttons a.tickets {
    display: block;
    width: 140px;
    margin-top: 20px; }
    #calendario .calendar_tooltip .buttons a.tickets:after {
      top: -6px; }

.calendar .overview {
  position: absolute;
  top: -50px;
  left: -16px;
  width: 995px;
  height: 50px; }
  .calendar .overview h1 {
    line-height: 50px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px; }

/**
 * Calendar addons
 */
#calendario {
  background-color: #fff;
  margin-top: 20px; }
  #calendario .page_title {
    display: none; }
  #calendario .all-events-link {
    display: none;
    text-align: center;
    display: block;
    width: 150px;
    margin: 10px auto; }
  #calendario .thumb {
    display: none; }
  #calendario .info p {
    display: none; }
  #calendario .preventLink {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #calendario .fc-calendar .fc-head {
    width: 98%;
    padding: 0 0 0 20px;
    line-height: 62px; }

.fc-content {
  position: relative; }

/**
 * Calendario Header
 */
#calendario .cal-header {
  position: relative;
  height: 80px;
  background: none;
  background-color: #222;
  padding: 0px; }
  #calendario .cal-header h2 {
    margin: 0px;
    padding: 15px 0 0px;
    text-align: center;
    font-weight: normal;
    font-size: 23px;
    line-height: 50px;
    color: #fff; }
  #calendario .cal-header .cal-controls span {
    z-index: 100;
    position: absolute;
    top: 15px;
    cursor: pointer;
    margin: 0;
    height: 47px;
    width: 24px;
    text-indent: -9999px;
    overflow: hidden;
    text-align: left;
    background: url(../images/carousel_arrows.png) bottom left no-repeat; }
    #calendario .cal-header .cal-controls span:active {
      top: 16px; }
    #calendario .cal-header .cal-controls span:first-child {
      left: 25px;
      right: auto; }
      #calendario .cal-header .cal-controls span:first-child:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: transparent;
        background-image: url('../images/carousel_arrows.png?1505235253');
        background-position: top left;
        background-repeat: no-repeat;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      #calendario .cal-header .cal-controls span:first-child:hover:after {
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1; }
    #calendario .cal-header .cal-controls span.cal-next {
      right: 25px;
      background-position: bottom right; }
      #calendario .cal-header .cal-controls span.cal-next:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: transparent;
        background-image: url('../images/carousel_arrows.png?1505235253');
        background-position: top right;
        background-repeat: no-repeat;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      #calendario .cal-header .cal-controls span.cal-next:hover:after {
        filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1; }

.global-sponsors-carousel {
  width: 100%;
  background: #fff; }
  .global-sponsors-carousel .carousel.horizontal {
    max-width: 1020px; }
  .global-sponsors-carousel .list_holder:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 40px;
    left: 0px;
    width: 4px;
    height: 62px;
    background-color: #fff;
    z-index: 2; }

.carousel.horizontal {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #fff; }
  .carousel.horizontal .list_holder {
    position: relative;
    width: 100%;
    max-width: 1020px;
    height: 147px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden; }
  .carousel.horizontal .list {
    position: relative;
    width: 1000em;
    margin: 28px 0 0;
    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;
    width: 175px;
    height: 79px;
    overflow: hidden;
    background: none; }
    .carousel.horizontal .entry img {
      margin-top: 0px; }
    .carousel.horizontal .entry:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 11px;
      left: 0;
      width: 1px;
      height: 60px;
      background-color: #dadada; }
    .carousel.horizontal .entry:hover img {
      margin-top: -80px; }
    .carousel.horizontal .entry .main-link {
      display: block;
      width: 175px;
      height: 79px;
      z-index: 5; }
  .carousel.horizontal .carousel-nav,
  .carousel.horizontal .sponsors-nav {
    width: 100%;
    margin: 0 auto; }
    .carousel.horizontal .carousel-nav .prev-scroller,
    .carousel.horizontal .carousel-nav .next-scroller,
    .carousel.horizontal .sponsors-nav .prev-scroller,
    .carousel.horizontal .sponsors-nav .next-scroller {
      position: absolute;
      top: 44px;
      cursor: pointer;
      height: 56px;
      width: 30px; }
    .carousel.horizontal .carousel-nav .prev-scroller,
    .carousel.horizontal .sponsors-nav .prev-scroller {
      left: -40px; }
    .carousel.horizontal .carousel-nav .next-scroller,
    .carousel.horizontal .sponsors-nav .next-scroller {
      right: -40px; }

.banner {
  position: relative; }

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0; }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0; }
  .rslides li:before {
    display: none; }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left; }

.rslides li a, .rslides li a:visited {
  display: block;
  position: relative; }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0; }

#column_2 .banner {
  position: relative;
  display: block;
  width: 320px;
  height: 270px;
  background: #ccc;
  padding: 10px;
  margin: 0; }
  #column_2 .banner:hover, #column_2 .banner:focus {
    background: #333; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  position: relative;
  margin: 0 0 20px;
  padding: 0 35px; }
  .link ul.list {
    border-bottom: 1px solid #d7d7d7;
    margin: 0;
    padding: 0;
    list-style: none; }
    .link ul.list li {
      min-height: 40px;
      border-top: 1px solid #d7d7d7;
      padding: 0;
      margin: 0 0 0px; }
    .link ul.list a, .link ul.list span {
      position: relative;
      display: block;
      padding: 0;
      font-family: "nevis", sans-serif;
      font-size: 13px;
      line-height: 37px;
      color: #bf9648;
      text-decoration: none; }
    .link ul.list a {
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      .link ul.list a:hover, .link ul.list a:focus {
        color: #8c6e35; }
        .link ul.list a:hover:after, .link ul.list a:focus:after {
          color: #8c6e35; }
      .link ul.list a:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 2px;
        right: 3px;
        font-family: FontAwesome;
        font-size: 17px;
        content: "\f08e";
        color: #bf9648; }
      .link ul.list a.pdf:after {
        content: "\f15b";
        top: 2px;
        right: 4px; }
      .link ul.list a.image:after {
        content: "\f1c5";
        top: 2px;
        right: 3px; }
      .link ul.list a.email:after {
        content: "\f0e0";
        top: 1px;
        right: 2px; }

/* ----------------------------------------------------------------------------
= content page FAQs
----------------------------------------------------------------------------- */
.faq {
  position: relative;
  margin: 0 0 35px;
  padding: 0 35px; }
  .faq dl {
    border-bottom: 1px solid #d7d7d7; }
  .faq dt {
    position: relative;
    margin: 0;
    padding: 0 25px 0 0;
    border-top: 1px solid #d7d7d7;
    font-family: "nevis", sans-serif;
    overflow: auto;
    cursor: pointer;
    min-height: 40px; }
    .faq dt a {
      display: block;
      padding: 0;
      text-decoration: none; }
    .faq dt p {
      margin: 0;
      padding: 12px 0;
      font-size: 12px;
      color: #bf9648;
      line-height: 150%;
      text-transform: uppercase; }
      .faq dt p:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 11px;
        right: 3px;
        font-family: FontAwesome;
        font-size: 22px;
        content: "\f111";
        color: #bf9648; }
      .faq dt p:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 11px;
        right: 8px;
        font-family: FontAwesome;
        font-size: 14px;
        content: "\f107";
        color: #fff; }
    .faq dt:hover p, .faq dt.active p {
      color: #8c6e35; }
      .faq dt:hover p:before, .faq dt.active p:before {
        color: #8c6e35; }
    .faq dt.open p:after {
      top: 9px;
      content: "\f106"; }
  .faq dd {
    display: none;
    padding: 0 20px 0 0;
    overflow: hidden; }
    .faq dd p {
      line-height: 150%; }
  .faq ul {
    position: relative; }
    .faq ul li {
      position: relative;
      padding-left: 20px; }
      .faq ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 5px;
        left: 0;
        width: 8px;
        height: 8px;
        background-color: #222; }

/* ---------------------
= Global events helper
----------------------- */
#events .subnav .main-list:last-child a {
  border: none; }

/* ----------------------------------------------------------------------------
= Event Filter
----------------------------------------------------------------------------- */
.event-filter {
  margin: 0 35px;
  height: 85px;
  border-bottom: 1px solid #d7d7d7;
  position: relative; }
  .event-filter .filter-label {
    line-height: 85px;
    color: #8c6e35; }
  .event-filter ul {
    width: 286px;
    height: 43px;
    overflow: hidden;
    background: #f2f2f2;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 99;
    cursor: pointer; }
    .event-filter ul li {
      padding: 0;
      margin: 0;
      height: 43px;
      border-bottom: 3px solid #fff;
      color: #8c6e35; }
      .event-filter ul li.selected:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 0;
        right: 0;
        border-left: 3px solid #fff;
        background-position: 0 -50px;
        height: 40px;
        width: 40px; }
      .event-filter ul li:first-child {
        position: relative;
        border-bottom: 3px solid #fff;
        padding: 13px 15px 11px; }
      .event-filter ul li:hover {
        background-color: #222;
        color: #fff; }
        .event-filter ul li:hover a, .event-filter ul li:hover a:visited {
          color: #fff; }
        .event-filter ul li:hover.selected {
          background-color: #222;
          background-position: right -70px; }
      .event-filter ul li a, .event-filter ul li a:visited {
        color: #333;
        display: block;
        padding: 13px 15px 11px; }
  @media screen and (max-width: 600px) {
    .event-filter {
      margin: 0 10px; }
      .event-filter .title {
        display: none; }
      .event-filter ul {
        width: 100%; } }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.list .entry .date {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

.event_list {
  position: relative;
  margin-bottom: 45px; }
  .event_list.wrap-holder {
    padding-bottom: 0; }
  .event_list .overview {
    height: 102px;
    background-color: #222;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
    *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;
      font-size: 16px;
      font-weight: 300;
      line-height: 100%;
      text-transform: uppercase;
      letter-spacing: 0.17em;
      color: #fff; }
  .event_list .list {
    position: relative;
    background: none;
    margin: 0 0 30px;
    padding: 0 30px; }
    .event_list .list p.noevents {
      padding: 15px 0 0;
      color: #333; }
    @media screen and (max-width: 600px) {
      .event_list .list {
        padding: 0 10px; } }
  .event_list .entry {
    position: relative;
    height: 194px;
    margin: 20px 0px 0px;
    clear: both; }
    .event_list .entry:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      right: 0px;
      bottom: 0;
      width: 67.21311475%;
      height: 1px;
      background-color: #d7d7d7; }
    .event_list .entry:last-child:after {
      display: none; }
    .event_list .entry .thumb {
      float: left;
      width: 28.52459%;
      height: auto;
      margin: 0; }
      .event_list .entry .thumb a {
        display: block;
        width: 100%;
        height: 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; }
        .event_list .entry .thumb a:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
          opacity: 0.7; }
        .event_list .entry .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
      .event_list .entry .thumb:hover + .info .date {
        background-color: #8c6e35; }
    .event_list .entry .info {
      position: relative;
      float: right;
      width: 67.21311475%;
      padding: 0; }
      .event_list .entry .info .date {
        position: absolute;
        top: 10px;
        left: -58px;
        background-color: #222;
        margin: 0;
        padding: 15px 20px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        color: #fff;
        text-transform: uppercase; }
        .event_list .entry .info .date .m {
          font-family: "proxima-nova", sans-serif;
          font-size: 16px;
          font-weight: normal; }
        .event_list .entry .info .date .d {
          font-family: "Montserrat", sans-serif;
          font-weight: 700;
          font-size: 16px; }
        .event_list .entry .info .date .y {
          display: none; }
        @media screen and (max-width: 600px) {
          .event_list .entry .info .date {
            padding: 5px 10px;
            top: 0;
            left: 0; } }
        @media screen and (max-width: 321px) {
          .event_list .entry .info .date {
            padding: 5px 10px; } }
      .event_list .entry .info h3 {
        width: 100%;
        margin: 89px 0 10px 0px; }
        .event_list .entry .info h3 a {
          font-family: "nevis", sans-serif;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none;
          color: #333; }
          .event_list .entry .info h3 a:hover {
            color: #8c6e35; }
      .event_list .entry .info h4 {
        display: none; }
      .event_list .entry .info .buttons {
        position: absolute;
        top: 24px;
        right: 0; }
    @media screen and (max-width: 820px) {
      .event_list .entry .info .date {
        padding: 10px 15px; }
      .event_list .entry .info h3 {
        margin: 70px 0 0px 28px;
        font-size: 18px; } }
    @media screen and (max-width: 600px) {
      .event_list .entry {
        height: 118px; }
        .event_list .entry .info .date {
          padding: 5px 10px; }
        .event_list .entry .info h3 {
          margin: 48px 0 0px 10px;
          font-size: 14px; }
        .event_list .entry .info .buttons {
          top: 2px; }
          .event_list .entry .info .buttons a {
            font-size: 0px; } }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .spotlight_image {
  width: 100%;
  height: 340px; }
  .event_detail .spotlight_image .rsDefault {
    width: 100%;
    height: auto; }
    .event_detail .spotlight_image .rsDefault img {
      width: 100%;
      height: auto; }
  @media screen and (max-width: 600px) {
    .event_detail .spotlight_image {
      height: auto; } }
.event_detail #column_1 {
  margin-bottom: 60px; }
  .event_detail #column_1 .wrap-holder {
    margin-bottom: 0px; }
.event_detail .header {
  position: relative;
  height: 77px;
  background-color: #fff;
  border-bottom: 4px solid #222;
  margin: 0 0 30px;
  padding: 0;
  clear: both; }
  .event_detail .header .summary {
    float: left;
    display: inline-block;
    position: relative;
    width: 76%;
    padding-left: 20px;
    font-size: 22px;
    line-height: 28px; }
    @media screen and (max-width: 800px) {
      .event_detail .header .summary {
        font-size: 16px;
        width: 70%; } }
    @media screen and (max-width: 600px) {
      .event_detail .header .summary {
        font-size: 14px;
        width: 100%;
        line-height: 2; } }
  .event_detail .header .date + .buttons {
    top: 34px; }
  .event_detail .header .buttons {
    float: right;
    display: inline-block;
    position: relative;
    top: 28px;
    right: 46px; }
    .event_detail .header .buttons:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: -10px;
      left: -18px;
      width: 3px;
      height: 36px;
      background-color: #b8b8b8; }
    .event_detail .header .buttons .tickets {
      letter-spacing: 0.2em; }
    @media screen and (max-width: 600px) {
      .event_detail .header .buttons {
        display: none; } }
  .event_detail .header h2 {
    display: none; }
  .event_detail .header .date {
    position: absolute;
    top: -45px;
    right: 41px;
    background-color: #222;
    margin: 0;
    padding: 15px 20px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: #fff;
    text-transform: uppercase;
    z-index: 22; }
    .event_detail .header .date .m {
      font-family: "proxima-nova", sans-serif;
      font-size: 23px;
      font-weight: normal; }
    .event_detail .header .date .d {
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 23px; }
    .event_detail .header .date .y {
      display: none; }
  @media screen and (max-width: 600px) {
    .event_detail .header {
      margin-bottom: 0;
      margin-top: -4px; } }
.event_detail .event_body {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 40px; }
  .event_detail .event_body h4 {
    font-size: 12px; }
.event_detail .details {
  position: relative;
  margin: 0px;
  padding: 0;
  width: 100%;
  border-collapse: collapse; }
  .event_detail .details tr td {
    background: white;
    padding: 0 27px; }
    .event_detail .details tr td:first-child {
      width: 32.2388059%;
      background: #222; }
    .event_detail .details tr td h4 {
      border-top: 1px solid #000;
      color: #fff;
      padding: 10px 0;
      margin: 0px;
      font-size: 12px;
      font-weight: 400;
      line-height: 28px; }
    .event_detail .details tr td .inner {
      padding: 10px 0 0;
      border-top: 1px solid #d7d7d7;
      overflow: hidden;
      position: relative; }
    .event_detail .details tr td p {
      line-height: 28px;
      margin: 0px; }
    .event_detail .details tr td .detail-date .d {
      margin: 0 -6px 0 0;
      padding: 0; }
  .event_detail .details tr:first-child td {
    padding-top: 40px; }
  .event_detail .details tr:first-child h4, .event_detail .details tr:first-child .inner {
    border-top: none; }
  .event_detail .details tr:last-child td {
    padding-bottom: 20px; }
    @media screen and (max-width: 600px) {
      .event_detail .details tr:last-child td {
        padding-bottom: 0; } }
  .event_detail .details .is_expandable {
    cursor: pointer; }
    .event_detail .details .is_expandable.inner p {
      margin-right: 40px;
      margin-bottom: 0px; }
    .event_detail .details .is_expandable:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 13px;
      right: 0px;
      font-family: FontAwesome;
      font-size: 23px;
      content: "\f111";
      color: #bf9648;
      -webkit-transition: all .3s ease;
      transition: all .3s ease; }
    .event_detail .details .is_expandable:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 19px;
      right: 5px;
      font-family: FontAwesome;
      font-size: 15px;
      content: "\f106";
      color: #fff;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      /* IE 9 */
      -webkit-transform: rotateX(180deg);
      transform: rotateX(180deg); }
    .event_detail .details .is_expandable:hover:before {
      color: #8c6e35; }
    .event_detail .details .is_expandable.is_opened:before {
      color: #8c6e35; }
    .event_detail .details .is_expandable.is_opened:after {
      /* IE 9 */
      -webkit-transform: rotateX(0deg);
      /* Chrome, Safari, Opera */
      transform: rotateX(0deg);
      top: 16px; }
      @media screen and (max-width: 600px) {
        .event_detail .details .is_expandable.is_opened:after {
          top: 13px; } }
    @media screen and (max-width: 600px) {
      .event_detail .details .is_expandable:before {
        top: 10px; } }
  @media screen and (max-width: 600px) {
    .event_detail .details tr td, .event_detail .details tr td:first-child {
      display: block;
      width: 100%;
      padding: 0px 10px;
      margin-bottom: 0px; }
      .event_detail .details tr td h4, .event_detail .details tr td:first-child h4 {
        padding: 5px 0; }
      .event_detail .details tr td .inner, .event_detail .details tr td:first-child .inner {
        border-top: none;
        padding: 10px 0 0px;
        margin-bottom: 10px; }
        .event_detail .details tr td .inner p, .event_detail .details tr td:first-child .inner p {
          margin-bottom: 0px; }
    .event_detail .details tr td:first-child {
      text-align: center; }
    .event_detail .details tr:first-child td {
      padding: 0px 10px; }
    .event_detail .details tr .expandable:after {
      top: 15px; } }
.event_detail .showings,
.event_detail .description,
.event_detail .extra_links {
  margin: 0 0 35px; }
.event_detail .showings {
  width: 100%; }
  .event_detail .showings ul li {
    position: relative;
    height: 32px;
    background-color: #fff;
    border-top: 1px solid #d7d7d7;
    margin: 0 0 8px;
    padding: 0 0 8px; }
    .event_detail .showings ul li:only-child {
      border-bottom: 1px solid #d7d7d7;
      height: 42px; }
    .event_detail .showings ul li:first-child {
      border-top: 0; }
    .event_detail .showings ul li:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }
    .event_detail .showings ul li:before {
      display: none; }
    .event_detail .showings ul li span.date,
    .event_detail .showings ul li span.time {
      font-weight: 300;
      line-height: 40px;
      color: #333; }
      .event_detail .showings ul li span.date.date,
      .event_detail .showings ul li span.time.date {
        margin-right: 2px; }
    .event_detail .showings ul li a.ical {
      position: relative;
      float: right;
      top: 14px;
      display: block;
      padding-right: 40px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 700;
      color: #333;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .event_detail .showings ul li a.ical:hover {
        color: #8c6e35; }
        .event_detail .showings ul li a.ical:hover:after {
          background-position: 0 -149px;
          height: 20px;
          width: 19px; }
      .event_detail .showings ul li a.ical:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: -3px;
        right: 0px;
        background-position: 0 -119px;
        height: 20px;
        width: 19px; }
        .event_detail .showings ul li a.ical:after:hover, .event_detail .showings ul li a.ical:after.cal-hover {
          background-position: 0 -149px; }
      @media screen and (max-width: 600px) {
        .event_detail .showings ul li a.ical {
          overflow: hidden;
          height: 24px;
          width: 30px;
          font-size: 0px;
          margin-top: -5px; }
          .event_detail .showings ul li a.ical:after {
            position: absolute;
            right: 0px;
            top: 0px; } }
.event_detail .description p {
  line-height: 170%; }
.event_detail .extra_links h4 {
  margin-bottom: 10px; }
.event_detail .extra_links ul li {
  position: relative;
  padding-left: 30px; }
  .event_detail .extra_links ul li a {
    font-size: 13px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .event_detail .extra_links ul li:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 9px;
    height: 9px;
    top: 4px;
    left: 0;
    background-color: #bf9648; }
.event_detail .share-holder {
  position: relative;
  overflow: hidden; }
  .event_detail .share-holder a:before {
    display: none; }
@media screen and (max-width: 820px) {
  .event_detail.one_sidebar_right #column_2 .large-spotpromos {
    float: right;
    width: 45%;
    margin-right: 5%; } }

#events.detail .faq {
  padding: 0px; }
#events.detail .showings {
  margin-top: 25px;
  border-top: 1px solid #d7d7d7; }
@media screen and (max-width: 820px) {
  #events.detail .showings {
    margin-top: -10px;
    border-top: none; } }
#events.detail .event_detail .header {
  height: 0px;
  background: transparent; }
#events.detail .buttons a.tickets {
  color: white;
  font-size: 22px;
  font-weight: bold; }
#events.detail .buttons span.tickets, #events.detail .buttons span.soon {
  color: white;
  font-weight: bold;
  font-size: 22px;
  display: block;
  padding-right: 0px;
  margin-top: -2px; }
#events.detail .details .buttons_wrapper {
  padding-top: 20px; }
#events.detail .mobile-header {
  display: none;
  background: white;
  padding: 20px; }
  @media screen and (max-width: 820px) {
    #events.detail .mobile-header {
      display: block; } }
  #events.detail .mobile-header h1 {
    margin: 0px; }
@media screen and (max-width: 820px) {
  #events.detail .column-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column; }
    #events.detail .column-wrapper #column_1 {
      -webkit-box-ordinal-group: 3;
              order: 2; }
      #events.detail .column-wrapper #column_1 h1, #events.detail .column-wrapper #column_1 h2 {
        display: none; }
    #events.detail .column-wrapper #column_2 {
      -webkit-box-ordinal-group: 2;
              order: 1; }
      #events.detail .column-wrapper #column_2 .details {
        margin-bottom: 0px; } }
@media screen and (max-width: 820px) {
  #events.detail .one_sidebar_right #column_2 {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0px; }
    #events.detail .one_sidebar_right #column_2 .details {
      border-top: 1px solid #d7d7d7; } }
  @media screen and (max-width: 820px) and (max-width: 1024px) {
    #events.detail .one_sidebar_right #column_2 {
      position: relative !important; }
      #events.detail .one_sidebar_right #column_2 .details {
        max-width: none; } }
@media screen and (max-width: 820px) {
  #events.detail #column_1 {
    margin-top: 0px;
    margin-bottom: 0px; } }
#events.detail #column_2 .details {
  background: white;
  padding: 0px 20px 10px;
  margin-bottom: 30px;
  max-width: 330px; }
  #events.detail #column_2 .details .buttons_wrapper {
    background-color: #222;
    height: 60px;
    margin-bottom: 0;
    padding: 17px 30px 0;
    font-size: 14px;
    color: #fff;
    margin-left: -20px;
    width: calc(100% + 40px);
    margin-bottom: 15px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    #events.detail #column_2 .details .buttons_wrapper:hover {
      background-color: #8c6e35; }
  #events.detail #column_2 .details .details_item {
    position: relative;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 10px; }
    #events.detail #column_2 .details .details_item:first-child {
      padding-top: 32px; }
      @media screen and (min-width: 821px) {
        #events.detail #column_2 .details .details_item:first-child:before {
          content: '';
          position: absolute;
          left: -20px;
          bottom: calc(100% - 10px);
          border-top: 10px solid #222;
          width: calc(100% + 40px); } }
    #events.detail #column_2 .details .details_item:last-child {
      border-bottom: none; }
@media screen and (max-width: 820px) {
  #events.detail .social-sidebar, #events.detail .large-spotpromos {
    display: none; } }

.event_detail .description_wrapper .event_description {
  position: relative;
  min-height: 100px; }
  .event_detail .description_wrapper .event_description:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    display: block;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
  .event_detail .description_wrapper .event_description.is-opened:after {
    display: none; }
.event_detail .description_wrapper .read-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #222;
  text-transform: uppercase;
  text-align: center; }
  .event_detail .description_wrapper .read-more:hover {
    color: #BF9646; }
.event_detail .description_wrapper.short-description .event_description:after {
  display: none; }

.buttons a.tickets:after, .buttons span.tickets:after {
  top: 3px !important; }

.buttons {
  position: relative; }
  .buttons a, .buttons span {
    display: block;
    width: auto;
    margin: 0;
    padding: 2px 0;
    text-align: center;
    font-family: "nevis", sans-serif;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333333;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .buttons a:hover, .buttons span:hover {
      text-decoration: none;
      color: #8c6e35; }
  .buttons a, .buttons span {
    position: relative;
    z-index: 6; }
    .buttons a.tickets, .buttons span.tickets {
      padding-right: 43px; }
      .buttons a.tickets:after, .buttons span.tickets:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: -3px;
        right: 0;
        width: 29px;
        height: 30px;
        background: transparent url('../images/ticket-ico.png?1505235253') no-repeat 0 0;
        z-index: 5; }
    .buttons a.more, .buttons span.more {
      padding-right: 43px; }
  .buttons span.tickets {
    display: none; }
    .buttons span.tickets:after {
      display: none; }

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

.paging {
  position: relative;
  margin: 0;
  padding: 0;
  clear: both;
  *zoom: 1; }
  .paging:before, .paging:after {
    content: "\0020";
    display: table; }
  .paging:after {
    clear: both; }
  .paging.final {
    margin: 0; }
  .paging.empty {
    background: none;
    height: 0;
    padding: 0;
    margin: 0; }
  .paging .record {
    width: auto;
    height: 20px;
    font-family: "proxima-nova", sans-serif;
    font-style: italic;
    font-size: 12px;
    font-weight: 300;
    color: #ceb885;
    padding: 0; }
  .paging .pages {
    position: absolute;
    top: -25px;
    right: -22px;
    width: auto;
    *zoom: 1; }
    .paging .pages:before, .paging .pages:after {
      content: "\0020";
      display: table; }
    .paging .pages:after {
      clear: both; }
    .paging .pages strong, .paging .pages a {
      position: relative;
      float: left;
      width: 28px;
      height: 13px;
      margin: 0;
      padding: 0;
      border-left: 1px solid #000;
      font-family: "proxima-nova", sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #ceb885;
      text-align: center;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover {
        color: white;
        text-decoration: none; }
      .paging .pages strong.last, .paging .pages strong.first, .paging .pages a.last, .paging .pages a.first {
        display: none; }
      .paging .pages strong.prev, .paging .pages a.prev {
        border: 0;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden; }
        .paging .pages strong.prev:before, .paging .pages a.prev:before {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          width: 28px;
          height: 13px;
          top: -2px;
          left: -16px;
          font-family: FontAwesome;
          font-size: 16px;
          font-weight: bold;
          content: "\f104"; }
      .paging .pages strong.next, .paging .pages a.next {
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden; }
        .paging .pages strong.next:before, .paging .pages a.next:before {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          width: 28px;
          height: 13px;
          top: -2px;
          left: -16px;
          font-family: FontAwesome;
          font-size: 16px;
          font-weight: bold;
          content: "\f105"; }
    .paging .pages strong {
      color: #fff;
      text-decoration: none; }
  .paging.final {
    width: 100%;
    height: 54px;
    background-color: #222;
    margin: 0px;
    padding: 20px 20px 0; }
    .paging.final .pages {
      position: relative;
      top: auto;
      right: -22px; }

.seating {
  position: relative;
  width: 100%;
  margin: 0;
  *zoom: 1; }
  .seating:before, .seating:after {
    content: "\0020";
    display: table; }
  .seating:after {
    clear: both; }
  .seating .seating_charts {
    *zoom: 1; }
    .seating .seating_charts:before, .seating .seating_charts:after {
      content: "\0020";
      display: table; }
    .seating .seating_charts:after {
      clear: both; }
    .seating .seating_charts .entry {
      position: relative;
      display: block;
      float: left;
      width: 285px;
      height: 345px;
      margin: 0 0 20px 0;
      padding: 0px;
      background-color: #001111; }
      .seating .seating_charts .entry.alt {
        float: right; }
    .seating .seating_charts .thumb {
      position: relative;
      width: 100%;
      height: 270px;
      margin: 0;
      padding: 0;
      text-align: center;
      border: 1px solid #d7d7d7;
      border-bottom: 0; }
      .seating .seating_charts .thumb a {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0 auto; }
        .seating .seating_charts .thumb a img {
          display: block;
          width: 100%;
          height: 100%; }
    .seating .seating_charts .info {
      display: block;
      position: relative;
      width: 100%;
      height: 75px;
      margin: 0px;
      padding: 13px 12px;
      border-bottom: 4px solid #222; }
    .seating .seating_charts .title {
      position: relative;
      width: auto;
      height: 16px;
      padding: 0;
      overflow: hidden;
      font-family: "nevis", sans-serif;
      font-size: 14px;
      text-transform: uppercase; }
      .seating .seating_charts .title a {
        display: block;
        width: auto;
        height: auto;
        color: #bf9648;
        text-decoration: none;
        text-align: center;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .seating .seating_charts .title a:hover {
          color: #8c6e35; }
    .seating .seating_charts .links {
      position: relative;
      display: table-cell;
      word-wrap: break-word;
      width: 100%;
      height: 35px;
      vertical-align: middle;
      margin: 0;
      padding: 0 0 0 30px;
      color: white;
      text-transform: uppercase;
      text-decoration: none; }
      .seating .seating_charts .links a {
        width: auto;
        height: auto;
        display: inline;
        color: #fff;
        font-size: 11px;
        padding-left: 8px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .seating .seating_charts .links a:first-child {
          padding-right: 5px;
          border-right: 1px solid #d7d7d7; }
        .seating .seating_charts .links a:hover, .seating .seating_charts .links a:focus {
          text-decoration: none;
          color: #8c6e35; }

/**
 * 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-container-image-box > #lightbox-nav {
  left: 0; }

#lightbox-nav a {
  outline: none; }

#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 {
  font: 10px Verdana, Helvetica, sans-serif;
  background-color: #fff;
  margin: 0 auto;
  line-height: 1.4em;
  overflow: auto;
  width: 100%;
  padding: 0 10px 0; }

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

#lightbox-container-image-data #lightbox-image-details {
  width: 70%;
  float: left;
  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 {
  width: 66px;
  float: right;
  padding-bottom: 0.7em; }

/* 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;
  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: 0;
  background: #111;
  border-top: 10px solid #212121;
  height: 700px; }
  @media screen and (max-width: 820px) {
    .mfp-content {
      background: none; } }

.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: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-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;
  -ms-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;
  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;
    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 .rsDefault, .mfp-container .rsDefault .rsOverflow, .mfp-container .rsDefault .rsSlide, .mfp-container .rsDefault .rsVideoFrameHolder {
  background: #212121; }
  @media screen and (max-width: 500px) {
    .mfp-container .rsDefault, .mfp-container .rsDefault .rsOverflow, .mfp-container .rsDefault .rsSlide, .mfp-container .rsDefault .rsVideoFrameHolder {
      background: none; } }
@media screen and (max-width: 820px) {
  .mfp-container .rsDefault .rsOverflow {
    width: 700px !important; } }
@media screen and (max-width: 700px) {
  .mfp-container .rsDefault .rsOverflow {
    width: 650px !important; } }
@media screen and (max-width: 700px) {
  .mfp-container .rsDefault .rsOverflow {
    width: 500px !important; } }
@media screen and (max-width: 500px) {
  .mfp-container .rsDefault .rsOverflow {
    width: 400px !important; } }
@media screen and (max-width: 400px) {
  .mfp-container .rsDefault .rsOverflow {
    width: 300px !important; } }
.mfp-container .rsDefault.rsWithThumbsHor .rsThumbsContainer {
  margin-top: 0;
  background: none; }
.mfp-container .rsDefault.rsHor .rsArrowLeft,
.mfp-container .rsDefault.rsHor .rsArrowRight {
  bottom: auto;
  top: 50%;
  background-color: #222; }
  .mfp-container .rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before,
  .mfp-container .rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
    width: 18px;
    background: transparent url("../images/rs-default.png") -181px -72px no-repeat; }
  .mfp-container .rsDefault.rsHor .rsArrowLeft.rsArrowRight .rsArrowIcn:before,
  .mfp-container .rsDefault.rsHor .rsArrowRight.rsArrowRight .rsArrowIcn:before {
    background-position: -181px -114px; }
  .mfp-container .rsDefault.rsHor .rsArrowLeft:hover,
  .mfp-container .rsDefault.rsHor .rsArrowRight:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8; }
@media screen and (max-width: 820px) {
  .mfp-container .rsSlide {
    text-align: center; }
  .mfp-container img.rsImg {
    margin: auto !important;
    max-width: 100% !important;
    height: auto !important; }
  .mfp-container .royalSlider .rsThumbsHor {
    display: none; } }
.mfp-container .royalSlider {
  height: 600px;
  width: 100%;
  opacity: 1; }
  .mfp-container .royalSlider .rsThumbsHor {
    margin-bottom: -190px;
    height: 110px;
    padding: 10px;
    background: #111;
    border-bottom: 0;
    bottom: 0; }
  .mfp-container .royalSlider .rsThumb {
    width: 90px;
    height: 90px;
    overflow: hidden !important;
    text-align: center; }
    .mfp-container .royalSlider .rsThumb img {
      height: auto;
      width: auto;
      min-width: 90px;
      height: 90px;
      margin: 0 auto; }
    .mfp-container .royalSlider .rsThumb.rsNavSelected {
      border: 3px solid #fff;
      background: #fff; }
      .mfp-container .royalSlider .rsThumb.rsNavSelected img {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
        opacity: 0.9;
        margin-top: -3px;
        margin-left: -3px; }
  .mfp-container .royalSlider .rsArrowIcn {
    top: 50%; }
  .mfp-container .royalSlider .rsArrowLeft .rsArrowIcn {
    left: 20px; }
  .mfp-container .royalSlider .rsGCaption {
    width: 100%;
    padding: 0;
    text-align: center;
    height: 80px;
    min-height: 80px;
    overflow: hidden;
    font: bold 14px/80px "proxima-nova", sans-serif;
    text-transform: uppercase;
    margin: 0;
    position: absolute;
    bottom: -80px;
    left: 0;
    background-image: none;
    background-color: transparent;
    color: #fff;
    background: #212121; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .content .overview {
    border: none;
    margin: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    border-top: 1px solid #AAA;
    padding: 15px 10px;
    position: relative; }
    .news_list .entry .info {
      width: 465px; }
      .news_list .entry .info h3 {
        margin: 0 0 5px; }
        .news_list .entry .info h3 a {
          font-size: 16px;
          text-transform: none;
          color: red;
          text-decoration: none;
          font-weight: bold; }
          .news_list .entry .info h3 a:hover {
            color: black; }
      .news_list .entry .info h4 {
        font-size: 14px;
        margin: 0 0 5px; }
      .news_list .entry .info p {
        color: #222; }
    .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
      border-radius: 5px;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
      background: blue;
      display: block;
      height: 24px;
      text-align: center;
      text-decoration: none;
      line-height: 24px;
      padding: 0 8px;
      border: 1px solid blue;
      position: absolute;
      top: 15px;
      right: 10px; }
      .news_list .entry a.more:hover, .news_list .entry a.more:link:hover, .news_list .entry a.more:visited:hover {
        background-color: #333;
        border: 1px solid #333; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail .overview {
    width: 460px;
    border: none; }
    .news_detail .overview span.date {
      color: black;
      font-weight: 500; }
  .news_detail .body {
    margin: 0 0 5px; }
  .news_detail .thumb {
    height: 130px;
    width: 170px;
    margin: 0 15px 10px 0;
    float: left;
    border: 1px solid #AAA; }
    .news_detail .thumb img {
      padding: 0px;
      height: 130px;
      width: 170px; }
  .news_detail .link {
    float: left; }
  .news_detail .share_bar {
    border-top: 1px solid black;
    padding: 15px 0 0; }
    .news_detail .share_bar .addthis_toolbox {
      float: left;
      width: 305px; }
    .news_detail .share_bar a.print {
      float: left;
      display: block;
      height: 22px;
      background: url(../images/icons.png) no-repeat 0 -44px;
      padding: 0 0 0 26px;
      margin: 0 20px 0 0;
      line-height: 22px;
      text-decoration: none;
      float: left;
      color: #222;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase; }
      .news_detail .share_bar a.print:hover {
        background-position: 0 -66px; }
    .news_detail .share_bar a.full_list, .news_detail .share_bar a.full_list:link, .news_detail .share_bar a.full_list:visited {
      float: left;
      display: block;
      padding: 0 0 0 26px;
      text-decoration: none;
      border: none;
      color: #222;
      margin: 0 15px 0 0;
      line-height: 22px;
      font-weight: 700;
      font-size: 11px;
      height: 22px;
      text-transform: uppercase;
      background: url(../images/icons.png) no-repeat 0 -220px; }
      .news_detail .share_bar a.full_list:hover, .news_detail .share_bar a.full_list:link:hover, .news_detail .share_bar a.full_list:visited:hover {
        background-position: 0 -242px; }
  .news_detail .event_list {
    margin: 0 0 15px; }
    .news_detail .event_list .list {
      padding: 0; }

#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: 100%;
  height: 340px;
  margin-bottom: 30px; }
  .map_holder .map {
    width: 100%;
    height: 100%; }

.map_window {
  overflow: hidden; }
  .map_window .info {
    margin: 2px 0 0;
    padding: 0; }
    .map_window .info h4 {
      font-weight: 400;
      margin-bottom: 4px; }
    .map_window .info address {
      margin: 0;
      padding: 0;
      font-size: 12px;
      line-height: 140%; }
  .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: 0; }
    .map_window .directions label {
      display: block;
      margin: 0 0 8px;
      font-size: 11px;
      font-weight: bold; }
    .map_window .directions input[type=text] {
      padding: 4px 5px;
      margin: 0 0 8px;
      width: 74%;
      font-size: 12px;
      color: #000; }
    .map_window .directions form button {
      float: right;
      display: block;
      background-color: #bf9648;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 6px 5px;
      color: #fff;
      border: 0;
      border-radius: 3px 3px; }
      .map_window .directions form button:hover {
        background-color: #8c6e35; }
  .map_window .links {
    display: none; }

.map_control {
  height: 70px;
  background: #fff;
  border-bottom: 5px solid #222; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  margin: 0 0 45px;
  clear: both;
  *zoom: 1; }
  .sitemap:before, .sitemap:after {
    content: "\0020";
    display: table; }
  .sitemap:after {
    clear: both; }
  @media screen and (max-width: 600px) {
    .sitemap .column {
      width: 100%;
      clear: both; } }
  .sitemap .header {
    margin-bottom: 18px; }
    .sitemap .header hr {
      display: none; }
  .sitemap ul {
    margin: 0; }
    .sitemap ul .main-list {
      margin-bottom: 30px;
      padding: 0;
      color: #bf9648; }
      .sitemap ul .main-list:before {
        display: none; }
    .sitemap ul a:hover {
      text-decoration: none; }
    .sitemap ul a.top-level {
      display: inline-block;
      font-family: "nevis", sans-serif;
      font-size: 17px;
      line-height: 25px;
      text-transform: uppercase;
      color: #333; }
    .sitemap ul.sub-level {
      margin-left: 0px;
      margin-top: 10px; }
      .sitemap ul.sub-level li {
        margin: 0 0 3px; }
        .sitemap ul.sub-level li a {
          font-size: 14px; }
      .sitemap ul.sub-level ul {
        display: none; }

.concierge_listing {
  position: relative;
  margin-bottom: 45px; }
  .concierge_listing .list {
    position: relative;
    background: none;
    margin: 0 0 30px;
    padding: 0 30px; }
    @media screen and (max-width: 600px) {
      .concierge_listing .list {
        padding: 0 10px; } }
  .concierge_listing .entry {
    position: relative;
    height: 195px;
    margin: 25px 0px 0px;
    clear: both; }
    .concierge_listing .entry:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      right: 0px;
      bottom: 0;
      width: 67.21311475%;
      height: 1px;
      background-color: #d7d7d7; }
    .concierge_listing .entry:last-child:after {
      display: none; }
    .concierge_listing .entry .thumb {
      float: left;
      width: 28.52459%;
      height: auto;
      margin: 0; }
      .concierge_listing .entry .thumb a {
        display: block;
        width: 100%;
        height: 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; }
        .concierge_listing .entry .thumb a:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
          opacity: 0.7; }
        .concierge_listing .entry .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
      .concierge_listing .entry .thumb:hover + .info .date {
        background-color: #8c6e35; }
    .concierge_listing .entry .info {
      float: right;
      width: 67.21311475%;
      padding: 0; }
    .concierge_listing .entry .buttons {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28.52459%; }
      .concierge_listing .entry .buttons a.more {
        background-color: #222;
        color: #fff;
        padding: 10px; }
        .concierge_listing .entry .buttons a.more:hover {
          background-color: #8c6e35; }
    .concierge_listing .entry .address {
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block; }
    .concierge_listing .entry .description {
      height: 60px;
      overflow: hidden; }
      .concierge_listing .entry .description p {
        font-size: 13px; }

/*
 * 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;
    color: #333; }
.venue_detail .venue_body .events {
  border-top: 1px solid #ccc;
  padding-top: 15px; }
.venue_detail .main_column .seating img {
  max-width: 600px; }

/* @group Seating Charts */
.gallery-container {
  overflow: hidden; }

.photo_gallery {
  padding: 0;
  position: relative;
  text-align: left;
  background: #222;
  width: 46.7%;
  margin-bottom: 35px; }
  @media screen and (max-width: 600px) {
    .photo_gallery {
      width: 100%; } }
  .photo_gallery .thumb {
    display: block;
    margin: 0 0 10px;
    padding: 0;
    width: 100%;
    height: 240px;
    float: left;
    overflow: hidden; }
    .photo_gallery .thumb img {
      margin: 0;
      padding: 0;
      border: none;
      display: block;
      width: 100%;
      height: auto;
      min-height: 240px; }
  .photo_gallery strong {
    display: block;
    width: 214px;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #111;
    opacity: 0.85;
    overflow: hidden;
    border-bottom: 1px solid #222;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    color: black; }
  .photo_gallery a {
    text-decoration: none; }
  .photo_gallery .royalSlider {
    width: 1000px;
    height: 600px;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -99;
    opacity: 0; }
  .photo_gallery h3 {
    clear: both;
    height: 45px;
    padding: 0 10px; }
    .photo_gallery h3 a {
      color: #fff; }

/* @end */
.apple_overlay {
  display: none;
  width: 600px;
  padding: 15px 15px 10px;
  height: 570px;
  background: #fff; }
  .apple_overlay .close {
    background-image: url(../images/lightbox-btn-close.gif);
    position: absolute;
    bottom: 20px;
    right: 16px;
    cursor: pointer;
    width: 66px;
    height: 22px;
    z-index: 9000; }
  .apple_overlay .content {
    background: transparent; }
  .apple_overlay .slideshow {
    width: auto;
    height: 545px;
    background: #fff; }
    .apple_overlay .slideshow .caption_holder {
      display: block; }
    .apple_overlay .slideshow .controls {
      display: block;
      width: 100%;
      height: 53px;
      padding: 0;
      color: #fff;
      position: absolute;
      z-index: 600;
      top: 180px;
      left: 0; }
      .apple_overlay .slideshow .controls .nav-controls {
        position: relative; }
        .apple_overlay .slideshow .controls .nav-controls a.prev {
          display: block;
          width: 63px;
          height: 32px;
          background: url(../images/lightbox-btn-prev.gif) no-repeat 0 0;
          position: absolute;
          top: 0;
          left: 0px;
          text-indent: -4000px;
          cursor: pointer;
          border: none; }
        .apple_overlay .slideshow .controls .nav-controls a.next {
          display: block;
          width: 53px;
          height: 53px;
          background: url(../images/lightbox-btn-next.gif) no-repeat 0 0;
          position: absolute;
          top: 0;
          right: 0px;
          text-indent: -4000px;
          cursor: pointer;
          border: none; }
    .apple_overlay .slideshow .slide {
      width: 100%;
      height: 465px;
      overflow: hidden; }
      .apple_overlay .slideshow .slide span {
        display: block;
        width: 600px;
        height: 465px; }
    .apple_overlay .slideshow .caption_holder {
      display: none;
      position: absolute;
      bottom: 7px;
      left: -12px;
      width: 640px;
      padding: 10px 0 0;
      height: 40px;
      z-index: 15; }
      .apple_overlay .slideshow .caption_holder span {
        display: block;
        width: auto;
        height: 35px; }
    .apple_overlay .slideshow .caption {
      position: relative; }
      .apple_overlay .slideshow .caption p {
        color: #333;
        font-size: 14px;
        line-height: 100%;
        padding: 10px 0 0 20px;
        font-weight: bold;
        float: left;
        width: 600px;
        overflow: hidden;
        font-family: Georgia, "Times New Roman", serif; }
      .apple_overlay .slideshow .caption .date {
        color: #fff;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 100%;
        margin: 0;
        padding: 0;
        float: left;
        font-weight: normal;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #c38c1d; }
      .apple_overlay .slideshow .caption .buttons {
        float: right; }
        .apple_overlay .slideshow .caption .buttons a {
          display: block;
          text-transform: uppercase;
          font-size: 18px;
          color: #811211;
          padding: 6px 10px;
          letter-spacing: 0.5px;
          width: auto;
          float: left;
          background: url(../images/slideshow_btn_rule.png) no-repeat 0 0; }
          .apple_overlay .slideshow .caption .buttons a.more {
            margin: 0 2px 0 0; }
          .apple_overlay .slideshow .caption .buttons a:hover {
            color: #333; }
      .apple_overlay .slideshow .caption a {
        display: none; }
    .apple_overlay .slideshow .thumbs_holder {
      display: block;
      width: 600px;
      height: 80px;
      position: absolute;
      top: 473px;
      left: 0; }
      .apple_overlay .slideshow .thumbs_holder ul {
        display: block;
        list-style-type: none;
        list-style-image: none;
        padding: 0;
        margin: 0; }
      .apple_overlay .slideshow .thumbs_holder li {
        float: left;
        width: 65px;
        margin-right: 5px;
        height: 43px; }
        .apple_overlay .slideshow .thumbs_holder li a.thumb {
          display: block;
          width: 65px;
          height: 43px;
          border: none;
          background: transparent;
          border: 2px solid #fff; }
          .apple_overlay .slideshow .thumbs_holder li a.thumb img {
            display: block;
            width: 65px;
            height: 43px;
            border: none;
            background: transparent; }
        .apple_overlay .slideshow .thumbs_holder li.selected a.thumb {
          border: 2px solid #B0BAC9; }
      .apple_overlay .slideshow .thumbs_holder .caption {
        display: none; }
    .apple_overlay .slideshow .thumbs .caption {
      display: none; }
      .apple_overlay .slideshow .thumbs .caption p {
        color: #333;
        font-size: 12px;
        height: 30px;
        overflow: hidden; }
    .apple_overlay .slideshow .thumbs li:hover .caption {
      display: none;
      opacity: 1; }
    .apple_overlay .slideshow .video {
      width: 100%;
      height: 100%;
      background: url(../images/play.png) no-repeat center 160px;
      position: absolute;
      left: 0px;
      top: 0px;
      display: none;
      z-index: 601; }
      .apple_overlay .slideshow .video #video_player, .apple_overlay .slideshow .video #video_holder {
        display: block;
        width: 100%;
        height: 100%;
        margin: 8% auto 0;
        text-align: center; }
    .apple_overlay .slideshow .imglink {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      display: none; }
      .apple_overlay .slideshow .imglink #imglink {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }
    .apple_overlay .slideshow img {
      display: block;
      width: 100%;
      height: 100%; }
  .apple_overlay #map_overlay {
    background-image: url(../images/map_transparent.png); }
  .apple_overlay .contentWrap {
    height: 375px;
    overflow: hidden;
    border: 1px solid #FF9100; }
  .apple_overlay .map_overlay.apple_overlay {
    display: none;
    width: 620px;
    padding: 35px;
    height: 370px; }

/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.ie9 nav .main-list > a {
  padding: 22px 20px;
  letter-spacing: 0.21em; }
.ie9 .faq dt p:after {
  right: 9px; }

.ie10 .faq dt.open p:after {
  top: 10px; }
.ie10 .faq dt p:after {
  top: 11px;
  right: 9px; }

.ie11 nav .main-list > a {
  padding: 22px 19px;
  letter-spacing: 0.22em; }

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