@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;
  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, .in_feed,
.tw_feed, .paging.final .record,
.unit,
.col1of2,
.footer .ft-logos,
.footer .info-numbers,
.footer .info-numbers .ticket-info,
.footer .info-numbers .local-info,
.two-column li,
.sitemap .column,
.col1of3,
.three-column li,
.col2of3,
.one_sidebar_right #column_1,
.col1of4,
.col3of4,
.col1of5,
.col2of5,
.col3of5,
.col4of5 {
  float: left; }

.right, .paging.final .pages {
  float: right; }

.col1of1, .full, .two-column, .three-column {
  float: none;
  width: 100%; }

.col1of2, .footer .ft-logos, .footer .info-numbers, .footer .info-numbers .ticket-info, .footer .info-numbers .local-info, .two-column li, .sitemap .column {
  width: 50%; }

.col1of3, .three-column li {
  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 .info-numbers, .footer .info-numbers .local-info, .sitemap .column:last-child {
  overflow: hidden;
  *overflow: visible;
  *zoom: 1; }

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

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

.arrow-left-sm .arrow-back-sm, .carousel.horizontal .carousel-nav .prev-scroller .arrow-back-sm,
.carousel.horizontal .sponsors-nav .prev-scroller .arrow-back-sm, .home .carousel.horizontal.events .entry .info .date.grid:after, .home-slideshow .rsInfo .date:after, .home .calendar-holder .modal.fade.in .event_list .date:after, .faq dt.open p:after, .event_list .tile-view .entry .info .date.grid:after, .event_detail #rollingdate.date:after, .event_detail .showings.add .label.open a:after,
.event_detail .extra_links.add .label.open a:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

/* ----------------------------------------------------------------------------
= Media Queries
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
    top: -5px; }
  to {
    opacity: 1;
    top: 0; } }
@keyframes fadein {
  from {
    opacity: 0;
    top: -5px; }
  to {
    opacity: 1;
    top: 0; } }
/********** 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 */
/* ----------------------------------------------------------------------------
= 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: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-align: left;
  letter-spacing: 0.1em;
  background-color: #111; }

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

.layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  *zoom: 1;
  z-index: 2; }
  .layout:before, .layout:after {
    content: "\0020";
    display: table; }
  .layout:after {
    clear: both; }
  .layout .site-logo {
    display: none; }
    @media screen and (max-width: 1260px) {
      .layout .site-logo {
        display: block;
        position: relative;
        top: 0px;
        left: 0;
        width: 100%;
        height: 139px;
        z-index: 200; }
        .layout .site-logo span.main,
        .layout .site-logo a.main {
          dipslay: inline-block;
          width: 375px;
          height: 100%;
          margin: 0 auto;
          background-size: contain; } }
    @media screen and (max-width: 400px) {
      .layout .site-logo span.main,
      .layout .site-logo a.main {
        width: 100%;
        width: 320px; } }

.wrap-holder {
  max-width: 1080px;
  background-color: #fff;
  margin: 55px auto 60px;
  padding-bottom: 30px;
  *zoom: 1; }
  .wrap-holder:before, .wrap-holder:after {
    content: "\0020";
    display: table; }
  .wrap-holder:after {
    clear: both; }
  @media screen and (max-width: 600px) {
    .wrap-holder {
      margin-bottom: 20px; } }

#branding.active + .wrap-holder {
  margin-top: 0; }

.one_sidebar_right {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  *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 {
    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: 0; }
      .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 {
  clear: both;
  margin-top: 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;
      padding: 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: #e9e0cc;
    height: 60px;
    margin-bottom: 0;
    padding: 28px 30px 0;
    font-size: 14px;
    color: #fff; }
  .social-sidebar .ct {
    background: #fff;
    padding: 20px; }
  .social-sidebar .share-holder a:hover {
    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 {
      opacity: 0.70; }
  @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 #111111;
  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.fixednav, .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;
      left: 50%;
      margin-top: 8px;
      margin-left: -11px; }
  .places-venue:hover, .places-venue.active {
    border-color: #a30f16; }
    .places-venue:hover h2, .places-venue.active h2 {
      color: #e8be69; }
  .places-venue .golocals {
    display: none;
    position: absolute;
    top: 64px;
    background-color: #FFF;
    border-bottom: 4px solid #b29052;
    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: "Oswald", 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: #e8be69; }
      .places-venue .golocals a:hover {
        color: #e8be69; }

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

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

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

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

#toolbar {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #242424; }
  @media screen and (max-width: 1260px) {
    #toolbar {
      display: none; } }
  #toolbar .g-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto; }
  #toolbar .vtool {
    float: left;
    position: relative;
    width: 151px;
    height: 40px;
    padding: 0;
    z-index: 510; }
    #toolbar .vtool:hover {
      cursor: pointer; }
      #toolbar .vtool:hover .arrow-down {
        fill: #e8be69; }
    #toolbar .vtool.active .arrow-down {
      fill: #e8be69; }
    #toolbar .vtool h2 {
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: #e8be69;
      line-height: 39px; }
    #toolbar .vtool .arrow-down {
      position: absolute;
      top: 15px;
      right: 22px;
      width: 16px;
      height: 8px;
      fill: #e9e0cc; }
    #toolbar .vtool:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 13px;
      right: 0px;
      width: 1px;
      height: 13px;
      background-color: #B29052; }
  #toolbar .golocals {
    display: none;
    position: absolute;
    left: -19%;
    top: 40px;
    width: 120%;
    background-color: #242424;
    border-bottom: 4px solid #b29052;
    margin-top: 0;
    padding: 0 10px 10px;
    z-index: 510; }
    #toolbar .golocals li {
      position: relative;
      padding: 0;
      z-index: 3; }
      #toolbar .golocals li:first-child {
        border-top: 0; }
    #toolbar .golocals a {
      position: relative;
      display: block;
      margin-top: 15px;
      padding: 15px 0;
      font-size: 12px;
      color: #e9e0cc;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 5;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      #toolbar .golocals a:active, #toolbar .golocals a.active, #toolbar .golocals a.active:hover {
        color: #e8be69; }
      #toolbar .golocals a:hover {
        color: #e8be69; }
  #toolbar .vemail {
    float: left;
    position: relative;
    width: 185px;
    height: 40px;
    z-index: 510; }
    #toolbar .vemail:hover .email-icon {
      fill: #e8be69; }
    #toolbar .vemail a {
      display: block;
      padding-left: 24px;
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: #e8be69;
      line-height: 39px;
      text-transform: uppercase; }
    #toolbar .vemail .email-icon {
      position: absolute;
      top: 13px;
      right: 21px;
      width: 18px;
      height: 12px;
      fill: #e9e0cc; }
  #toolbar .search {
    position: relative;
    float: right;
    display: block;
    width: 172px;
    height: 40px; }
    #toolbar .search input[type="text"] {
      position: relative;
      background-color: #242424;
      border: 0;
      width: 140px;
      margin: 12px 0 0;
      padding: 1px 9px 4px 12px;
      font-size: 11px;
      font-family: "Montserrat", sans-serif;
      font-weight: 400;
      color: #e8be69;
      text-transform: uppercase;
      text-align: right;
      letter-spacing: 0.1rem;
      outline: none; }
      #toolbar .search input[type="text"]:focus {
        outline: none; }
      #toolbar .search input[type="text"]::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #e8be69; }
      #toolbar .search input[type="text"]:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #e8be69; }
      #toolbar .search input[type="text"]::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #e8be69; }
      #toolbar .search input[type="text"]:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #e8be69; }
    #toolbar .search [placeholder]:focus::-webkit-input-placeholder {
      -webkit-transition: opacity 0.5s 0.5s ease;
      transition: opacity 0.5s 0.5s ease;
      opacity: 0; }
    #toolbar .search button {
      position: absolute;
      top: 12px;
      right: 0px;
      width: 17px;
      height: 17px;
      text-indent: -5000px;
      background: transparent url('../images/icons/search-icon.svg?1506351497') no-repeat 0 0;
      border: none; }
      #toolbar .search button:hover, #toolbar .search button:focus {
        fill: red; }

.arrows, .rsArrowLeft .rsArrowIcn, .rsArrowRight .rsArrowIcn {
  background-color: transparent;
  background-image: url('../images/arrows-ss.png?1506351497');
  background-repeat: no-repeat;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear; }

.arrow-left, .rsArrowLeft .rsArrowIcn {
  width: 20px;
  height: 35px;
  background-position: 0 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-left:after, .rsArrowLeft .rsArrowIcn:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrows-ss.png?1506351497');
    background-position: 0px -44px;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-left:hover:after, .rsArrowLeft .rsArrowIcn:hover:after {
    opacity: 1; }

.arrow-right, .rsArrowRight .rsArrowIcn {
  width: 20px;
  height: 35px;
  background-position: 0px -91px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }
  .arrow-right:after, .rsArrowRight .rsArrowIcn:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    background-image: url('../images/arrows-ss.png?1506351497');
    background-position: 0px -141px;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .arrow-right:hover:after, .rsArrowRight .rsArrowIcn:hover:after {
    opacity: 1; }

.arrow-left-lrg {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.arrow-right-lrg {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.arrow-left-sm, .carousel.horizontal .carousel-nav .prev-scroller,
.carousel.horizontal .sponsors-nav .prev-scroller {
  width: 30px;
  height: 30px; }
  .arrow-left-sm .arrow-back-sm, .carousel.horizontal .carousel-nav .prev-scroller .arrow-back-sm,
  .carousel.horizontal .sponsors-nav .prev-scroller .arrow-back-sm {
    position: absolute;
    width: 16px;
    height: 16px; }
  .arrow-left-sm:active, .carousel.horizontal .carousel-nav .prev-scroller:active,
  .carousel.horizontal .sponsors-nav .prev-scroller:active {
    margin-top: 1px; }

.arrow-right-sm, .carousel.horizontal .carousel-nav .next-scroller,
.carousel.horizontal .sponsors-nav .next-scroller {
  width: 30px;
  height: 30px; }
  .arrow-right-sm .arrow-back-sm, .carousel.horizontal .carousel-nav .next-scroller .arrow-back-sm,
  .carousel.horizontal .sponsors-nav .next-scroller .arrow-back-sm {
    position: absolute;
    width: 16px;
    height: 16px; }
  .arrow-right-sm:active, .carousel.horizontal .carousel-nav .next-scroller:active,
  .carousel.horizontal .sponsors-nav .next-scroller:active {
    margin-top: 1px; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 160%;
  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: 18px; }

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

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

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

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

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

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

b, strong {
  font-weight: bold; }

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

a {
  color: #b29052;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus {
    color: #e8be69; }

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

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

header {
  position: relative;
  width: 100%;
  height: 119px;
  margin: 0 auto;
  z-index: 500;
  *zoom: 1;
  background-color: #242424;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  header:before, header:after {
    content: "\0020";
    display: table; }
  header:after {
    clear: both; }
  @media screen and (max-width: 1260px) {
    header {
      background-size: 100%;
      height: 70px; } }

.site-logo {
  float: left;
  position: relative;
  top: 0px;
  left: 0;
  width: 404px;
  z-index: 101; }
  .site-logo .main {
    display: block;
    height: 139px;
    background: transparent url("../images/main-logo-2019.png") no-repeat 0 0;
    background-position: center top;
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden; }
  .site-logo a.main {
    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 {
      opacity: 0.70; }

.nav_wrapper:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 38px;
  left: 0;
  width: 100%;
  height: 81px;
  background-color: #111; }
@media screen and (max-width: 1260px) {
  .nav_wrapper:after {
    display: none; } }
@media screen and (max-width: 600px) {
  .nav_wrapper {
    height: 0px; } }

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

.set-holder {
  max-width: 1920px;
  margin: 0 auto; }

nav {
  float: left;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  z-index: 500; }
  nav .main-nav {
    width: 100%;
    max-width: 1080px;
    height: 79px;
    margin: 0 auto;
    padding: 0;
    z-index: 500; }
  nav .main-list {
    float: left;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 500; }
    nav .main-list:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      position: absolute;
      bottom: -1px;
      left: 50%;
      border: 0 solid transparent;
      height: 0;
      width: 0;
      pointer-events: none;
      border-bottom-color: #242424;
      border-width: 14px;
      margin-left: -14px;
      opacity: 0; }
    nav .main-list:hover span, nav .main-list.is-active span {
      color: #e8be69; }
    nav .main-list.is-active:after {
      opacity: 1;
      -webkit-transition: all 400ms linear;
      transition: all 400ms linear; }
    nav .main-list > span {
      position: relative;
      display: block;
      margin: 0;
      padding: 0 40px;
      font-family: "Oswald", sans-serif;
      font-size: 16px;
      line-height: 78px;
      letter-spacing: 0.16em;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      color: #e9e0cc;
      z-index: 500;
      cursor: pointer;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      nav .main-list > span:hover, nav .main-list > span.active {
        color: #e8be69;
        text-decoration: none; }
      @media screen and (max-width: 1840px) {
        nav .main-list > span {
          padding: 0 29px; } }
      @media screen and (max-width: 1690px) {
        nav .main-list > span {
          padding: 0 24px; } }
      @media screen and (max-width: 1612px) {
        nav .main-list > span {
          padding: 0 20px; } }
      @media screen and (max-width: 1550px) {
        nav .main-list > span {
          padding: 0 18px; } }
      @media screen and (max-width: 1490px) {
        nav .main-list > span {
          padding: 0 13px; } }
      @media screen and (max-width: 1418px) {
        nav .main-list > span {
          padding: 0 12px;
          font-size: 15px; } }
    nav .main-list .hover span {
      color: #e8be69; }

nav li.page_3:after {
  left: 37%; }
  @media screen and (max-width: 1820px) {
    nav li.page_3:after {
      left: 39%; } }
  @media screen and (max-width: 1540px) {
    nav li.page_3:after {
      left: 41%; } }
@media screen and (min-width: 1260px) {
  nav li.page_3 span {
    padding-left: 0; } }
nav li.page_3 .sub {
  left: -15px; }
nav li.page_4 .sub {
  left: -179px; }
nav li.page_5 .sub, nav li.page_51 .sub {
  left: -348px; }
nav li.page_6:after {
  left: 48%; }
@media screen and (min-width: 1260px) {
  nav li.page_6 .sub {
    width: 670px;
    left: -255px; } }
@media screen and (min-width: 1260px) {
  nav li.page_7 span {
    padding-right: 0; } }
nav li.page_7:after {
  left: 62%; }
  @media screen and (max-width: 1540px) {
    nav li.page_7:after {
      left: 56%; } }
@media screen and (min-width: 1260px) {
  nav li.page_7 .sub {
    left: -620px; } }

.is-active .sub {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 250ms 250ms;
  transition: 250ms 250ms; }

nav .sub {
  display: block;
  position: absolute;
  width: 900px;
  padding-left: 15px;
  z-index: 600;
  top: 78px;
  padding-top: 18px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 250ms;
  transition: 250ms; }
  nav .sub .dropdown-nav {
    float: left;
    margin-top: 4px;
    margin-right: 95px;
    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-list {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 500; }
    nav .sub .dropdown-list:first-child {
      margin-top: 0; }
    nav .sub .dropdown-list a {
      position: relative;
      display: inline-block;
      font-family: "Open Sans", sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #e9e0cc;
      line-height: 126%;
      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: #e8be69; }
      nav .sub .dropdown-list a:hover {
        color: #e8be69; }
  @media screen and (max-width: 1260px) {
    nav .sub {
      padding: 0px; } }

#mainnav.fixednav {
  display: none; }

/*********************/
/*	LETS GET MOBILE  */
/*********************/
#nav-toggle {
  display: none;
  position: absolute;
  top: 3px;
  left: 2%;
  right: 2%;
  width: 94%;
  height: 64px;
  padding: 25px 25px;
  cursor: pointer; }
  #nav-toggle .title {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 100%;
    color: #e9e0cc;
    text-align: center; }
    #nav-toggle .title:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 8px;
      left: 8%;
      width: 30%;
      height: 1px;
      background-color: #555555; }
    #nav-toggle .title:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 8px;
      right: 8%;
      width: 30%;
      height: 1px;
      background-color: #555555; }
  #nav-toggle .search-icon {
    display: inline-block;
    position: absolute;
    top: 38%;
    right: 5%;
    width: 17px;
    height: 17px;
    background: transparent url("../images/icons/search-icon.svg") no-repeat 0 0; }
  #nav-toggle span.top,
  #nav-toggle span.mid,
  #nav-toggle span.mid2,
  #nav-toggle span.bottom {
    display: none; }

@media screen and (max-width: 1340px) {
  nav .main-list > span {
    font-size: 14px; } }
#searchbar {
  display: none; }

@media screen and (max-width: 1260px) {
  .site-logo {
    display: none; }

  #nav-toggle {
    display: block; }

  #searchbar {
    display: block;
    position: relative;
    top: 70px;
    width: 100%;
    height: 0px;
    background-color: #242424;
    overflow: hidden;
    *zoom: 1; }
    #searchbar:before, #searchbar:after {
      content: "\0020";
      display: table; }
    #searchbar:after {
      clear: both; }
    #searchbar .search-holder {
      width: 90%;
      background-color: #242424;
      margin: 0px auto; }
      #searchbar .search-holder:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #e9e0cc; }
    #searchbar input[type="text"] {
      position: relative;
      background-color: rgba(0, 0, 0, 0.3);
      border: 0;
      width: 85%;
      height: 55px;
      margin: 0 0 0;
      padding: 1px 9px 4px 105px;
      font-size: 14px;
      font-family: "Montserrat", sans-serif;
      font-weight: 400;
      color: #E9E0CC;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.1rem;
      outline: none; } }
    @media screen and (max-width: 1260px) and (max-width: 380px) {
      #searchbar input[type="text"] {
        width: 79%;
        padding-left: 66px; } }
@media screen and (max-width: 1260px) {
      #searchbar input[type="text"]:focus {
        outline: none; }
      #searchbar input[type="text"]::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #E9E0CC; }
      #searchbar input[type="text"]:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #E9E0CC; }
      #searchbar input[type="text"]::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #E9E0CC; }
      #searchbar input[type="text"]:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #E9E0CC; }
    #searchbar button[type="submit"] {
      width: 10%;
      height: 55px;
      background-color: #242424;
      border-top: 1px solid rgba(0, 0, 0, 0.3);
      border-right: 1px solid rgba(0, 0, 0, 0.3);
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
      border-left: 1px solid rgba(0, 0, 0, 0.3);
      margin-top: 8px;
      font-family: "Montserrat", sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #e8be69; } }
    @media screen and (max-width: 1260px) and (max-width: 380px) {
      #searchbar button[type="submit"] {
        width: 18%; } }

@media screen and (max-width: 1260px) {
  nav {
    position: fixed;
    height: 70px;
    background-color: #242424; }
    nav.is_opened {
      height: 100%;
      overflow-y: scroll; }
    nav .sub .dropdown-nav {
      width: 100%;
      float: none; }
      nav .sub .dropdown-nav:last-child {
        border: 0; }
    nav .sub .dropdown-list {
      border-color: #666;
      margin: 0;
      padding: 0;
      text-align: center; }
      nav .sub .dropdown-list:first-child {
        margin-top: 0px; }
      nav .sub .dropdown-list a {
        margin: 20px 0; }
    nav ul.main-nav {
      top: 140px;
      display: none;
      width: 100%;
      max-width: 100%;
      position: absolute;
      left: 0px;
      border-bottom: none; }
    nav ul li {
      width: 100%;
      float: none;
      height: auto;
      border-top: 1px solid #e8e8e8; }
      nav ul li .sub {
        width: 100%;
        top: auto;
        position: relative;
        left: 0px !important;
        display: none; }
        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%; } }
.golocals.m-mobile {
  display: none; }

.m-nav-header.is_opened .golocals.m-mobile {
  display: block; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
.footer {
  position: relative;
  width: 100%;
  margin-top: 0;
  clear: both;
  z-index: 1;
  *zoom: 1; }
  .footer:before, .footer:after {
    content: "\0020";
    display: table; }
  .footer:after {
    clear: both; }
  .footer .content_holder:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    background: -webkit-gradient(linear, left top, left bottom, from(black), to(transparent));
    background: -webkit-linear-gradient(top, black 0%, transparent 100%);
    background: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 0; }
  .footer .upper,
  .footer .lower,
  .footer .global_footer {
    position: relative;
    background-image: url('../images/ft-bckimage.png?1506351497');
    background-repeat: no-repeat;
    background-size: cover;
    clear: both;
    z-index: 2;
    *zoom: 1; }
    .footer .upper:before, .footer .upper:after,
    .footer .lower:before,
    .footer .lower:after,
    .footer .global_footer:before,
    .footer .global_footer:after {
      content: "\0020";
      display: table; }
    .footer .upper:after,
    .footer .lower:after,
    .footer .global_footer:after {
      clear: both; }
  .footer .upper {
    height: 345px;
    background-position: center 0; }
    @media screen and (max-width: 1200px) {
      .footer .upper .site-wrapper {
        width: 90%; } }
    @media screen and (max-width: 1024px) {
      .footer .upper {
        display: none; } }
  .footer .lower {
    height: 200px;
    background-position: center -345px;
    background-color: white; }
    @media screen and (max-width: 820px) {
      .footer .lower {
        width: 100%;
        height: auto;
        margin: auto;
        background-position: center 0; } }
  .footer .site-wrapper {
    position: relative;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    z-index: 2; }
  @media screen and (max-width: 600px) {
    .footer .lower .site-wrapper:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      bottom: -15px;
      left: 0;
      width: 100%;
      height: 40px;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#ffffff',GradientType=0 );
      z-index: 1; } }
  .footer .ft-logos {
    max-width: 495px;
    margin-top: 0px; }
    .footer .ft-logos .item {
      display: inline-block;
      margin-right: 30px;
      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-logos .item:hover {
        opacity: 0.70; }
      @media screen and (max-width: 1024px) {
        .footer .ft-logos .item {
          display: none; } }
    @media screen and (max-width: 1024px) {
      .footer .ft-logos {
        width: 28%;
        padding-left: 2%; }
        .footer .ft-logos .item:first-child {
          display: block; } }
    @media screen and (max-width: 820px) {
      .footer .ft-logos {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-top: 5%;
        padding: auto; }
        .footer .ft-logos .item:first-child {
          margin: 0 auto;
          width: 254px; } }
  .footer .info-numbers {
    margin-top: 47px; }
    @media screen and (max-width: 1024px) {
      .footer .info-numbers {
        padding-right: 2%; } }
    @media screen and (max-width: 820px) {
      .footer .info-numbers {
        float: none;
        width: 100%;
        margin-top: 5%; } }
    .footer .info-numbers .ticket-info span,
    .footer .info-numbers .local-info span {
      display: block;
      font-size: 11px;
      line-height: 210%;
      color: #222; }
      .footer .info-numbers .ticket-info span.city-name, .footer .info-numbers .ticket-info span.state-name, .footer .info-numbers .ticket-info span.postal-code,
      .footer .info-numbers .local-info span.city-name,
      .footer .info-numbers .local-info span.state-name,
      .footer .info-numbers .local-info span.postal-code {
        display: inline-block; }
      .footer .info-numbers .ticket-info span.more-info a,
      .footer .info-numbers .local-info span.more-info a {
        font-style: italic;
        text-decoration: underline;
        color: #222;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .footer .info-numbers .ticket-info span.more-info a:hover,
        .footer .info-numbers .local-info span.more-info a:hover {
          text-decoration: none;
          color: #222; }
      .footer .info-numbers .ticket-info span.open-hours p,
      .footer .info-numbers .local-info span.open-hours p {
        margin-bottom: 5px; }
    .footer .info-numbers .ticket-info .title,
    .footer .info-numbers .local-info .title {
      margin-bottom: 8px;
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      text-transform: uppercase; }
    .footer .info-numbers .ticket-info {
      max-width: 325px;
      margin-right: 20px;
      padding-right: 20px;
      text-align: right;
      border-right: 1px solid #dad8d4;
      min-height: 100px; }
      @media screen and (max-width: 600px) {
        .footer .info-numbers .ticket-info {
          display: none; } }
      @media screen and (max-width: 820px) {
        .footer .info-numbers .ticket-info {
          width: 0;
          margin-right: 0;
          padding-right: 0;
          border-right: 0; } }
    @media screen and (max-width: 820px) {
      .footer .info-numbers .local-info {
        width: auto;
        margin: 0 auto;
        padding-left: 20px; }
        .footer .info-numbers .local-info span, .footer .info-numbers .local-info div {
          text-align: center; } }
    @media screen and (max-width: 600px) {
      .footer .info-numbers .local-info {
        width: 82%;
        margin: 0 auto; }
        .footer .info-numbers .local-info span {
          text-align: center;
          font-weight: 400; } }
    @media screen and (max-width: 820px) {
      .footer .info-numbers {
        width: 100%;
        clear: both; } }
    @media screen and (max-width: 600px) {
      .footer .info-numbers {
        margin: 25px 0% 15px;
        display: block; }
        .footer .info-numbers span {
          text-align: center;
          font-weight: 400; }
        .footer .info-numbers .add_wrap {
          text-align: center; } }
  .footer .nav {
    margin-bottom: 54px;
    *zoom: 1; }
    .footer .nav:before, .footer .nav:after {
      content: "\0020";
      display: table; }
    .footer .nav:after {
      clear: both; }
    @media screen and (max-width: 1024px) {
      .footer .nav {
        display: none; } }
    .footer .nav .main-list {
      width: 19%;
      margin-left: 1%;
      padding: 0; }
      .footer .nav .main-list:first-child {
        margin-left: 0; }
      .footer .nav .main-list > a {
        display: none; }
    .footer .nav .sub-list {
      padding: 0; }
      .footer .nav .sub-list:first-child a {
        font-family: "Montserrat", sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 280%;
        color: #e8be69; }
      .footer .nav .sub-list > a {
        display: inline-block;
        font-family: "Open Sans", sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 240%;
        text-transform: capitalize;
        color: #fff;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
        .footer .nav .sub-list > a:hover, .footer .nav .sub-list > a.active {
          color: #e8be69; }
  .footer .global_footer {
    position: relative;
    height: 249px;
    background-position: center -544px;
    background-color: white;
    clear: both; }
    @media screen and (max-width: 1024px) {
      .footer .global_footer {
        padding: 0 2%; } }
    .footer .global_footer:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 100%;
      height: 101px;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#ffffff',GradientType=0 );
      z-index: 1; }
    .footer .global_footer:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 148px;
      background: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
      background: -webkit-linear-gradient(top, white 0%, white 100%);
      background: linear-gradient(to bottom, white 0%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#ffffff',GradientType=0 );
      z-index: 1; }
    .footer .global_footer .site-wrapper {
      position: relative;
      width: 100%;
      max-width: 1260px;
      font-family: "Open Sans", sans-serif;
      font-size: 9px;
      font-weight: 400;
      line-height: 59px;
      text-transform: capitalize;
      letter-spacing: 0rem;
      color: #b6b6b6;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;
      z-index: 2; }
      .footer .global_footer .site-wrapper .delimiter {
        margin: 0 5px; }
    .footer .global_footer .carousel.horizontal {
      background-color: transparent;
      height: 198px;
      border-top: 1px solid #dad8d4;
      padding-top: 55px; }
      @media screen and (max-width: 600px) {
        .footer .global_footer .carousel.horizontal {
          height: 160px;
          border-top: 0; } }
      @media screen and (max-width: 1024px) {
        .footer .global_footer .carousel.horizontal .list_holder {
          width: 96%; } }
      @media screen and (max-width: 600px) {
        .footer .global_footer .carousel.horizontal .list_holder {
          width: 65%;
          border-top: 0; } }
      .footer .global_footer .carousel.horizontal .prev-scroller,
      .footer .global_footer .carousel.horizontal .next-scroller {
        background-color: #e8e8e8;
        border-radius: 100px;
        top: 92px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .footer .global_footer .carousel.horizontal .prev-scroller:hover,
        .footer .global_footer .carousel.horizontal .next-scroller:hover {
          background-color: #242424; }
          .footer .global_footer .carousel.horizontal .prev-scroller:hover .arrow-back-sm,
          .footer .global_footer .carousel.horizontal .next-scroller:hover .arrow-back-sm {
            fill: #e8be69; }
      .footer .global_footer .carousel.horizontal .arrow-back-sm {
        top: 7px;
        fill: #333; }
      .footer .global_footer .carousel.horizontal .prev-scroller .arrow-back-sm {
        left: 5px; }
      .footer .global_footer .carousel.horizontal .next-scroller .arrow-back-sm {
        left: 8px; }
      .footer .global_footer .carousel.horizontal .entry .main-link {
        padding: 10px 0;
        border-bottom: 5px solid transparent;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .footer .global_footer .carousel.horizontal .entry .main-link:hover {
          border-bottom-color: #e8be69;
          opacity: 1; }
    .footer .global_footer .copyright {
      width: 100%;
      height: 30px;
      margin: 16px 0 0;
      padding: 0;
      font-size: 10px;
      line-height: 100%;
      overflow: hidden; }
      .footer .global_footer .copyright a {
        color: #b6b6b6;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear; }
        .footer .global_footer .copyright a:hover {
          color: #e8be69; }
      @media screen and (max-width: 820px) {
        .footer .global_footer .copyright {
          text-align: center; } }
      @media screen and (max-width: 600px) {
        .footer .global_footer .copyright {
          height: 60px;
          font-weight: 400;
          line-height: 190%; }
          .footer .global_footer .copyright .basics {
            display: block; }
          .footer .global_footer .copyright a {
            display: inline-block;
            text-align: center; }
          .footer .global_footer .copyright .delimiter {
            display: none; } }
  .footer a#carbonhouse {
    float: right;
    display: inline-block;
    position: relative;
    margin: 0;
    padding-top: 0px;
    font-family: 'helvetica';
    font-size: 10px;
    color: #b6b6b6;
    cursor: pointer;
    text-align: right;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear; }
    .footer a#carbonhouse span {
      font-size: 12px;
      font-weight: bold;
      -webkit-transition: all 300ms linear;
      transition: all 300ms linear; }
      .footer a#carbonhouse span.carbon {
        margin-left: 2px;
        color: #b6b6b6; }
      .footer a#carbonhouse span.house {
        margin-right: 2px;
        color: #b6b6b6; }
    .footer a#carbonhouse:hover {
      text-decoration: none;
      color: #e9e0cc; }
      .footer a#carbonhouse:hover span {
        color: #e9e0cc; }
    @media screen and (max-width: 820px) {
      .footer a#carbonhouse {
        width: 100%;
        text-align: center;
        margin-top: 8px; } }
  .footer .social-links {
    margin-bottom: 15px;
    clear: both;
    float: left; }
    @media screen and (max-width: 820px) {
      .footer .social-links {
        float: none;
        text-align: center;
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: center;
                justify-content: center;
        margin-bottom: 25px; } }
    .footer .social-links a, .footer .social-links a:visited {
      display: block;
      text-align: center;
      color: #fff;
      background: #46205a;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      line-height: 32px;
      float: left;
      margin-right: 8px;
      font-size: 18px; }
      .footer .social-links a:hover, .footer .social-links a:visited:hover {
        background-color: #242424; }
      .footer .social-links a.fa-envelope, .footer .social-links a:visited.fa-envelope {
        font-size: 15px;
        background: #46205a url("../images/link-email.png") center center no-repeat; }
        .footer .social-links a.fa-envelope:before, .footer .social-links a:visited.fa-envelope:before {
          content: ''; }
        .footer .social-links a.fa-envelope:hover, .footer .social-links a:visited.fa-envelope:hover {
          background-color: #242424; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.textarea:first-child .content, .spotlight:first-child, div.faq:first-child, #content .link:first-child {
  margin-top: 55px; }
  @media screen and (max-width: 1024px) {
    .textarea:first-child .content, .spotlight:first-child, div.faq:first-child, #content .link:first-child {
      margin-top: 20px; } }

.content, .cms {
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */ }
  .content h2, .cms h2 {
    line-height: 160%; }
  .content p, .cms p {
    line-height: 170%; }
  .content .lead, .cms .lead {
    font-size: 16px;
    margin-bottom: 55px; }
  .content a, .cms a {
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .content ul, .cms ul {
    position: relative; }
    .content ul li, .cms ul li {
      position: relative;
      padding-left: 20px;
      font-size: 12px; }
      .content ul li:before, .cms ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 6px;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: #e8be69; }
  .content ol, .cms ol {
    counter-reset: li;
    margin-left: 0;
    padding-left: 0; }
    .content ol li, .cms ol li {
      position: relative;
      margin: 0;
      padding-left: 20px;
      font-size: 12px;
      list-style: none; }
      .content ol li:before, .cms ol li:before {
        content: counter(li);
        counter-increment: li;
        position: absolute;
        top: 0px;
        left: 0;
        width: 0;
        font-weight: 400;
        color: #333; }

.content {
  position: relative;
  margin: 0;
  padding: 0px 55px 20px;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  @media screen and (max-width: 1024px) {
    .content {
      padding-top: 0px;
      padding-left: 20px;
      padding-right: 20px; } }
  .content img {
    padding: 0;
    margin: 5px 20px 25px 0;
    max-width: 100%; }
    .content img.right, .content .paging.final img.pages, .paging.final .content img.pages {
      margin: 5px 0 25px 20px; }
    @media screen and (max-width: 600px) {
      .content img.right, .content .paging.final img.pages, .paging.final .content img.pages, .content img.left, .content .footer .nav img.main-list, .footer .nav .content img.main-list, .content img.in_feed,
      .content img.tw_feed, .content .paging.final img.record, .paging.final .content img.record {
        margin: auto;
        float: none;
        display: block; } }
  .content a img {
    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 {
      opacity: 0.70; }
  .content p.center img {
    margin: 5px auto 25px auto;
    display: block; }
  .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%; } }

/* ----------------------------------------------------------------------------
= Spotlights inline-styles
----------------------------------------------------------------------------- */
.container .spotlight {
  position: relative;
  margin-bottom: 30px;
  padding: 0 55px 10px;
  *zoom: 1; }
  @media screen and (max-width: 1024px) {
    .container .spotlight {
      padding-left: 20px;
      padding-right: 20px; } }
  .container .spotlight:before, .container .spotlight:after {
    content: "\0020";
    display: table; }
  .container .spotlight:after {
    clear: both; }
  .container .spotlight .group {
    margin: 0 15px 20px;
    *zoom: 1; }
    .container .spotlight .group:before, .container .spotlight .group:after {
      content: "\0020";
      display: table; }
    .container .spotlight .group:after {
      clear: both; }
  .container .spotlight .image {
    display: block;
    float: left;
    margin: 6px 30px 20px 0;
    width: 200px; }
    @media screen and (max-width: 600px) {
      .container .spotlight .image {
        width: 100%;
        text-align: center;
        margin: 0 0 10px; } }
  .container .spotlight .spotlight-info {
    width: calc(100% - 230px);
    float: left; }
    @media screen and (max-width: 600px) {
      .container .spotlight .spotlight-info {
        width: 100%; } }
  .container .spotlight ul {
    float: left; }
  .container .spotlight ul li {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    padding-left: 25px;
    list-style: none;
    font-weight: 300; }
    .container .spotlight ul li:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 6px;
      left: 0;
      width: 6px;
      height: 6px;
      background-color: #e8be69; }

/* ----------------------------------------------------------------------------
= columned up content!
----------------------------------------------------------------------------- */
.two-column ul, .two-column ol {
  *zoom: 1; }
  .two-column ul:before, .two-column ul:after, .two-column ol:before, .two-column ol:after {
    content: "\0020";
    display: table; }
  .two-column ul:after, .two-column ol:after {
    clear: both; }

.three-column ul, .three-column ol {
  *zoom: 1; }
  .three-column ul:before, .three-column ul:after, .three-column ol:before, .three-column ol:after {
    content: "\0020";
    display: table; }
  .three-column ul:after, .three-column ol:after {
    clear: both; }

/* ----------------------------------------------------------------------------
= events that are managed in content pages.
----------------------------------------------------------------------------- */
.managed .event_list.in_content {
  border-top: 5px solid #dad8d4;
  margin: 0 55px;
  padding: 0 0px;
  display: none; }
  .managed .event_list.in_content .event_list {
    border-top: none; }
  .managed .event_list.in_content .list-view .list {
    padding: 0 20px 21px; }

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

/* ----------------------------------------------------------------------------
= Custom Content Styles:::
----------------------------------------------------------------------------- */
.home .full {
  padding-bottom: 40px; }
  @media screen and (max-width: 1024px) {
    .home .full {
      padding-bottom: 0px; } }
  .home .full .full_column {
    width: 100%;
    -webkit-filter: none;
            filter: none; }
  .home .full #branding.active .home-slideshow {
    height: 650px; }
    @media screen and (max-width: 1300px) {
      .home .full #branding.active .home-slideshow {
        height: 390px; } }
    @media screen and (max-width: 810px) {
      .home .full #branding.active .home-slideshow {
        height: 340px; } }
    @media screen and (max-width: 600px) {
      .home .full #branding.active .home-slideshow {
        height: 300px; } }
  .home .full .holder.two {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    overflow: hidden;
    *zoom: 1; }
    .home .full .holder.two:before, .home .full .holder.two:after {
      content: "\0020";
      display: table; }
    .home .full .holder.two:after {
      clear: both; }
.home .caro-featured {
  float: left;
  width: 100%;
  max-width: 715px;
  margin-left: 21px; }
  .home .caro-featured .head {
    border-bottom: 2px solid #242424;
    margin-bottom: 18px;
    padding-bottom: 7px;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #e9e0cc; }
  @media screen and (max-width: 1300px) {
    .home .caro-featured {
      float: none;
      margin: 0 auto;
      width: 95%;
      max-width: 95%; } }
  @media screen and (max-width: 1028px) {
    .home .caro-featured {
      width: 100%;
      max-width: 100%;
      margin-top: 0;
      margin-bottom: 0;
      padding: 0 5%; } }
@media screen and (max-width: 1300px) {
  .home .calendar-holder {
    display: none; } }
.home .carousel.horizontal .carousel-nav.media-nav {
  width: 80px; }
.home .carousel-nav.media-nav {
  position: absolute;
  top: 0;
  right: 0;
  *zoom: 1; }
  .home .carousel-nav.media-nav:before, .home .carousel-nav.media-nav:after {
    content: "\0020";
    display: table; }
  .home .carousel-nav.media-nav:after {
    clear: both; }
  @media screen and (max-width: 1028px) {
    .home .carousel-nav.media-nav {
      display: none; } }
  .home .carousel-nav.media-nav .arrow-left-sm, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller,
  .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller,
  .home .carousel-nav.media-nav .arrow-right-sm,
  .home .carousel.horizontal .carousel-nav.media-nav .next-scroller,
  .carousel.horizontal .home .carousel-nav.media-nav .next-scroller,
  .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller {
    display: block;
    position: absolute;
    height: 29px;
    width: 29px;
    cursor: pointer;
    background-color: #242424;
    border-radius: 100px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
    .home .carousel-nav.media-nav .arrow-left-sm:hover, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller:hover, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller:hover,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller:hover,
    .home .carousel-nav.media-nav .arrow-right-sm:hover,
    .home .carousel.horizontal .carousel-nav.media-nav .next-scroller:hover,
    .carousel.horizontal .home .carousel-nav.media-nav .next-scroller:hover,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller:hover {
      background-color: #e8e8e8; }
      .home .carousel-nav.media-nav .arrow-left-sm:hover .arrow-back-sm, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller:hover .arrow-back-sm, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller:hover .arrow-back-sm,
      .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller:hover .arrow-back-sm,
      .home .carousel-nav.media-nav .arrow-right-sm:hover .arrow-back-sm,
      .home .carousel.horizontal .carousel-nav.media-nav .next-scroller:hover .arrow-back-sm,
      .carousel.horizontal .home .carousel-nav.media-nav .next-scroller:hover .arrow-back-sm,
      .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller:hover .arrow-back-sm {
        fill: #333; }
  .home .carousel-nav.media-nav .arrow-back-sm {
    top: 7px;
    fill: #e8be69; }
  .home .carousel-nav.media-nav .arrow-left-sm, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller,
  .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller {
    left: 0; }
    .home .carousel-nav.media-nav .arrow-left-sm .arrow-back-sm, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller .arrow-back-sm, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller .arrow-back-sm,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller .arrow-back-sm {
      left: 5px; }
    .home .carousel-nav.media-nav .arrow-left-sm:active, .home .carousel.horizontal .carousel-nav.media-nav .prev-scroller:active, .carousel.horizontal .home .carousel-nav.media-nav .prev-scroller:active,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .prev-scroller:active {
      margin-top: 1px; }
  .home .carousel-nav.media-nav .arrow-right-sm, .home .carousel.horizontal .carousel-nav.media-nav .next-scroller, .carousel.horizontal .home .carousel-nav.media-nav .next-scroller,
  .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller {
    right: 0; }
    .home .carousel-nav.media-nav .arrow-right-sm .arrow-back-sm, .home .carousel.horizontal .carousel-nav.media-nav .next-scroller .arrow-back-sm, .carousel.horizontal .home .carousel-nav.media-nav .next-scroller .arrow-back-sm,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller .arrow-back-sm {
      left: 8px; }
    .home .carousel-nav.media-nav .arrow-right-sm:active, .home .carousel.horizontal .carousel-nav.media-nav .next-scroller:active, .carousel.horizontal .home .carousel-nav.media-nav .next-scroller:active,
    .home .carousel-nav.media-nav .carousel.horizontal .sponsors-nav .next-scroller:active {
      margin-top: 1px; }
.home .carousel.horizontal.events {
  background-color: transparent;
  padding-top: 0px; }
  .home .carousel.horizontal.events:before, .home .carousel.horizontal.events:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    height: 500px; }
    @media screen and (max-width: 1028px) {
      .home .carousel.horizontal.events:before, .home .carousel.horizontal.events:after {
        display: none; } }
  .home .carousel.horizontal.events:before {
    right: 0;
    width: 6px;
    background-color: #333333;
    z-index: 10; }
  .home .carousel.horizontal.events:after {
    right: 6px;
    width: 8px;
    z-index: 9;
    /* IE10+ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(143, 143, 143, 0)), color-stop(99%, rgba(18, 18, 18, 0.5)), to(rgba(17, 17, 17, 0.5)));
    background: -webkit-linear-gradient(left, rgba(143, 143, 143, 0) 0%, rgba(18, 18, 18, 0.5) 99%, rgba(17, 17, 17, 0.5) 100%);
    background: linear-gradient(to right, rgba(143, 143, 143, 0) 0%, rgba(18, 18, 18, 0.5) 99%, rgba(17, 17, 17, 0.5) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008f8f8f', endColorstr='#80111111',GradientType=1 );
    /* IE6-9 */ }
  .home .carousel.horizontal.events .list_holder {
    height: auto;
    max-width: 715px; }
    @media screen and (max-width: 1300px) {
      .home .carousel.horizontal.events .list_holder {
        max-width: 100%; } }
  .home .carousel.horizontal.events .carousel-nav, .home .carousel.horizontal.events .media-nav {
    position: absolute;
    width: 80px;
    top: -58px;
    right: 0;
    *zoom: 1; }
    .home .carousel.horizontal.events .carousel-nav:before, .home .carousel.horizontal.events .carousel-nav:after, .home .carousel.horizontal.events .media-nav:before, .home .carousel.horizontal.events .media-nav:after {
      content: "\0020";
      display: table; }
    .home .carousel.horizontal.events .carousel-nav:after, .home .carousel.horizontal.events .media-nav:after {
      clear: both; }
    .home .carousel.horizontal.events .carousel-nav .arrow-left-sm, .home .carousel.horizontal.events .carousel-nav .prev-scroller,
    .home .carousel.horizontal.events .carousel-nav .arrow-right-sm,
    .home .carousel.horizontal.events .carousel-nav .next-scroller, .home .carousel.horizontal.events .media-nav .arrow-left-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller,
    .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller,
    .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller,
    .home .carousel.horizontal.events .media-nav .arrow-right-sm,
    .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller,
    .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller,
    .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller,
    .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller {
      display: block;
      position: absolute;
      height: 29px;
      width: 29px;
      cursor: pointer;
      background-color: #242424;
      border-radius: 100px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      @media screen and (max-width: 1028px) {
        .home .carousel.horizontal.events .carousel-nav .arrow-left-sm, .home .carousel.horizontal.events .carousel-nav .prev-scroller,
        .home .carousel.horizontal.events .carousel-nav .arrow-right-sm,
        .home .carousel.horizontal.events .carousel-nav .next-scroller, .home .carousel.horizontal.events .media-nav .arrow-left-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller,
        .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller,
        .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller,
        .home .carousel.horizontal.events .media-nav .arrow-right-sm,
        .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller,
        .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller,
        .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller,
        .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller {
          display: none; } }
      .home .carousel.horizontal.events .carousel-nav .arrow-left-sm:hover, .home .carousel.horizontal.events .carousel-nav .prev-scroller:hover,
      .home .carousel.horizontal.events .carousel-nav .arrow-right-sm:hover,
      .home .carousel.horizontal.events .carousel-nav .next-scroller:hover, .home .carousel.horizontal.events .media-nav .arrow-left-sm:hover, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller:hover, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller:hover,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller:hover,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller:hover,
      .home .carousel.horizontal.events .media-nav .arrow-right-sm:hover,
      .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller:hover,
      .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller:hover,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller:hover,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller:hover {
        background-color: #e8e8e8; }
        .home .carousel.horizontal.events .carousel-nav .arrow-left-sm:hover .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .prev-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .carousel-nav .arrow-right-sm:hover .arrow-back-sm,
        .home .carousel.horizontal.events .carousel-nav .next-scroller:hover .arrow-back-sm, .home .carousel.horizontal.events .media-nav .arrow-left-sm:hover .arrow-back-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller:hover .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .media-nav .arrow-right-sm:hover .arrow-back-sm,
        .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller:hover .arrow-back-sm,
        .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller:hover .arrow-back-sm {
          fill: #333; }
    .home .carousel.horizontal.events .carousel-nav .arrow-back-sm, .home .carousel.horizontal.events .media-nav .arrow-back-sm {
      top: 7px;
      fill: #e8be69; }
    .home .carousel.horizontal.events .carousel-nav .arrow-left-sm, .home .carousel.horizontal.events .carousel-nav .prev-scroller, .home .carousel.horizontal.events .media-nav .arrow-left-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller,
    .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller,
    .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller {
      left: 0; }
      .home .carousel.horizontal.events .carousel-nav .arrow-left-sm .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .prev-scroller .arrow-back-sm, .home .carousel.horizontal.events .media-nav .arrow-left-sm .arrow-back-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller .arrow-back-sm,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller .arrow-back-sm,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller .arrow-back-sm {
        left: 5px; }
      .home .carousel.horizontal.events .carousel-nav .arrow-left-sm:active, .home .carousel.horizontal.events .carousel-nav .prev-scroller:active, .home .carousel.horizontal.events .media-nav .arrow-left-sm:active, .home .carousel.horizontal.events .media-nav .carousel-nav .prev-scroller:active, .home .carousel.horizontal.events .carousel-nav .media-nav .prev-scroller:active,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .prev-scroller:active,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .prev-scroller:active {
        margin-top: 1px; }
    .home .carousel.horizontal.events .carousel-nav .arrow-right-sm, .home .carousel.horizontal.events .carousel-nav .next-scroller, .home .carousel.horizontal.events .media-nav .arrow-right-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller, .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller,
    .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller,
    .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller {
      right: 0; }
      .home .carousel.horizontal.events .carousel-nav .arrow-right-sm .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .next-scroller .arrow-back-sm, .home .carousel.horizontal.events .media-nav .arrow-right-sm .arrow-back-sm, .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller .arrow-back-sm, .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller .arrow-back-sm,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller .arrow-back-sm,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller .arrow-back-sm {
        left: 8px; }
      .home .carousel.horizontal.events .carousel-nav .arrow-right-sm:active, .home .carousel.horizontal.events .carousel-nav .next-scroller:active, .home .carousel.horizontal.events .media-nav .arrow-right-sm:active, .home .carousel.horizontal.events .media-nav .carousel-nav .next-scroller:active, .home .carousel.horizontal.events .carousel-nav .media-nav .next-scroller:active,
      .home .carousel.horizontal.events .media-nav .sponsors-nav .next-scroller:active,
      .home .carousel.horizontal.events .sponsors-nav .media-nav .next-scroller:active {
        margin-top: 1px; }
  .home .carousel.horizontal.events:hover .carousel-nav {
    display: block; }
  .home .carousel.horizontal.events .list {
    position: relative;
    background: transparent;
    margin: 0 0 30px;
    padding: 0;
    *zoom: 1; }
    .home .carousel.horizontal.events .list:before, .home .carousel.horizontal.events .list:after {
      content: "\0020";
      display: table; }
    .home .carousel.horizontal.events .list:after {
      clear: both; }
    .home .carousel.horizontal.events .list:before, .home .carousel.horizontal.events .list:after {
      display: none; }
    @media screen and (max-width: 1028px) {
      .home .carousel.horizontal.events .list {
        width: 100%;
        margin-bottom: 0; } }
  .home .carousel.horizontal.events .entry {
    display: block;
    width: 275px;
    height: 497px;
    background-color: #fff;
    margin-right: 20px;
    margin-bottom: 20px; }
    @media screen and (max-width: 1028px) {
      .home .carousel.horizontal.events .entry {
        width: 100%;
        height: auto;
        float: none;
        background-color: transparent;
        margin: 0; } }
    .home .carousel.horizontal.events .entry:first-child {
      margin-left: 0; }
    .home .carousel.horizontal.events .entry .thumb {
      width: 277px;
      height: 275px;
      overflow: hidden; }
      @media screen and (max-width: 1028px) {
        .home .carousel.horizontal.events .entry .thumb {
          display: none; } }
      .home .carousel.horizontal.events .entry .thumb a {
        display: block;
        width: 100%;
        height: 100%; }
        .home .carousel.horizontal.events .entry .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
      .home .carousel.horizontal.events .entry .thumb:hover {
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .home .carousel.horizontal.events .entry .thumb:hover + .info h3 a {
          color: #e8be69; }
        .home .carousel.horizontal.events .entry .thumb:hover + .info .date.grid {
          background-color: #e8be69; }
          .home .carousel.horizontal.events .entry .thumb:hover + .info .date.grid:before, .home .carousel.horizontal.events .entry .thumb:hover + .info .date.grid:after {
            background-image: url('../images/ticket-detail-over.png?1506351497'); }
    .home .carousel.horizontal.events .entry .info {
      position: relative;
      height: 226px;
      padding: 20px; }
      @media screen and (max-width: 1028px) {
        .home .carousel.horizontal.events .entry .info {
          margin: 0;
          padding: 22px 70px 24px 0;
          margin-bottom: 6px;
          height: auto;
          border-bottom: 1px solid #242424; } }
      .home .carousel.horizontal.events .entry .info .venue_name {
        display: block;
        border-bottom: 1px solid #F4EFE5;
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 10px;
        color: #242424;
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        width: 70%;
        text-transform: uppercase;
        letter-spacing: 0.1em; }
        @media screen and (max-width: 1028px) {
          .home .carousel.horizontal.events .entry .info .venue_name {
            display: inline;
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 11px;
            color: #d7cfbc; } }
      .home .carousel.horizontal.events .entry .info .date.list {
        display: none; }
        @media screen and (max-width: 1028px) {
          .home .carousel.horizontal.events .entry .info .date.list {
            display: inline;
            margin-bottom: 5px;
            font-family: "Montserrat", sans-serif;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            color: #d7cfbc; } }
        @media screen and (max-width: 455px) {
          .home .carousel.horizontal.events .entry .info .date.list {
            display: block; } }
      .home .carousel.horizontal.events .entry .info .date.grid {
        display: block;
        position: absolute;
        top: -16px;
        right: 16px;
        width: 60px;
        min-height: 70px;
        background-color: #682d8e;
        padding: 8px 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 30px;
        color: #fff;
        text-align: center;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        @media screen and (max-width: 1028px) {
          .home .carousel.horizontal.events .entry .info .date.grid {
            display: none; } }
        .home .carousel.horizontal.events .entry .info .date.grid:before, .home .carousel.horizontal.events .entry .info .date.grid:after {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          width: 60px;
          height: 4px;
          left: 0;
          background: transparent url('../images/ticket-detail.png?1506351497') repeat-x 0 0;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
        .home .carousel.horizontal.events .entry .info .date.grid:before {
          top: -4px; }
        .home .carousel.horizontal.events .entry .info .date.grid:after {
          bottom: -4px; }
        .home .carousel.horizontal.events .entry .info .date.grid span {
          display: block;
          color: #fff;
          text-transform: uppercase; }
          .home .carousel.horizontal.events .entry .info .date.grid span.d {
            font-weight: 400; }
          .home .carousel.horizontal.events .entry .info .date.grid span.y {
            display: none; }
          .home .carousel.horizontal.events .entry .info .date.grid span.m {
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 0.2rem; }
      .home .carousel.horizontal.events .entry .info h3 {
        width: auto;
        font-size: 16px; }
        .home .carousel.horizontal.events .entry .info h3 a {
          color: #333;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .home .carousel.horizontal.events .entry .info h3 a:hover {
            color: #e8be69; }
        @media screen and (max-width: 1028px) {
          .home .carousel.horizontal.events .entry .info h3 {
            margin-top: 0;
            margin-bottom: 0; }
            .home .carousel.horizontal.events .entry .info h3 a {
              color: #e8be69; } }
      .home .carousel.horizontal.events .entry .info h4 {
        display: none; }
      .home .carousel.horizontal.events .entry .info .buttons {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 43px;
        background-color: #e9e0cc; }
        .home .carousel.horizontal.events .entry .info .buttons:before {
          content: "";
          display: block;
          position: absolute;
          top: 20px;
          right: 20px;
          width: 60px;
          height: 3px;
          background: transparent url('../images/tb-dotback.png?1506351497') repeat-x 0 0;
          font-size: 28px;
          color: #fff;
          z-index: 2; }
        .home .carousel.horizontal.events .entry .info .buttons a, .home .carousel.horizontal.events .entry .info .buttons span {
          text-align: left;
          line-height: 43px;
          padding-left: 20px;
          color: #b29052;
          z-index: 1; }
        .home .carousel.horizontal.events .entry .info .buttons .tickets {
          display: block;
          padding: 0 0 0 20px; }
          .home .carousel.horizontal.events .entry .info .buttons .tickets:hover {
            color: #fff;
            background-color: #e8be69; }
          .home .carousel.horizontal.events .entry .info .buttons .tickets:after {
            display: none; }
        @media screen and (max-width: 1028px) {
          .home .carousel.horizontal.events .entry .info .buttons {
            display: block;
            height: auto;
            right: 0;
            bottom: 20px;
            background-color: transparent;
            width: 62px;
            height: 62px;
            right: 0;
            left: auto;
            top: 50%;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%);
            text-indent: 100%;
            white-space: nowrap;
            overflow: hidden; }
            .home .carousel.horizontal.events .entry .info .buttons:before {
              display: none; }
            .home .carousel.horizontal.events .entry .info .buttons .tickets {
              display: block;
              height: 62px;
              background-color: transparent; }
              .home .carousel.horizontal.events .entry .info .buttons .tickets:hover {
                background-color: transparent; }
              .home .carousel.horizontal.events .entry .info .buttons .tickets:after {
                display: block;
                right: 0px;
                top: 0px; } }
.home .social {
  width: 100%;
  max-width: 1260px;
  margin: 99px auto 0;
  clear: both;
  *zoom: 1; }
  .home .social:before, .home .social:after {
    content: "\0020";
    display: table; }
  .home .social:after {
    clear: both; }
  @media screen and (max-width: 945px) {
    .home .social {
      display: none;
      margin: 0; } }

.m-spotlights-scaled {
  position: relative;
  display: table;
  width: 100%;
  height: auto;
  margin: 100px 0 0;
  -webkit-backface-visibility: hidden;
  *zoom: 1; }
  .m-spotlights-scaled:before, .m-spotlights-scaled:after {
    content: "\0020";
    display: table; }
  .m-spotlights-scaled:after {
    clear: both; }
  @media screen and (max-width: 850px) {
    .m-spotlights-scaled {
      margin-top: 80px; } }
  .m-spotlights-scaled .m-spotlight-item {
    position: relative;
    width: 25%;
    height: auto;
    display: table-cell;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    overflow: hidden; }
    .m-spotlights-scaled .m-spotlight-item img {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
      opacity: 0.4;
      -webkit-transition: all 300ms linear;
      transition: all 300ms linear; }
      @media screen and (max-width: 850px) {
        .m-spotlights-scaled .m-spotlight-item img {
          left: 16px;
          width: 100px;
          opacity: 1; } }
    .m-spotlights-scaled .m-spotlight-item:hover img {
      opacity: 0.7;
      -webkit-transform: scale3d(1.1, 1.1, 1);
              transform: scale3d(1.1, 1.1, 1); }
    @media screen and (max-width: 850px) {
      .m-spotlights-scaled .m-spotlight-item {
        display: block;
        float: none;
        width: 100% !important;
        height: 10em;
        margin-bottom: 2px;
        overflow: hidden; } }
  .m-spotlights-scaled .m-spotlight-details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .m-spotlights-scaled .m-spotlight-details .m-spotlight-text {
      display: block;
      width: 100%;
      height: 100%;
      -webkit-transition: all 300ms linear;
      transition: all 300ms linear; }
      .m-spotlights-scaled .m-spotlight-details .m-spotlight-text:hover {
        text-decoration: none; }
      .m-spotlights-scaled .m-spotlight-details .m-spotlight-text span {
        display: block;
        position: relative;
        top: 47%;
        font-family: "Oswald", sans-serif;
        font-size: 18px;
        font-weight: 300;
        color: #e9e0cc;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-align: center;
        overflow: hidden; }
        @media screen and (max-width: 850px) {
          .m-spotlights-scaled .m-spotlight-details .m-spotlight-text span {
            top: 23%;
            font-size: 16px;
            text-align: left; } }
    @media screen and (max-width: 850px) {
      .m-spotlights-scaled .m-spotlight-details {
        padding-left: 130px; } }
  @media screen and (min-width 850px max-width 1293px) {
    .m-spotlights-scaled {
      max-width: 100%;
      width: 100%; } }

.in_feed,
.tw_feed {
  position: relative;
  width: 47%;
  height: 293px;
  border-bottom: 2px solid #242424;
  margin-bottom: 60px;
  margin-left: 60px;
  overflow: hidden; }
  @media screen and (max-width: 1200px) {
    .in_feed,
    .tw_feed {
      float: none;
      width: 51%;
      margin: 0px auto 40px; } }
  @media screen and (max-width: 1024px) {
    .in_feed,
    .tw_feed {
      display: none; } }
  .in_feed .carousel.horizontal,
  .tw_feed .carousel.horizontal {
    top: 59px; }
    .in_feed .carousel.horizontal .list_holder,
    .tw_feed .carousel.horizontal .list_holder {
      height: 170px; }
  .in_feed .carousel-nav.media-nav,
  .tw_feed .carousel-nav.media-nav {
    top: -29px; }
  .in_feed .widget_title,
  .tw_feed .widget_title {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 73px;
    padding: 0 0 10px;
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    font-weight: 300;
    color: #e8be69;
    line-height: 57px;
    border-bottom: 2px solid #242424; }
    .in_feed .widget_title .fa,
    .in_feed .widget_title a,
    .tw_feed .widget_title .fa,
    .tw_feed .widget_title a {
      display: none; }
  .in_feed .widget_mnlnk,
  .tw_feed .widget_mnlnk {
    position: absolute;
    left: 0;
    bottom: 0; }
    .in_feed .widget_mnlnk a,
    .in_feed .widget_mnlnk span,
    .tw_feed .widget_mnlnk a,
    .tw_feed .widget_mnlnk span {
      display: inline-block;
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2rem; }
    .in_feed .widget_mnlnk span,
    .tw_feed .widget_mnlnk span {
      position: relative;
      margin-right: 20px;
      color: #fff; }
      .in_feed .widget_mnlnk span:after,
      .tw_feed .widget_mnlnk span:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 3px;
        right: -11px;
        width: 2px;
        height: 13px;
        background-color: #444; }
    .in_feed .widget_mnlnk a,
    .tw_feed .widget_mnlnk a {
      color: #e8be69;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .in_feed .widget_mnlnk a:hover,
      .tw_feed .widget_mnlnk a:hover {
        color: #b29052; }

.in_feed {
  margin-left: 0; }
  @media screen and (max-width: 1200px) {
    .in_feed {
      margin-left: auto; } }
  .in_feed .instagramFeed {
    width: 100%;
    height: 170px;
    margin: 0px;
    padding: 0px;
    overflow: hidden; }
    .in_feed .instagramFeed li {
      list-style: none;
      float: left;
      padding: 0px;
      max-width: 135px;
      width: 100%;
      height: 135px;
      margin: 0px 17px 0 0;
      background-size: 100% auto;
      background-repeat: no-repeat;
      background-position: center;
      border: 1px solid #ffffff;
      opacity: 0.8;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .in_feed .instagramFeed li:hover {
        border-color: #e8be69; }
    @media screen and (max-width: 1000px) {
      .in_feed .instagramFeed li {
        list-style: none;
        float: left;
        padding: 0px;
        max-width: 128px;
        width: 12.28571428%;
        height: 100%;
        margin: 0px 1%;
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center; } }
    @media screen and (max-width: 600px) {
      .in_feed .instagramFeed {
        height: 270px; }
        .in_feed .instagramFeed li {
          width: 21%;
          margin: 5px 2% 5px;
          height: 120px; } }
    @media screen and (max-width: 400px) {
      .in_feed .instagramFeed {
        height: 220px; }
        .in_feed .instagramFeed li {
          width: 21%;
          margin: 5px 2%;
          height: 90px; } }

.tw_feed {
  border-bottom: 0; }
  .tw_feed.is-wide {
    width: 92% !important; }
    @media screen and (max-width: 1200px) {
      .tw_feed.is-wide {
        width: 51% !important; } }
  .tw_feed .tw-avater {
    position: absolute;
    top: 85px;
    left: 0; }
    .tw_feed .tw-avater img {
      display: block;
      width: 38px;
      height: 38px;
      border: 2px solid #fff;
      border-radius: 100px; }
  .tw_feed .widget_title {
    position: absolute;
    bottom: 0; }
    .tw_feed .widget_title + p {
      height: 106px;
      line-height: 50px;
      color: #ddd; }
  .tw_feed .twholder {
    margin-left: 44px;
    height: 205px;
    overflow: hidden; }
  .tw_feed li {
    float: left;
    max-width: 543px;
    width: 100%;
    height: 126px;
    margin: 0px 17px 0 0;
    padding: 0 0 0 14px;
    background-image: url('../images/tweet-bubble.png?1506351497');
    background-repeat: no-repeat;
    background-position: 0 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #fff;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
    .tw_feed li .tweet_data {
      width: 525px;
      background-color: #242424;
      border-radius: 30px;
      margin-right: 189px;
      padding: 20px 30px; }
      .tw_feed li .tweet_data a {
        color: #e8be69; }
        .tw_feed li .tweet_data a:hover {
          color: #b29052; }
    .tw_feed li .tweet_meta {
      display: inline-block;
      height: 60px;
      background-image: url('../images/tweet-bubble-revt.png?1506351497');
      background-repeat: no-repeat;
      background-position: 0 0;
      margin-top: 8px;
      padding-top: 14px; }
      .tw_feed li .tweet_meta .dets {
        display: inline-block;
        background-color: #242424;
        border-radius: 20px 30px 30px 30px;
        margin-left: 0px;
        padding: 16px 30px; }
      .tw_feed li .tweet_meta .tn,
      .tw_feed li .tweet_meta .tt,
      .tw_feed li .tweet_meta .gt {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        line-height: 105%;
        letter-spacing: 0.28em;
        text-transform: uppercase; }
      .tw_feed li .tweet_meta .tn,
      .tw_feed li .tweet_meta .tt {
        border-right: 1px solid #fff;
        margin-right: 12px;
        padding-right: 12px;
        color: #fff; }
      .tw_feed li .tweet_meta .gt {
        color: #e8be69; }
        .tw_feed li .tweet_meta .gt:hover {
          color: #b29052; }

/* ----------------------------------------------------------------------------
=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: #e9e0cc;
          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 #dad8d4;
        padding: 14px 0;
        font-family: "Oswald", 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: #e8be69; }
        .subnav ul .main-list a:active, .subnav ul .main-list a.active {
          color: #e8be69; }
        .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: 536px;
  max-height: 650px;
  *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: #e8be69; }

.royalSlider > .rsContent {
  visibility: hidden; }

.rsContent {
  background-color: #111; }

/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  position: absolute;
  display: block;
  width: 64px;
  height: 64px;
  cursor: pointer;
  z-index: 999999; }

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

.rsDefault.rsHor {
  position: relative;
  float: right; }
  .rsDefault.rsHor .rsArrowLeft {
    left: 5%;
    bottom: 48%;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .rsDefault.rsHor .rsArrowLeft:active {
      bottom: 47.7%; }
    @media screen and (max-width: 600px) {
      .rsDefault.rsHor .rsArrowLeft {
        bottom: 38%; }
        .rsDefault.rsHor .rsArrowLeft:active {
          bottom: 37.7%; } }
  .rsDefault.rsHor .rsArrowRight {
    right: 5%;
    bottom: 48%;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .rsDefault.rsHor .rsArrowRight:active {
      bottom: 47.7%; }
    @media screen and (max-width: 600px) {
      .rsDefault.rsHor .rsArrowRight {
        bottom: 38%; }
        .rsDefault.rsHor .rsArrowRight:active {
          bottom: 37.7%; } }

.rsArrowLeft {
  border: 3px solid #e8be69;
  border-radius: 100px; }
  .rsArrowLeft .rsArrowIcn {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 12px;
    left: 16px; }
  .rsArrowLeft:hover {
    border-color: #e9e0cc; }
    .rsArrowLeft:hover .rsArrowIcn:after {
      opacity: 1; }
  @media screen and (max-width: 820px) {
    .rsArrowLeft {
      border: 0;
      border-radius: none; } }

.rsArrowRight {
  border: 3px solid #e8be69;
  border-radius: 100px; }
  .rsArrowRight .rsArrowIcn {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 12px;
    left: 21px; }
  .rsArrowRight:hover {
    border-color: #e9e0cc; }
    .rsArrowRight:hover .rsArrowIcn:after {
      opacity: 1; }
  @media screen and (max-width: 820px) {
    .rsArrowRight {
      right: 0px !important;
      left: auto !important;
      border: 0;
      border-radius: none; } }

/***************
*
*  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?1506351497'); }

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

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

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

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

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

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

  .rsDefault .rsThumbsHor {
    height: 44px; }

  .rsDefault .rsThumbsVer {
    width: 59px; } }
/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  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-linear-gradient(top, #fefefe, #f4f4f4);
  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: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ACACAC), to(#BBB));
  background-image: linear-gradient(to bottom, #ACACAC, #BBB); }

/***************
*
*  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?1506351497') 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?1506351497') -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?1506351497');
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

/***************
*
*  8. Global caption
*
****************/
.single-slide .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;
      }*/ }
  .single-slide .rsGCaption:empty {
    display: none; }
  .single-slide .rsGCaption .rsABlock {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
    padding: 0px; }
    .single-slide .rsGCaption .rsABlock p {
      width: 100%;
      height: 35px;
      padding: 0 15px;
      margin-bottom: 0;
      font-size: 13px;
      font-weight: 700;
      line-height: 35px;
      text-transform: uppercase; }
      .single-slide .rsGCaption .rsABlock p:empty {
        display: none; }

/***************
*
*  9. Overrides/Customization
*
****************/
.full-slideshow, .home-slideshow {
  width: 100%;
  margin-bottom: 20px; }
  .full-slideshow.spotlight_image, .home-slideshow.spotlight_image {
    margin-bottom: 0;
    border-bottom: 0; }
  .full-slideshow.contentslides, .home-slideshow.contentslides {
    height: 536px; }
    @media screen and (max-width: 1024px) {
      .full-slideshow.contentslides, .home-slideshow.contentslides {
        height: 480px;
        overflow: hidden; } }
  .full-slideshow .rsContainer, .home-slideshow .rsContainer {
    position: relative; }
    .full-slideshow .rsContainer:before, .home-slideshow .rsContainer:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(rgba(17, 17, 17, 0)));
      background: -webkit-linear-gradient(top, #111111 0%, rgba(17, 17, 17, 0) 100%);
      background: linear-gradient(to bottom, #111111 0%, rgba(17, 17, 17, 0) 100%);
      /* W3C */
      z-index: 100; }
    .full-slideshow .rsContainer:after, .home-slideshow .rsContainer:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), to(#111111));
      background: -webkit-linear-gradient(top, rgba(17, 17, 17, 0) 0%, #111111 100%);
      background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #111111 100%);
      z-index: 100; }
  .full-slideshow .rsDefault, .home-slideshow .rsDefault {
    position: relative;
    height: 536px; }
  .full-slideshow .rsCaption, .home-slideshow .rsCaption {
    display: none; }

.full-slideshow .rsGCaption {
  position: absolute;
  bottom: 41px;
  width: 100%;
  height: 59px;
  border: 0;
  margin: 0 auto; }
  .full-slideshow .rsGCaption .rsABlock {
    width: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5); }
    .full-slideshow .rsGCaption .rsABlock .title {
      font-size: 13px;
      letter-spacing: 0.2em;
      line-height: 59px;
      text-align: center;
      color: #fff; }
  @media screen and (max-width: 800px) {
    .full-slideshow .rsGCaption {
      bottom: 0px;
      z-index: 1000; } }

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

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

.home-slideshow {
  position: relative; }
  @media screen and (max-width: 1300px) {
    .home-slideshow {
      height: 300px; } }
  .home-slideshow .royalSlider {
    height: 100%;
    height: 536px; }
    @media screen and (max-width: 1300px) {
      .home-slideshow .royalSlider {
        height: 350px;
        margin-bottom: 90px; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .royalSlider {
        height: 350px;
        margin-bottom: 121px; } }
    @media screen and (min-width: 1550px) {
      .home-slideshow .royalSlider {
        height: 650px;
        max-height: 650px;
        margin-bottom: 85px; } }
  .home-slideshow .rsImg {
    display: block; }
  .home-slideshow .rsGCaption,
  .home-slideshow .rsDefault .rsGCaption {
    background-color: transparent; }
  .home-slideshow .rsDefault .rsGCaption {
    position: absolute;
    bottom: 41px;
    width: 100%;
    height: 59px;
    z-index: 101; }
  .home-slideshow .rsDefault .rsGCaption .rsABlock.rsInfo {
    position: absolute;
    top: 21%;
    left: 0;
    width: 100%;
    height: 136px;
    margin: 0 0 30px;
    padding: 0; }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsDefault .rsGCaption .rsABlock.rsInfo {
        padding: 0 2%; } }
  .home-slideshow .rsInfo .desc {
    position: relative;
    width: 100%;
    max-width: 1260px;
    height: 100%;
    margin: 0 auto; }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsInfo .desc {
        margin-top: 20px;
        padding: 0 8%; } }
  .home-slideshow .rsInfo .title {
    position: absolute;
    bottom: 36px;
    left: 0;
    width: 100%;
    text-align: left;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 0.3rem;
    color: #e8be69;
    padding: 0 275px 0 142px; }
    @media screen and (max-width: 1024px) {
      .home-slideshow .rsInfo .title {
        width: 100%;
        left: 12px;
        font-size: 18px;
        line-height: 28px;
        padding-right: 280px;
        padding-left: 0; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsInfo .title {
        bottom: 15px;
        left: 0;
        padding: 0 95px 0 0;
        letter-spacing: 1px; } }
    .home-slideshow .rsInfo .title.standalone {
      padding-left: 0px; }
      @media screen and (max-width: 1300px) {
        .home-slideshow .rsInfo .title.standalone {
          padding-left: 30px; } }
      @media screen and (max-width: 1028px) {
        .home-slideshow .rsInfo .title.standalone {
          padding-left: 0px; } }
  .home-slideshow .rsInfo .tagline {
    position: absolute;
    bottom: 15px;
    left: 142px;
    font-size: 11px;
    letter-spacing: 0.2rem;
    color: #e9e0cc; }
    @media screen and (max-width: 1024px) {
      .home-slideshow .rsInfo .tagline {
        left: 12px;
        padding: 0;
        white-space: nowrap;
        padding-right: 90px;
        overflow: hidden;
        max-width: 100%;
        text-overflow: ellipsis;
        letter-spacing: 1px;
        text-indent: 0; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsInfo .tagline {
        left: 0;
        bottom: 0; } }
  .home-slideshow .rsInfo .date {
    position: absolute;
    bottom: 3px;
    left: 0px;
    width: 112px;
    min-height: 112px;
    background-color: #682d8e;
    margin: 0;
    padding: 0 0 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    z-index: 22;
    *zoom: 1; }
    .home-slideshow .rsInfo .date:before, .home-slideshow .rsInfo .date:after {
      content: "\0020";
      display: table; }
    .home-slideshow .rsInfo .date:after {
      clear: both; }
    .home-slideshow .rsInfo .date span {
      display: block;
      color: #fff;
      text-transform: uppercase; }
    .home-slideshow .rsInfo .date .m {
      display: block;
      font-size: 26px;
      font-weight: 400;
      letter-spacing: 0.3rem; }
    .home-slideshow .rsInfo .date .d {
      width: 108px;
      font-weight: 700;
      font-size: 56px; }
    .home-slideshow .rsInfo .date .y {
      display: none; }
    .home-slideshow .rsInfo .date:before, .home-slideshow .rsInfo .date:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      width: 112px;
      height: 7px;
      left: 0;
      background: transparent url('../images/ticket-sprite.png?1506351497') repeat-x 0 0;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .home-slideshow .rsInfo .date:before {
      top: -7px; }
    .home-slideshow .rsInfo .date:after {
      bottom: -7px; }
    @media screen and (max-width: 1024px) {
      .home-slideshow .rsInfo .date {
        bottom: -51px;
        left: 12px;
        width: auto;
        background-color: transparent; }
        .home-slideshow .rsInfo .date:before, .home-slideshow .rsInfo .date:after {
          display: none; }
        .home-slideshow .rsInfo .date .m,
        .home-slideshow .rsInfo .date .d {
          display: inline-block;
          margin: 10px 0;
          padding: 0;
          font-size: 14px;
          line-height: 100%;
          color: #E9E0CC; }
        .home-slideshow .rsInfo .date .d {
          width: auto; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsInfo .date {
        bottom: -77px;
        left: 0; } }
  @media screen and (max-width: 1024px) {
    .home-slideshow .rsInfo .tagline + .date {
      bottom: -77px; } }
  @media screen and (max-width: 600px) {
    .home-slideshow .rsInfo .tagline + .date {
      bottom: -85px; } }
  .home-slideshow .rsInfo .buttons {
    position: absolute;
    right: 0;
    bottom: 45%; }
    @media screen and (max-width: 1300px) {
      .home-slideshow .rsInfo .buttons {
        right: 5%;
        bottom: 34%; } }
    @media screen and (max-width: 600px) {
      .home-slideshow .rsInfo .buttons {
        height: 63px;
        width: 63px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        bottom: 0; }
        .home-slideshow .rsInfo .buttons .tickets {
          height: 56px;
          padding: 0; }
          .home-slideshow .rsInfo .buttons .tickets:after {
            top: 0; } }
    .home-slideshow .rsInfo .buttons.standalone a.more {
      padding-right: 72px; }
      @media screen and (max-width: 600px) {
        .home-slideshow .rsInfo .buttons.standalone a.more {
          height: 56px;
          padding: 0; } }
      .home-slideshow .rsInfo .buttons.standalone a.more:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: -23px;
        right: 0;
        width: 56px;
        height: 56px;
        background: transparent url(../images/ticket-info.png) no-repeat center center;
        border: 3px solid #e8be69;
        border-radius: 100px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        z-index: 5; }
        @media screen and (max-width: 600px) {
          .home-slideshow .rsInfo .buttons.standalone a.more:after {
            top: 0px; } }
      .home-slideshow .rsInfo .buttons.standalone a.more:hover:after {
        background-image: url(../images/ticket-info-hover.png);
        border-color: #e9e0cc; }

.carousel.horizontal {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 35px; }
  .carousel.horizontal .list_holder {
    position: relative;
    width: 100%;
    max-width: 1160px;
    height: 110px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden; }
  .carousel.horizontal .list {
    position: relative;
    width: 1000em;
    margin: 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;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    float: left;
    margin: 2px 0 0;
    padding: 0px;
    width: 235px;
    height: 93px;
    overflow: hidden;
    background: none; }
    @media screen and (max-width: 420px) {
      .carousel.horizontal .entry {
        width: 249px; } }
    @media screen and (max-width: 320px) {
      .carousel.horizontal .entry {
        width: 200px; } }
    .carousel.horizontal .entry img {
      margin: 0 auto; }
    .carousel.horizontal .entry .main-link {
      display: inline-block;
      display: -webkit-inline-box;
      display: inline-flex;
      margin: 0 auto;
      z-index: 5;
      opacity: 1;
      -moz-transition: opacity 0.3s ease-in-out;
      -o-transition: opacity 0.3s ease-in-out;
      -webkit-transition: opacity 0.3s ease-in-out; }
      .carousel.horizontal .entry .main-link:hover {
        opacity: 0.70; }
      .carousel.horizontal .entry .main-link img {
        margin: 0 auto; }
  .carousel.horizontal .carousel-nav,
  .carousel.horizontal .sponsors-nav {
    width: 1260px;
    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: 72px;
      cursor: pointer; }
    .carousel.horizontal .carousel-nav .prev-scroller,
    .carousel.horizontal .sponsors-nav .prev-scroller {
      left: 0; }
    .carousel.horizontal .carousel-nav .next-scroller,
    .carousel.horizontal .sponsors-nav .next-scroller {
      right: 0px; }

/**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/ -
**/
/**
 * Popover styles
 */
.calendar.full {
  width: 100%;
  margin: 75px 0 auto;
  clear: both;
  display: block;
  /**
   * Calendar addons
   */
  /**
   * Calendario Header
   */
  /**
   * Base Calendar - full page
   */ }
  .calendar.full .full_column {
    max-width: 1260px;
    margin: 0 auto; }
  .calendar.full .calendar_tooltip {
    position: absolute;
    min-height: 377px;
    z-index: 99;
    width: 215px;
    padding: 0px 0px 0;
    top: 0;
    left: 50%;
    margin-left: 0;
    overflow: visible !important;
    display: none; }
    .calendar.full .calendar_tooltip .entry {
      min-height: 180px;
      width: 215px;
      padding: 0px;
      *zoom: 1; }
      .calendar.full .calendar_tooltip .entry:before, .calendar.full .calendar_tooltip .entry:after {
        content: "\0020";
        display: table; }
      .calendar.full .calendar_tooltip .entry:after {
        clear: both; }
    .calendar.full .calendar_tooltip .time {
      display: none; }
    .calendar.full .calendar_tooltip .date {
      font-size: 14px;
      color: #333;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;
      font-weight: 400;
      text-transform: uppercase;
      font-style: normal;
      margin: 0 0 10px;
      line-height: 1.3; }
    .calendar.full .calendar_tooltip label {
      line-height: 2; }
    .calendar.full .calendar_tooltip h3 {
      padding-top: 0;
      margin-bottom: 0;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 400; }
      .calendar.full .calendar_tooltip h3 a {
        font-size: 24px;
        font-weight: 400;
        color: #222;
        text-transform: uppercase;
        word-wrap: break-word;
        display: block; }
        .calendar.full .calendar_tooltip h3 a:hover {
          text-decoration: none;
          color: #e8be69; }
      @media screen and (max-width: 820px) {
        .calendar.full .calendar_tooltip h3 {
          font-size: 30px; }
          .calendar.full .calendar_tooltip h3 a {
            font-size: 30px; } }
    .calendar.full .calendar_tooltip .thumb {
      width: 215px;
      height: auto;
      display: block;
      margin-bottom: 0px;
      border: 1px solid #eeeeee; }
      .calendar.full .calendar_tooltip .thumb img {
        width: 215px;
        display: block; }
    .calendar.full .calendar_tooltip .info {
      width: 100%;
      height: 100%;
      min-height: 160px;
      background-color: #fff;
      padding: 20px 22px; }
      .calendar.full .calendar_tooltip .info p {
        margin-bottom: 0px;
        font-size: 13px;
        display: block !important; }
    .calendar.full .calendar_tooltip .buttons {
      position: absolute;
      bottom: -43px;
      left: 0;
      width: 100%;
      height: 43px;
      background-color: #e9e0cc;
      text-align: center; }
      .calendar.full .calendar_tooltip .buttons a, .calendar.full .calendar_tooltip .buttons span {
        display: block;
        margin: 0;
        padding: 0;
        line-height: 43px;
        text-align: center;
        color: #b29052;
        z-index: 1; }
      .calendar.full .calendar_tooltip .buttons .tickets {
        display: block; }
        .calendar.full .calendar_tooltip .buttons .tickets:hover {
          color: #fff;
          background-color: #e8be69; }
        .calendar.full .calendar_tooltip .buttons .tickets:after {
          display: none; }
  .calendar.full .calendar .overview {
    position: absolute;
    top: -50px;
    left: -16px;
    width: 995px;
    height: 50px; }
    .calendar.full .calendar .overview h1 {
      line-height: 50px;
      color: white;
      text-align: center;
      text-transform: uppercase;
      font-size: 18px; }
  .calendar.full #calendario {
    width: 100%;
    max-width: 1080px; }
    .calendar.full #calendario .all-events-link {
      display: none;
      text-align: center;
      display: block;
      width: 150px;
      margin: 10px auto; }
    .calendar.full #calendario .thumb {
      display: none; }
    .calendar.full #calendario .info p {
      display: none; }
    .calendar.full #calendario .preventLink {
      position: absolute;
      z-index: 100;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    @media screen and (max-width: 820px) {
      .calendar.full #calendario {
        width: 97%;
        margin: auto; } }
  .calendar.full #calendario .cal-header {
    position: relative;
    height: 46px;
    width: 100%;
    max-width: 1080px;
    background: transparent;
    border-bottom: 2px solid #242424;
    margin: 0 auto 20px;
    padding: 0px; }
    .calendar.full #calendario .cal-header .page_title {
      float: left;
      font-family: "Oswald", sans-serif;
      font-size: 20px;
      color: #e9e0cc;
      text-transform: uppercase; }
    .calendar.full #calendario .cal-header h2 {
      float: left;
      margin: 0px;
      padding: 0px;
      font-family: "Oswald", sans-serif;
      font-size: 20px;
      font-weight: normal;
      text-transform: uppercase;
      color: #e9e0cc; }
    .calendar.full #calendario .cal-header .cal-controls {
      position: absolute;
      top: 0px;
      right: 0px;
      width: 80px; }
    .calendar.full #calendario .cal-header .arrow-left-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller,
    .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller,
    .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller,
    .calendar.full #calendario .cal-header .arrow-right-sm,
    .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller,
    .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller,
    .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller,
    .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller {
      display: block;
      position: absolute;
      height: 29px;
      width: 29px;
      cursor: pointer;
      background-color: #242424;
      border-radius: 100px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .calendar.full #calendario .cal-header .arrow-left-sm:hover, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller:hover, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller:hover,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller:hover,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller:hover,
      .calendar.full #calendario .cal-header .arrow-right-sm:hover,
      .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller:hover,
      .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller:hover,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller:hover,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller:hover {
        background-color: #e8e8e8; }
        .calendar.full #calendario .cal-header .arrow-left-sm:hover .arrow-back-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller:hover .arrow-back-sm, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller:hover .arrow-back-sm,
        .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller:hover .arrow-back-sm,
        .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller:hover .arrow-back-sm,
        .calendar.full #calendario .cal-header .arrow-right-sm:hover .arrow-back-sm,
        .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller:hover .arrow-back-sm,
        .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller:hover .arrow-back-sm,
        .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller:hover .arrow-back-sm,
        .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller:hover .arrow-back-sm {
          fill: #333; }
    .calendar.full #calendario .cal-header .arrow-back-sm {
      top: 7px;
      fill: #e8be69; }
    .calendar.full #calendario .cal-header .arrow-left-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller,
    .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller,
    .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller {
      left: 0; }
      .calendar.full #calendario .cal-header .arrow-left-sm .arrow-back-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller .arrow-back-sm, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller .arrow-back-sm,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller .arrow-back-sm,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller .arrow-back-sm {
        left: 5px; }
      .calendar.full #calendario .cal-header .arrow-left-sm:active, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .prev-scroller:active, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .prev-scroller:active,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .prev-scroller:active,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .prev-scroller:active {
        margin-top: 1px; }
    .calendar.full #calendario .cal-header .arrow-right-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller,
    .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller,
    .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller {
      right: 0; }
      .calendar.full #calendario .cal-header .arrow-right-sm .arrow-back-sm, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller .arrow-back-sm, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller .arrow-back-sm,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller .arrow-back-sm,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller .arrow-back-sm {
        left: 8px; }
      .calendar.full #calendario .cal-header .arrow-right-sm:active, .calendar.full #calendario .cal-header .carousel.horizontal .carousel-nav .next-scroller:active, .carousel.horizontal .carousel-nav .calendar.full #calendario .cal-header .next-scroller:active,
      .calendar.full #calendario .cal-header .carousel.horizontal .sponsors-nav .next-scroller:active,
      .carousel.horizontal .sponsors-nav .calendar.full #calendario .cal-header .next-scroller:active {
        margin-top: 1px; }
  .calendar.full #calendario {
    margin: 0 auto 40px;
    /* IE 9 is rounding up the calc it seems */ }
    .calendar.full #calendario *,
    .calendar.full #calendario *:after,
    .calendar.full #calendario *:before {
      box-sizing: border-box; }
    @media screen and (max-width: 820px) {
      .calendar.full #calendario {
        margin-top: 40px; } }
    .calendar.full #calendario .cal-wrap {
      margin-top: 20px;
      position: relative; }
    .calendar.full #calendario .fc-calendar-container {
      position: relative;
      *zoom: 1;
      height: auto;
      width: auto;
      padding-bottom: 10px;
      background-color: #fff; }
      .calendar.full #calendario .fc-calendar-container:before, .calendar.full #calendario .fc-calendar-container:after {
        content: "\0020";
        display: table; }
      .calendar.full #calendario .fc-calendar-container:after {
        clear: both; }
      @media screen and (max-width: 820px) {
        .calendar.full #calendario .fc-calendar-container {
          padding: 10px; } }
    .calendar.full #calendario .fc-calendar {
      width: 100%;
      height: 100%;
      position: relative; }
    .calendar.full #calendario .fc-calendar .fc-head {
      height: 50px;
      line-height: 50px;
      background: none;
      color: #333333;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 14px; }
      @media screen and (max-width: 820px) {
        .calendar.full #calendario .fc-calendar .fc-head {
          display: none; } }
    .calendar.full #calendario .fc-calendar .fc-body {
      position: relative;
      padding: 4px 0 4px 5px;
      border: none;
      width: 100%;
      height: 470px; }
      @media screen and (max-width: 820px) {
        .calendar.full #calendario .fc-calendar .fc-body {
          padding: 4px 0 4px 0px; } }
    .calendar.full #calendario .fc-calendar .fc-row {
      width: 100%;
      border-top: none;
      border-bottom: none;
      height: 120px;
      height: 70% !important; }
      @media screen and (max-width: 820px) {
        .calendar.full #calendario .fc-calendar .fc-row {
          height: auto; } }
    .calendar.full #calendario .fc-calendar .fc-row.selected {
      height: 50%; }
      .calendar.full #calendario .fc-calendar .fc-row.selected .date_overlay {
        display: none; }
    .calendar.full #calendario .fc-calendar .fc-row > div {
      float: left;
      position: relative;
      width: 132px;
      width: 13.28571728%;
      width: calc(14.2% - 10px);
      height: 100%;
      margin: 5px;
      background-color: #fbf9f5;
      border: 1px solid #fbf9f5;
      overflow: hidden; }
      .calendar.full #calendario .fc-calendar .fc-row > div:empty {
        border-width: 1px;
        border-color: #f4efe5;
        background-color: #fff; }
      .calendar.full #calendario .fc-calendar .fc-row > div.fc-today .fc-date {
        width: 100%;
        top: 0;
        left: 0;
        background-color: #e8be69;
        padding: 2px 5px;
        text-align: right;
        color: #fff !important; }
      .calendar.full #calendario .fc-calendar .fc-row > div.fc-today.fc-content .entry h3 a, .calendar.full #calendario .fc-calendar .fc-row > div.fc-today.fc-content .entry .time {
        color: #333; }
      .calendar.full #calendario .fc-calendar .fc-row > div.fc-today.fc-content .entry h3 a:hover {
        color: #e8be69; }
      @media screen and (max-width: 820px) {
        .calendar.full #calendario .fc-calendar .fc-row > div {
          width: 100%;
          margin: 5px 0px;
          min-height: 50px;
          height: auto; } }
    .calendar.full #calendario .fc-calendar .fc-head > div {
      float: left;
      height: 100%;
      width: 14.1%;
      position: relative; }
    .calendar.full #calendario .ie9 .fc-calendar .fc-row > div,
    .calendar.full #calendario .ie9 .fc-calendar .fc-head > div {
      width: 14.2%; }
    .calendar.full #calendario .fc-calendar .fc-head > div {
      text-align: center; }
    .calendar.full #calendario .fc-calendar .fc-row > div > span.fc-date {
      font-family: "Open Sans", sans-serif;
      font-size: 16px;
      font-weight: 700;
      position: absolute;
      width: 25px;
      height: 25px;
      top: 5px;
      right: 5px;
      color: #e8be69;
      font-size: 15px;
      font-style: italic;
      text-align: left;
      margin: 0px; }
    .calendar.full #calendario .fc-calendar .fc-row > div > span.fc-weekday {
      padding-left: 5px;
      display: none; }
    .calendar.full #calendario .fc-calendar .fc-row > div.fc-out {
      opacity: 0.6; }
    .calendar.full #calendario .fc-calendar .fc-row:last-child {
      border-bottom: none; }
    .calendar.full #calendario .fc-content:hover {
      background: #333; }
      .calendar.full #calendario .fc-content:hover:before {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 128px;
        height: 20px;
        content: '';
        z-index: 99; }
    .calendar.full #calendario .fc-row.selected .fc-content:hover:before {
      display: none; }
    .calendar.full #calendario .fc-row.selected .fc-content:after {
      display: none; }
    .calendar.full #calendario .fc-content, .calendar.full #calendario .fc-row > div.fc-content {
      background: #f4efe5;
      cursor: pointer;
      padding: 25px 10px; }
      .calendar.full #calendario .fc-content:hover:before, .calendar.full #calendario .fc-row > div.fc-content:hover:before {
        opacity: 1; }
        .ie8 .calendar.full #calendario .fc-content:hover:before, .ie8 .calendar.full #calendario .fc-row > div.fc-content:hover:before {
          display: block; }
      .calendar.full #calendario .fc-content .event_item_wrapper:first-child .entry .info h3, .calendar.full #calendario .fc-row > div.fc-content .event_item_wrapper:first-child .entry .info h3 {
        padding-top: 5px; }
      .calendar.full #calendario .fc-content .preventLink, .calendar.full #calendario .fc-row > div.fc-content .preventLink {
        display: none; }
      .calendar.full #calendario .fc-content span.fc-date, .calendar.full #calendario .fc-row > div.fc-content span.fc-date {
        text-shadow: none;
        z-index: 3; }
      .calendar.full #calendario .fc-content .entry, .calendar.full #calendario .fc-row > div.fc-content .entry {
        padding: 0 0 5px;
        margin-bottom: 15px; }
        .calendar.full #calendario .fc-content .entry .date, .calendar.full #calendario .fc-content .entry .buttons, .calendar.full #calendario .fc-row > div.fc-content .entry .date, .calendar.full #calendario .fc-row > div.fc-content .entry .buttons {
          display: none; }
        .calendar.full #calendario .fc-content .entry .extra_info, .calendar.full #calendario .fc-row > div.fc-content .entry .extra_info {
          display: none; }
        .calendar.full #calendario .fc-content .entry .thumb_list_view, .calendar.full #calendario .fc-row > div.fc-content .entry .thumb_list_view {
          display: none; }
        .calendar.full #calendario .fc-content .entry .time, .calendar.full #calendario .fc-row > div.fc-content .entry .time {
          position: relative;
          display: block;
          margin: 5px 0 10px;
          font-size: 12px;
          line-height: 100%;
          font-weight: 400;
          font-style: italic;
          color: #333;
          text-transform: lowercase; }
        .calendar.full #calendario .fc-content .entry h3, .calendar.full #calendario .fc-row > div.fc-content .entry h3 {
          border-bottom: 1px solid #dad8d4;
          padding-top: 0;
          margin-bottom: 3px;
          padding-bottom: 5px;
          font-size: 12px;
          font-weight: 400;
          color: #333;
          word-wrap: break-word;
          text-transform: uppercase; }
          .calendar.full #calendario .fc-content .entry h3 a, .calendar.full #calendario .fc-row > div.fc-content .entry h3 a {
            display: block;
            width: 90%;
            font-family: "Montserrat", sans-serif;
            font-size: 13px;
            font-weight: 400;
            line-height: 110%;
            letter-spacing: 0;
            word-wrap: break-word;
            color: #333;
            text-transform: uppercase; }
            .calendar.full #calendario .fc-content .entry h3 a:hover, .calendar.full #calendario .fc-row > div.fc-content .entry h3 a:hover {
              text-decoration: none; }
            @media screen and (max-width: 820px) {
              .calendar.full #calendario .fc-content .entry h3 a, .calendar.full #calendario .fc-row > div.fc-content .entry h3 a {
                width: 100%; } }
        .calendar.full #calendario .fc-content .entry:hover .info h3 a, .calendar.full #calendario .fc-row > div.fc-content .entry:hover .info h3 a {
          color: #b29052; }
        .calendar.full #calendario .fc-content .entry .btns, .calendar.full #calendario .fc-row > div.fc-content .entry .btns {
          display: none; }
        @media screen and (max-width: 820px) {
          .calendar.full #calendario .fc-content .entry, .calendar.full #calendario .fc-row > div.fc-content .entry {
            margin-bottom: 0px;
            padding-bottom: 0px; } }
      .calendar.full #calendario .fc-content .event_item_wrapper:last-child .entry, .calendar.full #calendario .fc-row > div.fc-content .event_item_wrapper:last-child .entry {
        border-bottom: 0; }

/**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/ -
**/
/**
 * Popover styles
 */
.home {
  /**
   * Calendar addons
   */
  /**
   * Calendario Header
   */
  /**
   * Base Calendar - full page
   */ }
  .home .modal {
    display: none; }
  .home .calendar-holder .modal.fade.in {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    min-height: 558px;
    background-color: #fff;
    z-index: 100; }
    .home .calendar-holder .modal.fade.in .modal-body {
      padding-top: 0px; }
    .home .calendar-holder .modal.fade.in .close {
      margin: 0px;
      position: absolute;
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      background-color: #fff;
      font-size: 24px;
      font-weight: 300;
      line-height: 37px;
      color: #e8be69;
      text-align: center;
      z-index: 2000;
      cursor: pointer;
      background: #fff url('../images/close-icon.png?1506351497') no-repeat center 0; }
      .home .calendar-holder .modal.fade.in .close .fa {
        display: none; }
      .home .calendar-holder .modal.fade.in .close:hover {
        background-position: center 1px; }
    .home .calendar-holder .modal.fade.in .date.fixed {
      display: none; }
    .home .calendar-holder .modal.fade.in .scrollable {
      width: 100%;
      height: 500px;
      overflow: auto;
      position: absolute;
      left: 0px;
      top: 30px; }
    .home .calendar-holder .modal.fade.in .event_list {
      z-index: 60;
      width: 345px;
      width: 100%; }
      .home .calendar-holder .modal.fade.in .event_list .date {
        display: block;
        position: absolute;
        bottom: 12px;
        left: -90px;
        width: 60px;
        min-height: 70px;
        background-color: #682d8e;
        padding: 8px 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        color: #fff;
        text-align: center;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .home .calendar-holder .modal.fade.in .event_list .date:before, .home .calendar-holder .modal.fade.in .event_list .date:after {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          width: 60px;
          height: 4px;
          left: 0;
          background: transparent url('../images/ticket-detail.png?1506351497') repeat-x 0 0;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
        .home .calendar-holder .modal.fade.in .event_list .date:before {
          top: -4px; }
        .home .calendar-holder .modal.fade.in .event_list .date:after {
          bottom: -4px; }
        .home .calendar-holder .modal.fade.in .event_list .date span {
          display: block;
          color: #fff;
          text-transform: uppercase; }
          .home .calendar-holder .modal.fade.in .event_list .date span.y {
            display: none; }
          .home .calendar-holder .modal.fade.in .event_list .date span.m {
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 0.2rem; }
      .home .calendar-holder .modal.fade.in .event_list .entry {
        width: 92%;
        background: none;
        border-top: 1px solid #e9e0cc;
        padding: 20px 0px 0;
        margin: 20px 20px;
        clear: both;
        *zoom: 1; }
        .home .calendar-holder .modal.fade.in .event_list .entry:before, .home .calendar-holder .modal.fade.in .event_list .entry:after {
          content: "\0020";
          display: table; }
        .home .calendar-holder .modal.fade.in .event_list .entry:after {
          clear: both; }
        .home .calendar-holder .modal.fade.in .event_list .entry:first-child {
          padding-top: 0px;
          border-top: 0; }
        .home .calendar-holder .modal.fade.in .event_list .entry .thumb, .home .calendar-holder .modal.fade.in .event_list .entry .thumb_list_view {
          float: left;
          width: 200px;
          height: 200px;
          margin-right: 20px; }
          .home .calendar-holder .modal.fade.in .event_list .entry .thumb img, .home .calendar-holder .modal.fade.in .event_list .entry .thumb_list_view img {
            width: 100%;
            height: 100%; }
        .home .calendar-holder .modal.fade.in .event_list .entry .info {
          float: left;
          position: relative;
          width: 260px;
          min-height: 200px; }
          .home .calendar-holder .modal.fade.in .event_list .entry .info h3 {
            max-height: none;
            width: 100%;
            max-width: 100%;
            height: auto;
            margin-bottom: 10px; }
            .home .calendar-holder .modal.fade.in .event_list .entry .info h3 a {
              font-size: 16px;
              color: #333; }
              .home .calendar-holder .modal.fade.in .event_list .entry .info h3 a:hover {
                color: #e8be69; }
          .home .calendar-holder .modal.fade.in .event_list .entry .info .time {
            position: relative;
            padding-left: 16px;
            font-style: italic; }
            .home .calendar-holder .modal.fade.in .event_list .entry .info .time:before {
              content: "";
              display: block;
              position: absolute;
              visibility: visible;
              left: 0;
              top: 0;
              content: "@";
              font-size: 14px;
              color: #333; }
          .home .calendar-holder .modal.fade.in .event_list .entry .info .dash {
            display: inline; }
          .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 43px;
            background-color: #e9e0cc; }
            .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons:before {
              content: "";
              display: block;
              position: absolute;
              top: 20px;
              right: 20px;
              width: 60px;
              height: 3px;
              background: transparent url('../images/tb-dotback.png?1506351497') repeat-x 0 0;
              font-size: 28px;
              color: #fff;
              z-index: 2; }
            .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons a, .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons span {
              text-align: left;
              line-height: 43px;
              padding-left: 20px;
              color: #b29052;
              z-index: 1; }
            .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons .tickets {
              display: block;
              padding: 0 0 0 20px; }
              .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons .tickets:hover {
                color: #fff;
                background-color: #e8be69; }
              .home .calendar-holder .modal.fade.in .event_list .entry .info .buttons .tickets:after {
                display: none; }
        .home .calendar-holder .modal.fade.in .event_list .entry:hover .thumb {
          opacity: 1; }
  .home .calendar .overview {
    position: absolute;
    top: -50px;
    left: -16px;
    width: 995px;
    height: 50px;
    background: url(../images/girder_full.png) no-repeat; }
    .home .calendar .overview h1 {
      line-height: 50px;
      color: white;
      text-align: center;
      text-transform: uppercase;
      font-size: 18px; }
  .home .calendar-holder {
    float: left;
    z-index: 600;
    width: 523px; }
    @media screen and (max-width: 600px) {
      .home .calendar-holder {
        width: 100%; } }
    .home .calendar-holder .tabs {
      background: white;
      position: absolute;
      bottom: 32px;
      left: 0px;
      width: 100%; }
      .home .calendar-holder .tabs:after {
        content: '';
        position: absolute;
        top: 0px;
        left: 27px;
        width: 248px;
        border-top: 1px solid #EDEDED; }
      .home .calendar-holder .tabs .tab {
        position: relative;
        float: left;
        width: 50%;
        text-align: center;
        color: #1B3342;
        font-size: 14px;
        cursor: pointer;
        padding: 10px 0px; }
        .home .calendar-holder .tabs .tab.cal_tab {
          float: left; }
          .home .calendar-holder .tabs .tab.cal_tab:after {
            content: '';
            position: absolute;
            top: 11px;
            right: 0px;
            width: 1px;
            height: 18px;
            border-right: 1px solid #EDEDED; }
        .home .calendar-holder .tabs .tab.events_tab {
          float: right; }
        .home .calendar-holder .tabs .tab.opened {
          border-bottom: 5px solid #FFB312; }
          .home .calendar-holder .tabs .tab.opened:hover {
            color: #1B3342; }
        .home .calendar-holder .tabs .tab:hover {
          color: #64BBF5; }
    @media screen and (max-width: 600px) {
      .home .calendar-holder {
        width: 100%;
        margin: 20px auto;
        float: left;
        clear: both; } }
  .home #calendario {
    background: transparent; }
    .home #calendario .event_item_wrapper {
      display: none; }
    .home #calendario .cal-wrap {
      position: relative;
      margin-top: 0px; }
    .home #calendario .all-events-link {
      display: none;
      text-align: center;
      display: block;
      width: 150px;
      margin: 10px auto; }
    .home #calendario .preventLink {
      display: none;
      position: absolute;
      z-index: 100;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .home #calendario .cal-intro {
      background: #292929;
      position: relative;
      top: 0px;
      left: 0px;
      width: 100%; }
      .home #calendario .cal-intro h3 {
        font-size: 18px;
        text-transform: uppercase;
        color: white;
        padding: 10px 30px;
        margin-bottom: 0px;
        float: left; }
    .home #calendario #cal-inner {
      width: 100%;
      height: 400px; }
    .home #calendario .cal-hide-overlay {
      position: absolute;
      top: 14px;
      right: 10px;
      z-index: 100;
      color: #fff;
      font-size: 12px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: "Open Sans", sans-serif;
      font-weight: 400; }
      .home #calendario .cal-hide-overlay span {
        background: url(../images/quick_list_close.png) no-repeat;
        float: left;
        height: 20px;
        width: 20px; }
      .home #calendario .cal-hide-overlay:hover {
        color: #fff; }
    .home #calendario .see-all {
      position: absolute;
      bottom: 0px;
      right: 0px;
      border-top: 1px solid #ccc;
      width: 383px;
      height: 56px;
      line-height: 56px;
      color: #333;
      text-align: center; }
      .home #calendario .see-all span {
        background: url(../images/icn_arws.png) -40px 7px no-repeat;
        padding: 3px 15px; }
      .home #calendario .see-all:hover {
        color: #333;
        text-decoration: none; }
  .home #calendario .cal-header {
    position: relative;
    background: transparent;
    padding: 0px;
    height: 41px;
    border-bottom: 2px solid #242424;
    margin-bottom: 7px;
    padding-bottom: 7px;
    z-index: 50; }
    .home #calendario .cal-header h2 {
      font-family: "Oswald", sans-serif;
      font-size: 20px;
      font-weight: 300;
      color: #e9e0cc;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased; }
      @media screen and (max-width: 600px) {
        .home #calendario .cal-header h2 {
          padding: 0px; } }
    .home #calendario .cal-header .cal-controls {
      position: absolute;
      top: 0px;
      right: 0px;
      z-index: 150; }
      @media screen and (max-width: 600px) {
        .home #calendario .cal-header .cal-controls {
          width: 100%; } }
    .home #calendario .cal-header .cal-controls span {
      display: block;
      position: absolute;
      top: 0px;
      width: 29px;
      height: 29px;
      background-color: #242424;
      border-radius: 100px;
      margin: 0;
      padding: 0;
      z-index: 5;
      cursor: pointer;
      z-index: 100;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .home #calendario .cal-header .cal-controls span:hover {
        background-color: #e8e8e8; }
        .home #calendario .cal-header .cal-controls span:hover .arrow-back-sm {
          fill: #333; }
      .home #calendario .cal-header .cal-controls span.cal-prev {
        right: 50px; }
      .home #calendario .cal-header .cal-controls span.cal-next {
        right: 0px; }
      .home #calendario .cal-header .cal-controls span .arrow-back-sm {
        top: 7px;
        fill: #e8be69; }
      .home #calendario .cal-header .cal-controls span.arrow-left-sm .arrow-back-sm, .home #calendario .cal-header .cal-controls .carousel.horizontal .carousel-nav span.prev-scroller .arrow-back-sm, .carousel.horizontal .carousel-nav .home #calendario .cal-header .cal-controls span.prev-scroller .arrow-back-sm,
      .home #calendario .cal-header .cal-controls .carousel.horizontal .sponsors-nav span.prev-scroller .arrow-back-sm,
      .carousel.horizontal .sponsors-nav .home #calendario .cal-header .cal-controls span.prev-scroller .arrow-back-sm {
        left: 5px; }
      .home #calendario .cal-header .cal-controls span.arrow-left-sm:active, .home #calendario .cal-header .cal-controls .carousel.horizontal .carousel-nav span.prev-scroller:active, .carousel.horizontal .carousel-nav .home #calendario .cal-header .cal-controls span.prev-scroller:active,
      .home #calendario .cal-header .cal-controls .carousel.horizontal .sponsors-nav span.prev-scroller:active,
      .carousel.horizontal .sponsors-nav .home #calendario .cal-header .cal-controls span.prev-scroller:active {
        margin-top: 1px; }
      .home #calendario .cal-header .cal-controls span.arrow-right-sm .arrow-back-sm, .home #calendario .cal-header .cal-controls .carousel.horizontal .carousel-nav span.next-scroller .arrow-back-sm, .carousel.horizontal .carousel-nav .home #calendario .cal-header .cal-controls span.next-scroller .arrow-back-sm,
      .home #calendario .cal-header .cal-controls .carousel.horizontal .sponsors-nav span.next-scroller .arrow-back-sm,
      .carousel.horizontal .sponsors-nav .home #calendario .cal-header .cal-controls span.next-scroller .arrow-back-sm {
        left: 8px; }
      .home #calendario .cal-header .cal-controls span.arrow-right-sm:active, .home #calendario .cal-header .cal-controls .carousel.horizontal .carousel-nav span.next-scroller:active, .carousel.horizontal .carousel-nav .home #calendario .cal-header .cal-controls span.next-scroller:active,
      .home #calendario .cal-header .cal-controls .carousel.horizontal .sponsors-nav span.next-scroller:active,
      .carousel.horizontal .sponsors-nav .home #calendario .cal-header .cal-controls span.next-scroller:active {
        margin-top: 1px; }
  .home #calendario {
    margin: 0 auto 40px auto;
    /* IE 9 is rounding up the calc it seems */ }
    @media screen and (max-width: 600px) {
      .home #calendario {
        width: 100%;
        margin: 0 auto 0px auto; } }
    .home #calendario *,
    .home #calendario *:after,
    .home #calendario *:before {
      box-sizing: border-box; }
    .home #calendario .fc-calendar-container {
      position: relative;
      *zoom: 1;
      height: auto;
      width: auto;
      margin-top: 20px;
      padding-bottom: 10px; }
      .home #calendario .fc-calendar-container:before, .home #calendario .fc-calendar-container:after {
        content: "\0020";
        display: table; }
      .home #calendario .fc-calendar-container:after {
        clear: both; }
    .home #calendario .fc-calendar {
      height: 100%;
      width: 100%;
      margin: auto; }
    .home #calendario .fc-calendar .fc-head {
      height: 70px;
      line-height: 70px;
      margin-left: 0px;
      padding-left: 2%;
      font-family: "Oswald", sans-serif;
      font-size: 22px;
      font-weight: 300;
      color: #e8be69;
      text-transform: uppercase;
      background-color: #1a1a1a; }
    .home #calendario .fc-calendar .fc-body {
      position: relative;
      padding: 0px;
      border: none;
      width: 100%;
      height: 430px;
      margin-left: 0px;
      padding-top: 3%;
      padding-left: 2%;
      background-color: #242424;
      overflow: hidden; }
    .home #calendario .fc-calendar .fc-row {
      width: 100%;
      border-top: none;
      border-bottom: none;
      height: 65px;
      clear: both; }
    .home #calendario .fc-calendar .fc-row.selected {
      height: 50%; }
      .home #calendario .fc-calendar .fc-row.selected .date_overlay {
        display: none; }
    .home #calendario .fc-calendar .fc-row.highlight > div .fc-date {
      background-color: transparent; }
    .home #calendario .fc-calendar .fc-row.highlight > div p {
      color: #333 !important; }
    .home #calendario .fc-calendar .fc-row.highlight > div a {
      color: #fff !important; }
    .home #calendario .fc-calendar .fc-row.selected > div.fc-content {
      background: #e9e0cc; }
      .home #calendario .fc-calendar .fc-row.selected > div.fc-content .fc-date {
        color: #fff !important; }
      .home #calendario .fc-calendar .fc-row.selected > div.fc-content p {
        color: #fff !important; }
      .home #calendario .fc-calendar .fc-row.selected > div.fc-content a {
        color: #fff !important; }
    .home #calendario .fc-calendar .fc-row > div {
      float: left;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-right: none;
      width: 12.28571428%;
      margin: 0.5% 0.8% 0;
      height: 65px; }
      .home #calendario .fc-calendar .fc-row > div .date_overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10; }
      .home #calendario .fc-calendar .fc-row > div.fc-today span.fc-date {
        background: #e8be69;
        color: #333; }
    .home #calendario .fc-calendar .fc-head > div {
      float: left;
      position: relative;
      height: 100%;
      width: 12.28571428%;
      margin: 0 0.8%; }
      .home #calendario .fc-calendar .fc-head > div:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 37%;
        left: -8px;
        width: 2px;
        height: 20px;
        background-color: #242424; }
      .home #calendario .fc-calendar .fc-head > div:first-child:after {
        border-left: none;
        display: none; }
    .home #calendario .ie9 .fc-calendar .fc-row > div,
    .home #calendario .ie9 .fc-calendar .fc-head > div {
      width: 14.2%; }
    .home #calendario .fc-calendar .fc-head > div {
      text-align: center; }
    .home #calendario .fc-calendar .fc-row > div > span.fc-date {
      position: absolute;
      width: 100%;
      height: 62px;
      top: 0px;
      left: 0px;
      margin: 0px;
      font-size: 20px;
      line-height: 55px;
      font-weight: 400;
      text-align: center;
      color: #fff;
      border: 3px solid transparent;
      border-radius: 100px; }
    .home #calendario .fc-calendar .fc-row > div > span.fc-weekday {
      padding-left: 5px;
      display: none; }
    .home #calendario .fc-calendar .fc-row > div.fc-out {
      opacity: 0.6; }
    .home #calendario .fc-calendar .fc-row:last-child {
      border-bottom: none; }
    .home #calendario .fc-content:hover {
      background: #e8be69; }
      .home #calendario .fc-content:hover:before {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 128px;
        height: 20px;
        content: '';
        z-index: 99; }
    .home #calendario .fc-row.selected .fc-content .preventLink {
      display: none; }
    .home #calendario .fc-row.selected .fc-content:hover {
      text-decoration: underline; }
      .home #calendario .fc-row.selected .fc-content:hover:before {
        display: none; }
    .home #calendario .fc-row.selected .fc-content:after {
      display: none; }
    .home #calendario .fc-content, .home #calendario .fc-row > div.fc-content,
    .home #calendario .fc-row.highlight > div.fc-content {
      background: none;
      color: #333;
      cursor: pointer; }
      .home #calendario .fc-content:hover .fc-date, .home #calendario .fc-row > div.fc-content:hover .fc-date,
      .home #calendario .fc-row.highlight > div.fc-content:hover .fc-date {
        text-decoration: underline;
        background: #e8be69;
        text-decoration: none;
        color: white; }
      .home #calendario .fc-content:after, .home #calendario .fc-row > div.fc-content:after,
      .home #calendario .fc-row.highlight > div.fc-content:after {
        z-index: 98;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .home #calendario .fc-content span.fc-date, .home #calendario .fc-row > div.fc-content span.fc-date,
      .home #calendario .fc-row.highlight > div.fc-content span.fc-date {
        color: #fff;
        background: #e8be69;
        text-shadow: none;
        z-index: 3; }
      .home #calendario .fc-content .entry, .home #calendario .fc-row > div.fc-content .entry,
      .home #calendario .fc-row.highlight > div.fc-content .entry {
        padding: 0 0 5px;
        margin-bottom: 10px;
        border-bottom: 1px solid #cab585;
        display: none; }
        .home #calendario .fc-content .entry .date, .home #calendario .fc-content .entry .buttons, .home #calendario .fc-row > div.fc-content .entry .date, .home #calendario .fc-row > div.fc-content .entry .buttons,
        .home #calendario .fc-row.highlight > div.fc-content .entry .date,
        .home #calendario .fc-row.highlight > div.fc-content .entry .buttons {
          display: none; }
        .home #calendario .fc-content .entry .time, .home #calendario .fc-row > div.fc-content .entry .time,
        .home #calendario .fc-row.highlight > div.fc-content .entry .time {
          font: 300 18px/28px #666666; }
        .home #calendario .fc-content .entry h3, .home #calendario .fc-row > div.fc-content .entry h3,
        .home #calendario .fc-row.highlight > div.fc-content .entry h3 {
          padding-top: 0;
          margin-bottom: 0;
          font-size: 18px; }
          .home #calendario .fc-content .entry h3 a, .home #calendario .fc-row > div.fc-content .entry h3 a,
          .home #calendario .fc-row.highlight > div.fc-content .entry h3 a {
            text-decoration: none; }
      .home #calendario .fc-content .event_item_wrapper:last-child .entry, .home #calendario .fc-row > div.fc-content .event_item_wrapper:last-child .entry,
      .home #calendario .fc-row.highlight > div.fc-content .event_item_wrapper:last-child .entry {
        border-bottom: 0; }

.home #calendario .fc-row > div.fc-content span.fc-date,
.home #calendario .fc-row.highlight > div.fc-content span.fc-date {
  border: 3px solid #e8be69;
  background-color: transparent; }

.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
----------------------------------------------------------------------------- */
.content + .link {
  margin-top: -30px; }

.link {
  position: relative;
  margin: 0 0 35px;
  padding: 0 55px; }
  @media screen and (max-width: 1024px) {
    .link {
      padding-left: 20px;
      padding-right: 20px; } }
  .link ul.list {
    margin: 0;
    padding: 0;
    list-style: none; }
    .link ul.list li {
      min-height: 40px;
      padding: 0;
      margin: 0 0 10px; }
    .link ul.list a, .link ul.list span {
      position: relative;
      display: inline-block;
      padding: 0 0 0 55px;
      font-family: "Open Sans", sans-serif;
      font-size: 12px;
      line-height: 39px;
      color: #333;
      text-decoration: none; }
      .link ul.list a:before, .link ul.list span:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 2px;
        left: 0px;
        width: 32px;
        height: 32px;
        background-color: #e9e0cc;
        border-radius: 100px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      .link ul.list a:after, .link ul.list span:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 9px;
        left: 7px;
        width: 17px;
        height: 17px;
        background: transparent url('../images/link-external.png?1506351497') no-repeat 0 0;
        color: #fff; }
    .link ul.list a {
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .link ul.list a:hover, .link ul.list a:focus {
        color: #e8be69; }
        .link ul.list a:hover:before, .link ul.list a:focus:before {
          background-color: #242424; }
        .link ul.list a:hover:after, .link ul.list a:focus:after {
          color: #e8be69; }
      .link ul.list a.pdf:after {
        width: 13px;
        height: 18px;
        background: transparent url('../images/link-doc.png?1506351497') no-repeat 0 0;
        top: 8px;
        left: 10px; }
      .link ul.list a.image:after {
        width: 18px;
        height: 12px;
        background: transparent url('../images/link-image.png?1506351497') no-repeat 0 0;
        top: 10px;
        left: 7px; }
      .link ul.list a.email:after {
        width: 15px;
        height: 12px;
        background: transparent url('../images/link-email.png?1506351497') no-repeat 0 0;
        top: 12px;
        left: 8px; }
      .link ul.list a.facebook:after {
        content: "\f09a";
        top: 0px;
        left: 10px;
        background-image: none;
        font-family: FontAwesome;
        font-size: 19px; }
      .link ul.list a.twitter:after {
        content: "\f099";
        top: -1px;
        left: 8px;
        background-image: none;
        font-family: FontAwesome;
        font-size: 19px; }
      .link ul.list a.instagram:after {
        content: "\f16d";
        top: -1px;
        left: 8px;
        background-image: none;
        font-family: FontAwesome;
        font-size: 19px; }
      .link ul.list a.youtube:after {
        content: "\f16a";
        top: -1px;
        left: 7px;
        background-image: none;
        font-family: FontAwesome;
        font-size: 19px; }

/* ----------------------------------------------------------------------------
= content page FAQs
----------------------------------------------------------------------------- */
.faq {
  position: relative;
  margin: 0 0 35px;
  padding: 0 55px; }
  @media screen and (max-width: 1024px) {
    .faq {
      padding-left: 20px;
      padding-right: 20px; } }
  .faq dl {
    border-bottom: 1px solid #f4efe5; }
  .faq dt {
    position: relative;
    margin: 0;
    padding: 0 25px 0 0;
    border-top: 1px solid #f4efe5;
    font-family: "Montserrat", 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: 20px 0;
      font-size: 12px;
      color: #2e2e2e;
      line-height: 150%;
      text-transform: uppercase; }
      .faq dt p:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 20px;
        right: 3px;
        font-family: FontAwesome;
        font-size: 30.5px;
        content: "\f111";
        color: #e9e0cc;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      .faq dt p:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 20px;
        right: 9px;
        font-family: FontAwesome;
        font-size: 22px;
        content: "\f107";
        color: #b29052;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
    .faq dt:hover p, .faq dt.active p {
      color: #e8be69; }
      .faq dt:hover p:before, .faq dt.active p:before {
        color: #242424; }
    .faq dt.open p {
      color: #e8be69; }
      .faq dt.open p:before {
        color: #242424; }
      .faq dt.open p:after {
        top: 18px;
        right: 10px; }
  .faq dd {
    display: none;
    padding: 0 20px 0 0;
    overflow: hidden; }
    .faq dd p {
      font-size: 12px;
      line-height: 200%;
      color: #666; }
  .faq ul {
    position: relative; }
    .faq ul li {
      position: relative;
      padding-left: 20px;
      font-size: 12px; }
      .faq ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: 6px;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: #e8be69; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative;
  margin-bottom: 45px; }
  .event_list.wrap-holder {
    max-width: 1160px;
    background: none;
    padding-bottom: 0; }
  .event_list .overview {
    position: relative;
    height: 80px;
    margin-top: 58px;
    margin-bottom: 23px;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 0px;
    border-bottom: 2px solid #242424;
    *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-family: "Oswald", sans-serif;
      font-size: 20px;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.10em;
      color: #e9e0cc; }
  .event_list .ev-view {
    position: absolute;
    top: 50%;
    right: 0; }
    .event_list .ev-view .title {
      position: relative;
      top: -4px;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.35rem;
      text-transform: uppercase;
      color: #b29052; }
    @media screen and (max-width: 600px) {
      .event_list .ev-view {
        display: none; } }
  .event_list .tileview-btn,
  .event_list .listview-btn {
    display: inline-block;
    width: 22px;
    height: 16px;
    margin-left: 11px;
    opacity: 0.3;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
    .event_list .tileview-btn:hover, .event_list .tileview-btn.active,
    .event_list .listview-btn:hover,
    .event_list .listview-btn.active {
      opacity: 1; }
  .event_list .tileview-btn {
    background: transparent url('../images/elp-gridv.png?1506351497') no-repeat 0 0; }
  .event_list .listview-btn {
    background: transparent url('../images/elp-listv.png?1506351497') no-repeat 0 0; }
  .event_list .date {
    display: none; }
  .event_list .list-view .list {
    position: relative;
    background: #fff;
    margin: 0 0 30px;
    padding: 0 21px 21px;
    *zoom: 1; }
    .event_list .list-view .list:before, .event_list .list-view .list:after {
      content: "\0020";
      display: table; }
    .event_list .list-view .list:after {
      clear: both; }
    .event_list .list-view .list p.noevents {
      padding: 15px 0 0;
      color: #666666; }
    @media screen and (max-width: 1024px) {
      .event_list .list-view .list {
        margin: 0 0 2%; } }
  .event_list .list-view .entry {
    position: relative;
    height: 175px;
    margin: 21px 0px 20px;
    clear: both;
    *zoom: 1; }
    .event_list .list-view .entry:before, .event_list .list-view .entry:after {
      content: "\0020";
      display: table; }
    .event_list .list-view .entry:after {
      clear: both; }
    .event_list .list-view .entry:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      right: 0px;
      bottom: -5px;
      width: 80%;
      height: 1px;
      background-color: #f4efe5; }
    .event_list .list-view .entry:last-child:after {
      display: none; }
    @media screen and (max-width: 1024px) {
      .event_list .list-view .entry {
        height: 144px; } }
    .event_list .list-view .entry .thumb {
      float: left;
      width: 161px;
      width: 16%;
      height: auto;
      margin: 0; }
      .event_list .list-view .entry .thumb a {
        display: block;
        width: 100%;
        height: auto;
        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 .list-view .entry .thumb a:hover {
          opacity: 0.70; }
        .event_list .list-view .entry .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
    .event_list .list-view .entry .info {
      position: relative;
      float: right;
      width: 80%;
      float: left;
      margin-left: 4%;
      padding: 0; }
      .event_list .list-view .entry .info .venue_name {
        display: none; }
      .event_list .list-view .entry .info .date.list {
        position: relative;
        display: inline-block;
        margin: 7% 0 1%;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase; }
        .event_list .list-view .entry .info .date.list .venue_name {
          display: block; }
      .event_list .list-view .entry .info h3 {
        width: 100%;
        margin: 0;
        padding: 0;
        font-size: 18px;
        font-weight: 400; }
        @media screen and (max-width: 970px) {
          .event_list .list-view .entry .info h3 {
            width: 68%; } }
        .event_list .list-view .entry .info h3 a {
          font-family: "Montserrat", sans-serif;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none;
          font-weight: 400;
          color: #333;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .event_list .list-view .entry .info h3 a:hover {
            color: #e8be69; }
      .event_list .list-view .entry .info h4 {
        display: none; }
      .event_list .list-view .entry .info .buttons {
        position: absolute;
        top: 60%;
        right: 0; }
    @media screen and (max-width: 820px) {
      .event_list .list-view .entry .info .date {
        padding: 5px 15px; }
      .event_list .list-view .entry .info h3 {
        margin: 0;
        font-size: 18px; } }
    @media screen and (max-width: 600px) {
      .event_list .list-view .entry {
        min-height: 118px;
        height: auto; }
        .event_list .list-view .entry .info .date {
          width: 60%;
          padding: 5px 10px; }
        .event_list .list-view .entry .info .date.list {
          margin-top: 10px; }
        .event_list .list-view .entry .info h3 {
          width: 55%;
          font-size: 12px;
          padding-bottom: 20px; }
        .event_list .list-view .entry .info .buttons a, .event_list .list-view .entry .info .buttons span {
          font-size: 0;
          letter-spacing: 0.10rem; } }
  .event_list .tile-view .list {
    position: relative;
    background: transparent;
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    *zoom: 1; }
    .event_list .tile-view .list:before, .event_list .tile-view .list:after {
      content: "\0020";
      display: table; }
    .event_list .tile-view .list:after {
      clear: both; }
    @media screen and (max-width: 1024px) {
      .event_list .tile-view .list {
        margin: 0; } }
    @media screen and (max-width: 900px) {
      .event_list .tile-view .list {
        width: 640px;
        margin: 0 auto;
        max-width: 100%; } }
    @media screen and (max-width: 400px) {
      .event_list .tile-view .list {
        width: 100%; } }
  .event_list .tile-view .entry {
    position: relative;
    display: inline-block;
    width: 275px;
    height: 498px;
    background-color: #fff;
    margin-left: 10px;
    margin-bottom: 20px;
    vertical-align: top;
    text-align: left; }
    @media screen and (max-width: 1024px) {
      .event_list .tile-view .entry:nth-child(5n) {
        margin-left: 20px; }
      .event_list .tile-view .entry:nth-child(4n) {
        margin-left: 0px; } }
    @media screen and (max-width: 900px) {
      .event_list .tile-view .entry:nth-child(4n) {
        margin-left: 20px; }
      .event_list .tile-view .entry:nth-child(odd) {
        margin-left: 0px; } }
    @media screen and (max-width: 1024px) {
      .event_list .tile-view .entry {
        height: 400px; } }
    @media screen and (max-width: 650px) {
      .event_list .tile-view .entry {
        float: none;
        display: block;
        margin: 0 auto 20px; }
        .event_list .tile-view .entry:first-child, .event_list .tile-view .entry:nth-child(odd), .event_list .tile-view .entry:nth-child(3n), .event_list .tile-view .entry:nth-child(4n), .event_list .tile-view .entry:nth-child(5n) {
          margin-left: auto; } }
    .event_list .tile-view .entry .thumb {
      width: 100%;
      height: 275px; }
      @media screen and (max-width: 1024px) {
        .event_list .tile-view .entry .thumb {
          height: 200px;
          overflow: hidden; } }
      .event_list .tile-view .entry .thumb a {
        display: block;
        width: 100%;
        height: auto;
        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 .tile-view .entry .thumb a:hover {
          opacity: 0.70; }
        .event_list .tile-view .entry .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
      .event_list .tile-view .entry .thumb:hover {
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .event_list .tile-view .entry .thumb:hover + .info h3 a {
          color: #e8be69; }
        .event_list .tile-view .entry .thumb:hover + .info .date.grid {
          background-color: #e8be69; }
          .event_list .tile-view .entry .thumb:hover + .info .date.grid:before, .event_list .tile-view .entry .thumb:hover + .info .date.grid:after {
            background-image: url('../images/ticket-detail-over.png?1506351497'); }
    .event_list .tile-view .entry .info {
      position: relative;
      height: 226px;
      padding: 20px; }
      @media screen and (max-width: 1024px) {
        .event_list .tile-view .entry .info {
          height: 200px; } }
      .event_list .tile-view .entry .info .venue_name {
        display: block;
        border-bottom: 1px solid #F4EFE5;
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 10px;
        color: #242424;
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        width: 70%;
        text-transform: uppercase;
        letter-spacing: 0.1em; }
      .event_list .tile-view .entry .info .date.grid {
        display: block;
        position: absolute;
        top: -16px;
        right: 16px;
        width: 60px;
        min-height: 70px;
        background-color: #682d8e;
        padding: 8px 12px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 30px;
        color: #fff;
        text-align: center;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .event_list .tile-view .entry .info .date.grid:before, .event_list .tile-view .entry .info .date.grid:after {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          width: 60px;
          height: 4px;
          left: 0;
          background: transparent url('../images/ticket-detail.png?1506351497') repeat-x 0 0;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
        .event_list .tile-view .entry .info .date.grid:before {
          top: -4px; }
        .event_list .tile-view .entry .info .date.grid:after {
          bottom: -4px; }
        .event_list .tile-view .entry .info .date.grid span {
          display: block;
          color: #fff;
          text-transform: uppercase; }
          .event_list .tile-view .entry .info .date.grid span.y {
            display: none; }
          .event_list .tile-view .entry .info .date.grid span.m {
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 0.2rem; }
      .event_list .tile-view .entry .info h3 {
        width: 76%;
        font-size: 16px; }
        .event_list .tile-view .entry .info h3 a {
          color: #242424;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .event_list .tile-view .entry .info h3 a:hover {
            color: #e8be69; }
      .event_list .tile-view .entry .info h4 {
        display: none; }
      .event_list .tile-view .entry .info .buttons {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 43px;
        background-color: #e9e0cc; }
        .event_list .tile-view .entry .info .buttons a {
          text-align: left;
          line-height: 43px;
          padding-left: 20px;
          color: #b29052;
          z-index: 1; }
        .event_list .tile-view .entry .info .buttons a:before {
          content: "";
          display: block;
          position: absolute;
          top: 20px;
          right: 20px;
          width: 60px;
          height: 3px;
          background: transparent url('../images/tb-dotback.png?1506351497') repeat-x 0 0;
          font-size: 28px;
          color: #fff;
          z-index: 2; }
        .event_list .tile-view .entry .info .buttons .tickets {
          display: block;
          padding: 0 0 0 20px; }
          .event_list .tile-view .entry .info .buttons .tickets:hover {
            color: #fff;
            background-color: #e8be69; }
          .event_list .tile-view .entry .info .buttons .tickets:after {
            display: none; }
        .event_list .tile-view .entry .info .buttons span {
          line-height: 41px; }
          .event_list .tile-view .entry .info .buttons span.tickets {
            display: none; }

.hide {
  display: none; }

.load-more-button {
  position: relative;
  width: 245px;
  display: block;
  margin: auto;
  text-align: center; }
  .load-more-button button {
    position: relative;
    text-transform: uppercase;
    background: none;
    color: #414141;
    border: 1px solid #ddd;
    width: 245px;
    margin: auto;
    line-height: 28px;
    height: 28px;
    text-align: center;
    font-size: 11px;
    font-family: #ccc;
    font-weight: 600;
    letter-spacing: 3px;
    z-index: 15;
    display: block;
    border: none;
    padding: 0px; }
    .load-more-button button[disabled="disabled"], .load-more-button button[disabled="true"] {
      display: none; }
    .load-more-button button:before {
      content: '';
      display: block;
      position: absolute;
      top: 30px;
      left: 50%;
      margin-left: -10px;
      width: 0px;
      height: 6px;
      border: none;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      border-top: 8px solid #414141;
      z-index: 5; }
    .load-more-button button:hover {
      color: #fff; }
      .load-more-button button:hover:before {
        border-top: 8px solid #fff; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail {
  margin-top: 25px; }
  .event_detail .spotlight_image {
    position: relative;
    width: 100%;
    height: auto; }
    .event_detail .spotlight_image:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(rgba(17, 17, 17, 0)));
      background: -webkit-linear-gradient(top, #111111 0%, rgba(17, 17, 17, 0) 100%);
      background: linear-gradient(to bottom, #111111 0%, rgba(17, 17, 17, 0) 100%);
      /* W3C */
      z-index: 100; }
      @media screen and (max-width: 1260px) {
        .event_detail .spotlight_image:before {
          top: 109px; } }
    .event_detail .spotlight_image:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), to(#111111));
      background: -webkit-linear-gradient(top, rgba(17, 17, 17, 0) 0%, #111111 100%);
      background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #111111 100%);
      z-index: 100; }
    .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 .page-holder {
    position: relative;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 0px;
    *zoom: 1; }
    .event_detail .page-holder:before, .event_detail .page-holder:after {
      content: "\0020";
      display: table; }
    .event_detail .page-holder:after {
      clear: both; }
    @media screen and (max-width: 1180px) {
      .event_detail .page-holder {
        max-width: 1110px;
        padding: 0 2%;
        margin-bottom: 2%; } }
    @media screen and (max-width: 380px) {
      .event_detail .page-holder {
        padding: 0; } }
  .event_detail .wrap-holder {
    margin-bottom: 0;
    margin-top: 0; }
  .event_detail #column_1 {
    float: left;
    max-width: 784px;
    margin-left: 132px; }
    @media screen and (max-width: 1260px) {
      .event_detail #column_1 {
        width: 61.5%; } }
    @media screen and (max-width: 1180px) {
      .event_detail #column_1 {
        width: 68%;
        margin-left: 0; } }
    @media screen and (max-width: 1024px) {
      .event_detail #column_1 {
        float: none;
        width: 100%;
        max-width: 100%;
        padding: 0; } }
  .event_detail #column_2 {
    float: right;
    max-width: 275px;
    width: 100%;
    margin-right: 49px;
    overflow: hidden; }
    .event_detail #column_2 img {
      display: block; }
    .event_detail #column_2.fixed {
      position: fixed;
      top: 10px;
      margin-left: 936px; }
      .event_detail #column_2.fixed.at_bottom {
        position: absolute;
        bottom: 0;
        top: auto; }
    @media screen and (max-width: 1260px) {
      .event_detail #column_2 {
        margin-right: 4%; }
        .event_detail #column_2.fixed {
          margin-left: 73.8%; } }
    @media screen and (max-width: 1180px) {
      .event_detail #column_2.fixed {
        margin-left: 63.6%; } }
    @media screen and (max-width: 1024px) {
      .event_detail #column_2 {
        float: none;
        width: 100%;
        max-width: 100%; }
        .event_detail #column_2.fixed {
          position: relative;
          margin: 0; }
          .event_detail #column_2.fixed.at_bottom {
            position: relative; }
        .event_detail #column_2 img {
          display: none; }
        .event_detail #column_2 .right_column {
          width: 100%; }
          .event_detail #column_2 .right_column .buttons {
            max-width: 100%; }
            .event_detail #column_2 .right_column .buttons a.tickets {
              font-size: 15px;
              padding: 0; } }
  .event_detail .header {
    position: relative;
    width: 100%;
    max-width: 1256px;
    height: 77px;
    margin: 108px auto 30px;
    padding: 0;
    clear: both;
    z-index: 101; }
    @media screen and (max-width: 1024px) {
      .event_detail .header {
        margin-bottom: 20px; } }
    .event_detail .header .summary {
      float: left;
      display: inline-block;
      position: relative;
      width: 100%;
      padding-left: 10.3%;
      font-size: 28px;
      line-height: 48px;
      color: #e8be69;
      float: none;
      margin: 0; }
      @media screen and (max-width: 1180px) {
        .event_detail .header .summary {
          padding-left: 2%; } }
      @media screen and (max-width: 600px) {
        .event_detail .header .summary {
          font-size: 22px;
          line-height: 25px; } }
    .event_detail .header .tagurit {
      padding-left: 10.3%;
      font-size: 11px;
      color: #e9e0cc;
      height: auto;
      margin-top: -10px;
      margin-bottom: 20px; }
      @media screen and (max-width: 1180px) {
        .event_detail .header .tagurit {
          padding-left: 2%; } }
  .event_detail .date-rapping {
    width: 112px;
    *zoom: 1; }
    .event_detail .date-rapping:before, .event_detail .date-rapping:after {
      content: "\0020";
      display: table; }
    .event_detail .date-rapping:after {
      clear: both; }
    .event_detail .date-rapping.fixed #rollingdate.date {
      position: fixed;
      top: 77px;
      left: auto; }
    .event_detail .date-rapping.fixed.at_bottom #rollingdate.date {
      position: absolute;
      bottom: 5px;
      top: auto; }
  .event_detail #rollingdate.date {
    position: absolute;
    top: -133px;
    left: 0px;
    width: 112px;
    min-height: 112px;
    background-color: #682d8e;
    margin: 0;
    padding: 0 0 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    z-index: 100;
    *zoom: 1; }
    .event_detail #rollingdate.date:before, .event_detail #rollingdate.date:after {
      content: "\0020";
      display: table; }
    .event_detail #rollingdate.date:after {
      clear: both; }
    .event_detail #rollingdate.date .m {
      display: block;
      font-family: "Open Sans", sans-serif;
      font-size: 23px;
      font-weight: normal; }
    .event_detail #rollingdate.date .d {
      width: 108px;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 56px; }
    .event_detail #rollingdate.date .y {
      display: none; }
    .event_detail #rollingdate.date:before, .event_detail #rollingdate.date:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      width: 112px;
      height: 7px;
      left: 0;
      background: transparent url('../images/ticket-sprite.png?1506351497') repeat-x 0 0;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .event_detail #rollingdate.date:before {
      top: -7px; }
    .event_detail #rollingdate.date:after {
      bottom: -7px; }
    .event_detail #rollingdate.date span {
      display: block;
      color: #fff;
      text-transform: uppercase; }
      .event_detail #rollingdate.date span.y {
        display: none; }
      .event_detail #rollingdate.date span.m {
        font-weight: 400;
        font-size: 26px;
        letter-spacing: 0.3rem; }
    @media screen and (max-width: 1180px) {
      .event_detail #rollingdate.date {
        display: none; } }
  .event_detail div#branding + div.header {
    height: auto;
    margin: auto; }
  .event_detail .event-body {
    width: 100%;
    min-width: 784px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 30px;
    color: #666666; }
    .event_detail .event-body h4 {
      font-size: 12px; }
    @media screen and (max-width: 1260px) {
      .event_detail .event-body {
        min-width: 100%;
        padding-left: 20px;
        padding-right: 20px; } }
  .event_detail .read-moreedp {
    display: none;
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #2e2e2e;
    text-transform: uppercase;
    text-align: center;
    line-height: 40px; }
    .event_detail .read-moreedp:before {
      content: '';
      display: block;
      position: absolute;
      top: 33px;
      left: 50%;
      margin-left: -10px;
      width: 0px;
      height: 6px;
      border: none;
      border-right: 8px solid transparent;
      border-left: 8px solid transparent;
      border-top: 6px solid #2e2e2e;
      z-index: 5; }
  .event_detail .is_opened .read-moreedp:before {
    border-bottom: 6px solid #2e2e2e;
    border-top: 0;
    top: 29px; }
  .event_detail .buttons {
    width: 100%;
    max-width: 275px;
    height: 43px;
    background-color: #682d8e;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .event_detail .buttons:hover {
      background-color: #e8be69; }
      .event_detail .buttons:hover span.soon,
      .event_detail .buttons:hover a.tickets {
        color: #fff; }
    .event_detail .buttons:before {
      content: "";
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      width: 60px;
      height: 3px;
      background: transparent url('../images/tb-dotback.png?1506351497') repeat-x 0 0;
      font-size: 28px;
      color: #fff;
      z-index: 2; }
    .event_detail .buttons a.tickets {
      display: block;
      padding-right: 95px;
      line-height: 41px; }
      .event_detail .buttons a.tickets:after {
        display: none; }
    .event_detail .buttons span.soon {
      display: block;
      padding-right: 77px;
      line-height: 39px; }
    @media screen and (max-width: 380px) {
      .event_detail .buttons {
        width: 100%;
        height: auto; } }
  .event_detail .details {
    background-color: #fff;
    padding: 20px; }
    .event_detail .details .label {
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      color: #b29052; }
    .event_detail .details .items {
      margin-bottom: 20px;
      font-size: 12px; }
      .event_detail .details .items p {
        margin: 0;
        line-height: 200%; }
    .event_detail .details .mbdate {
      display: none; }
      @media screen and (max-width: 1180px) {
        .event_detail .details .mbdate {
          display: block;
          margin-bottom: 20px; } }
  .event_detail .description,
  .event_detail .extra_links {
    margin: 0 0 40px; }
  .event_detail .description {
    overflow: hidden; }
  .event_detail .showings {
    width: 100%; }
    .event_detail .showings ul li {
      position: relative;
      height: 50px;
      border-top: 1px solid #f4efe5;
      margin: 0 0 0 25px;
      padding: 0 0 8px; }
      .event_detail .showings ul li:only-child {
        border-bottom: 0px solid #f4efe5; }
      .event_detail .showings ul li:first-child {
        border-top: 0; }
      .event_detail .showings ul li span.date,
      .event_detail .showings ul li span.time {
        font-size: 12px;
        line-height: 50px;
        color: #666; }
        .event_detail .showings ul li span.date.date,
        .event_detail .showings ul li span.time.date {
          margin-right: 2px;
          padding-left: 0px; }
          .event_detail .showings ul li span.date.date:before,
          .event_detail .showings ul li span.time.date:before {
            content: "";
            display: block;
            position: absolute;
            visibility: visible;
            top: 21px;
            left: -25px;
            width: 7px;
            height: 7px;
            background-color: #e8be69; }
      .event_detail .showings ul li a.ical {
        position: relative;
        float: right;
        top: 13px;
        display: block;
        width: 67px;
        height: 20px;
        background-color: #e9e0cc;
        padding: 0 12px;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
        font-size: 11px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0.15rem;
        color: #b29052;
        border-radius: 100px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .event_detail .showings ul li a.ical:hover {
          background-color: #242424; }
          .event_detail .showings ul li a.ical:hover:before {
            background-color: #242424; }
        .event_detail .showings ul li a.ical:after {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          top: 0px;
          right: 0px;
          content: "+";
          width: 15px;
          height: 15px;
          font-size: 15px;
          color: #fff; }
        .event_detail .showings ul li a.ical:before {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          top: 0px;
          right: 0px;
          width: 20px;
          height: 20px;
          background-color: #e8be69;
          border-radius: 0 100px 100px 0;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
        @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;
            display: none; }
            .event_detail .showings ul li a.ical:after {
              position: absolute;
              right: 0px;
              top: 0px; } }
  .event_detail .description p {
    line-height: 170%; }
  .event_detail .showings.add {
    border-top: 1px solid #F4EFE5; }
    .event_detail .showings.add ul {
      margin: 10px 0 15px; }
  .event_detail .extra_links.add {
    border-bottom: 1px solid #F4EFE5; }
  .event_detail .showings.add,
  .event_detail .extra_links.add {
    min-height: 40px; }
    .event_detail .showings.add .answer,
    .event_detail .extra_links.add .answer {
      display: none; }
    .event_detail .showings.add .label,
    .event_detail .extra_links.add .label {
      margin: 0;
      padding: 10px 0;
      overflow: auto;
      cursor: pointer; }
      .event_detail .showings.add .label a,
      .event_detail .extra_links.add .label a {
        position: relative;
        display: block;
        padding: 0;
        font-family: "Montserrat",times,sans-serif;
        font-size: 12px;
        color: #2e2e2e;
        line-height: 40px;
        text-transform: uppercase; }
        .event_detail .showings.add .label a:before,
        .event_detail .extra_links.add .label a:before {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          top: 0px;
          right: 3px;
          font-family: FontAwesome;
          font-size: 31px;
          content: "\f111";
          color: #e9e0cc;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
        .event_detail .showings.add .label a:after,
        .event_detail .extra_links.add .label a:after {
          content: "";
          display: block;
          position: absolute;
          visibility: visible;
          top: 1px;
          right: 9px;
          font-family: FontAwesome;
          font-size: 22px;
          content: "\f107";
          color: #b29052;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
      .event_detail .showings.add .label:hover a, .event_detail .showings.add .label.active a,
      .event_detail .extra_links.add .label:hover a,
      .event_detail .extra_links.add .label.active a {
        color: #242424; }
        .event_detail .showings.add .label:hover a:before, .event_detail .showings.add .label.active a:before,
        .event_detail .extra_links.add .label:hover a:before,
        .event_detail .extra_links.add .label.active a:before {
          color: #242424; }
      .event_detail .showings.add .label.open a,
      .event_detail .extra_links.add .label.open a {
        color: #242424; }
        .event_detail .showings.add .label.open a:after,
        .event_detail .extra_links.add .label.open a:after {
          top: -2px;
          right: 11px; }
  .event_detail .faq {
    margin: 0;
    padding: 0; }
    .event_detail .faq dd p {
      padding-left: 25px; }
    .event_detail .faq dt.open p:before {
      color: #e9e0cc; }
  .event_detail .extra_links ul {
    margin-top: 0; }
    .event_detail .extra_links ul li {
      position: relative;
      padding-left: 25px; }
      .event_detail .extra_links ul li a {
        font-size: 12px;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
      .event_detail .extra_links ul li:before {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        width: 7px;
        height: 7px;
        top: 7px;
        left: 0;
        background-color: #e8be69; }
  .event_detail .share-holder {
    position: relative;
    border-top: 1px solid #f4efe5;
    margin-top: 20px;
    padding-top: 20px;
    overflow: hidden; }
    .event_detail .share-holder a:before {
      display: none; }
    .event_detail .share-holder a.at300b .at4-icon,
    .event_detail .share-holder a.at300m .at4-icon,
    .event_detail .share-holder a.at300b .at4-icon,
    .event_detail .share-holder a.at300m .at4-icon,
    .event_detail .share-holder a.at300b .at4-icon,
    .event_detail .share-holder a.at300m .at4-icon,
    .event_detail .share-holder .addthis_toolbox a.at300b,
    .event_detail .share-holder .addthis_toolbox a.at300m {
      background-color: #e9e0cc !important;
      margin-right: 2px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
      .event_detail .share-holder a.at300b .at4-icon:hover,
      .event_detail .share-holder a.at300m .at4-icon:hover,
      .event_detail .share-holder a.at300b .at4-icon:hover,
      .event_detail .share-holder a.at300m .at4-icon:hover,
      .event_detail .share-holder a.at300b .at4-icon:hover,
      .event_detail .share-holder a.at300m .at4-icon:hover,
      .event_detail .share-holder .addthis_toolbox a.at300b:hover,
      .event_detail .share-holder .addthis_toolbox a.at300m:hover {
        background-color: #e8be69 !important; }
    .event_detail .share-holder .addthis_32x32_style .at4-icon, .event_detail .share-holder .addthis_32x32_white_style .at4-icon, .event_detail .share-holder .at-32x32 {
      background-size: 27px !important;
      background-position: 4px 3px !important; }
    .event_detail .share-holder .at4-icon.aticon-facebook {
      background-size: 22px !important;
      background-position: 3px 3px !important; }
    .event_detail .share-holder .addthis_counter.addthis_bubble_style {
      display: none !important; }
  @media screen and (max-width: 820px) {
    .event_detail.one_sidebar_right #column_2 .large-spotpromos {
      float: right;
      width: 45%;
      margin-right: 5%; } }

.cms p a.button,
.textarea p a.button {
  color: #b29052;
  padding: 8px 20px;
  background: #e9e0cc;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif; }
  .cms p a.button a, .cms p a.button span,
  .textarea p a.button a,
  .textarea p a.button span {
    display: block;
    width: auto;
    margin: 0;
    padding: 2px 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: #e8be69;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .cms p a.button a:hover,
  .textarea p a.button a:hover {
    text-decoration: none;
    color: #e9e0cc; }
  .cms p a.button:hover,
  .textarea p a.button:hover {
    background: #e8be69;
    color: white; }

.buttons {
  position: relative; }
  .buttons a, .buttons span {
    display: block;
    width: auto;
    margin: 0;
    padding: 2px 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: #e8be69;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .buttons a:hover {
    text-decoration: none;
    color: #e9e0cc; }
  .buttons a, .buttons span {
    position: relative;
    z-index: 6; }
    .buttons a.tickets, .buttons span.tickets {
      padding-right: 72px; }
      .buttons a.tickets:after, .buttons span.tickets:after {
        content: "";
        display: block;
        position: absolute;
        visibility: visible;
        top: -23px;
        right: 0;
        width: 56px;
        height: 56px;
        background: transparent url('../images/ticket-ico.png?1506351497') no-repeat center center;
        border: 3px solid #e8be69;
        border-radius: 100px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        z-index: 5; }
    .buttons a.more, .buttons span.more {
      padding-right: 43px; }
  .buttons a.tickets:hover:after {
    background-image: url('../images/ticket-over.png?1506351497');
    border-color: #e9e0cc; }
  .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: "Open Sans", sans-serif;
    font-style: italic;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    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: "Open Sans", sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #666666;
      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"; }
    @media screen and (max-width: 600px) {
      .paging .pages {
        display: none; } }
    .paging .pages strong {
      color: #fff;
      text-decoration: none; }
  .paging.final {
    width: 100%;
    height: 54px;
    background-color: #717171;
    margin: 0px;
    padding: 20px 20px 0; }
    .paging.final .pages {
      position: relative;
      top: auto;
      right: -22px; }
      @media screen and (max-width: 600px) {
        .paging.final .pages {
          display: block;
          float: left;
          right: auto;
          left: 33px; } }

.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: #242424; }
      .seating .seating_charts .entry.alt {
        float: right; }
    .seating .seating_charts .thumb {
      display: block;
      position: relative;
      width: 100%;
      height: 270px;
      margin: 0;
      padding: 2px;
      text-align: center;
      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%;
          margin-top: 0; }
    .seating .seating_charts .info {
      display: block;
      position: relative;
      width: 100%;
      height: 75px;
      margin: 0px;
      padding: 10px 12px; }
    .seating .seating_charts .title {
      position: relative;
      width: auto;
      height: 16px;
      padding: 0;
      font-family: "Montserrat", sans-serif;
      font-size: 14px;
      text-transform: uppercase;
      overflow: hidden; }
      .seating .seating_charts .title a {
        display: block;
        width: auto;
        height: auto;
        color: #e9e0cc;
        text-decoration: none;
        text-align: center;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .seating .seating_charts .title a:hover {
          color: #e8be69; }
    .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: #e8be69;
        font-size: 12px;
        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 #555555; }
        .seating .seating_charts .links a:hover, .seating .seating_charts .links a:focus {
          text-decoration: none;
          color: #b29052; }

/**
 * 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: #717171; }
  .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 {
    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 {
        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 "Open Sans", 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;
  margin: 20px auto; }
  .news_list .overview {
    border-bottom: 1px solid #f4efe5;
    margin: 18px 0;
    padding: 0; }
  .news_list .links {
    position: absolute;
    top: -50px;
    right: 0; }
    @media screen and (max-width: 600px) {
      .news_list .links {
        display: none; } }
    .news_list .links a, .news_list .links span {
      display: block;
      width: auto;
      margin: 0;
      padding: 2px 0;
      text-align: center;
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      font-weight: 700;
      line-height: 120%;
      letter-spacing: 0.35rem;
      text-transform: uppercase;
      color: #e8be69;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear; }
    .news_list .links a:hover {
      text-decoration: none;
      color: #e9e0cc; }
    .news_list .links a {
      float: left;
      margin-left: 20px; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    position: relative;
    border-top: 1px solid #f4efe5;
    padding: 15px 10px; }
    .news_list .entry:first-child {
      border-top: 0; }
      .news_list .entry:first-child .info {
        margin-top: 0; }
      .news_list .entry:first-child .buttons {
        top: 21px; }
    .news_list .entry .info {
      margin-top: 10px; }
      .news_list .entry .info h3 {
        margin: 0 0 3px;
        padding-right: 120px; }
        .news_list .entry .info h3 a {
          font-family: "Montserrat", sans-serif;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none;
          font-weight: 400;
          color: #333;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .news_list .entry .info h3 a:hover {
            color: #e8be69; }
        @media screen and (max-width: 600px) {
          .news_list .entry .info h3 {
            padding-right: 0; } }
      .news_list .entry .info h4 {
        margin: 0 0 3px;
        font-size: 12px; }
      .news_list .entry .info p {
        font-size: 13px; }
    .news_list .entry .buttons {
      position: absolute;
      top: 31px;
      right: 0;
      *zoom: 1; }
      .news_list .entry .buttons:before, .news_list .entry .buttons:after {
        content: "\0020";
        display: table; }
      .news_list .entry .buttons:after {
        clear: both; }
      .news_list .entry .buttons a.more {
        padding: 0; }
      @media screen and (max-width: 600px) {
        .news_list .entry .buttons {
          position: relative;
          top: auto !important; } }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .spotlight_image {
    position: relative;
    width: 100%;
    height: auto; }
    .news_detail .spotlight_image:before {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      top: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(rgba(125, 185, 232, 0)));
      background: -webkit-linear-gradient(top, #111111 0%, rgba(125, 185, 232, 0) 100%);
      background: linear-gradient(to bottom, #111111 0%, rgba(125, 185, 232, 0) 100%);
      /* W3C */
      z-index: 100; }
    .news_detail .spotlight_image:after {
      content: "";
      display: block;
      position: absolute;
      visibility: visible;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 77px;
      background-color: #111;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), to(#000111));
      background: -webkit-linear-gradient(top, rgba(17, 17, 17, 0) 0%, #000111 100%);
      background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #000111 100%);
      z-index: 100; }
    .news_detail .spotlight_image .rsDefault {
      width: 100%;
      height: auto; }
      .news_detail .spotlight_image .rsDefault img {
        width: 100%;
        height: auto; }
    @media screen and (max-width: 600px) {
      .news_detail .spotlight_image {
        height: auto; } }
  .news_detail .overview {
    position: relative;
    border: none;
    margin-top: 30px; }
    .news_detail .overview span.date {
      display: block;
      margin-bottom: 10px;
      font-family: "Montserrat", sans-serif;
      font-weight: 500; }
  .news_detail .viewall {
    position: absolute;
    top: -6px;
    right: 30px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase; }
  .news_detail .body {
    margin: 0 0 5px; }
  .news_detail .thumb {
    float: left;
    width: 275px;
    height: 275px;
    margin: 2px 15px 10px 0; }
    .news_detail .thumb img {
      width: 100%;
      height: 100%;
      padding: 0px; }
  .news_detail .link {
    margin: 0;
    padding: 0; }
    .news_detail .link a.pdf {
      display: inline-block; }
  .news_detail .share_bar {
    display: none; }
  .news_detail .event_list {
    display: block;
    margin: 30px 35px -1px;
    clear: both; }
    .news_detail .event_list .entry {
      width: 100%; }
    .news_detail .event_list .thumb {
      float: left;
      width: 161px;
      width: 16%;
      height: auto;
      margin: 0; }
      .news_detail .event_list .thumb a {
        display: block;
        width: 100%;
        height: auto;
        opacity: 1;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -webkit-transition: opacity 0.3s ease-in-out; }
        .news_detail .event_list .thumb a:hover {
          opacity: 0.70; }
        .news_detail .event_list .thumb a img {
          width: 100%;
          height: auto;
          padding: 0; }
    .news_detail .event_list .info {
      position: relative;
      float: right;
      width: 80%;
      float: left;
      margin-left: 4%;
      padding: 0; }
      .news_detail .event_list .info h3 {
        width: 100%;
        margin: 0;
        padding: 0;
        font-size: 18px;
        font-weight: 400; }
        .news_detail .event_list .info h3 a {
          font-family: "Montserrat", sans-serif;
          line-height: 120%;
          text-transform: uppercase;
          text-decoration: none;
          font-weight: 400;
          color: #333;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
          .news_detail .event_list .info h3 a:hover {
            color: #e8be69; }
      .news_detail .event_list .info h4 {
        display: none; }
      .news_detail .event_list .info .buttons {
        position: absolute;
        top: 60%;
        right: 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%;
  max-width: 1080px;
  height: 536px;
  margin: 55px auto 0; }
  .map_holder .map {
    width: 100%;
    height: 100%; }
  @media screen and (max-width: 600px) {
    .map_holder {
      height: 350px; } }

.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: #b29052;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 6px 5px;
      color: #fff;
      border: 0;
      border-radius: 3px; }
      .map_window .directions form button:hover {
        background-color: #e8be69; }
  .map_window .links {
    display: none; }

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

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  margin: 20px auto 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  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 ul {
    margin: 0; }
    .sitemap ul .main-list {
      margin-bottom: 30px;
      padding: 0;
      color: #b29052; }
      .sitemap ul .main-list:before {
        display: none; }
    .sitemap ul a:hover {
      text-decoration: none; }
    .sitemap ul a.top-level {
      display: inline-block;
      font-family: "Oswald", sans-serif;
      font-size: 17px;
      line-height: 25px;
      text-transform: uppercase;
      color: #666666; }
    .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 {
  margin: 20px 55px;
  padding: 20px 0; }
  @media screen and (max-width: 820px) {
    .concierge_listing {
      margin: 20px; } }
  .concierge_listing .entry {
    position: relative;
    min-height: 175px;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid #dad8d4;
    *zoom: 1; }
    .concierge_listing .entry:before, .concierge_listing .entry:after {
      content: "\0020";
      display: table; }
    .concierge_listing .entry:after {
      clear: both; }
    .concierge_listing .entry .thumb {
      position: relative;
      float: left;
      width: 150px;
      height: 110px;
      padding: 4px 15px 25px 0;
      display: block;
      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:hover {
        opacity: 0.70; }
      .concierge_listing .entry .thumb img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 100%; }
    .concierge_listing .entry .info {
      position: relative;
      padding: 5px 180px 15px 0px; }
      @media screen and (max-width: 820px) {
        .concierge_listing .entry .info {
          padding-right: 0px; } }
      @media screen and (max-width: 600px) {
        .concierge_listing .entry .info {
          clear: left; } }
      .concierge_listing .entry .info h3 {
        margin: 0 0 5px; }
    .concierge_listing .entry .buttons {
      position: absolute;
      top: 8px;
      right: 0;
      width: 173px; }
      .concierge_listing .entry .buttons a.more,
      .concierge_listing .entry .buttons span.more-deets {
        width: 100%;
        background: #b29052;
        color: #fff;
        margin-bottom: 10px;
        padding: 10px;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
        .concierge_listing .entry .buttons a.more:hover,
        .concierge_listing .entry .buttons span.more-deets:hover {
          background-color: #e8be69; }
      .concierge_listing .entry .buttons span.more-deets {
        cursor: pointer; }
      @media screen and (max-width: 820px) {
        .concierge_listing .entry .buttons {
          position: relative;
          top: auto;
          right: auto;
          float: left;
          clear: left;
          width: 100%;
          margin: 20px 0px; }
          .concierge_listing .entry .buttons a.more,
          .concierge_listing .entry .buttons span.more-deets {
            max-width: 173px;
            float: left;
            margin-right: 10px; } }
    .concierge_listing .entry .address {
      display: block;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 500;
      line-height: 170%;
      text-transform: uppercase; }
    .concierge_listing .entry .description {
      display: none;
      margin-top: 1%;
      padding: 0 2% 0 0;
      clear: both;
      overflow: hidden; }
      .concierge_listing .entry .description p {
        line-height: 170%; }
      .concierge_listing .entry .description ul {
        position: relative; }
        .concierge_listing .entry .description ul li {
          position: relative;
          padding-left: 20px;
          font-size: 12px; }
          .concierge_listing .entry .description ul li:before {
            content: "";
            display: block;
            position: absolute;
            visibility: visible;
            top: 6px;
            left: 0;
            width: 6px;
            height: 6px;
            background-color: #e8be69; }

.teams_list {
  margin-top: 20px;
  padding: 30px 35px; }
  .teams_list .thumb {
    float: left;
    width: 161px;
    width: 16%;
    height: auto;
    margin: 0; }
    .teams_list .thumb a {
      display: block;
      width: 100%;
      height: auto;
      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; }
      .teams_list .thumb a:hover {
        opacity: 0.70; }
      .teams_list .thumb a img {
        width: 100%;
        height: auto;
        padding: 0; }
  .teams_list .info {
    position: relative;
    padding: 30px 0 0; }
  .teams_list .buttons {
    position: absolute;
    top: 34px;
    right: 0; }

.team_detail {
  margin-top: 25px;
  padding: 30px 35px; }
  .team_detail .event_list {
    float: left; }
  .team_detail .overview {
    margin: 0; }
    .team_detail .overview h1 {
      line-height: 100%; }
  .team_detail .description {
    margin: 0 0 15px; }
  .team_detail .thumb {
    float: left;
    margin: 0 15px 10px 0;
    padding: 0;
    width: 170px;
    height: auto; }
    .team_detail .thumb img {
      padding: 0;
      margin: 0;
      width: 170px;
      height: 130px;
      border: 2px solid #AAA; }
    .team_detail .thumb a.team_link, .team_detail .thumb a.team_link:link, .team_detail .thumb a.team_link:visited {
      display: block;
      font-size: 14px;
      text-transform: none;
      color: red;
      padding: 10px 0;
      text-align: center;
      text-decoration: none;
      font-weight: 700; }
      .team_detail .thumb a.team_link:hover, .team_detail .thumb a.team_link:link:hover, .team_detail .thumb a.team_link:visited:hover {
        color: black; }

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

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: '.'; }

/* display none until init */
.owl-carousel {
  position: relative;
  display: none;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  position: relative;
  display: none;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  position: relative;
  overflow: hidden;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent; }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden; }

.banners {
  margin: 20px 0;
  display: none; }
  @media screen and (max-width: 1024px) {
    .banners {
      padding: 0 20px;
      display: block; } }
  .event_detail #column_2 .banners {
    display: block; }
    @media screen and (max-width: 1024px) {
      .event_detail #column_2 .banners {
        display: none; } }
  .banners .owl_carousel {
    opacity: 0; }
  .banners .owl-buttons {
    display: none; }
  .banners .owl-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto; }
