@import url(https://fonts.googleapis.com/css?family=Judson:400,400i,700&display=swap|Muli);
@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" /> */
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/*
  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,
caption, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: none;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

/* END RESET CSS */
/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages
  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
select, input, textarea, button {
  font: 99% sans-serif;
}

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

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

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself.
h1,h2,h3,h4,h5,h6 { font-weight: bold; }*/
/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll;
}

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

ol {
  list-style-type: decimal;
}

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

small {
  font-size: 85%;
}

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, .home-slideshow .bckgrd {
  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: " ";
  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;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.user-is-tabbing *:focus {
  outline: auto;
}

/*
	Note: The "mobile-nav" breakpoint is only used to set when the regular 
	nav goes away and the mobile nav shows up.
	It can/might be the same as another breakpoint but 
	is just here to help you get started. 
*/
/*
	How To Use:
	@include media($mobile){
	}
*/
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Global site variables
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Media Queries
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
.hide {
  display: none;
}

/********** add-ons **************************************************/
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  line-height: 140%;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: italic;
  color: #660A0F;
}
h1 a, h1 a:link, h1 a:visited, h2 a, h2 a:link, h2 a:visited, h3 a, h3 a:link, h3 a:visited, h4 a, h4 a:link, h4 a:visited, h5 a, h5 a:link, h5 a:visited, h6 a, h6 a:link, h6 a:visited {
  text-decoration: none;
}

h1, h2, h3 {
  padding: 0;
  letter-spacing: 0.05em;
}
h1 a, h1 a:link, h1 a:visited, h2 a, h2 a:link, h2 a:visited, h3 a, h3 a:link, h3 a:visited {
  text-decoration: none;
}

h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 26px;
}

h3, .h3 {
  font-size: 20px;
}

h4, .h4 {
  font-size: 18px;
  letter-spacing: 1px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 17px;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: square;
  list-style-position: outside;
  list-style: none;
}
ul li, ol li {
  list-style-type: inherit;
}
ul ul, ol ul {
  margin: 0;
  padding: 0;
}

ol {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
hr {
  margin: 0 0 10px;
  padding: 0 0 10px;
  color: #b6b6b6;
  clear: both;
}

tr {
  font-size: 12px;
}
tr td, tr th {
  padding: 5px;
}

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

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Muli", sans-serif;
  font-size: 15px;
  color: #444;
  background-color: #f2f2f2;
}

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

#layout {
  position: relative;
  margin: 0 auto;
  padding: 0;
  padding: 156px 0 0;
}
@media screen and (max-width: 1000px) {
  #layout {
    padding: 55px 0 0;
  }
}

#news #layout,
#events.detail #layout {
  padding-top: 54px;
}
@media screen and (min-width: 1100px) {
  #news #layout,
  #events.detail #layout {
    padding-top: 242px;
  }
}

#events #layout {
  padding-top: 120px;
}
@media screen and (min-width: 1001px) {
  #events #layout {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1100px) {
  #events #layout {
    padding-top: 242px;
  }
}

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

.accessible {
  height: 0;
  width: 0;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
}

.accessibility_links.is-focused {
  position: fixed;
  z-index: 1500;
  width: 100% !important;
  height: auto !important;
  background: #1e1e1e;
  padding: 5px 0;
}
.accessibility_links.is-focused ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.accessibility_links.is-focused li {
  flex-grow: 0;
}
.accessibility_links.is-focused li:first-child {
  flex-grow: 1;
}
.accessibility_links.is-focused a {
  float: left;
  color: white;
  padding: 10px;
  font-weight: 700;
}

.one_sidebar_right {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.one_sidebar_right #column_1 {
  width: 100%;
  position: relative;
}
.one_sidebar_right #column_2 {
  position: absolute;
  right: 10px;
  top: 20px;
  background: #222;
  width: 300px;
}
.one_sidebar_right .leftColumn {
  width: calc(100% - 320px);
  max-width: 960px;
  background: #fff;
  float: right;
  padding: 20px;
}
@media screen and (max-width: 870px) {
  .one_sidebar_right .leftColumn {
    width: 100%;
    padding-top: 0px;
  }
}
@media screen and (max-width: 700px) {
  .one_sidebar_right .leftColumn {
    padding: 10px;
    padding-top: 0px;
  }
}
.one_sidebar_right .rightBreakout {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 306px;
  padding-bottom: 20px;
}
.one_sidebar_right .rightBreakout .buttonWrapper {
  display: none;
}
.one_sidebar_right .rightBreakout .sidebar-thumbnail {
  display: block;
}
.one_sidebar_right .rightBreakout .sidebar-thumbnail img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 870px) {
  .one_sidebar_right .rightBreakout {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 870px) {
  .one_sidebar_right {
    padding: 0;
    padding-top: 0;
  }
}

.full {
  width: 100%;
  padding-bottom: 90px;
}
.full .full_column.non-widget-area {
  width: 100%;
  max-width: 1024px;
  background: #fff;
  padding-bottom: 30px;
  padding-top: 20px;
  margin-top: 40px;
  *zoom: 1;
}
.full .full_column.non-widget-area:before, .full .full_column.non-widget-area:after {
  content: " ";
  display: table;
}
.full .full_column.non-widget-area:after {
  clear: both;
}
@media screen and (min-width: 1024px) {
  .full .full_column.non-widget-area {
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1084px) {
  .full .full_column.non-widget-area {
    padding: 30px;
  }
}
.full .full_column.non-widget-area.has_slideshow {
  padding-top: 0;
}
@media screen and (min-width: 1084px) {
  .full .full_column.non-widget-area.has_slideshow {
    padding: 30px;
  }
}
.full.news_listing_page .full_column.non-widget-area {
  background: none;
}
.full.event_listing_page .full_column.non-widget-area {
  max-width: none;
  background: none;
  padding: 0;
  background: none;
  margin-top: 0;
  padding: 0;
  max-width: 1280px;
}
.full .full .full_column.event_detail {
  width: 100%;
  background-color: transparent;
}
@media screen and (min-width: 700px) {
  .full .full .full_column.event_detail {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 1283px) {
  .full .full .full_column.event_detail {
    max-width: 1280px;
    padding-bottom: 45px;
  }
}

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

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

/* ----------------------------------------------------------------------------
= GENERAL CONTENT ITEMS - TOOLTIP
----------------------------------------------------------------------------- */
body > .tooltip {
  border: 2px solid #fff;
  background: #b8472f; /* Old browsers */
  background: -moz-linear-gradient(-45deg, #b8472f 0%, #a4365e 75%, #6f3263 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #b8472f), color-stop(75%, #a4365e), color-stop(100%, #6f3263)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #b8472f 0%, #a4365e 75%, #6f3263 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #b8472f 0%, #a4365e 75%, #6f3263 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #b8472f 0%, #a4365e 75%, #6f3263 100%); /* IE10+ */
  background: linear-gradient(-45deg, #b8472f 0%, #a4365e 75%, #6f3263 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b8472f", endColorstr="#6f3263",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  text-align: center;
  margin: 0;
  padding: 8px 10px;
  font: 600 11px/100% Arial, Helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
  z-index: 100000;
}
body > .tooltip:before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: -5px;
  left: 0;
}

.social-widgets .fbooks,
.social-widgets .tweets {
  margin: 0 0 20px;
  padding: 0;
}
@media screen and (max-width: 450px) {
  .social-widgets .fbooks,
  .social-widgets .tweets {
    width: 100%;
  }
  .social-widgets .fbooks {
    overflow: hidden;
  }
}
@media screen and (min-width: 900px) {
  .social-widgets .left {
    float: left;
    width: 50%;
  }
}

/* ----------------------------------------------------------------------------
= GENERAL CONTENT ITEMS - ERROR
----------------------------------------------------------------------------- */
.error {
  height: auto;
  background-color: #FFE603;
  border: 1px solid #FFE603;
  font-size: 12px;
  color: #000;
  padding: 4px 8px;
  width: auto;
  line-height: 12px;
  text-align: center;
  z-index: 999999;
  vertical-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 10px;
  border-radius: 5px;
}
.error p {
  color: #222;
  font-size: 12px;
  padding: 0;
  margin: 0;
}

#gnav {
  position: relative;
  height: 54px;
  background: #1e1e1e url("../images/pattern-medium-dark.jpg") repeat 0 -32px;
  border-bottom: 4px solid rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  #gnav {
    height: 105px;
    border-bottom: 0;
  }
  #gnav:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 5;
  }
  #gnav .wrap {
    position: relative;
    width: 100%;
    max-width: 1278px;
    margin: 0 auto;
  }
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
}
.logo a, .logo span {
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 54px;
  font-size: 25px;
  line-height: 54px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.logo .icon {
  position: absolute;
  top: 0px;
  left: 9px;
  width: 152px;
  height: 54px;
  fill: #e1c883;
}
@media screen and (min-width: 1100px) {
  .logo {
    display: inline-block;
    width: 30%;
    height: 62px;
    top: 20px;
  }
  .logo a, .logo span {
    top: 0;
    height: 62px;
    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;
  }
  .logo a:hover, .logo span:hover {
    opacity: 0.7;
  }
  .logo .icon {
    width: 262px;
    height: 62px;
  }
}

.search:not(body) {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 48px;
  background-color: #fff;
  margin: 0;
}
@media screen and (min-width: 1100px) {
  .search:not(body) {
    float: right;
    width: 371px;
    right: 0px;
    left: auto;
  }
}
.search:not(body) input, .search:not(body) input[type=text] {
  position: relative;
  display: block;
  width: 84%;
  height: 44px;
  border: 0px solid #ccc;
  margin: 3px 0 0 8px;
  padding: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  -webkit-appearance: none;
}
.search:not(body) input::-webkit-input-placeholder, .search:not(body) input[type=text]::-webkit-input-placeholder { /* WebKit browsers */
  color: #1e1e1e;
}
.search:not(body) input:-moz-placeholder, .search:not(body) input[type=text]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #1e1e1e;
}
.search:not(body) input::-moz-placeholder, .search:not(body) input[type=text]::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #1e1e1e;
}
.search:not(body) input:-ms-input-placeholder, .search:not(body) input[type=text]:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #1e1e1e;
}
.search:not(body) input:focus, .search:not(body) input[type=text]:focus {
  outline: none;
  -webkit-appearance: none;
}
.search:not(body) button {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 36px;
  height: 48px;
  background-color: #e1c883;
  border: none;
  margin: 0;
  padding: 0;
  z-index: 3;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .search:not(body) button {
    width: 48px;
  }
}
.search:not(body) .search-icon {
  position: absolute;
  top: 14px;
  left: 10px;
  width: 19px;
  height: 19px;
  fill: #1e1e1e;
  fill-rule: evenodd;
}
@media screen and (min-width: 1100px) {
  .search:not(body) .search-icon {
    left: 16px;
  }
}

.mobile-myaccount {
  position: absolute;
  top: 11px;
  right: 60px;
  height: 31px;
  line-height: 29px;
  display: inline-block;
  border: 1px solid #e1c883;
  color: #e1c883;
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-myaccount:hover {
  color: #1e1e1e;
  background: #e1c883;
}
@media screen and (min-width: 1100px) {
  .mobile-myaccount {
    display: none;
  }
}

/* mobile toolbar inside hidden nav */
.mholder .toolbar {
  display: block;
  background-color: #1e1e1e;
  padding-bottom: 80px;
}
@media screen and (min-width: 1100px) {
  .mholder .toolbar {
    display: none;
  }
}

#flexbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  z-index: 1000;
}
@media screen and (min-width: 1100px) {
  #flexbar {
    height: 156px;
  }
}

/* main toolbar styles */
.toolbar {
  display: none;
  clear: both;
  *zoom: 1;
}
.toolbar:before, .toolbar:after {
  content: " ";
  display: table;
}
.toolbar:after {
  clear: both;
}
.toolbar .wrap {
  margin: 0 2%;
}
@media screen and (min-width: 1100px) {
  .toolbar {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    height: 48px;
    background-color: #1e1e1e;
    z-index: 1005;
    transition: top 0.3s ease-in-out;
  }
  .toolbar .wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
}

.calmail,
.social {
  clear: both;
}
@media screen and (min-width: 1100px) {
  .calmail,
  .social {
    clear: none;
  }
}

.calmail {
  display: none;
  position: relative;
  float: right;
  right: 386px;
  margin-top: 2px;
  z-index: 5;
  *zoom: 1;
}
.calmail:before, .calmail:after {
  content: " ";
  display: table;
}
.calmail:after {
  clear: both;
}
@media screen and (min-width: 1100px) {
  .calmail {
    display: block;
    width: 38px;
    height: 48px;
  }
}
.calmail li {
  float: left;
  position: relative;
  width: 30px;
  height: 48px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.calmail .tbcal {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.calmail .tbcal:hover + .icon, .calmail .tbcal:focus + .icon {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  fill: #fff;
}
.calmail .icon {
  position: absolute;
  width: 24px;
  right: 0;
  fill: #e1c883;
  fill-rule: evenodd;
  z-index: 8;
}
.calmail .smcal-icon {
  height: 31px;
}
@media screen and (min-width: 1100px) {
  .calmail .smcal-icon {
    top: 5px;
  }
}

.tbsocial {
  position: relative;
  float: right;
  width: 100%;
  height: 70px;
  border-top: 1px solid #e1c883;
  margin: 20px auto 0;
  padding: 15px 0 0;
  z-index: 5;
  *zoom: 1;
  display: flex;
  justify-content: center;
}
.tbsocial:before, .tbsocial:after {
  content: " ";
  display: table;
}
.tbsocial:after {
  clear: both;
}
@media screen and (min-width: 1100px) {
  .tbsocial {
    float: left;
    width: 620px;
    height: 48px;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    display: block;
  }
}
.tbsocial li {
  float: left;
  position: relative;
  width: 33px;
  height: 70px;
  margin: 0 3% 0 1%;
}
.tbsocial li.tbwide {
  width: auto;
}
.tbsocial li.hide-mobile {
  display: none;
}
@media screen and (min-width: 1100px) {
  .tbsocial li {
    height: 48px;
    margin-left: 25px;
    margin-right: 0;
  }
  .tbsocial li.hide-mobile {
    display: block;
  }
}
.tbsocial li a {
  display: block;
  position: relative;
  width: 33px;
  height: 33px;
  background-color: transparent;
  border: 2px solid #e1c883;
  border-radius: 50% 50%;
  margin-top: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -9999em;
}
.tbsocial li a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: 400;
  color: #e1c883;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-indent: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tbsocial li a.fb:after {
  content: "\f09a";
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.fb:hover, .tbsocial li a.fb:focus {
    background-color: #e1c883;
  }
  .tbsocial li a.fb:hover:after, .tbsocial li a.fb:focus:after {
    color: #1e1e1e;
  }
}
.tbsocial li a.tw:after {
  content: "\e61b";
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.tw:hover, .tbsocial li a.tw:focus {
    background-color: #e1c883;
  }
  .tbsocial li a.tw:hover:after, .tbsocial li a.tw:focus:after {
    color: #1e1e1e;
  }
}
.tbsocial li a.gp:after {
  content: "\f0d5";
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.gp:hover, .tbsocial li a.gp:focus {
    background-color: #e1c883;
  }
  .tbsocial li a.gp:hover:after, .tbsocial li a.gp:focus:after {
    color: #1e1e1e;
  }
}
.tbsocial li a.ut:after {
  content: "\f167";
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.ut:hover, .tbsocial li a.ut:focus {
    background-color: #e1c883;
  }
  .tbsocial li a.ut:hover:after, .tbsocial li a.ut:focus:after {
    color: #1e1e1e;
  }
}
.tbsocial li a.ig:after {
  content: "\f16d";
  font-size: 19px;
  margin-top: -1px;
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.ig:hover, .tbsocial li a.ig:focus {
    background-color: #e1c883;
  }
  .tbsocial li a.ig:hover:after, .tbsocial li a.ig:focus:after {
    color: #1e1e1e;
  }
}
.tbsocial li a.tbemail, .tbsocial li a.tbmyaccount {
  border: 0;
  border-radius: 0%;
  margin-left: 6px;
  padding: 0 0 0 0px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 33px;
  width: auto;
  text-transform: uppercase;
  text-indent: 0;
  color: #e1c883;
  overflow: visible;
}
@media screen and (min-width: 1100px) {
  .tbsocial li a.tbemail, .tbsocial li a.tbmyaccount {
    border-left: 1px;
    border-style: solid;
    border-color: #e1c883;
    padding: 0 0 0 28px;
  }
  .tbsocial li a.tbemail:hover, .tbsocial li a.tbemail:focus, .tbsocial li a.tbmyaccount:hover, .tbsocial li a.tbmyaccount:focus {
    color: #fff;
  }
}
.tbsocial li a.tbemail:hover, .tbsocial li a.tbemail:focus, .tbsocial li a.tbmyaccount:hover, .tbsocial li a.tbmyaccount:focus {
  color: #fff;
}
.tbsocial li a.tbemail:after, .tbsocial li a.tbmyaccount:after {
  display: none;
}
.tbsocial li a.tbmyaccount {
  position: relative;
  padding: 0 15px;
  margin-left: 20px;
  border: 1px solid #e1c883;
}
.tbsocial li a.tbmyaccount:before {
  position: absolute;
  content: "";
  background-color: #e1c883;
  width: 1px;
  height: 33px;
  left: -23px;
  top: 0;
}
.tbsocial li a.tbmyaccount:hover {
  color: #1e1e1e;
  background: #e1c883;
}

/*
    Mobile first nav
    nav - controls
*/
#nav-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 54px;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
}
#nav-toggle span {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  height: 3px;
  width: 22px;
  background: #fff;
  margin-top: 0px;
  cursor: pointer;
  color: #fff;
  z-index: 3;
  transition: all 0.4s ease;
}
#nav-toggle span.top {
  top: 18px;
}
#nav-toggle span.mid, #nav-toggle span.mid2 {
  top: 25px;
}
#nav-toggle span.bottom {
  top: 32px;
}
#nav-toggle.active span.mid {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg);
}
#nav-toggle.active span.mid2 {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); /* IE 9 */
  -webkit-transform: rotate(-45deg);
}
#nav-toggle.active span.top, #nav-toggle.active span.bottom {
  opacity: 0;
}
#nav-toggle.goback span.mid {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg); /* IE 9 */
  -webkit-transform: rotate(0deg);
}
#nav-toggle.goback span.mid2 {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg); /* IE 9 */
  -webkit-transform: rotate(0deg);
}
#nav-toggle.goback span.top, #nav-toggle.goback span.bottom {
  opacity: 1;
}
@media screen and (min-width: 1100px) {
  #nav-toggle {
    display: none;
  }
}

/* Main Nav */
.mholder {
  display: none;
  position: relative;
  top: 54px;
  background-color: #1e1e1e;
  *zoom: 1;
  z-index: 1020;
}
.mholder:before, .mholder:after {
  content: " ";
  display: table;
}
.mholder:after {
  clear: both;
}
.mholder.is-opened {
  display: block;
}
@media screen and (min-width: 1100px) {
  .mholder {
    display: block;
    width: 80%;
    background-color: transparent;
    top: 0;
    height: 95px;
    float: right;
  }
}

nav {
  margin-top: 50px;
  *zoom: 1;
}
nav:before, nav:after {
  content: " ";
  display: table;
}
nav:after {
  clear: both;
}
@media screen and (min-width: 1100px) {
  nav {
    float: right;
    position: relative;
    height: 105px;
    right: -30px;
    margin-top: 0px;
  }
}
nav .main-nav {
  position: relative;
  top: 0;
  left: 0;
  padding: 12px 11px 6px;
  z-index: 1020;
}
@media screen and (min-width: 1100px) {
  nav .main-nav {
    top: auto;
    left: auto;
    padding: 0;
    display: table;
    height: 105px;
  }
}
nav .main-nav .close-button {
  display: none;
}
nav .main-nav .main-list {
  position: relative;
  margin: 0;
  padding: 0;
}
nav .main-nav .main-list .dotdotdot {
  display: none;
}
@media screen and (min-width: 410px) {
  nav .main-nav .main-list {
    padding: 0 6px;
  }
}
@media screen and (min-width: 1100px) {
  nav .main-nav .main-list {
    display: table-cell;
    height: 105px;
    margin: 0;
    padding: 0;
    *zoom: 1;
  }
  nav .main-nav .main-list:before, nav .main-nav .main-list:after {
    content: " ";
    display: table;
  }
  nav .main-nav .main-list:after {
    clear: both;
  }
  nav .main-nav .main-list.hover .main-link a, nav .main-nav .main-list.is-focused .main-link a {
    background-color: #440408;
  }
  nav .main-nav .main-list.hover .main-link a:before, nav .main-nav .main-list.is-focused .main-link a:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    bottom: 20px;
    left: calc(50% - 5px);
    width: 7px;
    height: 7px;
    border-radius: 50% 50%;
    background-color: #d3a62c;
  }
  nav .main-nav .main-list.hover .main-link a + .dotdotdot, nav .main-nav .main-list.is-focused .main-link a + .dotdotdot {
    display: block;
  }
  nav .main-nav .main-list.hover .main-link a + .dotdotdot:before, nav .main-nav .main-list.hover .main-link a + .dotdotdot:after, nav .main-nav .main-list.is-focused .main-link a + .dotdotdot:before, nav .main-nav .main-list.is-focused .main-link a + .dotdotdot:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    bottom: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50% 50%;
    background-color: #d3a62c;
  }
  nav .main-nav .main-list.hover .main-link a + .dotdotdot:before, nav .main-nav .main-list.is-focused .main-link a + .dotdotdot:before {
    left: calc(50% + 10px);
  }
  nav .main-nav .main-list.hover .main-link a + .dotdotdot:after, nav .main-nav .main-list.is-focused .main-link a + .dotdotdot:after {
    right: calc(50% + 13px);
  }
  nav .main-nav .main-list .main-link a.active {
    background-color: #440408;
  }
  nav .main-nav .main-list .main-link a.active:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    bottom: 20px;
    left: calc(50% - 5px);
    width: 7px;
    height: 7px;
    border-radius: 50% 50%;
    background-color: #d3a62c;
  }
  nav .main-nav .main-list .main-link a.active + .dotdotdot {
    display: block;
  }
  nav .main-nav .main-list .main-link a.active + .dotdotdot:before, nav .main-nav .main-list .main-link a.active + .dotdotdot:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    bottom: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50% 50%;
    background-color: #d3a62c;
  }
  nav .main-nav .main-list .main-link a.active + .dotdotdot:before {
    left: calc(50% + 10px);
  }
  nav .main-nav .main-list .main-link a.active + .dotdotdot:after {
    right: calc(50% + 13px);
  }
}
nav .main-nav .main-list .main-link .togglesubnav {
  display: none;
}
@media screen and (min-width: 500px) {
  nav .main-nav .main-list .main-link {
    margin: 0 12px 0 0;
  }
}
@media screen and (min-width: 1100px) {
  nav .main-nav .main-list .main-link {
    display: table-cell;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0px;
  }
  nav .main-nav .main-list .main-link a {
    background-color: transparent;
    line-height: 105px;
    padding: 0 20px;
    text-transform: uppercase;
  }
  nav .main-nav .main-list .main-link a:hover, nav .main-nav .main-list .main-link a:focus, nav .main-nav .main-list .main-link a.hover, nav .main-nav .main-list .main-link a.active {
    background-color: #440408;
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  nav .main-nav .main-list .main-link a {
    padding: 0 30px;
  }
}
nav .main-nav .main-list.has-sub .main-link .togglesubnav {
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  right: 5px;
  width: 30px;
  height: 40px;
  padding-left: 40px;
  cursor: pointer;
  overflow: hidden;
}
nav .main-nav .main-list.has-sub .main-link .togglesubnav:before {
  display: block;
  position: absolute;
  top: 2px;
  right: 12px;
  width: 5px;
  height: 5px;
  font-size: 28px;
  color: #fff;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
nav .main-nav .main-list.has-sub .main-link .togglesubnav:before {
  opacity: 1;
  content: "+";
}
nav .main-nav .main-list.has-sub .main-link .togglesubnav:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 20px;
  right: 1px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  opacity: 0;
}
@media screen and (min-width: 1100px) {
  nav .main-nav .main-list.has-sub .main-link .togglesubnav:before, nav .main-nav .main-list.has-sub .main-link .togglesubnav:after {
    display: none;
  }
}
nav .main-nav .main-list.has-sub.hover .main-link .togglesubnav, nav .main-nav .main-list.has-sub.is-focused .main-link .togglesubnav {
  color: #d3a62c;
}
nav .main-nav .main-list.has-sub.hover .main-link .togglesubnav:before, nav .main-nav .main-list.has-sub.is-focused .main-link .togglesubnav:before {
  color: #d3a62c;
  opacity: 0;
}
nav .main-nav .main-list.has-sub.hover .main-link .togglesubnav:after, nav .main-nav .main-list.has-sub.is-focused .main-link .togglesubnav:after {
  background-color: #d3a62c;
  opacity: 1;
}
@media screen and (min-width: 1100px) {
  nav .main-nav .main-list.has-sub.hover .main-link .togglesubnav:before, nav .main-nav .main-list.has-sub.hover .main-link .togglesubnav:after, nav .main-nav .main-list.has-sub.is-focused .main-link .togglesubnav:before, nav .main-nav .main-list.has-sub.is-focused .main-link .togglesubnav:after {
    display: none;
  }
}
nav .main-nav .main-list a {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
nav .main-nav .main-list a:hover, nav .main-nav .main-list a:focus, nav .main-nav .main-list a.active {
  color: #d3a62c;
}
@media screen and (min-width: 1100px) {
  nav .main-nav .main-list a {
    display: block;
    width: 100%;
    font-weight: 600;
    letter-spacing: 2px;
  }
}
nav .navpromo {
  display: none;
}
nav .sub,
nav .sub2 {
  display: none;
  margin-left: 15px;
}
@media screen and (min-width: 1100px) {
  nav .sub,
  nav .sub2 {
    display: none;
    position: absolute;
    width: auto;
    min-width: 330px;
    left: 0;
    margin: 0;
    padding: 5px;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (min-width: 1100px) {
  nav .sub {
    left: auto;
    right: -30px;
    padding: 16px 24px 0;
  }
}
nav .sub2 {
  display: block;
  background-color: transparent;
}
@media screen and (min-width: 1100px) {
  nav .sub2 {
    position: relative;
    margin-left: 5px;
  }
}
nav .dropdown-nav {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  nav .dropdown-nav {
    float: left;
    background: none;
    width: auto;
    height: auto;
    border: none;
    border-top: none;
    margin: 0;
    padding: 20px 0;
  }
}
@media screen and (min-width: 1100px) {
  nav .dropdown-nav .dropdown-list {
    padding: 0 10px 6px;
  }
}
nav .dropdown-nav .dropdown-list a {
  position: relative;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
nav .dropdown-nav .dropdown-list a[rel=external] {
  padding-left: 25px;
}
nav .dropdown-nav .dropdown-list a[rel=external]:after {
  content: "\f08e";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  font-family: "FontAwesome";
  font-size: 15px;
  font-style: normal;
  color: #fff;
  visibility: visible;
}
@media screen and (min-width: 1100px) {
  nav .dropdown-nav .dropdown-list a {
    color: #fff;
  }
}
nav .dropdown-nav .dropdown-list .sub2-list a {
  padding-left: 2px;
  font-size: 12px;
  text-transform: capitalize;
}
nav .dropdown-nav .dropdown-list .sub2-list a[rel=external] {
  padding-left: 25px;
}

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  background-color: black;
  background-image: url("../images/footer-background-image.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: contain;
}
@media screen and (min-width: 940px) {
  footer, .footer {
    background-size: cover;
  }
}
footer a, .footer a {
  color: #e1c883;
}
footer .footer_holder, .footer .footer_holder {
  position: relative;
  overflow: hidden;
}
footer .venueinfo, .footer .venueinfo {
  display: table;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 40px auto 0;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 940px) {
  footer .venueinfo, .footer .venueinfo {
    width: 100%;
    max-width: 940px;
    font-size: 13px;
    padding: 5px 0 0 50px;
    *zoom: 1;
  }
  footer .venueinfo:before, footer .venueinfo:after, .footer .venueinfo:before, .footer .venueinfo:after {
    content: " ";
    display: table;
  }
  footer .venueinfo:after, .footer .venueinfo:after {
    clear: both;
  }
  footer .venueinfo .details, .footer .venueinfo .details {
    float: left;
    width: 425px;
    height: 100%;
    margin-top: 55px;
    padding-left: 40px;
    text-align: left;
  }
  footer .venueinfo .details.curtain_call, .footer .venueinfo .details.curtain_call {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1100px) {
  footer .venueinfo, .footer .venueinfo {
    margin-top: 180px;
  }
}
footer .venueinfo .icon, .footer .venueinfo .icon {
  display: block;
  width: 151px;
  height: 165px;
  fill: #e1c883;
  margin: 30px auto 50px;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .icon, .footer .venueinfo .icon {
    float: left;
  }
}
footer .venueinfo .title, .footer .venueinfo .title {
  display: block;
  margin-bottom: 10px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
footer .venueinfo .title:hover, .footer .venueinfo .title:hover {
  opacity: 0.8;
}
footer .venueinfo .title a, .footer .venueinfo .title a {
  display: block;
  font-family: "Judson", serif;
  font-size: 30px;
  font-style: italic;
  line-height: 110%;
  color: #e1c883;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .title a, .footer .venueinfo .title a {
    text-align: left;
  }
}
footer .venueinfo .street-address, .footer .venueinfo .street-address {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
footer .venueinfo .city-name,
footer .venueinfo .state-name,
footer .venueinfo .postal-code, .footer .venueinfo .city-name,
.footer .venueinfo .state-name,
.footer .venueinfo .postal-code {
  display: inline-block;
  padding-right: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .city-name,
  footer .venueinfo .state-name,
  footer .venueinfo .postal-code, .footer .venueinfo .city-name,
  .footer .venueinfo .state-name,
  .footer .venueinfo .postal-code {
    display: inline;
  }
}
footer .venueinfo .city-name, .footer .venueinfo .city-name {
  position: relative;
}
footer .venueinfo .city-name:after, .footer .venueinfo .city-name:after {
  content: ",";
  display: inline-block;
  position: relative;
  top: 0;
  left: 1px;
  width: 2px;
  font-size: 13px;
  color: #fff;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .extras, .footer .venueinfo .extras {
    margin-top: 12px;
  }
}
footer .venueinfo .phone,
footer .venueinfo .email, .footer .venueinfo .phone,
.footer .venueinfo .email {
  display: block;
  margin-top: 10px;
  letter-spacing: 1px;
}
footer .venueinfo .phone a,
footer .venueinfo .email a, .footer .venueinfo .phone a,
.footer .venueinfo .email a {
  text-decoration: underline;
}
footer .venueinfo .phone a:hover,
footer .venueinfo .email a:hover, .footer .venueinfo .phone a:hover,
.footer .venueinfo .email a:hover {
  text-decoration: none;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .phone,
  footer .venueinfo .email, .footer .venueinfo .phone,
  .footer .venueinfo .email {
    margin-top: 6px;
  }
}
footer .venueinfo .phone b,
footer .venueinfo .email b, .footer .venueinfo .phone b,
.footer .venueinfo .email b {
  display: block;
  font-family: "Judson", serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 2px;
}
@media screen and (min-width: 940px) {
  footer .venueinfo .phone b,
  footer .venueinfo .email b, .footer .venueinfo .phone b,
  .footer .venueinfo .email b {
    display: inline;
  }
}
@media screen and (min-width: 940px) {
  footer .venueinfo .phone b, .footer .venueinfo .phone b {
    margin-right: 15px;
  }
}
@media screen and (min-width: 940px) {
  footer .venueinfo .email b, .footer .venueinfo .email b {
    margin-right: 19px;
  }
}
footer .partner.banner, .footer .partner.banner {
  position: relative;
  width: 100%;
  margin: 35px 0 0;
  padding-top: 25px;
}
@media screen and (min-width: 940px) {
  footer .partner.banner, .footer .partner.banner {
    float: left;
    width: 314px;
    padding-top: 0;
  }
}
footer .partner.banner:before, .footer .partner.banner:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  width: 165px;
  height: 1px;
  background-color: #e1c883;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 940px) {
  footer .partner.banner:before, .footer .partner.banner:before {
    left: 0;
    height: 163px;
    width: 1px;
    transform: translateX(0%);
  }
}
footer .partner.banner .title, .footer .partner.banner .title {
  margin: 2px 0 15px;
  line-height: 210%;
  font-family: "Muli", sans-serif;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 30px;
}
footer .partner.banner .list, .footer .partner.banner .list {
  width: 100%;
  margin-top: 33px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 939px) {
  footer .partner.banner .list, .footer .partner.banner .list {
    margin-top: 10px;
  }
}
footer .partner.banner .client, .footer .partner.banner .client {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 0;
}
footer .partner.banner .client a, .footer .partner.banner .client a {
  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 .partner.banner .client a:hover, .footer .partner.banner .client a:hover {
  opacity: 0.7;
}
footer .global_footer, .footer .global_footer {
  position: relative;
  width: 100%;
  margin: 30px 0 0;
  padding: 0 0 0px;
  background-color: #660A0F;
  z-index: 1;
  *zoom: 1;
}
footer .global_footer:before, footer .global_footer:after, .footer .global_footer:before, .footer .global_footer:after {
  content: " ";
  display: table;
}
footer .global_footer:after, .footer .global_footer:after {
  clear: both;
}
@media screen and (min-width: 940px) {
  footer .global_footer, .footer .global_footer {
    margin: 0;
  }
}
@media screen and (min-width: 1300px) {
  footer .global_footer, .footer .global_footer {
    min-height: 51px;
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  footer .global_footer .wrap, .footer .global_footer .wrap {
    max-width: 1280px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1300px) {
  footer .global_footer, .footer .global_footer {
    text-align: center;
  }
}
footer .global_footer p, .footer .global_footer p {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  footer .global_footer p, .footer .global_footer p {
    width: auto;
  }
}
footer .global_footer p.cy, .footer .global_footer p.cy {
  margin-top: 30px;
  font-size: 11px;
  line-height: 200%;
  letter-spacing: 1px;
  color: #e1c883;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  footer .global_footer p.cy, .footer .global_footer p.cy {
    float: left;
    margin-top: 0;
    margin-left: 50px;
    line-height: 50px;
  }
}
footer .global_footer p.cy a, .footer .global_footer p.cy a {
  border-left: 1px solid #e1c883;
  margin-left: 4px;
  padding-left: 8px;
  color: #e1c883;
}
footer .global_footer p.cy a:hover, .footer .global_footer p.cy a:hover {
  text-decoration: underline;
}
footer p.ch, .footer p.ch {
  width: 100%;
  margin: 30px 0 0;
  padding-bottom: 10px;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 1300px) {
  footer p.ch, .footer p.ch {
    float: right;
    width: auto;
    padding: 0;
    margin-top: 0;
    margin-right: 50px;
    line-height: 50px;
  }
}
footer p.ch a#carbonhouse,
footer p.ch a#carbonhouse:link,
footer p.ch a#carbonhouse:visited, .footer p.ch a#carbonhouse,
.footer p.ch a#carbonhouse:link,
.footer p.ch a#carbonhouse:visited {
  display: block;
  position: relative;
  margin: 0;
  font-size: 13px;
  font-family: "helvetica";
  color: #e1c883;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
footer p.ch a#carbonhouse span,
footer p.ch a#carbonhouse:link span,
footer p.ch a#carbonhouse:visited span, .footer p.ch a#carbonhouse span,
.footer p.ch a#carbonhouse:link span,
.footer p.ch a#carbonhouse:visited span {
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
footer p.ch a#carbonhouse span.carbon,
footer p.ch a#carbonhouse:link span.carbon,
footer p.ch a#carbonhouse:visited span.carbon, .footer p.ch a#carbonhouse span.carbon,
.footer p.ch a#carbonhouse:link span.carbon,
.footer p.ch a#carbonhouse:visited span.carbon {
  margin-left: 2px;
  color: #e1c883;
}
footer p.ch a#carbonhouse span.house,
footer p.ch a#carbonhouse:link span.house,
footer p.ch a#carbonhouse:visited span.house, .footer p.ch a#carbonhouse span.house,
.footer p.ch a#carbonhouse:link span.house,
.footer p.ch a#carbonhouse:visited span.house {
  margin-right: 2px;
  color: #e1c883;
}
footer p.ch a#carbonhouse:hover,
footer p.ch a#carbonhouse:link:hover,
footer p.ch a#carbonhouse:visited:hover, .footer p.ch a#carbonhouse:hover,
.footer p.ch a#carbonhouse:link:hover,
.footer p.ch a#carbonhouse:visited:hover {
  text-decoration: none;
  color: #ffffff;
}
footer p.ch a#carbonhouse:hover span,
footer p.ch a#carbonhouse:link:hover span,
footer p.ch a#carbonhouse:visited:hover span, .footer p.ch a#carbonhouse:hover span,
.footer p.ch a#carbonhouse:link:hover span,
.footer p.ch a#carbonhouse:visited:hover span {
  color: #ffffff;
}

/* Intro Section */
.intro {
  position: relative;
  height: 3000px;
  width: 100%;
  display: block;
  background: black;
  float: left;
  z-index: 10;
}
.intro .intro_inner {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}
.intro .intro_media {
  position: absolute;
  top: 0px;
  left: 0px;
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s linear;
  -moz-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
  height: 100%;
  width: 100%;
  display: block;
  background: url(../images/bg_intro.jpg) top center no-repeat;
  background-size: cover;
}
.intro .intro_media.loaded {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
.intro .scrolldown {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 61px;
  height: 61px;
  transform: translateX(-50%);
  color: #ffffff;
  display: block;
  background: transparent url("../images/moreevents.svg") no-repeat 0 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.intro .scrolldown:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 54%;
  left: calc(50% - 10px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.intro .scrolldown:hover:before, .intro .scrolldown:focus:before {
  border-top: 12px solid #1e1e1e;
}

/* homepage items */
@media screen and (min-width: 1160px) {
  .home header + #content .full_column {
    margin-top: 0;
  }
}
.home .full {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.home .full .full_column {
  width: 100%;
  max-width: 100%;
  padding: 0 0 10px;
  background: none;
  filter: none;
}
.home #branding {
  display: block;
  position: relative;
  width: 100%;
}
.home #branding-mobile {
  position: relative;
  width: 100%;
}
.home #flexbar.tb-up, .home #flexbar.tb-down {
  position: fixed;
}
.home #layout {
  padding-top: 0;
}
.home #content .full_column {
  margin-top: 0;
}

/* alert bar styles */
.alert-bar {
  position: relative;
  width: 100%;
  height: 0;
  background-color: #f2ce6d;
  z-index: 200;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  *zoom: 1;
}
.alert-bar:before, .alert-bar:after {
  content: " ";
  display: table;
}
.alert-bar:after {
  clear: both;
}
.alert-bar:empty {
  height: 0;
}
.alert-bar.active {
  height: 273px;
}
.alert-bar.active:empty {
  height: 0;
}
@media screen and (min-width: 950px) {
  .alert-bar.active {
    height: 100px;
  }
  .alert-bar.active:empty {
    height: 0;
  }
}
@media screen and (min-width: 950px) {
  .alert-bar .callto,
  .alert-bar .alert-content {
    float: left;
  }
}
.alert-bar .callto {
  position: relative;
  width: 100%;
  background-color: #e0b02f;
  font-size: 32px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  z-index: 1002;
}
@media screen and (min-width: 950px) {
  .alert-bar .callto {
    width: 284px;
    padding: 0 34px;
    line-height: 104px;
  }
}
.alert-bar .alert-content {
  margin: 0 auto;
  z-index: 1001;
}
@media screen and (min-width: 950px) {
  .alert-bar .alert-content {
    width: 50%;
    margin: 10px 0 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  .alert-bar .alert-content {
    width: 40%;
  }
}
@media screen and (min-width: 1120px) {
  .alert-bar .alert-content {
    width: 43%;
  }
}
@media screen and (min-width: 1220px) {
  .alert-bar .alert-content {
    margin-top: 27px;
    width: 50%;
  }
}
@media screen and (min-width: 1350px) {
  .alert-bar .alert-content {
    width: 55%;
  }
}
.alert-bar .alert-content p {
  max-width: 250px;
  margin: 10px auto 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e1e1e;
  text-align: center;
}
@media screen and (min-width: 950px) {
  .alert-bar .alert-content p {
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .alert-bar .alert-content p {
    max-width: 100%;
  }
}
.alert-bar .alert-title {
  margin-bottom: -5px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #1e1e1e;
  text-align: center;
  line-height: 26px;
}
@media screen and (min-width: 950px) {
  .alert-bar .alert-title {
    text-align: left;
  }
}
.alert-bar .buttons {
  position: absolute;
  width: 100%;
  height: 54px;
}
@media screen and (min-width: 950px) {
  .alert-bar .buttons {
    bottom: auto;
    right: 150px;
    width: 113px;
    height: 100%;
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .alert-bar .buttons {
    right: 165px;
  }
}
.alert-bar .buttons a {
  display: block;
  position: relative;
  width: 184px;
  min-height: 40px;
  background-color: #660a0f;
  top: 36px;
  border-top: 0;
  border-bottom: 0;
  margin: -2px auto 15px;
  padding: 8px 25px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  visibility: visible;
  -webkit-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
}
.alert-bar .buttons a:hover, .alert-bar .buttons a:focus {
  padding-top: 8px;
  padding-bottom: 8px;
  border: 0;
}
.alert-bar .buttons a:before, .alert-bar .buttons a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 0px;
}
.alert-bar .buttons a:before {
  left: -20px;
  background-position: 0 0px;
}
.alert-bar .buttons a:after {
  right: -20px;
  transform: rotate(-180deg);
}
.alert-bar .buttons a:hover, .alert-bar .buttons a:focus {
  background-color: #d3a62c;
  color: #fff;
}
.alert-bar .buttons a:hover:before, .alert-bar .buttons a:hover:after, .alert-bar .buttons a:focus:before, .alert-bar .buttons a:focus:after {
  background-position: 0 -110px;
}
.alert-bar .buttons a:hover:after, .alert-bar .buttons a:focus:after {
  top: 0;
}
.alert-bar .close-alert-bar {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  width: 55px;
  height: 68px;
  background-color: #e0b02f;
  text-indent: -80px;
  z-index: 1002;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.alert-bar .close-alert-bar:hover, .alert-bar .close-alert-bar:focus {
  background-color: #1e1e1e;
}
@media screen and (min-width: 950px) {
  .alert-bar .close-alert-bar {
    height: 100%;
  }
}
.alert-bar .close-alert-bar:before, .alert-bar .close-alert-bar:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  left: 18px;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.alert-bar .close-alert-bar:before {
  top: 32px;
  transform: rotate(-45deg) skew(0deg);
}
@media screen and (min-width: 950px) {
  .alert-bar .close-alert-bar:before {
    top: 48px;
  }
}
.alert-bar .close-alert-bar:after {
  top: 32px;
  transform: rotate(45deg) skew(0deg);
}
@media screen and (min-width: 950px) {
  .alert-bar .close-alert-bar:after {
    top: 48px;
  }
}

.featured-home-listing {
  margin-bottom: 100px;
}
.featured-home-listing .event-listing.grid-view .entry .evtitle {
  margin-bottom: 8px;
}
.featured-home-listing .evtagline {
  font-family: "Muli", sans-serif;
  font-style: normal;
}
@media screen and (min-width: 636px) {
  .featured-home-listing {
    max-width: 655px;
    margin: 0 auto;
  }
  .featured-home-listing .event-listing {
    padding: 0;
  }
}
@media screen and (min-width: 980px) {
  .featured-home-listing {
    max-width: 985px;
  }
}
@media screen and (min-width: 1160px) {
  .featured-home-listing {
    max-width: 1160px;
  }
  .featured-home-listing .event-listing.grid-view .entry {
    float: left;
    margin-left: 18px;
  }
}
@media screen and (min-width: 1260px) {
  .featured-home-listing {
    max-width: none;
  }
}
@media screen and (min-width: 1260px) and (min-width: 1280px) {
  .featured-home-listing:nth-child(4n+1) {
    margin-left: 0;
  }
}

/* promos at the bottom of the page */
.homepromo {
  width: 100%;
  margin: 0 auto;
  clear: both;
  *zoom: 1;
}
.homepromo:before, .homepromo:after {
  content: " ";
  display: table;
}
.homepromo:after {
  clear: both;
}
@media screen and (min-width: 1280px) {
  .homepromo {
    margin-top: 30px;
  }
}
.homepromo .wrap {
  width: 100%;
  margin: 0 auto;
  *zoom: 1;
}
.homepromo .wrap:before, .homepromo .wrap:after {
  content: " ";
  display: table;
}
.homepromo .wrap:after {
  clear: both;
}
@media screen and (min-width: 650px) {
  .homepromo .wrap {
    max-width: 650px;
    overflow: hidden;
  }
}
@media screen and (min-width: 950px) {
  .homepromo .wrap {
    max-width: 980px;
  }
}
@media screen and (min-width: 1280px) {
  .homepromo .wrap {
    max-width: 1280px;
  }
}
.homepromo .artwork {
  display: block;
  width: 100%;
  height: auto;
}
.homepromo .artwork img {
  display: block;
  width: 100%;
}
.homepromo .info {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.homepromo .info .body {
  font-size: 14px;
  color: #e1c883;
}
.homepromo .big-spotlight,
.homepromo .text-spotlights {
  margin-bottom: 35px;
}
.homepromo .big-spotlight .large-promo {
  position: relative;
}
.homepromo .big-spotlight h3 {
  margin: 0;
  padding: 4px 0 0;
  font-size: 28px;
  text-align: center;
}
.homepromo .big-spotlight h3 a {
  color: #fff;
}
@media screen and (min-width: 1280px) {
  .homepromo .big-spotlight h3 {
    display: inline-block;
    margin-top: 10px;
  }
}
.homepromo .big-spotlight .info {
  min-height: 73px;
  background-color: #660A0F;
  background-image: url("../images/pattern-mediumopp-dark.jpg");
  background-repeat: repeat;
  z-index: 1;
}
.homepromo .big-spotlight .info span {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding-left: 20px;
  font-family: "Muli", sans-serif;
  font-size: 18px;
  font-style: normal;
  text-transform: uppercase;
  color: #e1c883;
}
.homepromo .big-spotlight .info span:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  left: 0;
  width: 1px;
  height: 36px;
  background-color: #e1c883;
}
@media screen and (min-width: 1280px) {
  .homepromo .big-spotlight .info {
    text-align: center;
  }
}
.homepromo .big-spotlight .extra-info {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 0;
}
.homepromo .big-spotlight .body {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .homepromo .big-spotlight .body {
    width: 250px;
    margin: 138px auto 0;
  }
  .homepromo .big-spotlight .body h2 {
    font-size: 28px;
    color: #e1c883;
  }
  .homepromo .big-spotlight .body p {
    font-family: "Muli", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }
}
.homepromo .big-spotlight .more {
  text-align: center;
}
.homepromo .big-spotlight .more.buttons {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  clear: both;
}
.homepromo .big-spotlight .more.buttons a {
  display: inline-block;
  top: 24px;
  width: 220px;
  min-height: 42px;
  background-color: transparent;
  border-top: 2px solid #e1c883;
  border-bottom: 2px solid #e1c883;
  margin: 0;
  padding-top: 11px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #e1c883;
}
.homepromo .big-spotlight .more.buttons a:before, .homepromo .big-spotlight .more.buttons a:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  width: 20px;
  height: 42px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  z-index: 1;
}
.homepromo .big-spotlight .more.buttons a:before {
  left: -20px;
  background-position: 0 -167px;
}
.homepromo .big-spotlight .more.buttons a:after {
  background-position: 0 -167px;
  right: -19px;
  transform: rotate(-180deg);
}
.homepromo .big-spotlight .more.buttons a:hover, .homepromo .big-spotlight .more.buttons a:focus {
  background-color: #d3a62c;
  border-color: transparent;
  color: #fff;
}
.homepromo .big-spotlight .more.buttons a:hover:before, .homepromo .big-spotlight .more.buttons a:hover:after, .homepromo .big-spotlight .more.buttons a:focus:before, .homepromo .big-spotlight .more.buttons a:focus:after {
  background-position: 0 -110px;
}
.homepromo .big-spotlight .more.buttons a:hover:after, .homepromo .big-spotlight .more.buttons a:focus:after {
  top: -3px;
}
@media screen and (min-width: 1280px) {
  .homepromo .big-spotlight:hover .extra-info, .homepromo .big-spotlight:focus .extra-info, .homepromo .big-spotlight.is-focused .extra-info {
    opacity: 1;
  }
}
.homepromo .text-spotlights {
  padding: 0 30px;
  *zoom: 1;
}
.homepromo .text-spotlights:before, .homepromo .text-spotlights:after {
  content: " ";
  display: table;
}
.homepromo .text-spotlights:after {
  clear: both;
}
@media screen and (min-width: 650px) {
  .homepromo .text-spotlights {
    padding: 0;
  }
}
@media screen and (min-width: 950px) {
  .homepromo .text-spotlights {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1280px) {
  .homepromo .text-spotlights {
    float: left;
    width: 630px;
  }
}
@media screen and (min-width: 650px) {
  .homepromo .text-spotlights .column {
    max-width: 45%;
    float: left;
  }
  .homepromo .text-spotlights .column:first-child {
    margin-right: 10%;
  }
}
@media screen and (min-width: 950px) {
  .homepromo .text-spotlights .column {
    margin-left: 11%;
  }
  .homepromo .text-spotlights .column:first-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .homepromo .text-spotlights .column {
    margin-left: 10%;
  }
  .homepromo .text-spotlights .column:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 950px) {
  .homepromo .text-spotlights .info {
    width: 320px;
  }
}
@media screen and (min-width: 1280px) {
  .homepromo .text-spotlights .info {
    width: 250px;
  }
}
.homepromo .text-spotlights h3 a {
  color: #660A0F;
}
.homepromo .text-spotlights hr {
  width: 65px;
  margin: 24px 0 24px;
  border-color: #e1c883;
}
.homepromo .text-spotlights .body {
  color: #660A0F;
  *zoom: 1;
}
.homepromo .text-spotlights .body:before, .homepromo .text-spotlights .body:after {
  content: " ";
  display: table;
}
.homepromo .text-spotlights .body:after {
  clear: both;
}
.homepromo .text-spotlights .body h1 {
  margin: 0 0 5px;
  font-size: 28px;
  letter-spacing: 0.075em;
  color: #1e1e1e;
}
.homepromo .text-spotlights .body h2 {
  font-family: "Muli", sans-serif;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #660a0f;
}
.homepromo .text-spotlights .body p {
  line-height: 160%;
  color: #444444;
}
.homepromo .text-spotlights .body .buttons {
  margin: 30px 10px 20px 0;
  text-align: center;
}
.homepromo .text-spotlights .body .buttons a {
  display: block;
  background-color: #660a0f;
  line-height: 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.homepromo .text-spotlights .body .buttons a:hover, .homepromo .text-spotlights .body .buttons a:focus {
  background-color: #b4111a;
}
.homepromo .text-spotlights .body h3, .homepromo .text-spotlights .body h4, .homepromo .text-spotlights .body h5, .homepromo .text-spotlights .body h6 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights {
    float: right;
  }
}
.homepromo .banner-spotlights .column {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 650px) {
  .homepromo .banner-spotlights .column {
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights .column {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
  .homepromo .banner-spotlights .column:hover .info, .homepromo .banner-spotlights .column:focus .info, .homepromo .banner-spotlights .column.is-focused .info {
    max-height: 130px;
    height: 130px;
  }
  .homepromo .banner-spotlights .column:hover .info .more, .homepromo .banner-spotlights .column:focus .info .more, .homepromo .banner-spotlights .column.is-focused .info .more {
    display: block;
  }
}
.homepromo .banner-spotlights .info {
  background-color: #1e1e1e;
  padding: 8px 0;
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights .info {
    position: absolute;
    bottom: 0;
    max-height: 53px;
    background-color: rgba(30, 30, 30, 0.8);
    margin: -51px auto 0;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
  }
}
.homepromo .banner-spotlights .info p {
  font-size: 14px;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
}
.homepromo .banner-spotlights .title {
  margin-bottom: 0;
  font-size: 26px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights .title {
    display: inline-block;
  }
}
.homepromo .banner-spotlights .title a {
  font-size: 26px;
  color: #fff;
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights .body {
    display: inline-block;
    border-left: 1px solid #e1c883;
    margin-left: 9px;
    padding-left: 10px;
    height: 17px;
  }
}
.homepromo .banner-spotlights .more {
  display: none;
}
@media screen and (min-width: 1280px) {
  .homepromo .banner-spotlights .more {
    text-align: center;
  }
  .homepromo .banner-spotlights .more.buttons {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    clear: both;
  }
  .homepromo .banner-spotlights .more.buttons a {
    display: inline-block;
    top: 24px;
    width: 251px;
    min-height: 42px;
    background-color: transparent;
    border-top: 2px solid #e1c883;
    border-bottom: 2px solid #e1c883;
    margin: 0;
    padding-top: 10px;
    letter-spacing: 0.1em;
    color: #e1c883;
  }
  .homepromo .banner-spotlights .more.buttons a:before, .homepromo .banner-spotlights .more.buttons a:after {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    width: 20px;
    height: 42px;
    background-image: url("../images/button-art.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 1;
  }
  .homepromo .banner-spotlights .more.buttons a:before {
    left: -20px;
    background-position: 0 -167px;
  }
  .homepromo .banner-spotlights .more.buttons a:after {
    background-position: 0 -167px;
    right: -19px;
    transform: rotate(-180deg);
  }
  .homepromo .banner-spotlights .more.buttons a:hover, .homepromo .banner-spotlights .more.buttons a:focus {
    background-color: #d3a62c;
    border-color: transparent;
    color: #1e1e1e;
  }
  .homepromo .banner-spotlights .more.buttons a:hover:before, .homepromo .banner-spotlights .more.buttons a:hover:after, .homepromo .banner-spotlights .more.buttons a:focus:before, .homepromo .banner-spotlights .more.buttons a:focus:after {
    background-position: 0 -110px;
  }
  .homepromo .banner-spotlights .more.buttons a:hover:after, .homepromo .banner-spotlights .more.buttons a:focus:after {
    top: -3px;
  }
}
.homepromo .artwork {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.homepromo .artwork:hover, .homepromo .artwork:focus {
  opacity: 0.7;
}

/* 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: rgba(0, 0, 0, 0);
}

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

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

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.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: 0.3s;
}

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}

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

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

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

img.rsImg {
  max-width: none;
}

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

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

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

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

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

.royalSlider > .rsContent {
  visibility: hidden;
}

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

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

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

.rsDefault .rsArrowIcn {
  width: 61px;
  height: 61px;
  top: 43%;
  left: 20px;
  position: absolute;
  cursor: pointer;
  background: transparent url("../images/moreevents.svg") no-repeat 0 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.rsDefault .rsArrowIcn:hover, .rsDefault .rsArrowIcn:focus {
  background: transparent url("../images/moreevents_hover.svg") no-repeat 0 0;
}

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  background-position: 0px 0px;
}

.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  background-position: 0 0px;
}

.rsDefault .rsArrowDisabled .rsArrowIcn {
  opacity: 0.2;
  filter: alpha(opacity=20);
  *display: none;
}

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

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

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

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

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

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  background: white;
}

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

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
}

.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;
}
.rsDefault .rsThumb .tooltip .details {
  position: relative;
  width: auto;
  white-space: nowrap;
}
.rsDefault .rsThumb .tooltip span {
  display: inline;
  padding: 0;
  margin: 0;
  text-indent: 0;
  color: #333;
  text-transform: uppercase;
  font: normal 16px/120% Arial, Helvetica, sans-serif;
}
.rsDefault .rsThumb .tooltip span span {
  font: normal 13px/120% Arial, Helvetica, sans-serif;
  text-transform: none;
}

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

.rsDefault .rsTmb {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px;
  }
  .rsDefault .rsThumbsHor {
    height: 44px;
  }
  .rsDefault .rsThumbsVer {
    width: 59px;
  }
}
/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  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: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1;
}

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

.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-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: 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: transparent url("../images/rs-default.png") 0 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
  border-radius: 2px;
}

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

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

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

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background: transparent url("../images/rs-default.png") no-repeat 0 -32px;
  background-color: #660a0f;
}

.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: transparent url("../images/rs-default.png") -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: image-url("preloader-white.gif");
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

/***************
*
*  7b. Pause Autoplay Btn
*
****************/
.rsDefault .rsPauseBtn {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  z-index: 30;
}
.rsDefault .rsPauseBtn:before {
  content: "";
  border-left: 4px solid white;
  border-right: 4px solid white;
  width: 12px;
  height: 15px;
  display: block;
  cursor: pointer;
}
.rsDefault .rsPauseBtn.is-paused:before {
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 12px solid white;
  border-right: none;
  width: 0px;
  height: 0px;
  width: 12px;
  height: 15px;
}
.rsDefault .rsPauseBtn:hover {
  background: black;
}
.rsDefault:hover .rsPauseBtn {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
.rsDefault.rsVideoPlaying .rsPauseBtn {
  display: none;
}

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

/***************
*
*  9. Overrides/Customization
*
****************/
.spotlight_image,
.full-slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto 60px;
  background-color: #000;
  border: 0;
}
.spotlight_image .rsDefault .rsGCaption .rsABlock p,
.full-slideshow .rsDefault .rsGCaption .rsABlock p {
  display: none;
}
#events.detail .spotlight_image,
#events.detail .full-slideshow {
  margin-bottom: 40px;
}

/*-- Custom Bullets --*/
.rsDefault .rsBullets {
  bottom: -50px;
  width: 100%;
  height: 35px;
  background: transparent;
  text-align: center;
}

.rsDefault .rsBullet {
  width: auto;
  height: auto;
  padding-right: 6px;
  padding-top: 9px;
}
.rsDefault .rsBullet:only-child {
  display: none;
}
.rsDefault .rsBullet span {
  width: 15px;
  height: 15px;
  border-radius: 0;
}

.rsDefault .rsBullet span {
  background-color: #e1c883;
  border-radius: 100px;
}

.rsDefault .rsBullet.rsNavSelected span {
  background-color: #1e1e1e;
}
.gallery_slideshow .rsDefault .rsBullet.rsNavSelected span {
  background-color: #fff;
}

.spotlight_image .rsDefault {
  position: relative;
}
.spotlight_image img {
  display: block;
  width: 100%;
  max-height: 540px;
}
.spotlight_image .rsGCaption {
  display: none;
}

.event_slideshow,
.news_slideshow {
  position: relative;
  width: 100%;
  margin: 0px;
  overflow: hidden;
  *zoom: 1;
}
.event_slideshow:before, .event_slideshow:after,
.news_slideshow:before,
.news_slideshow:after {
  content: " ";
  display: table;
}
.event_slideshow:after,
.news_slideshow:after {
  clear: both;
}
@media screen and (min-width: 1100px) {
  .event_slideshow,
  .news_slideshow {
    height: 485px;
  }
}
.event_slideshow .full-slideshow,
.news_slideshow .full-slideshow {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
@media screen and (min-width: 1100px) {
  .event_slideshow .full-slideshow,
  .news_slideshow .full-slideshow {
    height: 485px;
  }
}
.event_slideshow .full-slideshow .royalSlider,
.news_slideshow .full-slideshow .royalSlider {
  margin: 0 auto;
}
.event_slideshow .rsDefault img,
.news_slideshow .rsDefault img {
  display: block;
  width: 100%;
  height: 100%;
}
.event_slideshow .rsDefault .rsGCaption,
.news_slideshow .rsDefault .rsGCaption {
  box-shadow: none;
}

.home-slideshow {
  display: none;
  position: relative;
  width: 100%;
  margin: 0 auto 50px;
  background-color: #fff;
  overflow: hidden;
  *zoom: 1;
}
.home-slideshow:before, .home-slideshow:after {
  content: " ";
  display: table;
}
.home-slideshow:after {
  clear: both;
}
@media screen and (min-width: 1024px) {
  .home-slideshow {
    display: block;
  }
  .home-slideshow .bckgrd {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 526px;
    background: #0e0e0e url("../images/hmbkgrd_spotlight.jpg") no-repeat center 0;
    visibility: visible;
    overflow: hidden;
  }
}
.home-slideshow .full-slideshow, .home-slideshow .royalSlider {
  height: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  *zoom: 1;
}
.home-slideshow .full-slideshow:before, .home-slideshow .full-slideshow:after, .home-slideshow .royalSlider:before, .home-slideshow .royalSlider:after {
  content: " ";
  display: table;
}
.home-slideshow .full-slideshow:after, .home-slideshow .royalSlider:after {
  clear: both;
}
.home-slideshow .rsOverflow {
  overflow: visible;
}
.home-slideshow .rsOverflow:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  width: 20px;
}
.home-slideshow .rsDefault {
  max-width: 1024px;
}
.home-slideshow img.rsImg {
  width: 100%;
  height: 100%;
  max-width: 1024px;
}
.home-slideshow .rsDefault,
.home-slideshow .rsDefault .rsOverflow {
  background-color: #fff;
}
.home-slideshow .rsSlide {
  display: none;
}
.home-slideshow .rsSlide.rsActiveSlide {
  display: block;
}
.home-slideshow .rsInfo .buttons {
  opacity: 0;
}
.home-slideshow .rsDefault .rsGCaption .rsABlock {
  text-indent: 0;
}
.home-slideshow .rsGCaption {
  position: absolute;
  bottom: 165px;
  left: 0;
  width: 97.2%;
  height: 95px;
  height: 130px;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0 15px 0;
  padding: 8px 25px 0;
  text-align: left;
}
.home-slideshow .rsGCaption h3,
.home-slideshow .rsGCaption .tagline {
  width: 75%;
}
.home-slideshow .rsGCaption h3 {
  margin-bottom: 0px;
  font-size: 32px;
  line-height: 1.5em;
  color: #fff;
}
.home-slideshow .rsGCaption .rsNonEventSlide h3,
.home-slideshow .rsGCaption .rsNonEventSlide .tagline {
  width: 100%;
}
.home-slideshow .rsGCaption .rsNonEventSlide h3 {
  font-size: 32px;
  line-height: 1.2em;
  max-height: 130px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
}
.home-slideshow .rsGCaption h4 {
  margin: 10px 0 0;
  font-family: "Muli", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e1c883;
  text-indent: 0px;
}
.home-slideshow .rsGCaption .tagline {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #e1c883;
  text-transform: uppercase;
  clear: both;
}
.home-slideshow .rsGCaption .buttons {
  position: absolute;
  top: 27px;
  right: 30px;
  height: 100%;
  z-index: 20;
  opacity: 1;
}
.home-slideshow .rsGCaption .buttons .but-info {
  display: none;
}
.home-slideshow .rsGCaption .buttons a.tickets {
  display: block;
  float: left;
  background: none;
  border-top: 2px solid #e1c883;
  border-bottom: 2px solid #e1c883;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #e1c883;
}
.home-slideshow .rsGCaption .buttons a.tickets:after, .home-slideshow .rsGCaption .buttons a.tickets:before {
  top: -2px;
  height: 42px;
  background-position: 0 -167px;
}
.home-slideshow .rsGCaption .buttons a.tickets:hover, .home-slideshow .rsGCaption .buttons a.tickets:focus {
  background-color: #d3a62c;
  border-color: transparent;
  color: #1e1e1e;
  border-bottom-width: 1px;
}
.home-slideshow .rsGCaption .buttons a.tickets:hover:before, .home-slideshow .rsGCaption .buttons a.tickets:hover:after, .home-slideshow .rsGCaption .buttons a.tickets:focus:before, .home-slideshow .rsGCaption .buttons a.tickets:focus:after {
  background-position: 0 -110px;
}
.home-slideshow .rsGCaption .buttons a.tickets:hover:after, .home-slideshow .rsGCaption .buttons a.tickets:focus:after {
  top: -3px;
}
.home-slideshow .rsGCaption .buttons a.more {
  display: none;
}
.home-slideshow .rsSlide .rsLink {
  background-color: rgba(5, 45, 91, 0.7);
}
.home-slideshow .rsSlide.rsActiveSlide .rsLink {
  background-color: transparent;
}
.home-slideshow .rsDefault .rsThumbsHor {
  background-color: #fff;
  height: 148px;
  margin: 0;
  padding: 20px 0 0;
  bottom: 0;
  border-bottom: 0;
}
.home-slideshow .rsDefault .rsThumb {
  position: relative;
  width: 200px;
  height: 105px;
  background-color: #3a3b3e;
  overflow: hidden;
}
.home-slideshow .rsDefault .rsThumb .rsThumbsArrow {
  display: none;
}
.home-slideshow .rsDefault .rsThumb .rsTmb {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.home-slideshow .rsDefault .rsThumb .rsTmb:before {
  opacity: 0;
}
.home-slideshow .rsDefault .rsThumb img {
  display: block;
  width: 200px;
  height: 105px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  border: 0;
}
.home-slideshow .rsDefault .rsThumb:hover:after, .home-slideshow .rsDefault .rsThumb:focus:after, .home-slideshow .rsDefault .rsThumb:active:after, .home-slideshow .rsDefault .rsThumb.rsNavSelected:after {
  background-color: #e1c883;
}
.home-slideshow .rsDefault .rsThumb:hover .rsTmb:before, .home-slideshow .rsDefault .rsThumb:focus .rsTmb:before, .home-slideshow .rsDefault .rsThumb:active .rsTmb:before, .home-slideshow .rsDefault .rsThumb.rsNavSelected .rsTmb:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: -8px;
  left: calc(50% - 16px);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 8px solid #e1c883;
  opacity: 1;
}
.home-slideshow .rsDefault .rsThumb:hover img, .home-slideshow .rsDefault .rsThumb:focus img, .home-slideshow .rsDefault .rsThumb:active img, .home-slideshow .rsDefault .rsThumb.rsNavSelected img {
  border: 4px solid #e1c883;
}
.home-slideshow .rsDefault.rsWithThumbsHor .rsThumbsArrowLeft,
.home-slideshow .rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  display: none;
}
.home-slideshow .rsDefault .rsArrow {
  position: absolute;
  width: 45px;
  height: 105px;
}
.home-slideshow .rsDefault.rsHor .rsArrowLeft {
  top: auto;
  bottom: 5px;
  left: -76px;
}
.home-slideshow .rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 22px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #fff;
}
.home-slideshow .rsDefault.rsHor .rsArrowRight {
  top: auto;
  bottom: 5px;
  right: -76px;
}
.home-slideshow .rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 22px;
  right: calc(50% - 7px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #fff;
}
.home-slideshow .rsDefault .rsArrowIcn {
  top: 9px;
  left: 0;
}
.home-slideshow .rsDefault .rsArrowIcn:active {
  top: 10px;
}

.browser-safari .home-slideshow .rsSlide.rsActiveSlide .rsInfo .buttons .but-info {
  top: -10px;
}

.home-slideshow-mobile {
  display: block;
  position: relative;
  margin: 0 auto 70px;
  padding-bottom: 200px;
  *zoom: 1;
}
.home-slideshow-mobile:before, .home-slideshow-mobile:after {
  content: " ";
  display: table;
}
.home-slideshow-mobile:after {
  clear: both;
}
@media screen and (min-width: 1024px) {
  .home-slideshow-mobile {
    display: none;
  }
}
.home-slideshow-mobile .royalSlider,
.home-slideshow-mobile .rsOverflow {
  background-color: #1e1e1e;
}
@media screen and (max-width: 520px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    height: 462px;
  }
}
@media screen and (min-width: 520px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    max-height: 276px;
  }
}
@media screen and (min-width: 580px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    max-height: 380px;
  }
}
@media screen and (min-width: 740px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    max-height: 420px;
  }
}
@media screen and (min-width: 814px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    max-height: 480px;
  }
}
@media screen and (min-width: 930px) {
  .home-slideshow-mobile .royalSlider,
  .home-slideshow-mobile .rsOverflow {
    max-height: 520px;
  }
}
.home-slideshow-mobile .rsContent {
  background-color: #1e1e1e;
}
@media screen and (min-width: 520px) {
  .home-slideshow-mobile .rsContent .rsImg {
    width: 100%;
  }
  .home-slideshow-mobile .rsContent .rsImg:first-child {
    display: none;
  }
}
.home-slideshow-mobile .rsActiveSlide {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.home-slideshow-mobile .rsActiveSlide .rsInfo .buttons {
  opacity: 1;
}
.home-slideshow-mobile .rsGCaption {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 200px;
  background-color: #1e1e1e;
  margin: 0;
  text-align: left;
}
.home-slideshow-mobile .rsGCaption .rsInfo {
  padding: 15px 20px 65px;
  min-height: 200px;
}
.home-slideshow-mobile .rsGCaption .desc {
  position: relative;
}
.home-slideshow-mobile .rsGCaption .title {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-indent: 0px;
  max-height: 84px;
  overflow: hidden;
}
.home-slideshow-mobile .rsGCaption .date,
.home-slideshow-mobile .rsGCaption .tagline {
  font-family: "Muli", sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: #e1c883;
  text-indent: 0px;
}
.home-slideshow-mobile .rsGCaption .date {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-indent: 0px;
}
.home-slideshow-mobile .rsGCaption .tagline {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.home-slideshow-mobile .rsGCaption .buttons {
  position: absolute;
  bottom: 0;
  left: 4%;
  width: 88%;
}
.home-slideshow-mobile .rsGCaption .buttons a.more,
.home-slideshow-mobile .rsGCaption .buttons a.tickets {
  display: block;
  background: none;
  border-top: 2px solid #e1c883;
  border-bottom: 2px solid #e1c883;
  padding: 11px;
  padding-bottom: 11px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #e1c883;
}
.home-slideshow-mobile .rsGCaption .buttons a.more:after, .home-slideshow-mobile .rsGCaption .buttons a.more:before,
.home-slideshow-mobile .rsGCaption .buttons a.tickets:after,
.home-slideshow-mobile .rsGCaption .buttons a.tickets:before {
  top: -2px;
  height: 42px;
  background-position: 0 -167px;
}
.home-slideshow-mobile .rsDefault .rsBullets {
  bottom: -261px;
  height: 60px;
  background-color: #fff;
  z-index: 20;
}
.home-slideshow-mobile .rsDefault .rsBullets .rsBullet {
  padding-top: 22px;
}
.home-slideshow-mobile .rsDefault .rsArrow {
  position: absolute;
  width: 14px;
  height: 29px;
  overflow: hidden;
}
.home-slideshow-mobile .rsDefault.rsHor .rsArrowLeft {
  top: auto;
  bottom: -250px;
  left: 15px;
}
.home-slideshow-mobile .rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  top: -2px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #e1c883;
  background-image: none;
}
.home-slideshow-mobile .rsDefault.rsHor .rsArrowRight {
  top: auto;
  bottom: -250px;
  right: 15px;
}
.home-slideshow-mobile .rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  top: -2px;
  right: 0px;
  left: auto;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #e1c883;
}

.full-slideshow .event-detail-slides .rsContent {
  background-color: #000;
  border: 0;
}
.full-slideshow .event-detail-slides .rsCaption {
  display: block;
}
.full-slideshow .event-detail-slides .rsVideoContainer {
  margin-top: 0 !important;
}
.full-slideshow .event-detail-slides .rsArrowIcn {
  top: 45%;
}
.full-slideshow .event-detail-slides .rsArrowLeft .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 22px;
  left: calc(50% - 9px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #fff;
}
.full-slideshow .event-detail-slides .rsArrowRight .rsArrowIcn {
  right: 20px;
  left: auto;
}
.full-slideshow .event-detail-slides .rsArrowRight .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 22px;
  right: calc(50% - 7px);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #fff;
}
.full-slideshow .event-detail-slides .rsBullets {
  display: none;
}
.full-slideshow .event-detail-slides .rsGCaption {
  position: absolute;
  bottom: 8px;
  height: auto;
}
.full-slideshow .event-detail-slides .rsGCaption .rsABlock p {
  display: block;
  height: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  font-family: "Muli", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #fff;
}
.full-slideshow .event-detail-slides .rsGCaption .rsABlock p:empty {
  display: none;
}
.full-slideshow .event-detail-slides .rsGCaption .small_caption {
  position: absolute;
  top: 110%;
  top: calc(100% + 10px);
  line-height: 1.5;
  left: 0px;
  color: #333;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-indent: 0px;
}

#events.detail #branding, #events.detail .rsOverflow {
  overflow: visible;
}

.carousel.horizontal {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .carousel.horizontal {
    max-width: 100%;
  }
}
.carousel.horizontal .list_holder {
  position: relative;
  width: 100%;
  height: 210px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1280px) {
  .carousel.horizontal .list_holder {
    max-width: 100%;
    padding: 0 0 0 40px;
  }
}
.carousel.horizontal .list {
  position: relative;
  margin: 0;
  list-style: none;
  *zoom: 1;
}
.carousel.horizontal .list:before, .carousel.horizontal .list:after {
  content: " ";
  display: table;
}
.carousel.horizontal .list:after {
  clear: both;
}
.carousel.horizontal .entry {
  position: relative;
  margin: auto;
  border-top: 1px solid #b6b6b6;
  border-right: 1px solid #b6b6b6;
  border-bottom: 1px solid #b6b6b6;
  padding: 20px;
  width: 100%;
  height: 207px;
  overflow: hidden;
}
.carousel.horizontal .entry:first-child {
  border-left: 1px solid #b6b6b6;
}
.carousel.horizontal .entry img {
  margin: 0 auto;
}
.carousel.horizontal .entry .main-link {
  display: inline-block;
  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.7;
}
.carousel.horizontal .entry .main-link img {
  margin: 0 auto;
}
.carousel.horizontal .carousel-nav,
.carousel.horizontal .sponsors-nav {
  width: 100%;
  margin: 0 auto;
}

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

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

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

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

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-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;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-controls .owl-prev, .owl-controls .owl-next {
  position: absolute;
  bottom: -35px;
  width: 15px;
  height: 28px;
}
@media screen and (min-width: 1250px) {
  .owl-controls .owl-prev, .owl-controls .owl-next {
    top: 0;
    bottom: auto;
    width: 40px;
    height: 207px;
    background-color: #1d2c3e;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  .owl-controls .owl-prev:hover, .owl-controls .owl-next:hover {
    background-color: #1e1e1e;
  }
}
.owl-controls .owl-prev .icon, .owl-controls .owl-next .icon {
  width: 15px;
  height: 28px;
  stroke: #9e9e9e;
  stroke-width: 3px;
  fill: none;
  fill-rule: evenodd;
}
@media screen and (min-width: 1250px) {
  .owl-controls .owl-prev .icon, .owl-controls .owl-next .icon {
    stroke: #fff;
  }
}
@media screen and (min-width: 1250px) {
  .owl-controls .owl-prev .icon, .owl-controls .owl-next .icon {
    position: relative;
    top: 43%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.owl-controls .owl-prev span, .owl-controls .owl-next span {
  display: none;
  visibility: hidden;
}
.owl-controls .owl-prev {
  left: 15px;
}
@media screen and (min-width: 1250px) {
  .owl-controls .owl-prev {
    left: -40px;
  }
}
.owl-controls .owl-next {
  right: 15px;
}
@media screen and (min-width: 1250px) {
  .owl-controls .owl-next {
    right: 0px;
  }
}

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

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

.owl-pagination {
  position: absolute;
  bottom: -30px;
  left: 0%;
  width: 100%;
  height: 20px;
  text-align: center;
}
.owl-pagination .owl-page {
  background-color: #ccc;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
}
.owl-pagination .owl-page.active, .owl-pagination .owl-page:active, .owl-pagination .owl-page:hover {
  background-color: #e1c883;
}
@media screen and (min-width: 1250px) {
  .owl-pagination {
    display: none;
  }
}

/*
 *
 *
 ******************************************
 *  Small Calendar Variables
 *
*/
/*
 *
 *
 ******************************************
 *	 Small Calendar Styles
 *
*/
.calendar-holder {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 95000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
@media screen and (max-width: 766px) {
  .calendar-holder {
    display: none !important;
  }
}

.small_calendar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ffffff;
  max-width: 1000px;
  width: 100%;
  padding: 35px 35px 40px 35px;
}
@media screen and (max-width: 870px) {
  .small_calendar {
    padding: 40px 20px;
  }
}
.small_calendar:after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 0px;
  width: calc(100% - 440px);
  height: 50px;
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
@media screen and (max-width: 870px) {
  .small_calendar:after {
    bottom: 40px;
  }
}

.calendar-new {
  position: relative;
  margin: auto;
  max-width: 1200px;
  height: 360px;
  width: 400px;
  float: left;
}
.calendar-new .timeline, .calendar-new .tl-wrap-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  left: 0px;
  top: 0px;
}
.calendar-new .tl-header {
  border-radius: 6px;
  padding: 0px 0px 0px;
  max-width: 100%;
  margin: 0 auto 0px;
}
.calendar-new .month_name {
  background: #1e1e1e;
  padding: 10px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
  line-height: 50px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  width: 100%;
  letter-spacing: 0.2em;
  font-family: "Muli", sans-serif;
}
.calendar-new .cal-prev, .calendar-new .cal-next {
  position: absolute;
  top: 0px;
  font-size: 30px;
  color: #FFFFFF;
  vertical-align: middle;
  padding: 6px 20px;
  cursor: pointer;
}
.calendar-new .cal-prev .fa, .calendar-new .cal-next .fa {
  line-height: 30px;
}
.calendar-new .cal-prev:hover, .calendar-new .cal-next:hover {
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}
.calendar-new .cal-next {
  float: right;
  right: 0px;
}
.calendar-new .cal-prev {
  float: left;
  left: 0px;
}
.calendar-new .tl-wrap, .calendar-new .additional_events {
  display: none;
}
.calendar-new .tl-wrap-inner {
  *zoom: 1;
  max-width: 100%;
  margin: auto;
  padding: 0px 0;
  width: 100%;
  padding-top: 0px;
  position: relative;
  max-width: 1210px;
}
.calendar-new .tl-wrap-inner:before, .calendar-new .tl-wrap-inner:after {
  content: " ";
  display: table;
}
.calendar-new .tl-wrap-inner:after {
  clear: both;
}
.calendar-new .tl-wrap-inner .tl-calendar {
  *zoom: 1;
  padding: 0 0px;
  border: 1px solid #CCCCCC;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  height: 260px;
  justify-content: flex-start;
}
.calendar-new .tl-wrap-inner .tl-calendar:before, .calendar-new .tl-wrap-inner .tl-calendar:after {
  content: " ";
  display: table;
}
.calendar-new .tl-wrap-inner .tl-calendar:after {
  clear: both;
}
.calendar-new .weekdays {
  position: relative;
  clear: both;
  display: block;
  *zoom: 1;
  width: 100%;
  margin-bottom: 0px;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}
.calendar-new .weekdays:before, .calendar-new .weekdays:after {
  content: " ";
  display: table;
}
.calendar-new .weekdays:after {
  clear: both;
}
.calendar-new .weekdays .weekday {
  width: 14.28%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: left;
  text-transform: uppercase;
  color: #1e1e1e;
  font-family: "Muli", sans-serif;
  letter-spacing: 0.06em;
  font-size: 14px;
  font-weight: 400;
  float: left;
  margin-bottom: 0px;
  margin-right: 0px;
  text-align: center;
}
.calendar-new .tl-date {
  position: relative;
  width: 123px;
  width: calc(14.28% - 0px);
  background: #fff;
  height: 20px;
  height: auto;
  float: left;
  margin: 0 0px 0px;
  border-radius: 0px;
  padding: 0px 0px 0px;
  text-align: left;
  border: none;
  border-left: 1px solid #CCCCCC;
  cursor: pointer;
}
.calendar-new .tl-date .tl-date-inner {
  overflow-y: auto;
  max-height: 100%;
  padding-bottom: 60px;
  display: none;
}
.calendar-new .tl-date .cal_events {
  height: 130px;
  overflow-y: auto;
}
.ie10 .calendar-new .tl-date .cal_events, .ie9 .calendar-new .tl-date .cal_events {
  overflow: hidden;
}
.calendar-new .tl-date .day {
  display: none;
}
.calendar-new .tl-date .date {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 38px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.calendar-new .tl-date .date .weekday {
  display: none;
  padding-left: 12px;
  color: #ccc;
  font-weight: 400;
}
.calendar-new .tl-date[data-weekday="0"], .calendar-new .tl-date:first-child {
  clear: left;
  border-left: none;
}
.calendar-new .tl-date .month {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 42px;
  color: white;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 42px;
  padding: 0 15px;
  letter-spacing: 0.08em;
  display: none;
}
.calendar-new .tl-date h3 {
  margin-bottom: 5px;
  line-height: 1.1;
  overflow: hidden;
}
.calendar-new .tl-date h3 a {
  font-size: 22px;
  line-height: inherit;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.calendar-new .tl-date h4 {
  font-weight: 300;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.calendar-new .tl-date .time {
  color: #888;
  font-size: 12px;
  font-weight: 500;
  z-index: 10;
  letter-spacing: 0.04em;
}
.calendar-new .tl-date.hasEvent {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.calendar-new .tl-date.hasEvent .date {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  color: #660A0F;
  text-decoration: none;
}
.calendar-new .tl-date.hasEvent .date:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  background: #660A0F;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
.calendar-new .tl-date.hasEvent:hover {
  background: #660A0F;
}
.calendar-new .tl-date.hasEvent:hover .date {
  color: #ffffff;
  text-decoration-color: #ffffff;
}
.calendar-new .tl-date.hasEvent.is_today .date {
  color: #ffffff;
  text-decoration-color: #ffffff;
}
.calendar-new .tl-date.hasEvent.is_today .date:after {
  background: #ffffff;
}
.calendar-new .tl-date.is_today {
  background: #660A0F;
  color: white;
}
.calendar-new .tl-date.is_today .date {
  color: #ffffff;
}
.calendar-new .additional_events .tl-date[data-weekday="0"] {
  clear: left;
}
.calendar-new .hide_events > div {
  display: none;
}
.calendar-new .tooltip_content,
.calendar-new .modal_content {
  display: none;
}
.curtain-call-page-layout .calendar-new .modal .entry {
  display: none;
}
.curtain-call-page-layout .calendar-new .modal .entry.curtain-call, .curtain-call-page-layout .calendar-new .modal .entry.venue_78 {
  display: block;
}
.curtain-call-page-layout .calendar-new .modal .entry.curtain-call .info, .curtain-call-page-layout .calendar-new .modal .entry.venue_78 .info {
  display: none;
}
.curtain-call-page-layout .calendar-new .modal .entry.curtain-call .info.curtain_call_content, .curtain-call-page-layout .calendar-new .modal .entry.venue_78 .info.curtain_call_content {
  display: block;
}
.curtain-call-page-layout .calendar-new .hide_events > div {
  display: none;
}

.calendar_modal {
  position: absolute;
  top: 0%;
  left: calc(100% + 20px);
  width: 100%;
  width: 500px;
  max-width: calc(100vw - 480px);
  height: 100%;
  overflow-y: auto;
  background: #fff;
}
.calendar_modal .thumb {
  display: none;
}
.calendar_modal .entry {
  width: 426px;
  border: none;
  padding: 0px 0px 0px;
  margin: 0px 0 10px;
  background: #1e1e1e;
  float: none;
}
.calendar_modal .entry .thumb {
  width: 24%;
  float: left;
}
.calendar_modal .entry .showings {
  display: none;
}
.calendar_modal .entry .calendar_links {
  border-top: 1px solid white;
  *zoom: 1;
  padding: 10px 20px;
}
.calendar_modal .entry .calendar_links:before, .calendar_modal .entry .calendar_links:after {
  content: " ";
  display: table;
}
.calendar_modal .entry .calendar_links:after {
  clear: both;
}
.calendar_modal .entry .calendar_links .but-info {
  float: right;
}
.calendar_modal .entry .calendar_links a {
  color: #fff;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.calendar_modal .entry .calendar_links a:hover {
  color: #e1c883;
}
.calendar_modal .entry .info {
  float: left;
  padding: 0px;
  border-bottom: none;
  width: 100%;
}
.calendar_modal .entry .info h3 {
  max-height: none;
  width: 100%;
  max-width: 100%;
  font-size: 23px;
  font-family: "Judson", serif;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  padding: 5px 20px;
}
.calendar_modal .entry .info h3 a {
  color: #ffffff;
}
.calendar_modal .entry .info h3 a:hover {
  color: #e1c883;
}
.calendar_modal .entry .info .date {
  font-size: 14px;
  text-transform: uppercase;
  color: #1e1e1e;
  padding: 10px 20px;
  letter-spacing: 0.15em;
  padding: 0px 20px;
  line-height: 37px;
}
.calendar_modal .entry .info h4 {
  margin-bottom: 0;
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Muli", sans-serif;
  color: #e1c883;
  padding: 5px 20px;
}
.calendar_modal .entry .info .venue, .calendar_modal .entry .info .time {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  padding: 5px 20px;
  font-family: "Muli", sans-serif;
  color: white;
  margin-bottom: 10px;
}
.calendar_modal .entry .info.curtain_call_content {
  display: none;
}
.calendar_modal .entry.curtain-call {
  display: none;
}
.curtain-call-page-layout .calendar_modal .entry.curtain-call {
  display: block;
}
.calendar_modal .close_modal {
  display: none;
}

.cal-hide-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  color: #222;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-right: 30px;
}
.cal-hide-overlay:before, .cal-hide-overlay:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  right: 0px;
  width: 20px;
  height: 2px;
  background-color: #222;
}
.cal-hide-overlay:before {
  top: 5px;
  transform: rotate(-45deg) skew(0deg);
}
.cal-hide-overlay:after {
  top: 5px;
  transform: rotate(45deg) skew(0deg);
}
.cal-hide-overlay:hover {
  color: #660a0f;
}
.cal-hide-overlay:hover:before, .cal-hide-overlay:hover:after {
  background: #660a0f;
}
.l-m-venue_widget .cal-hide-overlay {
  display: none;
}

.calendar.calendar_listing {
  display: none;
}
.calendar.calendar_listing.calendar_view {
  display: block;
}

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

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
#content .full_column.widgets_area {
  margin-top: 40px;
}
.textarea .content,
.l-fullwidthHeader .l-fullwidthHeader__overview {
  padding: 0 6%;
}
@media screen and (min-width: 1100px) {
  .textarea .content,
  .l-fullwidthHeader .l-fullwidthHeader__overview {
    padding: 0 2%;
  }
}
.textarea .content a,
.l-fullwidthHeader .l-fullwidthHeader__overview a {
  color: #660A0F;
  text-decoration: underline;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.textarea .content a:hover,
.l-fullwidthHeader .l-fullwidthHeader__overview a:hover {
  color: #B4111A;
  text-decoration: none;
}
.textarea .content a.button,
.l-fullwidthHeader .l-fullwidthHeader__overview a.button {
  text-decoration: none;
}

.textarea p a, .textarea li a, .spotlight .body p a, .spotlight_content p a, .m-eventDetailList__item a, .event_description a {
  color: #660A0F;
  text-decoration: underline;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.textarea p a:hover, .textarea li a:hover, .spotlight .body p a:hover, .spotlight_content p a:hover, .m-eventDetailList__item a:hover, .event_description a:hover {
  color: #B4111A;
  text-decoration: none;
}
.textarea p a.button, .textarea li a.button, .spotlight .body p a.button, .spotlight_content p a.button, .m-eventDetailList__item a.button, .event_description a.button {
  text-decoration: none;
  display: inline-block;
  line-height: 24px;
}

blockquote {
  position: relative;
  font-family: "Muli", sans-serif;
  padding: 20px 10px;
}
blockquote p {
  font-size: 16px;
  color: #646464;
  font-style: italic;
  line-height: 1.61;
}
blockquote:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 0px;
  font-family: "Muli", sans-serif;
  color: #646464;
  font-style: italic;
}
blockquote strong {
  color: #660A0F;
  font-family: "Judson", serif;
  letter-spacing: 0.15em;
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
}

.full-slideshow + .textarea .content:first-of-type {
  padding-top: 0;
}

.content {
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */
}
.content .container {
  clear: both;
  position: relative;
}
.content img {
  display: block;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 0;
}
@media screen and (max-width: 700px) {
  .content img {
    float: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .content img {
    margin-top: 5px;
    margin-bottom: 15px;
  }
  .content img.left {
    float: left;
    margin-right: 20px;
  }
  .content img.right {
    float: right;
    margin-left: 20px;
  }
}
.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.7;
}
.content h1 {
  line-height: 34px;
  margin-bottom: 0;
}
@media screen and (min-width: 1100px) {
  .content h1 {
    margin: 0 auto 0;
  }
  .content h1:first-child {
    padding: 0 0 10px;
  }
}
.content p {
  font-weight: 400;
  line-height: 160%;
}
.content p.lead {
  font-size: 17px;
  padding-bottom: 40px;
  position: relative;
}
.content p.lead:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 65px;
  border-bottom: 1px solid #e1c883;
  margin: 0px;
}
.content ul,
.content ol {
  margin: 10px 0;
}
.content ul li,
.content ol li {
  margin: 0 0 9px 0;
  font-size: 15px;
  color: #646464;
  line-height: 160%;
}
.content ul {
  position: relative;
}
.content ul li {
  position: relative;
  padding-left: 28px;
}
.content ul li:before, .content ul li:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #660A0F;
}
.content ul li:after {
  transform: rotate(-45deg);
}
.content ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}
.content ol li {
  position: relative;
  padding-left: 20px;
  list-style: none;
  line-height: 160%;
}
.content ol li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  font-size: 18px;
  font-family: "Judson", serif;
  font-style: normal;
  color: #9e843c;
}
.content ol li:after {
  content: ".";
  display: block;
  position: absolute;
  top: 0;
  left: 9px;
  width: 1px;
  height: 1px;
  color: #9e843c;
}
.content table {
  margin: 0 0 15px;
  position: relative;
}
.content table tr {
  font-size: 12px;
}
.content table tr td {
  padding: 5px;
  border: none;
}
.content table tr td p {
  font-size: 15px;
}

/* Main---long running title banner across the top of the page. */
.global_header {
  width: 100%;
  min-height: 62px;
  background-color: #d0b25f;
  clear: both;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 700px) {
  .global_header {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1001px) {
  .global_header {
    min-height: 88px;
    z-index: 0;
  }
}
.global_header .wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: 88px;
  margin: 0 auto;
  *zoom: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.global_header .wrap:before, .global_header .wrap:after {
  content: " ";
  display: table;
}
.global_header .wrap:after {
  clear: both;
}
.global_header .wrap > div {
  flex-grow: 0;
  flex-shrink: 0;
}
.global_header .wrap > div:first-child {
  flex-grow: 1;
}
.global_header .wrap.nlp {
  flex-wrap: wrap;
  align-content: center;
}
.global_header .wrap.nlp h2 {
  margin: 0;
}
@media screen and (max-width: 870px) {
  .global_header .wrap {
    display: block;
    min-height: 0px;
  }
}
.global_header .wrap .datepicker {
  *zoom: 1;
  height: auto;
  flex-shrink: 0;
  margin-left: 0;
  padding: 10px 0;
}
.global_header .wrap .datepicker:before, .global_header .wrap .datepicker:after {
  content: " ";
  display: table;
}
.global_header .wrap .datepicker:after {
  clear: both;
}
.global_header .summary {
  float: left;
  width: 100%;
  margin-bottom: 8px;
  padding-top: 7px;
  line-height: 100%;
  color: #1e1e1e;
  text-align: center;
  padding: 0;
  margin: 0;
}
.global_header .summary.solo {
  padding-top: 15px;
  margin: 0;
}
@media screen and (min-width: 1001px) {
  .global_header .summary {
    text-align: left;
  }
  .global_header .summary.solo {
    padding-top: 0px;
  }
}
.global_header .support_links {
  display: none;
}
@media screen and (min-width: 1100px) {
  .global_header .support_links {
    display: block;
  }
  .global_header .support_links .rss, .global_header .support_links .full_list {
    display: inline-block;
    margin: 0;
    padding: 0 25px;
    font-size: 14px;
    line-height: 88px;
    color: #1e1e1e;
    text-transform: uppercase;
  }
  .global_header .support_links .rss.selected, .global_header .support_links .rss:hover, .global_header .support_links .full_list.selected, .global_header .support_links .full_list:hover {
    background-color: #e1c883;
    color: #1e1e1e;
  }
}
.global_header .locale-title {
  font-family: "Muli", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  color: #1e1e1e;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .global_header .locale-title {
    float: left;
    text-align: left;
    clear: both;
  }
  .global_header .locale-title span {
    float: left;
  }
}
.global_header .nlp .locale-title {
  padding-right: 0;
}
.global_header .tagline {
  font-family: "Muli", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #1e1e1e;
  text-transform: uppercase;
  clear: both;
  margin-bottom: 0;
  float: left;
  padding-right: 0;
  display: inline-block;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 870px) {
  .global_header .tagline {
    text-align: center;
    font-size: 13px;
    float: none;
    display: block;
  }
}
.global_header.edp .edp.summary {
  margin: 0;
  line-height: 140%;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: italic;
  color: #1e1e1e;
  padding-left: 0px;
  padding-top: 10px;
  text-align: left;
}
@media screen and (min-width: 1001px) {
  .global_header.edp .edp.summary {
    max-width: 92%;
    margin-left: 2%;
    padding-top: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .global_header.edp .edp.summary {
    margin-left: 0;
  }
}
@media screen and (max-width: 870px) {
  .global_header.edp .edp.summary {
    text-align: center;
  }
}
.global_header.edp .edp.tagline {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  color: #1e1e1e;
}
@media screen and (min-width: 1001px) {
  .global_header.edp .edp.tagline {
    max-width: 92%;
    margin-left: 2%;
  }
}
@media screen and (min-width: 1280px) {
  .global_header.edp .edp.tagline {
    margin-left: 0;
  }
}
.global_header.edp .edp.ticket {
  width: 242px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media screen and (min-width: 1001px) {
  .global_header.edp .edp.ticket {
    position: absolute;
    top: 28px;
    right: 0;
  }
}
.global_header.edp .edp.ticket .tickets {
  display: block;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  line-height: 24px;
  z-index: 5;
}
.global_header.edp .edp.ticket .tickets:after, .global_header.edp .edp.ticket .tickets:before {
  background-position: 0 -270px;
}
.global_header.edp .edp.ticket .tickets:hover {
  text-decoration: none;
}
.global_header.edp .edp.ticket .tickets:hover:after, .global_header.edp .edp.ticket .tickets:hover:before {
  background-position: 0 -54px;
}
@media screen and (max-width: 870px) {
  .global_header.edp .edp.ticket {
    margin-top: 20px;
  }
}
.global_header .elp.right {
  display: none;
}
@media screen and (min-width: 1001px) {
  .global_header .elp.right {
    display: block;
    max-height: 88px;
    margin: 0;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 870px) {
  .global_header.edp {
    display: none;
  }
}
.global_header .cdp.tagline {
  flex-shrink: 0;
}
.global_header.not-fixed {
  position: relative;
  left: 50%;
  height: auto;
  width: 100vw;
  transform: translateX(-50%);
  margin-bottom: 10px;
  display: none;
}
.global_header.not-fixed .buttons span.tba:before, .global_header.not-fixed .buttons span.onsale:before,
.global_header.not-fixed .buttons span.tickets:before, .global_header.not-fixed .buttons a:before {
  left: -19px;
}
.global_header.not-fixed .buttons span.tba:after, .global_header.not-fixed .buttons span.onsale:after,
.global_header.not-fixed .buttons span.tickets:after, .global_header.not-fixed .buttons a:after {
  right: -19px;
}
@media screen and (max-width: 870px) {
  .global_header.not-fixed {
    display: block;
  }
}

.dark_title, .m-dtitle {
  position: relative;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
}
.dark_title:before, .m-dtitle:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.dark_title:after, .m-dtitle:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}

.light_title {
  position: relative;
  background-color: #e1c883;
  color: #1e1e1e;
  z-index: 6;
}
.light_title .insert {
  z-index: 3;
}
.light_title:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 36px;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgb(225, 200, 131) 0%, rgba(225, 200, 131, 0) 99%);
  z-index: -1;
}
.light_title:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 85px;
  height: 100%;
  background: transparent url("../images/pattern-small-light.jpg") repeat 11px -11px;
  z-index: -2;
}

.full_column.login {
  min-height: 160px;
  margin-top: 20px;
  padding-top: 30px;
  text-align: center;
  *zoom: 1;
}
.full_column.login:before, .full_column.login:after {
  content: " ";
  display: table;
}
.full_column.login:after {
  clear: both;
}
@media screen and (min-width: 1100px) {
  .full_column.login {
    padding-top: 45px;
    padding-bottom: 65px;
  }
}
.full_column.login .input {
  display: block;
}
.full_column.login .overview {
  margin-top: 30px;
}
.full_column.login .overview,
.full_column.login .input {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
.full_column.login input[type=submit] {
  margin-left: 4px;
}

.event_list.content .entry {
  position: relative;
  width: 100%;
  max-width: 306px;
  margin: 0 auto 30px;
  padding: 0 1%;
}
.event_list.content .date {
  padding-top: 9px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.event_list.content .date.light_title {
  padding: 13px 20px 10px;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
}
.event_list.content .date.light_title:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.event_list.content .date.light_title:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}
.event_list.content .date.dark_title {
  display: none;
}
.event_list.content .info h3 {
  margin-bottom: 0;
}
.event_list.content .info h3 a {
  color: #b4111a;
}
.event_list.content .info h3 a:hover {
  color: #660A0F;
}
.event_list.content .info h3 + .buttons {
  margin-top: 15px;
}
.event_list.content .info .evtagline {
  font-family: "Muli", sans-serif;
  font-size: 13px;
  font-style: normal;
}
.event_list.content .buttons a {
  display: block;
  width: 224px;
  min-height: 40px;
  margin: 0 auto 10px;
  padding-top: 11px;
}
.event_list.content .buttons a:before, .event_list.content .buttons a:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  width: 20px;
  height: 42px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 -270px;
  z-index: 1;
}
.event_list.content .buttons a:before {
  top: 0;
  left: -20px;
}
.event_list.content .buttons a:after {
  right: -19px;
  transform: rotate(-180deg);
}
@media screen and (min-width: 600px) {
  .event_list.content {
    max-width: 1024px;
  }
  .event_list.content .entry {
    position: relative;
    width: 100%;
    height: 170px;
    min-height: 170px;
    max-width: 306px;
    background-color: #f6f0df;
    border-bottom: 2px solid #e1c883;
    margin: 0 auto 20px;
    padding: 0;
  }
  .event_list.content .entry:first-child {
    margin-top: 10px;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry {
    max-width: 100%;
  }
  .event_list.content .entry:first-child {
    margin-top: 0px;
  }
  .event_list.content .entry:hover .buttons {
    visibility: visible;
    background-color: transparent;
  }
  .event_list.content .entry:hover .buttons a {
    opacity: 1;
    visibility: visible;
  }
  .event_list.content .entry:hover .buttons a:before, .event_list.content .entry:hover .buttons a:after {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .date.light_title {
    display: none;
  }
  .event_list.content .entry .thumb {
    display: block;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry .thumb {
    float: left;
    width: 192px;
    height: 170px;
  }
  .event_list.content .entry .thumb + .info {
    padding-left: 192px;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) and (min-width: 1100px) {
  .event_list.content .entry .thumb + .info {
    position: relative;
    min-height: 170px;
    background-color: transparent;
    margin: 0;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .thumb a {
    display: block;
    cursor: pointer;
  }
  .event_list.content .entry .thumb img {
    display: block;
    width: 100%;
    margin-top: 0;
    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.content .entry .thumb img:hover {
    opacity: 0.7;
  }
  .event_list.content .entry .info {
    position: relative;
    width: 100%;
    background-color: #1e1e1e;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry .info {
    background-color: transparent;
    bottom: auto;
    top: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .info .date {
    position: relative;
    display: block;
    max-height: 37px;
    padding: 11px 20px 10px;
    text-transform: uppercase;
  }
  .event_list.content .entry .info .date span {
    color: #fff;
  }
  .event_list.content .entry .info .date.dark_title {
    display: block;
  }
  .event_list.content .entry .info h3 {
    margin: 15px 0 6px 21px;
  }
}
@media screen and (min-width: 600px) and (min-width: 1001px) {
  .event_list.content .entry .info h3 {
    width: 66%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .info h3 a {
    display: block;
    font-size: 23px;
    color: #1e1e1e;
    text-decoration: none;
    text-transform: none;
  }
  .event_list.content .entry .info h3 a:hover {
    color: #d0b25f;
  }
  .event_list.content .entry .info h4 {
    margin: 0 21px 10px;
    font-family: "Muli", sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #1e1e1e;
    letter-spacing: 0.1em;
    line-height: 1.6em;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry .info h4 {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (min-width: 1001px) {
  .event_list.content .entry .info h4 {
    width: 66%;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .info .teaser {
    margin: 0 20px;
    padding: 0;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry .info .teaser {
    width: 57%;
    margin-right: 0;
    margin-left: 21px;
  }
}
@media screen and (min-width: 600px) and (min-width: 900px) {
  .event_list.content .entry .info .teaser {
    width: 65%;
  }
}
@media screen and (min-width: 600px) and (min-width: 1100px) {
  .event_list.content .entry .info .teaser {
    width: 70%;
  }
}
@media screen and (min-width: 600px) {
  .event_list.content .entry .info .teaser p {
    font-size: 12px;
  }
  .event_list.content .entry .info .teaser p:last-of-type {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 600px) and (min-width: 600px) {
  .event_list.content .entry .buttons {
    display: block;
    top: auto;
    width: auto;
    height: 45px;
    background-color: transparent;
    margin-left: 20px;
    visibility: visible;
    z-index: 10;
    opacity: 1;
  }
  .event_list.content .entry .buttons:hover {
    top: auto;
    height: 45px;
  }
  .event_list.content .entry .buttons span.tba,
  .event_list.content .entry .buttons span.onsale,
  .event_list.content .entry .buttons span.tickets,
  .event_list.content .entry .buttons a {
    float: left;
    display: block;
    position: relative;
    min-height: 40px;
    width: 175px;
    background-color: #1e1e1e;
    top: 0;
    border-top: 0;
    border-bottom: 0;
    margin: 0 30px 0 20px;
    padding: 8px 0px;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0ms linear;
    -moz-transition: all 0ms linear;
    -o-transition: all 0ms linear;
    transition: all 0ms linear;
  }
  .event_list.content .entry .buttons span.tba:hover,
  .event_list.content .entry .buttons span.onsale:hover,
  .event_list.content .entry .buttons span.tickets:hover,
  .event_list.content .entry .buttons a:hover {
    padding-top: 8px;
    padding-bottom: 8px;
    border: 0;
  }
  .event_list.content .entry .buttons span.tba:before, .event_list.content .entry .buttons span.tba:after,
  .event_list.content .entry .buttons span.onsale:before,
  .event_list.content .entry .buttons span.onsale:after,
  .event_list.content .entry .buttons span.tickets:before,
  .event_list.content .entry .buttons span.tickets:after,
  .event_list.content .entry .buttons a:before,
  .event_list.content .entry .buttons a:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    position: absolute;
    top: 0;
    width: 20px;
    height: 40px;
    background-image: url("../images/button-art.png");
    background-repeat: no-repeat;
    background-position: 0 -270px;
    opacity: 1;
  }
  .event_list.content .entry .buttons span.tba:before,
  .event_list.content .entry .buttons span.onsale:before,
  .event_list.content .entry .buttons span.tickets:before,
  .event_list.content .entry .buttons a:before {
    left: -20px;
    background-position: 0 -270px;
  }
  .event_list.content .entry .buttons span.tba:after,
  .event_list.content .entry .buttons span.onsale:after,
  .event_list.content .entry .buttons span.tickets:after,
  .event_list.content .entry .buttons a:after {
    right: -20px;
    transform: rotate(-180deg);
  }
  .event_list.content .entry .buttons span.tba:hover,
  .event_list.content .entry .buttons span.onsale:hover,
  .event_list.content .entry .buttons span.tickets:hover,
  .event_list.content .entry .buttons a:hover {
    background-color: #d3a62c;
    color: #fff;
  }
  .event_list.content .entry .buttons span.tba:hover:before, .event_list.content .entry .buttons span.tba:hover:after,
  .event_list.content .entry .buttons span.onsale:hover:before,
  .event_list.content .entry .buttons span.onsale:hover:after,
  .event_list.content .entry .buttons span.tickets:hover:before,
  .event_list.content .entry .buttons span.tickets:hover:after,
  .event_list.content .entry .buttons a:hover:before,
  .event_list.content .entry .buttons a:hover:after {
    background-position: 0 -110px;
  }
  .event_list.content .entry .buttons span.tba:hover:after,
  .event_list.content .entry .buttons span.onsale:hover:after,
  .event_list.content .entry .buttons span.tickets:hover:after,
  .event_list.content .entry .buttons a:hover:after {
    top: 0;
  }
}
@media screen and (min-width: 600px) and (min-width: 960px) {
  .event_list.content .entry .buttons {
    display: block;
    position: absolute;
    right: 30px;
    top: 57px;
    left: auto;
    width: 224px;
    height: 100%;
    margin: 0;
    opacity: 1;
  }
  .event_list.content .entry .buttons:hover {
    top: 57px;
    height: auto;
  }
  .event_list.content .entry .buttons a:first-child {
    margin-bottom: 10px;
  }
  .event_list.content .entry .buttons span.tba,
  .event_list.content .entry .buttons span.onsale,
  .event_list.content .entry .buttons span.tickets,
  .event_list.content .entry .buttons a {
    float: none;
    margin-right: 0;
  }
}

/* interactive map page */
.imaps {
  background-color: #000;
  margin: 0 auto;
}

/* custom group-service page styles */
.group-services .event_list .entry .buttons .tickets {
  display: none;
}

.spotlight,
.gallery-listing,
.contest_list {
  clear: both;
  padding: 0 6%;
}
.spotlight .entry,
.gallery-listing .entry,
.contest_list .entry {
  *zoom: 1;
  padding-top: 40px;
  margin-bottom: 40px;
}
.spotlight .entry:before, .spotlight .entry:after,
.gallery-listing .entry:before,
.gallery-listing .entry:after,
.contest_list .entry:before,
.contest_list .entry:after {
  content: " ";
  display: table;
}
.spotlight .entry:after,
.gallery-listing .entry:after,
.contest_list .entry:after {
  clear: both;
}
.spotlight .entry:last-child,
.gallery-listing .entry:last-child,
.contest_list .entry:last-child {
  margin-bottom: 0;
}
.spotlight .thumb,
.gallery-listing .thumb,
.contest_list .thumb {
  min-width: 150px;
  width: 200px;
  margin: 0 40px 0px 0;
  float: left;
}
.spotlight .thumb a,
.gallery-listing .thumb a,
.contest_list .thumb a {
  display: block;
  opacity: 1;
}
.spotlight .thumb a:hover,
.gallery-listing .thumb a:hover,
.contest_list .thumb a:hover {
  opacity: 0.8;
}
.spotlight .thumb img,
.gallery-listing .thumb img,
.contest_list .thumb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .spotlight .thumb,
  .gallery-listing .thumb,
  .contest_list .thumb {
    margin: 0 auto 20px;
    float: none;
  }
}
.spotlight .info,
.gallery-listing .info,
.contest_list .info {
  float: left;
  width: 100%;
  display: block;
}
@media screen and (max-width: 700px) {
  .spotlight .info,
  .gallery-listing .info,
  .contest_list .info {
    margin: 0 auto 20px;
    float: none;
    text-align: center;
  }
  .spotlight .info li,
  .gallery-listing .info li,
  .contest_list .info li {
    text-align: left;
  }
}
.spotlight .thumb + .info,
.gallery-listing .thumb + .info,
.contest_list .thumb + .info {
  width: calc(100% - (200px + 40px));
}
@media screen and (max-width: 700px) {
  .spotlight .thumb + .info,
  .gallery-listing .thumb + .info,
  .contest_list .thumb + .info {
    width: 100%;
  }
}
.spotlight .date,
.gallery-listing .date,
.contest_list .date {
  position: relative;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
  text-align: left;
  padding: 9px 20px;
  margin-bottom: 20px;
}
.spotlight .date:before,
.gallery-listing .date:before,
.contest_list .date:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.spotlight .date:after,
.gallery-listing .date:after,
.contest_list .date:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}
.spotlight h3, .spotlight .title,
.gallery-listing h3,
.gallery-listing .title,
.contest_list h3,
.contest_list .title {
  position: relative;
  font-size: 28px;
  margin-bottom: 40px;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .spotlight h3, .spotlight .title,
  .gallery-listing h3,
  .gallery-listing .title,
  .contest_list h3,
  .contest_list .title {
    width: auto;
  }
}
.spotlight h3:after, .spotlight .title:after,
.gallery-listing h3:after,
.gallery-listing .title:after,
.contest_list h3:after,
.contest_list .title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 65px;
  border-bottom: 1px solid #e1c883;
  margin: 0px;
}
.spotlight h3 a, .spotlight .title a,
.gallery-listing h3 a,
.gallery-listing .title a,
.contest_list h3 a,
.contest_list .title a {
  font-size: 28px;
  color: #660A0F;
}
.spotlight h3 a:hover, .spotlight .title a:hover,
.gallery-listing h3 a:hover,
.gallery-listing .title a:hover,
.contest_list h3 a:hover,
.contest_list .title a:hover {
  color: #b4111a;
}
.spotlight .spot-button, .spotlight .go_to,
.gallery-listing .spot-button,
.gallery-listing .go_to,
.contest_list .spot-button,
.contest_list .go_to {
  display: block;
  background-color: #660a0f;
  line-height: 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  clear: both;
  white-space: nowrap;
  margin-top: 20px;
  cursor: pointer;
  width: 250px;
  max-width: calc(100% - 40px);
}
.spotlight .spot-button:after, .spotlight .go_to:after,
.gallery-listing .spot-button:after,
.gallery-listing .go_to:after,
.contest_list .spot-button:after,
.contest_list .go_to:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
.spotlight .spot-button:before, .spotlight .go_to:before,
.gallery-listing .spot-button:before,
.gallery-listing .go_to:before,
.contest_list .spot-button:before,
.contest_list .go_to:before {
  left: -20px;
  background-position: 0 0;
}
.spotlight .spot-button:after, .spotlight .go_to:after,
.gallery-listing .spot-button:after,
.gallery-listing .go_to:after,
.contest_list .spot-button:after,
.contest_list .go_to:after {
  right: -20px;
  transform: rotate(-180deg);
}
.spotlight .spot-button:hover, .spotlight .go_to:hover,
.gallery-listing .spot-button:hover,
.gallery-listing .go_to:hover,
.contest_list .spot-button:hover,
.contest_list .go_to:hover {
  background-color: #b4111a;
}
@media screen and (min-width: 701px) {
  .spotlight .spot-button, .spotlight .go_to,
  .gallery-listing .spot-button,
  .gallery-listing .go_to,
  .contest_list .spot-button,
  .contest_list .go_to {
    display: inline-block;
  }
}
.spotlight .spot-button + .spot-button, .spotlight .go_to + .spot-button,
.gallery-listing .spot-button + .spot-button,
.gallery-listing .go_to + .spot-button,
.contest_list .spot-button + .spot-button,
.contest_list .go_to + .spot-button {
  margin-left: 60px;
}
.spotlight .links a,
.gallery-listing .links a,
.contest_list .links a {
  margin-top: 10px;
}
.spotlight[data-layout=square],
.gallery-listing[data-layout=square],
.contest_list[data-layout=square] {
  *zoom: 1;
  width: 100%;
  margin: 0 auto 40px;
  border-top: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.spotlight[data-layout=square]:before, .spotlight[data-layout=square]:after,
.gallery-listing[data-layout=square]:before,
.gallery-listing[data-layout=square]:after,
.contest_list[data-layout=square]:before,
.contest_list[data-layout=square]:after {
  content: " ";
  display: table;
}
.spotlight[data-layout=square]:after,
.gallery-listing[data-layout=square]:after,
.contest_list[data-layout=square]:after {
  clear: both;
}
.spotlight[data-layout=square] .entry,
.gallery-listing[data-layout=square] .entry,
.contest_list[data-layout=square] .entry {
  width: 100%;
  float: left;
  padding: 0;
  border: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.spotlight[data-layout=square] .entry .thumb,
.gallery-listing[data-layout=square] .entry .thumb,
.contest_list[data-layout=square] .entry .thumb {
  display: block;
  width: 100%;
  margin-bottom: 0px;
  margin-right: 0;
  max-height: 180px;
  overflow: hidden;
}
.spotlight[data-layout=square] .entry .thumb:after,
.gallery-listing[data-layout=square] .entry .thumb:after,
.contest_list[data-layout=square] .entry .thumb:after {
  display: none;
}
.spotlight[data-layout=square] .entry .info,
.gallery-listing[data-layout=square] .entry .info,
.contest_list[data-layout=square] .entry .info {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}
.spotlight[data-layout=square] .entry.no_content .info .title,
.gallery-listing[data-layout=square] .entry.no_content .info .title,
.contest_list[data-layout=square] .entry.no_content .info .title {
  flex-grow: 1;
}
.spotlight[data-layout=square] .entry .title,
.gallery-listing[data-layout=square] .entry .title,
.contest_list[data-layout=square] .entry .title {
  text-align: left;
  flex-grow: 1;
  margin-bottom: 40px;
}
.spotlight[data-layout=square] .entry .title:before,
.gallery-listing[data-layout=square] .entry .title:before,
.contest_list[data-layout=square] .entry .title:before {
  display: none;
}
.spotlight[data-layout=square] .entry .spot-button, .spotlight[data-layout=square] .entry .go_to,
.gallery-listing[data-layout=square] .entry .spot-button,
.gallery-listing[data-layout=square] .entry .go_to,
.contest_list[data-layout=square] .entry .spot-button,
.contest_list[data-layout=square] .entry .go_to {
  width: calc(100% - 40px);
  margin: auto;
}
@media screen and (min-width: 501px) {
  .spotlight[data-layout=square] .entry,
  .gallery-listing[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry {
    width: calc(100% / (3 - 1) - 30px);
    margin: 0 15px 40px;
  }
  .spotlight[data-layout=square] .entry:nth-child(odd),
  .gallery-listing[data-layout=square] .entry:nth-child(odd),
  .contest_list[data-layout=square] .entry:nth-child(odd) {
    clear: left;
  }
}
@media screen and (min-width: 871px) {
  .spotlight[data-layout=square] .entry,
  .gallery-listing[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry {
    width: calc(100% / 3 - 30px);
  }
  .spotlight[data-layout=square] .entry:nth-child(odd),
  .gallery-listing[data-layout=square] .entry:nth-child(odd),
  .contest_list[data-layout=square] .entry:nth-child(odd) {
    clear: none;
  }
  .spotlight[data-layout=square] .entry:nth-child(4n+1),
  .gallery-listing[data-layout=square] .entry:nth-child(4n+1),
  .contest_list[data-layout=square] .entry:nth-child(4n+1) {
    clear: left;
  }
}

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  position: relative;
  margin: 25px 0;
  padding: 0 6%;
}
@media screen and (min-width: 960px) {
  .link {
    padding: 0 2%;
  }
}
.link ul.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.link ul.list li {
  position: relative;
  background: none;
  *zoom: 1;
}
.link ul.list li:before, .link ul.list li:after {
  content: " ";
  display: table;
}
.link ul.list li:after {
  clear: both;
}
.link ul.list span, .link ul.list a {
  display: inline-block;
  margin: 0 0 5px;
  background-color: transparent;
  font-family: "Judson", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.5px;
  color: #1e1e1e;
}
.link ul.list .description {
  display: block;
}
.link ul.list .description p {
  margin: -10px 3.5% 10px;
  font-size: 13px;
}
.link ul.list a {
  position: relative;
  padding: 0 0 0 50px;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.link ul.list a:hover, .link ul.list a:focus {
  text-decoration: none;
  color: #660A0F;
}
.link ul.list a:hover:after, .link ul.list a:focus:after {
  background-position: 0 -37px;
  color: #660A0F;
}
.link ul.list a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 5px;
  left: 0px;
  width: 29px;
  height: 26px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  font-style: normal;
  color: #c9c9c9;
}
.link ul.list a:after:hover:after, .link ul.list a:after:focus:after {
  background-position: 0 -37px;
}
.link ul.list a.external:after {
  background-position: 0 0;
}
.link ul.list a.external:hover:after, .link ul.list a.external:focus:after {
  background-position: 0 -37px;
}
.link ul.list a.email:after {
  top: 10px;
  background-position: 0 -88px;
}
.link ul.list a.email:hover:after, .link ul.list a.email:focus:after {
  background-position: 0 -124px;
}
.link ul.list a.image:after {
  background-position: 0 -167px;
}
.link ul.list a.image:hover:after, .link ul.list a.image:focus:after {
  background-position: 0 -214px;
}
.link ul.list a.pdf:after {
  background-position: 0 -267px;
}
.link ul.list a.pdf:hover:after, .link ul.list a.pdf:focus:after {
  background-position: 0 -306px;
}
.link ul.list a[href*=facebook]:after {
  content: "\f09a";
  top: 0px;
  left: 10px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a[href*=twitter]:after {
  content: "\e61b";
  top: -1px;
  left: 8px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a[href*=foxtheatrestl]:after {
  content: "\e61b";
  top: -1px;
  left: 8px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a[href*=instagram]:after {
  content: "\f16d";
  top: -1px;
  left: 8px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a[href*=youtube]:after, .link ul.list a[href*="youtu.be"]:after {
  content: "\f16a";
  top: -1px;
  left: 7px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a.gplus:after, .link ul.list a[href*="plus.google"]:after {
  content: "\f0d5";
  top: 2px;
  left: 9px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}
.link ul.list a.pins:after, .link ul.list a[href*=pinterest]:after {
  content: "\f231";
  top: -1px;
  left: 9px;
  background-image: none;
  font-family: "FontAwesome";
  font-size: 22px;
}

/* Faq */
.faq {
  position: relative;
  background-color: #fff;
  margin: 20px 0 30px;
  padding: 0 6%;
  clear: both;
}
@media screen and (min-width: 960px) {
  .faq {
    padding: 0 2%;
  }
}
.faq .dl {
  font-size: 11px;
}
.faq .faq_item_wrapper {
  margin-bottom: 10px;
}
.faq .faq_question {
  position: relative;
  margin: 0 0 0px;
  padding: 0px 0;
  background-color: #660A0F;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.faq .faq_question:before, .faq .faq_question:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 2px;
  right: 22px;
  width: 20px;
  height: 40px;
  background-color: transparent;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0px -219px;
  z-index: 4;
}
.faq .faq_question:after {
  right: 2px;
  transform: rotate(-180deg);
}
.faq .faq_question a {
  display: block;
  padding: 0;
  text-decoration: none;
  z-index: 4;
}
.faq .faq_question a:before, .faq .faq_question a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
}
.faq .faq_question a:before {
  width: 50px;
  right: 80px;
  height: 47px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: 4;
}
.faq .faq_question a:after {
  width: 130px;
  height: 100%;
  min-height: 47px;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  right: 0px;
}
.faq .faq_question p {
  position: relative;
  margin: 0;
  padding: 10px 45px 10px 20px;
  font-family: "Judson", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: none;
  z-index: 5;
}
.faq .faq_question p:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 15px;
  right: 22px;
  width: 2px;
  height: 14px;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  z-index: 5;
}
.faq .faq_question p:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 21px;
  right: 16px;
  width: 14px;
  height: 2px;
  background-color: #fff;
  z-index: 5;
}
.faq .faq_question.active p, .faq .faq_question.open p {
  color: #fff;
  border: none;
}
.faq .faq_question.open p:before {
  opacity: 0;
  visibility: hidden;
}
.faq .faq_answer {
  display: none;
  background-color: hsl(44, 9%, 96%);
  background-color: rgb(246, 240, 223);
  margin: 0px;
  padding: 20px;
  overflow: hidden;
}
.faq .faq_answer p {
  font-size: 14px;
  line-height: 22px;
  color: #1e1e1e;
}
.faq .faq_answer ul,
.faq .faq_answer ol {
  margin: 10px 0;
}
.faq .faq_answer ul li,
.faq .faq_answer ol li {
  margin: 0 0 9px 0;
  font-size: 14px;
  color: #646464;
}
.faq .faq_answer a {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  color: #660A0F;
}
.faq .faq_answer a:hover {
  text-decoration: none;
  color: #b4111a;
}
.faq .faq_answer ul {
  position: relative;
}
.faq .faq_answer ul li {
  position: relative;
  padding-left: 20px;
}
.faq .faq_answer ul li:before, .faq .faq_answer ul li:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #660A0F;
}
.faq .faq_answer ul li:after {
  transform: rotate(-45deg);
}
.faq .faq_answer ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}
.faq .faq_answer ol li {
  position: relative;
  padding-left: 20px;
  list-style: none;
}
.faq .faq_answer ol li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  font-size: 18px;
  font-family: "Judson", serif;
  font-style: normal;
  color: #9e843c;
}
.faq .faq_answer ol li:after {
  content: ".";
  display: block;
  position: absolute;
  top: 0;
  left: 9px;
  width: 1px;
  height: 1px;
  color: #9e843c;
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.noevents,
.novenues {
  width: 100%;
  padding: 45px 20px;
  background-color: #fff;
  text-align: center;
}

.no_ticket_link {
  display: none !important;
}

.elp.right {
  position: relative;
  width: 200px;
  height: 100%;
}
.elp.right .ev-view {
  float: right;
  position: relative;
  width: 60%;
  height: 100%;
  min-height: 88px;
  top: 4px;
  height: 90px;
}
.elp.right .ev-view .toggle {
  display: inline-block;
  float: left;
  position: relative;
  width: 49%;
  padding: 50px 0 19px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.elp.right .ev-view .toggle:hover, .elp.right .ev-view .toggle.is-active {
  background-color: #e1c883;
}
.elp.right .ev-view .toggle:hover svg, .elp.right .ev-view .toggle.is-active svg {
  fill: #1e1e1e;
}
.elp.right .ev-view .toggle.calendar {
  display: none;
}
.elp.right .ev-view .toggle svg {
  position: absolute;
  display: block;
  width: 24px;
  top: 20px;
  height: 25px;
  left: 29%;
  fill: #1e1e1e;
  z-index: 8;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.event_list {
  *zoom: 1;
  position: relative;
  margin: 0 auto;
}
.event_list:before, .event_list:after {
  content: " ";
  display: table;
}
.event_list:after {
  clear: both;
}
@media screen and (min-width: 660px) {
  .event_list {
    max-width: 667px;
  }
}
@media screen and (min-width: 1024px) {
  .event_list {
    max-width: 990px;
  }
}
@media screen and (min-width: 1290px) {
  .event_list {
    max-width: 1280px;
    padding: 0;
  }
}
.event_list .list {
  position: relative;
  margin-top: 10px;
}
.event_list .list.all .eventItem .venue {
  display: block;
}
@media screen and (min-width: 1100px) {
  .event_list .list {
    position: relative;
    margin-top: 45px;
  }
}
.event_list .eventItem {
  position: relative;
  width: 100%;
  max-width: 306px;
  height: 427px;
  margin: 0 auto 10px;
  overflow: hidden;
  *zoom: 1;
}
.event_list .eventItem:before, .event_list .eventItem:after {
  content: " ";
  display: table;
}
.event_list .eventItem:after {
  clear: both;
}
@media screen and (min-width: 700px) {
  .event_list .eventItem {
    float: left;
    margin: 0 0 20px 18px;
  }
}
@media screen and (min-width: 1290px) {
  .event_list .eventItem:nth-child(4n+1) {
    margin-left: 0;
  }
  .event_list .eventItem:hover .buttons, .event_list .eventItem:focus .buttons {
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    background-color: rgba(0, 0, 0, 0.78);
  }
}
.event_list .eventItem .thumb {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.event_list .eventItem .thumb a {
  display: block;
  width: 100%;
}
.event_list .eventItem .thumb a img {
  width: 100%;
}
.event_list .eventItem .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 114px;
  background-color: #1e1e1e;
  border: 0;
  margin: -5px 0 0;
  padding: 0px 20px 4px;
  z-index: 5;
  *zoom: 1;
}
.event_list .eventItem .info:before, .event_list .eventItem .info:after {
  content: " ";
  display: table;
}
.event_list .eventItem .info:after {
  clear: both;
}
.event_list .eventItem .title {
  margin: 16px 0 2px;
  line-height: 21px;
}
.event_list .eventItem .title a {
  display: inline-block;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 21px;
  color: #fff;
}
.event_list .eventItem .title a:hover, .event_list .eventItem .title a:focus {
  color: #e1c883;
}
.event_list .eventItem .date {
  padding-top: 9px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: none;
}
.event_list .eventItem .date.light_title {
  padding: 13px 20px 10px;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
  display: block;
}
.event_list .eventItem .date.light_title:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.event_list .eventItem .date.light_title:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}
.event_list .eventItem .evtagline, .event_list .eventItem .tagline {
  width: 82%;
  margin-bottom: 10px;
  font-family: "Muli", sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e1c883;
}
.event_list .eventItem .buttons {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 274px;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 1;
  overflow: hidden;
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 250ms linear;
  -moz-transition: opacity 250ms linear;
  -o-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
  display: none;
}
.event_list .eventItem .buttons a {
  display: block;
  top: 64px;
  width: 224px;
  min-height: 42px;
  background-color: transparent;
  border-top: 2px solid #e1c883;
  border-bottom: 2px solid #e1c883;
  margin: 0 auto 44px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.event_list .eventItem .buttons a:before, .event_list .eventItem .buttons a:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  width: 20px;
  height: 42px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  z-index: 1;
}
.event_list .eventItem .buttons a:before {
  left: -20px;
  background-position: 0 -167px;
}
.event_list .eventItem .buttons a:after {
  background-position: 0 -167px;
  right: -19px;
  transform: rotate(-180deg);
}
.event_list .eventItem .buttons a:hover, .event_list .eventItem .buttons a:focus {
  background-color: #d3a62c;
  border-color: transparent;
  color: #1e1e1e;
}
.event_list .eventItem .buttons a:hover:before, .event_list .eventItem .buttons a:hover:after, .event_list .eventItem .buttons a:focus:before, .event_list .eventItem .buttons a:focus:after {
  background-position: 0 -110px;
}
.event_list .eventItem .buttons a:hover:after, .event_list .eventItem .buttons a:focus:after {
  top: -3px;
}
.event_list .eventItem .thumb .buttons {
  display: block;
}
.event_list .eventItem:hover .buttons, .event_list .eventItem:focus .buttons, .event_list .eventItem.is-focused .buttons {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing {
    max-width: 1064px;
    padding: 0 20px;
  }
  .event_list.event_list_listing .eventItem {
    position: relative;
    width: 100%;
    height: 170px;
    min-height: 170px;
    max-width: 306px;
    background-color: #f6f0df;
    border-bottom: 2px solid #e1c883;
    margin: 0 auto 20px;
  }
  .event_list.event_list_listing .eventItem:first-child {
    margin-top: 10px;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem {
    max-width: 100%;
  }
  .event_list.event_list_listing .eventItem:first-child {
    margin-top: 0px;
  }
  .event_list.event_list_listing .eventItem:hover .buttons, .event_list.event_list_listing .eventItem:focus .buttons {
    background-color: transparent;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .date {
    display: block;
  }
  .event_list.event_list_listing .eventItem .date.light_title {
    display: none;
  }
  .event_list.event_list_listing .eventItem .thumb {
    display: block;
  }
  .event_list.event_list_listing .eventItem .thumb .buttons {
    display: none;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .thumb {
    float: left;
    width: 192px;
    height: 170px;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .thumb + .info {
    padding-left: 192px;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) and (min-width: 1100px) {
  .event_list.event_list_listing .eventItem .thumb + .info {
    position: relative;
    min-height: 170px;
    background-color: transparent;
    margin: 0;
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .thumb a {
    display: block;
    cursor: pointer;
  }
  .event_list.event_list_listing .eventItem .thumb img {
    display: block;
    width: 100%;
    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.event_list_listing .eventItem .thumb img:hover {
    opacity: 0.7;
  }
  .event_list.event_list_listing .eventItem .thumb:hover, .event_list.event_list_listing .eventItem .thumb:focus {
    zoom: 1;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
  }
  .event_list.event_list_listing .eventItem .info {
    position: relative;
    width: 100%;
    background-color: #1e1e1e;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info {
    background-color: transparent;
    bottom: auto;
    top: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info > .date {
    position: relative;
    background-color: #660A0F;
    color: #fff;
    z-index: 6;
    position: relative;
    max-height: 37px;
    padding: 11px 20px 10px;
    text-transform: uppercase;
    display: block;
  }
  .event_list.event_list_listing .eventItem .info > .date:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 80px;
    width: 50px;
    background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
    z-index: -1;
  }
  .event_list.event_list_listing .eventItem .info > .date:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0px;
    width: 130px;
    height: 100%;
    background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
    z-index: -2;
  }
  .event_list.event_list_listing .eventItem .info > .date span {
    color: #fff;
  }
  .event_list.event_list_listing .eventItem .info h3 {
    margin: 15px 0 6px 21px;
  }
}
@media screen and (min-width: 700px) and (min-width: 1001px) {
  .event_list.event_list_listing .eventItem .info h3 {
    width: 66%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info h3 a {
    display: block;
    font-size: 23px;
    color: #1e1e1e;
    text-decoration: none;
    text-transform: none;
  }
  .event_list.event_list_listing .eventItem .info h3 a:hover, .event_list.event_list_listing .eventItem .info h3 a:focus {
    color: #660A0F;
  }
  .event_list.event_list_listing .eventItem .info h4 {
    margin: 0 21px 10px;
    font-family: "Muli", sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #1e1e1e;
    letter-spacing: 0.1em;
    line-height: 1.6em;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info h4 {
    margin-right: 0;
  }
}
@media screen and (min-width: 700px) and (min-width: 1001px) {
  .event_list.event_list_listing .eventItem .info h4 {
    width: 66%;
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info .teaser {
    margin: 0 20px;
    padding: 0;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info .teaser {
    width: 57%;
    margin-right: 0;
    margin-left: 21px;
  }
}
@media screen and (min-width: 700px) and (min-width: 900px) {
  .event_list.event_list_listing .eventItem .info .teaser {
    width: 65%;
  }
}
@media screen and (min-width: 700px) and (min-width: 1100px) {
  .event_list.event_list_listing .eventItem .info .teaser {
    width: 70%;
  }
}
@media screen and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .info .teaser p {
    font-size: 12px;
  }
  .event_list.event_list_listing .eventItem .info .teaser p:last-of-type {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .event_list.event_list_listing .eventItem .buttons {
    display: block;
    position: absolute;
    top: auto;
    bottom: 16px;
    left: 210px;
    width: auto;
    height: 45px;
    background-color: transparent;
    z-index: 10;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
  }
  .event_list.event_list_listing .eventItem .buttons:hover, .event_list.event_list_listing .eventItem .buttons:focus {
    top: auto;
    height: 45px;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba,
  .event_list.event_list_listing .eventItem .buttons span.onsale,
  .event_list.event_list_listing .eventItem .buttons span.tickets,
  .event_list.event_list_listing .eventItem .buttons a {
    float: left;
    display: block;
    position: relative;
    min-height: 40px;
    width: 175px;
    background-color: #1e1e1e;
    top: 0;
    border-top: 0;
    border-bottom: 0;
    margin: 0 30px 0 20px;
    padding: 8px 0px;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0ms linear;
    -moz-transition: all 0ms linear;
    -o-transition: all 0ms linear;
    transition: all 0ms linear;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:hover, .event_list.event_list_listing .eventItem .buttons span.tba:focus,
  .event_list.event_list_listing .eventItem .buttons span.onsale:hover,
  .event_list.event_list_listing .eventItem .buttons span.onsale:focus,
  .event_list.event_list_listing .eventItem .buttons span.tickets:hover,
  .event_list.event_list_listing .eventItem .buttons span.tickets:focus,
  .event_list.event_list_listing .eventItem .buttons a:hover,
  .event_list.event_list_listing .eventItem .buttons a:focus {
    padding-top: 8px;
    padding-bottom: 8px;
    border: 0;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:before, .event_list.event_list_listing .eventItem .buttons span.tba:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:before,
  .event_list.event_list_listing .eventItem .buttons span.onsale:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:before,
  .event_list.event_list_listing .eventItem .buttons span.tickets:after,
  .event_list.event_list_listing .eventItem .buttons a:before,
  .event_list.event_list_listing .eventItem .buttons a:after {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    position: absolute;
    top: 0;
    width: 20px;
    height: 40px;
    background-image: url("../images/button-art.png");
    background-repeat: no-repeat;
    background-position: 0 -270px;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:before,
  .event_list.event_list_listing .eventItem .buttons span.onsale:before,
  .event_list.event_list_listing .eventItem .buttons span.tickets:before,
  .event_list.event_list_listing .eventItem .buttons a:before {
    left: -20px;
    background-position: 0 -270px;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:after,
  .event_list.event_list_listing .eventItem .buttons a:after {
    right: -20px;
    transform: rotate(-180deg);
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:hover, .event_list.event_list_listing .eventItem .buttons span.tba:focus,
  .event_list.event_list_listing .eventItem .buttons span.onsale:hover,
  .event_list.event_list_listing .eventItem .buttons span.onsale:focus,
  .event_list.event_list_listing .eventItem .buttons span.tickets:hover,
  .event_list.event_list_listing .eventItem .buttons span.tickets:focus,
  .event_list.event_list_listing .eventItem .buttons a:hover,
  .event_list.event_list_listing .eventItem .buttons a:focus {
    background-color: #d3a62c;
    color: #fff;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:hover:before, .event_list.event_list_listing .eventItem .buttons span.tba:hover:after, .event_list.event_list_listing .eventItem .buttons span.tba:focus:before, .event_list.event_list_listing .eventItem .buttons span.tba:focus:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:hover:before,
  .event_list.event_list_listing .eventItem .buttons span.onsale:hover:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:focus:before,
  .event_list.event_list_listing .eventItem .buttons span.onsale:focus:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:hover:before,
  .event_list.event_list_listing .eventItem .buttons span.tickets:hover:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:focus:before,
  .event_list.event_list_listing .eventItem .buttons span.tickets:focus:after,
  .event_list.event_list_listing .eventItem .buttons a:hover:before,
  .event_list.event_list_listing .eventItem .buttons a:hover:after,
  .event_list.event_list_listing .eventItem .buttons a:focus:before,
  .event_list.event_list_listing .eventItem .buttons a:focus:after {
    background-position: 0 -110px;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba:hover:after, .event_list.event_list_listing .eventItem .buttons span.tba:focus:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:hover:after,
  .event_list.event_list_listing .eventItem .buttons span.onsale:focus:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:hover:after,
  .event_list.event_list_listing .eventItem .buttons span.tickets:focus:after,
  .event_list.event_list_listing .eventItem .buttons a:hover:after,
  .event_list.event_list_listing .eventItem .buttons a:focus:after {
    top: 0;
  }
}
@media screen and (min-width: 700px) and (min-width: 1001px) {
  .event_list.event_list_listing .eventItem .buttons {
    display: block;
    position: absolute;
    right: 30px;
    top: 57px;
    left: auto;
    width: 224px;
    height: 100%;
  }
  .event_list.event_list_listing .eventItem .buttons:hover, .event_list.event_list_listing .eventItem .buttons:focus {
    top: 57px;
    height: auto;
  }
  .event_list.event_list_listing .eventItem .buttons a:first-child {
    margin-bottom: 10px;
  }
  .event_list.event_list_listing .eventItem .buttons span.tba,
  .event_list.event_list_listing .eventItem .buttons span.onsale,
  .event_list.event_list_listing .eventItem .buttons span.tickets,
  .event_list.event_list_listing .eventItem .buttons a {
    float: none;
    margin-right: 0;
  }
}

@media screen and (min-width: 1100px) {
  .fixed.global_header {
    position: fixed;
    top: 109px;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
  }
  .fixed.global_header.tb-down {
    top: 154px;
  }
}

.load-more-button {
  height: 95px;
  margin: 35px 0 40px;
  text-align: center;
}

.load-symbol {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: block;
}
.load-symbol:before, .load-symbol:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  background-color: #1e1e1e;
}
.load-symbol:before {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 34%;
}
.load-symbol:after {
  width: 2px;
  height: 20px;
  top: 35%;
  left: 49%;
}
.load-symbol:hover:before, .load-symbol:hover:after, .load-symbol:focus:before, .load-symbol:focus:after {
  background-color: #ffffff;
}
.load-symbol .icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.load-symbol .icon.more-events {
  fill: #e1c883;
}
.load-symbol .icon:hover.more-events, .load-symbol .icon:focus.more-events {
  fill: #1e1e1e;
}

.show_all_events,
.show_more_events,
#loadMoreEvents {
  position: relative;
  width: auto;
  background: none;
  border: none;
  margin: auto;
  padding: 0;
  display: block;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.show_all_events .load-label,
.show_more_events .load-label,
#loadMoreEvents .load-label {
  display: block;
  margin: 15px 0 0;
  font-family: "Muli", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #1e1e1e;
}
.show_all_events:focus,
.show_more_events:focus,
#loadMoreEvents:focus {
  outline: none;
}
.show_all_events[disabled=disabled], .show_all_events[disabled=true],
.show_more_events[disabled=disabled],
.show_more_events[disabled=true],
#loadMoreEvents[disabled=disabled],
#loadMoreEvents[disabled=true] {
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}

.showings-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  opacity: 0 !important;
  pointer-events: none;
  transition: 500ms;
}
.showings-wrapper .buttons .buttons-hide, .showings-wrapper .buttons .more {
  display: none !important;
}
.showings-wrapper .buttons a {
  width: auto;
  height: auto;
  text-indent: 0;
}
.showings-wrapper .buttons a svg {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-45deg) skew(0deg);
  transform: rotate(-45deg) skew(0deg);
  fill: #ff9800;
  margin-right: 10px;
}
.showings-wrapper:not(.active) * {
  pointer-events: none !important;
}
.showings-wrapper.active {
  opacity: 1 !important;
  pointer-events: all;
}
.showings-wrapper .showings-container-outer {
  position: relative;
  background: white;
  width: 860px;
  max-height: calc(100vh - 2rem);
  max-width: calc(100vw - 2rem);
}
.showings-wrapper .showings-container-outer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  z-index: 99;
}
.showings-wrapper .showings-container-outer > .close {
  position: absolute;
  display: block;
  z-index: 50;
  top: -25px;
  right: -25px;
  width: 50px;
  height: 50px;
  background: url(../images/button_close.png) no-repeat center center;
  cursor: pointer;
  z-index: 99;
}
.showings-wrapper .showings-container {
  position: relative;
  background: white;
  overflow: auto;
  width: 860px;
  max-height: calc(100vh - 2rem);
  max-width: calc(100vw - 2rem);
  padding: 1rem;
}
@media screen and (max-width: 700px) {
  .showings-wrapper .showings-container {
    padding: 0.75rem;
  }
}
.showings-wrapper .showings-container > .eventItem {
  position: sticky;
  top: 0;
  z-index: 99;
}
@media screen and (max-width: 699px) {
  .showings-wrapper .showings-container > .eventItem {
    max-width: none;
    height: auto;
  }
  .showings-wrapper .showings-container > .eventItem .thumb {
    display: none;
  }
  .showings-wrapper .showings-container > .eventItem .info {
    position: relative;
    height: auto;
    min-height: 0;
    padding-bottom: 15px;
    padding-top: 5px;
  }
  .showings-wrapper .showings-container > .eventItem > .buttons {
    position: relative;
    left: auto;
    bottom: auto;
    top: auto;
    right: auto;
    z-index: 9999;
    display: block;
    height: auto;
  }
  .showings-wrapper .showings-container > .eventItem > .buttons a {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 10px 30px;
    max-width: calc(100% - 60px);
  }
}
@media screen and (min-width: 560px) {
  .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .date, .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .venue, .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .title {
    max-width: calc(100% - 265px);
  }
}
@media screen and (min-width: 560px) and (max-width: 870px) {
  .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .date, .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .venue, .showings-wrapper .showings-container > .eventItem.has-edp-tickets .info .title {
    max-width: calc(100% - 140px);
  }
}
.showings-wrapper .showings-container > .eventItem .info {
  max-height: none;
}
.showings-wrapper .showings-container > .eventItem .buttons.showing_link {
  height: 100%;
  position: initial !important;
}
.showings-wrapper .showings-container > .eventItem .buttons.showing_link .but-info, .showings-wrapper .showings-container > .eventItem .buttons.showing_link .but-tick {
  display: none !important;
}
.showings-wrapper .showings-container > .eventItem .edp.ticket {
  display: block !important;
  position: absolute;
  background-color: #e1c883;
  line-height: 40px;
  clear: both;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(0deg) skew(-10deg) !important;
}
@media screen and (max-width: 870px) and (min-width: 560px) {
  .showings-wrapper .showings-container > .eventItem .edp.ticket {
    width: 110px !important;
  }
}
.showings-wrapper .showings-container > .eventItem .edp.ticket:hover, .showings-wrapper .showings-container > .eventItem .edp.ticket:focus {
  background-color: #FFA800;
}
@media screen and (min-width: 700px) {
  .showings-wrapper .showings-container > .eventItem .edp.ticket {
    width: 242px;
    height: 53px;
    transform: rotate(0deg) skew(-10deg);
  }
}
.showings-wrapper .showings-container > .eventItem .edp.ticket .tickets {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1d2c3e;
  z-index: 5;
  font-weight: 700;
  line-height: 52px;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 870px) and (min-width: 560px) {
  .showings-wrapper .showings-container > .eventItem .edp.ticket .tickets {
    text-indent: -999em;
  }
}
.showings-wrapper .showings-container > .eventItem .edp.ticket .tickets:hover, .showings-wrapper .showings-container > .eventItem .edp.ticket .tickets:focus {
  text-decoration: none;
}
.showings-wrapper .showings-container > .eventItem .edp.ticket .ticket-icon {
  position: absolute;
  top: 17px;
  left: 40px;
  width: 30px;
  height: 18px;
  fill: #1d2c3e;
  z-index: -1;
  transform: rotate(0deg) skew(10deg);
}
.showings-wrapper .showings-container .ticket_section {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  clear: both;
}
.showings-wrapper .showings-container .showings_list:last-child {
  margin-bottom: 0;
}
.showings-wrapper .showings-container .additional_ticket_dl:before, .showings-wrapper .showings-container .additional_ticket_dl:after {
  display: none;
}
.showings-wrapper .showings-container .additional_ticket_dl .faq_question {
  background: #fff !important;
}
.showings-wrapper .additional_tickets .section_header {
  display: none;
}
/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.full .full_column.event_detail {
  width: 100%;
  background-color: transparent;
}
@media screen and (min-width: 700px) {
  .full .full_column.event_detail {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 1283px) {
  .full .full_column.event_detail {
    max-width: 1280px;
    padding-bottom: 45px;
  }
}

@media screen and (min-width: 700px) {
  #events.detail .global_header {
    min-height: 93px;
  }
}
#events.detail #content {
  *zoom: 1;
}
#events.detail #content:before, #events.detail #content:after {
  content: " ";
  display: table;
}
#events.detail #content:after {
  clear: both;
}
#events.detail #content .full {
  *zoom: 1;
}
#events.detail #content .full:before, #events.detail #content .full:after {
  content: " ";
  display: table;
}
#events.detail #content .full:after {
  clear: both;
}

.event_detail {
  *zoom: 1;
}
.event_detail:before, .event_detail:after {
  content: " ";
  display: table;
}
.event_detail:after {
  clear: both;
}
.event_detail #branding {
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .event_detail #branding {
    margin-bottom: 20px;
  }
}
.event_detail .event_heading {
  display: none;
}
.event_detail .faq.content_item {
  padding: 0;
}
.event_detail .ev-sidebar, .event_detail .rightBreakout .detail-list {
  position: relative;
  width: 100%;
  background-color: #1e1e1e;
  margin-top: 0px;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #e1c883;
  *zoom: 1;
  float: left;
  max-width: 306px;
  padding: 23px 23px 8px 23px;
  margin-bottom: 180px;
}
.event_detail .ev-sidebar:before, .event_detail .ev-sidebar:after, .event_detail .rightBreakout .detail-list:before, .event_detail .rightBreakout .detail-list:after {
  content: " ";
  display: table;
}
.event_detail .ev-sidebar:after, .event_detail .rightBreakout .detail-list:after {
  clear: both;
}
@media screen and (max-width: 870px) {
  .event_detail .ev-sidebar, .event_detail .rightBreakout .detail-list {
    padding: 23px;
    padding-bottom: 33px;
    margin-bottom: 0;
  }
}
.event_detail .ev-sidebar:before, .event_detail .rightBreakout .detail-list:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  display: block;
  width: calc(100% - 17px);
  height: 100%;
  border: 2px solid #e1c883;
  border-bottom: none;
  z-index: 1;
}
@media screen and (max-width: 870px) {
  .event_detail .ev-sidebar:before, .event_detail .rightBreakout .detail-list:before {
    height: calc(100% - 18px);
    border-bottom: 2px solid #e1c883;
  }
}
.event_detail .ev-sidebar .details, .event_detail .rightBreakout .detail-list .details {
  position: relative;
  z-index: 2;
}
.event_detail .ev-sidebar:after, .event_detail .rightBreakout .detail-list:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  left: 0;
  width: 100%;
  height: 160px;
  background: transparent url("../images/bigsidebarfooter-img.png") no-repeat 0 0;
}
.event_detail .ev-sidebar .thumb, .event_detail .rightBreakout .detail-list .thumb {
  width: 100%;
  margin: 5px auto 20px;
  background-color: #1e1e1e;
  padding: 0px;
}
.event_detail .ev-sidebar .thumb img, .event_detail .rightBreakout .detail-list .thumb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 870px) {
  .event_detail .ev-sidebar .thumb, .event_detail .rightBreakout .detail-list .thumb {
    display: none;
  }
}
.event_detail .ev-sidebar svg, .event_detail .rightBreakout .detail-list svg {
  display: none;
}
.event_detail .ev-sidebar .item, .event_detail .rightBreakout .detail-list .item {
  position: relative;
  padding: 20px 0px 19px;
  text-align: center;
  border-bottom: 1px solid #e1c883;
  margin-right: 9px;
  margin-left: 9px;
  text-align: left;
}
.event_detail .ev-sidebar .label, .event_detail .rightBreakout .detail-list .label {
  display: block;
  margin-bottom: 8px;
  font-family: "Judson", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 20px;
  color: #fff;
}
.event_detail .ev-sidebar .m, .event_detail .ev-sidebar .d, .event_detail .ev-sidebar .dd, .event_detail .rightBreakout .detail-list .m, .event_detail .rightBreakout .detail-list .d, .event_detail .rightBreakout .detail-list .dd {
  display: inline-block;
  margin-right: 3px;
}
.event_detail .ev-sidebar .m, .event_detail .rightBreakout .detail-list .m {
  margin-right: 5px;
}
.event_detail .ev-sidebar .icon, .event_detail .rightBreakout .detail-list .icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  display: block;
  width: 22px;
  height: 22px;
  fill: #e1c883;
}
.event_detail .ev-sidebar .sidebar_on_sale .tickets, .event_detail .rightBreakout .detail-list .sidebar_on_sale .tickets {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  text-indent: 0;
  color: #fff;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.event_detail .ev-sidebar .sidebar_on_sale .tickets b, .event_detail .rightBreakout .detail-list .sidebar_on_sale .tickets b {
  text-transform: uppercase;
}
.event_detail .ev-sidebar .sidebar_on_sale .tickets:hover, .event_detail .rightBreakout .detail-list .sidebar_on_sale .tickets:hover {
  color: #e1c883;
  text-decoration: none;
}
@media screen and (min-width: 1260px) {
  .event_detail .ev-sidebar .sidebar_on_sale .tickets, .event_detail .rightBreakout .detail-list .sidebar_on_sale .tickets {
    text-align: left;
  }
}
.event_detail .ev-sidebar .extra, .event_detail .rightBreakout .detail-list .extra {
  position: relative;
  margin: 11px 0 0;
  text-align: center;
  margin-right: 9px;
  margin-left: 9px;
  text-align: left;
}
.event_detail .ev-sidebar .extra a, .event_detail .rightBreakout .detail-list .extra a {
  display: block;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  padding-left: 40px;
}
.event_detail .ev-sidebar .extra a:hover, .event_detail .rightBreakout .detail-list .extra a:hover {
  color: #e1c883;
  text-decoration: none;
}
.event_detail .ev-sidebar .seating, .event_detail .rightBreakout .detail-list .seating {
  margin-top: 20px;
}
.event_detail .ev-sidebar .cal, .event_detail .rightBreakout .detail-list .cal {
  display: none;
}
@media screen and (min-width: 1280px) {
  .event_detail .ev-sidebar .cal, .event_detail .rightBreakout .detail-list .cal {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    width: 186px;
    height: 40px;
    border: 1px solid #e1c883;
    background-color: transparent;
    margin: 40px auto 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
  }
  .event_detail .ev-sidebar .cal:hover, .event_detail .rightBreakout .detail-list .cal:hover {
    cursor: pointer;
    background-color: #e1c883;
    color: #1e1e1e;
  }
}
@media screen and (max-width: 870px) {
  .event_detail .ev-sidebar, .event_detail .rightBreakout .detail-list {
    max-width: 100%;
  }
  .event_detail .ev-sidebar:after, .event_detail .rightBreakout .detail-list:after {
    display: none;
  }
}
@media screen and (max-width: 870px) and (min-width: 501px) {
  .event_detail .rightBreakout .detail-list .eventDetailList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item {
    width: 50%;
    margin: 0;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item.sidebar_event_date {
    width: 100%;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item:nth-child(odd) {
    padding-left: 20px;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item:nth-child(odd).sidebar_event_date {
    padding-left: 9px;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item:nth-child(even) {
    border-right: 1px solid #e1c883;
    padding-left: 9px;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .item:nth-last-child(2):nth-child(even) {
    border-bottom: none;
  }
  .event_detail .rightBreakout .detail-list .eventDetailList .extra {
    width: 100%;
  }
}
.event_detail .event-sponsor {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0 20px;
  clear: both;
}
@media screen and (min-width: 960px) {
  .event_detail .event-sponsor {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1260px) {
  .event_detail .event-sponsor {
    max-width: 260px;
    margin: 20px 0 0;
    padding: 0;
    clear: none;
    clear: left;
    float: left;
  }
}
@media screen and (min-width: 1283px) {
  .event_detail .event-sponsor {
    max-width: 306px;
  }
}
.event_detail .event-sponsor .label {
  display: block;
  border-top: 1px solid #e1c883;
  margin-bottom: 10px;
  padding-top: 10px;
  font-family: "Judson", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 20px;
  text-align: center;
  color: #444;
}
@media screen and (min-width: 1260px) {
  .event_detail .event-sponsor .label {
    border-top: 0;
    border-bottom: 1px solid #e1c883;
    padding-bottom: 10px;
    font-family: "Muli", sans-serif;
    font-size: 18px;
    font-style: normal;
  }
}
@media screen and (min-width: 1283px) {
  .event_detail .event-sponsor .label {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.event_detail .event-sponsor .ev-sponsors {
  width: 100%;
  text-align: center;
}
.event_detail .event-sponsor .ev-sponsors .ev-each {
  display: block;
  margin: 0 auto;
  *zoom: 1;
}
.event_detail .event-sponsor .ev-sponsors .ev-each:before, .event_detail .event-sponsor .ev-sponsors .ev-each:after {
  content: " ";
  display: table;
}
.event_detail .event-sponsor .ev-sponsors .ev-each:after {
  clear: both;
}
.event_detail .event-sponsor .ev-sponsors .ev-each a,
.event_detail .event-sponsor .ev-sponsors .ev-each img {
  display: inline-block;
  margin: 0 auto;
}
.event_detail .event-sponsor .ev-sponsors .ev-each a {
  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_detail .event-sponsor .ev-sponsors .ev-each a:hover {
  opacity: 0.7;
}

.faq dd ul.showings_element {
  margin-top: 0;
}
.faq dd ul.showings_element li {
  margin: 0;
  padding: 0;
}
.faq dd ul.showings_element li:before, .faq dd ul.showings_element li:after {
  display: none;
}

.showing_past {
  display: none !important;
}

.showings_list li .button, .showings_list .showings .button, .showings_list .entry .button, .showing-extras li .button, .showing-extras .showings .button, .showing-extras .entry .button, .additional_ticket_dl .button {
  position: relative;
  display: block;
  top: 0px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  margin: 0 20px 20px;
  text-align: center;
  *zoom: 1;
}
.showings_list li .button:before, .showings_list .showings .button:before, .showings_list .entry .button:before, .showing-extras li .button:before, .showing-extras .showings .button:before, .showing-extras .entry .button:before, .additional_ticket_dl .button:before, .showings_list li .button:after, .showings_list .showings .button:after, .showings_list .entry .button:after, .showing-extras li .button:after, .showing-extras .showings .button:after, .showing-extras .entry .button:after, .additional_ticket_dl .button:after {
  content: " ";
  display: table;
}
.showings_list li .button:after, .showings_list .showings .button:after, .showings_list .entry .button:after, .showing-extras li .button:after, .showing-extras .showings .button:after, .showing-extras .entry .button:after, .additional_ticket_dl .button:after {
  clear: both;
}
@media screen and (min-width: 560px) {
  .showings_list li .button, .showings_list .showings .button, .showings_list .entry .button, .showing-extras li .button, .showing-extras .showings .button, .showing-extras .entry .button, .additional_ticket_dl .button {
    position: absolute;
    top: 10px;
    margin-bottom: 0;
    text-align: right;
  }
}
.showings_list li .button a.tickets, .showings_list .showings .button a.tickets, .showings_list .entry .button a.tickets, .showing-extras li .button a.tickets, .showing-extras .showings .button a.tickets, .showing-extras .entry .button a.tickets, .additional_ticket_dl .button a.tickets {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 25px;
  color: #fff;
  transition: none;
}
.showings_list li .button a.tickets:before, .showings_list .showings .button a.tickets:before, .showings_list .entry .button a.tickets:before, .showing-extras li .button a.tickets:before, .showing-extras .showings .button a.tickets:before, .showing-extras .entry .button a.tickets:before, .additional_ticket_dl .button a.tickets:before, .showings_list li .button a.tickets:after, .showings_list .showings .button a.tickets:after, .showings_list .entry .button a.tickets:after, .showing-extras li .button a.tickets:after, .showing-extras .showings .button a.tickets:after, .showing-extras .entry .button a.tickets:after, .additional_ticket_dl .button a.tickets:after {
  background-position: 0 -270px;
}
.showings_list li .button a.tickets:before, .showings_list .showings .button a.tickets:before, .showings_list .entry .button a.tickets:before, .showing-extras li .button a.tickets:before, .showing-extras .showings .button a.tickets:before, .showing-extras .entry .button a.tickets:before, .additional_ticket_dl .button a.tickets:before {
  left: -19px;
}
.showings_list li .button a.tickets:hover, .showings_list .showings .button a.tickets:hover, .showings_list .entry .button a.tickets:hover, .showing-extras li .button a.tickets:hover, .showing-extras .showings .button a.tickets:hover, .showing-extras .entry .button a.tickets:hover, .additional_ticket_dl .button a.tickets:hover {
  background-color: #b4111a;
  color: #fff;
}
.showings_list li .button a.tickets:hover:before, .showings_list .showings .button a.tickets:hover:before, .showings_list .entry .button a.tickets:hover:before, .showing-extras li .button a.tickets:hover:before, .showing-extras .showings .button a.tickets:hover:before, .showing-extras .entry .button a.tickets:hover:before, .additional_ticket_dl .button a.tickets:hover:before, .showings_list li .button a.tickets:hover:after, .showings_list .showings .button a.tickets:hover:after, .showings_list .entry .button a.tickets:hover:after, .showing-extras li .button a.tickets:hover:after, .showing-extras .showings .button a.tickets:hover:after, .showing-extras .entry .button a.tickets:hover:after, .additional_ticket_dl .button a.tickets:hover:after {
  background-position: 0 -54px;
}

.additional_ticket_dl {
  margin-top: -1px;
  z-index: 1;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #b6b6b6;
}
.additional_ticket_dl .faq_item_wrapper {
  margin-bottom: 0;
}
.additional_ticket_dl .faq_item_wrapper .is-opened {
  padding-bottom: 12px;
}
.additional_ticket_dl .faq_question {
  background: #f6f0df !important;
}
.additional_ticket_dl .faq_question:before, .additional_ticket_dl .faq_question:after, .additional_ticket_dl .faq_question a:before, .additional_ticket_dl .faq_question a:after {
  display: none !important;
}
.additional_ticket_dl .faq_question.open .ticket_title:before {
  content: "- ";
}
.additional_ticket_dl .faq_question .ticket_title:before {
  content: "+ ";
}
.additional_ticket_dl .ticket_title {
  white-space: nowrap;
  font-weight: bold;
  font-family: "Judson", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 1px;
  text-align: left;
  color: #1e1e1e;
}
.additional_ticket_dl .advanced_tickets {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .additional_ticket_dl .advanced_tickets {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .additional_ticket_dl .advanced_tickets .button-group {
    margin-top: 10px;
  }
}
.additional_ticket_dl .advanced_tickets + .advanced_tickets {
  margin-top: 0;
}
.additional_ticket_dl .advanced_tickets .ticket_title {
  font-size: 18px;
  font-weight: bold;
}
.additional_ticket_dl .advanced_tickets .buttons a.tickets {
  background-color: transparent !important;
}
.additional_ticket_dl .faq_answer {
  padding: 0 15px;
  background: #fff;
  margin-top: 10px;
  margin-bottom: -10px;
}

.showings-container .additional_ticket_dl .faq_answer {
  background-color: #F6F0DF;
  border-top: 1px solid #B6B6B6;
}
@media screen and (max-width: 700px) {
  .showings-container .additional_ticket_dl .faq_answer {
    padding-top: 10px;
  }
}

.showings-detail-container .showings {
  border-bottom: 1px solid #b6b6b6;
}
.showings-detail-container:last-of-type .showings {
  border-bottom: 0;
}

.showings_list ul, .showing-extras ul {
  list-style: none;
}
.showings_list .showing-details, .showing-extras .showing-details {
  margin-top: 5px;
  text-align: left;
}
.showings_list .section_header, .showing-extras .section_header {
  display: none;
}
.showings_list .showings, .showing-extras .showings {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .showings_list .showings, .showing-extras .showings {
    flex-wrap: wrap;
  }
}
.showings_list li, .showings_list .showings, .showings_list .entry, .showing-extras li, .showing-extras .showings, .showing-extras .entry {
  position: relative;
  min-height: 58px;
  list-style: none;
}
.showings_list li:before, .showings_list .showings:before, .showings_list .entry:before, .showing-extras li:before, .showing-extras .showings:before, .showing-extras .entry:before {
  display: none;
}
.showings_list li .sd, .showings_list .showings .sd, .showings_list .entry .sd, .showing-extras li .sd, .showing-extras .showings .sd, .showing-extras .entry .sd {
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.showings_list li .sdholder, .showings_list .showings .sdholder, .showings_list .entry .sdholder, .showing-extras li .sdholder, .showing-extras .showings .sdholder, .showing-extras .entry .sdholder {
  text-align: center;
}
@media screen and (min-width: 560px) {
  .showings_list li .sdholder, .showings_list .showings .sdholder, .showings_list .entry .sdholder, .showing-extras li .sdholder, .showing-extras .showings .sdholder, .showing-extras .entry .sdholder {
    text-align: left;
  }
}
.showings_list li .date, .showings_list li .time, .showings_list .showings .date, .showings_list .showings .time, .showings_list .entry .date, .showings_list .entry .time, .showing-extras li .date, .showing-extras li .time, .showing-extras .showings .date, .showing-extras .showings .time, .showing-extras .entry .date, .showing-extras .entry .time {
  display: inline-block;
  font-family: "Judson", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 1px;
  text-align: left;
  color: #1e1e1e;
}
.showings_list li .date .m-date__weekday, .showings_list li .time .m-date__weekday, .showings_list .showings .date .m-date__weekday, .showings_list .showings .time .m-date__weekday, .showings_list .entry .date .m-date__weekday, .showings_list .entry .time .m-date__weekday, .showing-extras li .date .m-date__weekday, .showing-extras li .time .m-date__weekday, .showing-extras .showings .date .m-date__weekday, .showing-extras .showings .time .m-date__weekday, .showing-extras .entry .date .m-date__weekday, .showing-extras .entry .time .m-date__weekday {
  display: none !important;
}
.showings_list li .date .presale-time span:not(.Saturday):not(.Sunday), .showings_list li .time .presale-time span:not(.Saturday):not(.Sunday), .showings_list .showings .date .presale-time span:not(.Saturday):not(.Sunday), .showings_list .showings .time .presale-time span:not(.Saturday):not(.Sunday), .showings_list .entry .date .presale-time span:not(.Saturday):not(.Sunday), .showings_list .entry .time .presale-time span:not(.Saturday):not(.Sunday), .showing-extras li .date .presale-time span:not(.Saturday):not(.Sunday), .showing-extras li .time .presale-time span:not(.Saturday):not(.Sunday), .showing-extras .showings .date .presale-time span:not(.Saturday):not(.Sunday), .showing-extras .showings .time .presale-time span:not(.Saturday):not(.Sunday), .showing-extras .entry .date .presale-time span:not(.Saturday):not(.Sunday), .showing-extras .entry .time .presale-time span:not(.Saturday):not(.Sunday) {
  display: none;
}
.showings_list li .ical, .showings_list .showings .ical, .showings_list .entry .ical, .showing-extras li .ical, .showing-extras .showings .ical, .showing-extras .entry .ical {
  display: none;
}
.showings_list li .inside, .showings_list .showings .inside, .showings_list .entry .inside, .showing-extras li .inside, .showing-extras .showings .inside, .showing-extras .entry .inside {
  width: 100%;
  clear: both;
}
.showings_list li .body-copy, .showings_list .showings .body-copy, .showings_list .entry .body-copy, .showing-extras li .body-copy, .showing-extras .showings .body-copy, .showing-extras .entry .body-copy {
  margin-bottom: 0;
}
.showings_list li .group, .showings_list .showings .group, .showings_list .entry .group, .showing-extras li .group, .showing-extras .showings .group, .showing-extras .entry .group {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .showings_list li .group, .showings_list .showings .group, .showings_list .entry .group, .showing-extras li .group, .showing-extras .showings .group, .showing-extras .entry .group {
    width: 100%;
  }
}
.showings_list li .button-group, .showings_list .showings .button-group, .showings_list .entry .button-group, .showing-extras li .button-group, .showing-extras .showings .button-group, .showing-extras .entry .button-group {
  padding: 10px 0px;
}
@media screen and (max-width: 700px) {
  .showings_list li .button-group, .showings_list .showings .button-group, .showings_list .entry .button-group, .showing-extras li .button-group, .showing-extras .showings .button-group, .showing-extras .entry .button-group {
    padding-top: 0;
  }
}
.showings_list li .ticket-date, .showings_list .showings .ticket-date, .showings_list .entry .ticket-date, .showing-extras li .ticket-date, .showing-extras .showings .ticket-date, .showing-extras .entry .ticket-date {
  margin-top: 5px;
}
.showings_list li .m-advancedTickets__tickets, .showings_list .showings .m-advancedTickets__tickets, .showings_list .entry .m-advancedTickets__tickets, .showing-extras li .m-advancedTickets__tickets, .showing-extras .showings .m-advancedTickets__tickets, .showing-extras .entry .m-advancedTickets__tickets {
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  margin-left: 80px;
}
@media screen and (max-width: 700px) {
  .showings_list li .m-advancedTickets__tickets, .showings_list .showings .m-advancedTickets__tickets, .showings_list .entry .m-advancedTickets__tickets, .showing-extras li .m-advancedTickets__tickets, .showing-extras .showings .m-advancedTickets__tickets, .showing-extras .entry .m-advancedTickets__tickets {
    display: flex;
    width: 100%;
    margin: 0;
  }
}
.showings_list li .m-advancedTickets__tickets .entry, .showings_list .showings .m-advancedTickets__tickets .entry, .showings_list .entry .m-advancedTickets__tickets .entry, .showing-extras li .m-advancedTickets__tickets .entry, .showing-extras .showings .m-advancedTickets__tickets .entry, .showing-extras .entry .m-advancedTickets__tickets .entry {
  min-height: 0;
}
.showings_list li span.additional_info, .showings_list .showings span.additional_info, .showings_list .entry span.additional_info, .showing-extras li span.additional_info, .showing-extras .showings span.additional_info, .showing-extras .entry span.additional_info {
  margin-right: 0;
  margin-left: auto;
  font-weight: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-style: italic;
  text-transform: capitalize;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .showings_list li span.additional_info, .showings_list .showings span.additional_info, .showings_list .entry span.additional_info, .showing-extras li span.additional_info, .showing-extras .showings span.additional_info, .showing-extras .entry span.additional_info {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .showings_list li span.additional_info, .showings_list .showings span.additional_info, .showings_list .entry span.additional_info, .showing-extras li span.additional_info, .showing-extras .showings span.additional_info, .showing-extras .entry span.additional_info {
    margin-bottom: 10px;
  }
}
.showings_list li .showing_link.buttons, .showings_list .showings .showing_link.buttons, .showings_list .entry .showing_link.buttons, .showing-extras li .showing_link.buttons, .showing-extras .showings .showing_link.buttons, .showing-extras .entry .showing_link.buttons {
  background-color: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0s;
  opacity: 1;
}
.showings_list li .showing_link.buttons svg, .showings_list .showings .showing_link.buttons svg, .showings_list .entry .showing_link.buttons svg, .showing-extras li .showing_link.buttons svg, .showing-extras .showings .showing_link.buttons svg, .showing-extras .entry .showing_link.buttons svg {
  display: block;
  position: absolute;
  top: 6px;
  left: 0px;
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg) skew(0deg);
  fill: #e1c883;
}
.showings_list li .showing_link.buttons a.tickets, .showings_list .showings .showing_link.buttons a.tickets, .showings_list .entry .showing_link.buttons a.tickets, .showing-extras li .showing_link.buttons a.tickets, .showing-extras .showings .showing_link.buttons a.tickets, .showing-extras .entry .showing_link.buttons a.tickets {
  text-indent: 0;
  display: block-inline;
  width: 22px;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.075em;
  color: #365880;
  text-indent: 0;
  width: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow: visible;
  white-space: nowrap;
  margin: 0px 19px;
  padding: 0;
  line-height: 40px;
  color: #fff;
  background: #66090e !important;
  transition: 0s;
  top: auto;
  min-height: 0;
  border-top: 0;
  border-bottom: 0;
}
.showings_list li .showing_link.buttons a.tickets:hover, .showings_list .showings .showing_link.buttons a.tickets:hover, .showings_list .entry .showing_link.buttons a.tickets:hover, .showing-extras li .showing_link.buttons a.tickets:hover, .showing-extras .showings .showing_link.buttons a.tickets:hover, .showing-extras .entry .showing_link.buttons a.tickets:hover {
  color: #fff !important;
  background: #b41019 !important;
}
.showings_list li .showing_link.buttons a.tickets:hover:before, .showings_list li .showing_link.buttons a.tickets:hover:after, .showings_list .showings .showing_link.buttons a.tickets:hover:before, .showings_list .showings .showing_link.buttons a.tickets:hover:after, .showings_list .entry .showing_link.buttons a.tickets:hover:before, .showings_list .entry .showing_link.buttons a.tickets:hover:after, .showing-extras li .showing_link.buttons a.tickets:hover:before, .showing-extras li .showing_link.buttons a.tickets:hover:after, .showing-extras .showings .showing_link.buttons a.tickets:hover:before, .showing-extras .showings .showing_link.buttons a.tickets:hover:after, .showing-extras .entry .showing_link.buttons a.tickets:hover:before, .showing-extras .entry .showing_link.buttons a.tickets:hover:after {
  background-position: 0 -54px;
}
.showings_list li .showing_link.buttons a.tickets:before, .showings_list li .showing_link.buttons a.tickets:after, .showings_list .showings .showing_link.buttons a.tickets:before, .showings_list .showings .showing_link.buttons a.tickets:after, .showings_list .entry .showing_link.buttons a.tickets:before, .showings_list .entry .showing_link.buttons a.tickets:after, .showing-extras li .showing_link.buttons a.tickets:before, .showing-extras li .showing_link.buttons a.tickets:after, .showing-extras .showings .showing_link.buttons a.tickets:before, .showing-extras .showings .showing_link.buttons a.tickets:after, .showing-extras .entry .showing_link.buttons a.tickets:before, .showing-extras .entry .showing_link.buttons a.tickets:after {
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-position: 0 0;
}

.event-faqs.faq {
  margin-top: 4%;
  margin-bottom: 0;
  padding: 0;
}
.event-faqs.faq dt:last-of-type {
  margin-bottom: 0;
}

.event_description.description {
  padding: 0 5%;
}
@media screen and (min-width: 960px) {
  .event_description.description {
    padding: 0 2%;
  }
}
.event_description.description a {
  color: #b4111a;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.event_description.description a:hover {
  color: #e1c883;
}

.event_description p {
  line-height: 160%;
}

.description_wrapper {
  padding: 0 20px;
  margin-bottom: 40px;
}
.description_wrapper .read-more {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b6b6b6;
  color: #660A0F;
  cursor: pointer;
}
.description_wrapper .read-more:hover {
  color: #e1c883;
}

.event_description {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.event_description:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  display: block;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
.event_description.is-opened:after {
  height: 0;
}

.event-listing-link {
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.event-listing-link a {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #b6b6b6;
}
.event-listing-link a:hover {
  color: #e1c883;
}

/* ----------------------------------------------------------------------------
= ShareThis Events/module
----------------------------------------------------------------------------- */
.ct.addthis-bar {
  display: flex;
  justify-content: center;
}

/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */
/* The wrapper div */
div.datePicker {
  position: fixed;
  min-width: 280px;
  width: 280px;
  text-align: center;
  margin-left: 71px;
  margin-top: 12px;
  /* Change the font-size to suit your design's CSS. The following line is for the demo that has a 12px font-size defined on the body tag */
  font: 400 1rem/2.8rem "Muli", sans-serif;
  color: #1e1e1e;
  /* For Example: If using the YUI font CSS, uncomment the following line to get a 10px font-size within the datePicker */
  /* font:900 77%/77% Verdana; */
  background: transparent;
  /* Mozilla & Webkit extensions to stop text-selection. Remove if you wish to validate the CSS */
  -moz-user-select: none;
  -khtml-user-select: none;
  z-index: 1001;
}
@media screen and (max-width: 790px) {
  div.datePicker {
    margin-left: 85px;
    margin-right: auto;
    margin-top: -34px;
  }
}
div.datePicker#fd-startDate2, div.datePicker#fd-endDate2 {
  position: absolute;
}
div.datePicker#fd-startDate2 {
  margin-left: -81px;
}
div.datePicker#fd-endDate2 {
  margin-left: -81px;
}

/* Styles for the static datePickers */
div.static-datepicker {
  position: relative;
}

/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
iframe.iehack {
  position: absolute;
  background: #fff;
  padding: 0;
  border: 0;
  display: none;
  margin: 0;
}

/* The "button" created beside each input for non-static datePickers */
a.date-picker-control:link,
a.date-picker-control:visited,
a.date-picker-control:hover,
a.date-picker-control:active,
a.date-picker-control:focus {
  /*position:relative;*/
  /* Moz & FF */
  display: -moz-inline-stack;
  border: 0 none;
  padding: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  /*Hide Calendar image */
  visibility: hidden;
  /*min-width:16px;*/
  width: 0px;
  /*margin:0 0 0 4px;*/
  margin: 0 0 0 -70px;
}

/* Feed IE6 the following rule, IE7 should handle the min-width declared above */
* html a.date-picker-control {
  width: 16px;
}

a.date-picker-control {
  /* IE, Safari & Opera. Seperate CSS rule seems to be required. */
  display: inline-block;
}

a.date-picker-control span {
  display: inline;
  width: 0px;
  height: 0px;
  margin: auto 0;
}

/* The next & previous buttons */
div.datePicker th span {
  display: inline;
  padding: 0;
  margin: 0;
  color: #1e1e1e;
  text-align: center;
  line-height: 1em;
  border-width: 0;
  font-family: "Muli", sans-serif;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
}

div.datePicker th span.month-display,
div.datePicker th span.year-display {
  text-transform: uppercase;
  letter-spacing: 1px;
  font: 400 1em "Muli", sans-serif;
  cursor: default;
  color: #fff;
}

div.datePicker th span.prev-but,
div.datePicker th span.next-but {
  font-size: 1.8em;
  cursor: pointer !important;
}

div.datePicker th span.today-but {
  text-align: center;
  margin: 0 auto;
  font: normal 0.8em "Muli", sans-serif;
  width: 100%;
  text-decoration: none;
  line-height: 1.6em;
  text-transform: uppercase;
  cursor: pointer !important;
}

div.datePicker thead th span.fd-disabled {
  color: #aaa;
  cursor: default !important;
}

/* The mon, tue, wed etc day buttons */
div.datePicker th span.fd-day-header {
  text-align: center;
  margin: 0 auto;
  font: 700 1em "Muli", sans-serif;
  width: 2em;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.4em;
}

/* The table */
div.datePicker table {
  table-layout: fixed;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #b6b6b6;
  border-collapse: separate;
  background: #fff;
  text-align: center;
}

div.datePicker table tbody tr:last-child td {
  border-bottom: 0;
}

/* Common TD & TH styling */
div.datePicker table td {
  border-bottom: 1px solid #ccc;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  /* Opera requires a line-height bigger than 1em in order to redraw properly */
  line-height: 1.2em;
  cursor: pointer;
  background: #fff;
  width: 2em;
  color: #1e1e1e;
  height: 2em !important;
  height: 2em;
  font-size: 1rem;
  outline: none;
}

div.datePicker table th {
  border: 0 none;
  padding: 4px 0;
  line-height: 1em;
  font-weight: bold;
  color: #222;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

div.datePicker table td.date-picker-unused {
  background: #fff;
  border-color: #ccc;
  padding: 0;
  cursor: default !important;
}

div.datePicker table thead th.date-picker-title {
  width: auto;
  height: auto;
  padding: 0.6em 0;
  background: #1e1e1e;
  color: #fff;
}

/* The "mon tue wed etc" day header button styles */
div.datePicker table th.date-picker-day-header {
  text-transform: uppercase;
  width: 3em;
  font-size: 12px;
}

div.datePicker table th.date-picker-day-header span {
  display: block;
}

/* The "todays date" style */
div.datePicker table td.date-picker-today {
  font-weight: 700;
  color: #1e1e1e;
}

/* The "selected date" style */
div.datePicker table td.date-picker-selected-date {
  color: #fff !important;
}

/* the "highlight days" style */
td.date-picker-highlight {
  color: #a86666;
}

/* The date "out of range" style */
div.datePicker table td.out-of-range {
  background: #fcfcfc !important;
  font-style: oblique;
  color: #ccc !important;
  cursor: default !important;
}

/* The "disabled days" style */
div.datePicker table td.day-disabled {
  color: #aaa !important;
  background: transparent !important;
  cursor: default !important;
}

/* The "active cursor" style */
div.datePicker table tbody td.date-picker-hover {
  background: #e1c883;
  cursor: pointer;
  color: #1e1e1e;
}

.datePickerTable thead tr {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

/* Remove the images for Internet Explorer <= v6 using the "* html" hack */
* html div.datePicker table td {
  background-image: none;
}

* html div.datePicker table td.date-picker-unused {
  background: #f2f2f2;
}

/* detail styles */
.datepicker {
  position: relative;
  width: 460px;
  height: 88px;
  margin-left: 420px;
  display: none;
}
@media screen and (min-width: 1001px) {
  .datepicker {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .datepicker {
    margin-left: 520px;
  }
}
@media screen and (min-width: 1270px) {
  .datepicker {
    margin-left: 640px;
  }
}

.m-event-listing-header {
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
}

.m-search-filters {
  padding: 0px 0 0;
  margin: 0;
  overflow: hidden;
  text-align: left;
  *zoom: 1;
}
.m-search-filters:before, .m-search-filters:after {
  content: " ";
  display: table;
}
.m-search-filters:after {
  clear: both;
}
.m-search-filters .filter-label {
  display: block;
  width: 100%;
  margin: 0px;
  font-family: "Muli", sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1e1e1e;
  clear: both;
  margin-bottom: 10px;
}
.m-search-filters input[type=text] {
  display: inline-block;
  width: 150px;
  height: 36px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 13px;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 1px;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.m-search-filters input[type=text]::-webkit-input-placeholder { /* WebKit browsers */
  color: #1e1e1e;
}
.m-search-filters input[type=text]:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #1e1e1e;
}
.m-search-filters input[type=text]::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #1e1e1e;
}
.m-search-filters input[type=text]:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #1e1e1e;
}
.m-search-filters button {
  position: relative;
  display: inline-block;
  background-color: #1e1e1e;
  width: 140px;
  height: 36px;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font: 400 13px "Muli", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  appearance: none;
  outline: none;
  clear: both;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.m-search-filters button:hover, .m-search-filters button:focus {
  background: #fff;
  color: #1e1e1e;
  appearance: none;
}
.m-search-filters label {
  position: relative;
  display: block;
  float: left;
  height: 36px;
  margin-right: 0.5em;
  margin-bottom: 0px;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media screen and (max-width: 790px) {
  .m-search-filters label {
    display: block;
    width: 90%;
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
}
.m-search-filters label:before {
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 30px;
  height: 36px;
  pointer-events: none;
}
.m-search-filters label .icon {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 23px;
  height: 23px;
  fill: #1e1e1e;
  cursor: pointer;
}
.m-search-filters label.is-active input, .m-search-filters label:hover input {
  color: #000;
}
.m-search-filters label.is-active input::-webkit-input-placeholder, .m-search-filters label:hover input::-webkit-input-placeholder { /* WebKit browsers */
  color: #000;
}
.m-search-filters label.is-active input:-moz-placeholder, .m-search-filters label:hover input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #000;
}
.m-search-filters label.is-active input::-moz-placeholder, .m-search-filters label:hover input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #000;
}
.m-search-filters label.is-active input:-ms-input-placeholder, .m-search-filters label:hover input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #000;
}
.m-search-filters label.is-active .icon, .m-search-filters label:hover .icon {
  fill: #660A0F;
}
.m-search-filters label a.date-picker-control:link,
.m-search-filters label a.date-picker-control:visited,
.m-search-filters label a.date-picker-control:hover,
.m-search-filters label a.date-picker-control:active,
.m-search-filters label a.date-picker-control:focus {
  position: absolute;
}

.mobile-only-search {
  display: none;
}
@media screen and (max-width: 1042px) {
  .mobile-only-search {
    display: block;
    position: relative;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0;
  }
  #events .mobile-only-search {
    margin: 0;
  }
  .mobile-only-search input[type=text] {
    position: relative;
    padding: 0 37px 0 10px;
    margin: 0;
    width: 100%;
    height: 48px;
    top: 0;
    background: #fff;
    font-size: 16px;
    font: 400 1.6rem/48px "Muli", sans-serif;
    color: #b6b6b6;
    border: 1px solid #b6b6b6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .mobile-only-search input[type=text]:focus {
    outline: none;
    -webkit-appearance: none;
  }
  .mobile-only-search button {
    position: absolute;
    margin: 0;
    padding: 0;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #b6b6b6;
    background: #fff;
  }
  .mobile-only-search button:before {
    content: "";
    display: block;
    position: absolute;
    visibility: visible;
    width: 48px;
    height: 48px;
    left: 0;
    top: 0;
    content: "";
    background: url(../images/search-icon.png) no-repeat 0 0;
  }
  .mobile-only-search button:hover:before, .mobile-only-search button:focus:before {
    background-position: 0 -48px;
  }
}
@media screen and (max-width: 790px) {
  .mobile-only-search {
    margin: 0;
  }
  #events .mobile-only-search {
    margin: 0;
  }
}

.button {
  position: relative;
  background-color: #1e1e1e;
  margin: 0 0 15px 20px;
  padding: 8px 25px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
}
.button:before, .button:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 -270px;
}
.button:before {
  left: -20px;
  background-position: 0 -270px;
}
.button:after {
  right: -20px;
  transform: rotate(-180deg);
}
.button:hover, .button:focus {
  background-color: #b4111a;
  color: #fff;
}
.button:hover:before, .button:hover:after, .button:focus:before, .button:focus:after {
  background-position: 0 -54px;
}

.textarea a.button,
.spotlight a.button {
  background-color: #660A0F;
  color: #fff;
  -webkit-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
}
.textarea a.button:before, .textarea a.button:after,
.spotlight a.button:before,
.spotlight a.button:after {
  background-position: 0 0px;
}
.textarea a.button:hover, .textarea a.button:focus,
.spotlight a.button:hover,
.spotlight a.button:focus {
  background-color: #b4111a;
  color: #fff;
}
.textarea a.button:hover:before, .textarea a.button:hover:after, .textarea a.button:focus:before, .textarea a.button:focus:after,
.spotlight a.button:hover:before,
.spotlight a.button:hover:after,
.spotlight a.button:focus:before,
.spotlight a.button:focus:after {
  background-position: 0 -54px;
}

.textarea a.button {
  display: inline-block;
}

.buttons span.tba,
.buttons span.onsale,
.buttons span.tickets,
.buttons a {
  position: relative;
  background-color: #1e1e1e;
  margin: 0 0 15px 20px;
  padding: 8px 25px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
}
.buttons span.tba:before, .buttons span.tba:after,
.buttons span.onsale:before,
.buttons span.onsale:after,
.buttons span.tickets:before,
.buttons span.tickets:after,
.buttons a:before,
.buttons a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
.buttons span.tba:before,
.buttons span.onsale:before,
.buttons span.tickets:before,
.buttons a:before {
  left: -20px;
  background-position: 0 0;
}
.buttons span.tba:after,
.buttons span.onsale:after,
.buttons span.tickets:after,
.buttons a:after {
  right: -20px;
  transform: rotate(-180deg);
}
.buttons span.tba:hover, .buttons span.tba:focus,
.buttons span.onsale:hover,
.buttons span.onsale:focus,
.buttons span.tickets:hover,
.buttons span.tickets:focus,
.buttons a:hover,
.buttons a:focus {
  background-color: #b4111a;
  color: #fff;
}
.buttons span.tba:hover:before, .buttons span.tba:hover:after, .buttons span.tba:focus:before, .buttons span.tba:focus:after,
.buttons span.onsale:hover:before,
.buttons span.onsale:hover:after,
.buttons span.onsale:focus:before,
.buttons span.onsale:focus:after,
.buttons span.tickets:hover:before,
.buttons span.tickets:hover:after,
.buttons span.tickets:focus:before,
.buttons span.tickets:focus:after,
.buttons a:hover:before,
.buttons a:hover:after,
.buttons a:focus:before,
.buttons a:focus:after {
  background-position: 0 -54px;
}

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

.paging {
  position: relative;
  margin: 0 0 15px;
  padding: 0;
  height: 40px;
  font: normal 14px/40px "Muli", sans-serif;
  *zoom: 1;
}
.paging:before, .paging:after {
  content: " ";
  display: table;
}
.paging:after {
  clear: both;
}
.paging.final {
  margin: 0;
}
.paging.empty {
  background: none;
  height: 0;
  padding: 0;
  margin: 0;
}
.paging .record {
  width: auto;
  float: left;
  height: 40px;
  padding: 0 0 0 10px;
}
.paging .pages {
  margin: 0 -17px 0 0;
  float: right;
  width: auto;
  text-align: center;
  *zoom: 1;
}
.paging .pages:before, .paging .pages:after {
  content: " ";
  display: table;
}
.paging .pages:after {
  clear: both;
}
.paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
  position: relative;
  width: 30px;
  height: 40px;
  float: left;
  margin: 0;
  padding: 0;
  color: #660A0F;
  text-decoration: none;
  font: normal 16px/40px "Muli", sans-serif;
}
.paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
  text-decoration: none;
  color: #b4111a;
}
.paging .pages strong.last, .paging .pages strong.first, .paging .pages a.last, .paging .pages a.first, .paging .pages a:link.last, .paging .pages a:link.first, .paging .pages a:visited.last, .paging .pages a:visited.first {
  display: none;
}
.paging .pages strong.prev, .paging .pages a.prev, .paging .pages a:link.prev, .paging .pages a:visited.prev {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/icn_read_more_yellow.png) center no-repeat;
  transform: rotate(180deg);
}
.paging .pages strong.next, .paging .pages a.next, .paging .pages a:link.next, .paging .pages a:visited.next {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/icn_read_more_yellow.png) center no-repeat;
}
.paging .pages strong {
  color: #444;
  text-decoration: none;
}
.paging .pages strong:hover {
  color: #444;
}

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

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

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
#news.index .global_header .support_links {
  display: none;
}

#news.all .global_header .support_links .rss {
  display: none;
}

.full_column.news_list {
  background-color: transparent;
}

.news_list {
  position: relative;
  padding: 0;
}
.news_list .entry {
  position: relative;
  width: 100%;
  min-height: 170px;
  max-width: 306px;
  background-color: #f6f0df;
  border-bottom: 2px solid #e1c883;
  margin: 0 auto 20px;
  *zoom: 1;
}
.news_list .entry:before, .news_list .entry:after {
  content: " ";
  display: table;
}
.news_list .entry:after {
  clear: both;
}
.news_list .entry:first-child {
  margin-top: 10px;
}
@media screen and (min-width: 700px) {
  .news_list .entry {
    max-width: 100%;
  }
  .news_list .entry:first-child {
    margin-top: 0px;
  }
}
.news_list .entry .thumbnail {
  display: block;
}
@media screen and (min-width: 700px) {
  .news_list .entry .thumbnail {
    float: left;
    width: 192px;
    height: 170px;
  }
}
@media screen and (min-width: 700px) {
  .news_list .entry .thumbnail + .info {
    padding-left: 192px;
  }
}
@media screen and (min-width: 700px) and (min-width: 1100px) {
  .news_list .entry .thumbnail + .info {
    float: left;
    width: 80%;
    padding-left: 0;
  }
}
.news_list .entry .thumbnail a {
  display: block;
  cursor: pointer;
}
.news_list .entry .thumbnail img {
  display: block;
  width: 100%;
  opacity: 1;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.news_list .entry .thumbnail img:hover {
  opacity: 0.7;
}
.news_list .entry .info {
  width: 100%;
}
.news_list .entry .info .date {
  position: relative;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
  display: block;
  max-height: 37px;
  padding: 10px 20px 10px;
  font-size: 14px;
  text-transform: uppercase;
}
.news_list .entry .info .date:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.news_list .entry .info .date:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}
.news_list .entry .info h3 {
  margin: 15px 0 6px 21px;
}
.news_list .entry .info h3 a {
  display: block;
  font-size: 23px;
  color: #1e1e1e;
  text-decoration: none;
  text-transform: none;
}
.news_list .entry .info h3 a:hover {
  color: #660A0F;
}
.news_list .entry .info h4 {
  margin: 0 21px 10px;
  font-family: "Muli", sans-serif;
  font-size: 13px;
  font-style: normal;
  color: #1e1e1e;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (min-width: 700px) {
  .news_list .entry .info h4 {
    margin-right: 0;
  }
}
.news_list .entry .info .teaser {
  margin: 0 20px;
  padding: 0;
}
@media screen and (min-width: 700px) {
  .news_list .entry .info .teaser {
    width: 57%;
    margin-right: 0;
    margin-left: 21px;
  }
}
@media screen and (min-width: 900px) {
  .news_list .entry .info .teaser {
    width: 65%;
  }
}
@media screen and (min-width: 1100px) {
  .news_list .entry .info .teaser {
    width: 70%;
  }
}
.news_list .entry .info .teaser p {
  font-family: "Muli", sans-serif;
  font-size: 14px;
}
.news_list .entry .info .teaser p:last-of-type {
  margin: 0;
  padding: 0;
}
.news_list .entry a.more {
  display: block;
  position: relative;
  width: 80%;
  min-height: 40px;
  background-color: #1e1e1e;
  margin: 20px auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.news_list .entry a.more:before, .news_list .entry a.more:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 -270px;
}
.news_list .entry a.more:before {
  left: -20px;
  background-position: 0 -270px;
}
.news_list .entry a.more:after {
  right: -20px;
  transform: rotate(-180deg);
}
.news_list .entry a.more:hover {
  background-color: #d3a62c;
  color: #1e1e1e;
}
.news_list .entry a.more:hover:before, .news_list .entry a.more:hover:after {
  background-position: 0 -110px;
}
.news_list .entry a.more:hover:after {
  top: 0;
}
@media screen and (min-width: 700px) {
  .news_list .entry a.more {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: auto;
    margin: auto;
  }
}

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative;
  padding: 2%;
}
@media screen and (min-width: 1100px) {
  .news_detail {
    padding: 0;
  }
}
.news_detail .news_info .textarea:first-of-type {
  padding: 0;
  padding: 0 20px;
}
.news_detail .news_info .textarea:first-of-type .content {
  padding: 0;
}
.news_detail .spotlight_image {
  margin-bottom: 30px;
}
.news_detail .date {
  position: relative;
  background-color: #660A0F;
  color: #fff;
  z-index: 6;
  display: block;
  max-height: 37px;
  margin-bottom: 20px;
  padding: 8px 20px;
  text-transform: uppercase;
  width: calc(100% + 40px);
  left: 50%;
  transform: translateX(-50%);
}
.news_detail .date:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 80px;
  width: 50px;
  background: linear-gradient(to right, rgb(102, 10, 15) 0%, rgba(102, 10, 15, 0) 99%);
  z-index: -1;
}
.news_detail .date:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 130px;
  height: 100%;
  background: transparent url("../images/pattern-small-dark.jpg") repeat 11px 8px;
  z-index: -2;
}
.news_detail .date.dark_title {
  display: none;
}
@media screen and (min-width: 700px) {
  .news_detail .date.dark_title {
    display: block;
  }
}
.news_detail .date.light_title {
  margin-bottom: 0;
  z-index: 3;
}
@media screen and (min-width: 700px) {
  .news_detail .date.light_title {
    display: none;
  }
}
.news_detail .body {
  margin: 0 0 5px;
}
.news_detail .body p {
  line-height: 160%;
}
.news_detail .thumb {
  float: left;
}
@media screen and (min-width: 700px) {
  .news_detail .thumb {
    float: left;
    width: 192px;
    height: 170px;
  }
}
.news_detail .thumb img {
  display: block;
  width: 100%;
  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 .thumb img:hover {
  opacity: 0.7;
}
.news_detail .file_link {
  margin: 15px 0;
}
.news_detail .file_link a.pdf,
.news_detail .file_link a:link.pdf,
.news_detail .file_link a:visited.pdf {
  color: #660A0F;
}
.news_detail .file_link a.pdf:hover,
.news_detail .file_link a:link.pdf:hover,
.news_detail .file_link a:visited.pdf:hover {
  color: #b4111a;
}
.news_detail .talkback {
  border-top: 1px solid #b6b6b6;
  margin: 20px 0;
  padding-top: 20px;
  clear: both;
}

#clp #cdp {
  margin-top: 140px;
}

.full_column.clp {
  background: transparent;
  padding-top: 5px;
}

@media screen and (max-width: 700px) {
  .clp .event-listing.grid-view .entry .info {
    padding-top: 15px;
  }
  .clp .event-listing.grid-view .entry .info .title a {
    margin-top: 20px;
    color: #fff;
  }
}

.contest_detail {
  margin-top: 85px;
}
.contest_detail .slide > img {
  width: 100%;
}
.contest_detail .description {
  padding: 0 4%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  .contest_detail .description {
    padding: 0;
  }
}
.contest_detail .disclamer {
  padding: 0 4%;
}
@media screen and (min-width: 1100px) {
  .contest_detail .disclamer {
    padding: 0;
  }
}

/* ----------------------------------------------------------------------------
= Jobs List
----------------------------------------------------------------------------- */
.job_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
}
.job_list .list {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 950px) {
  .job_list {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px) {
  .job_list {
    max-width: 990px;
  }
}
@media screen and (min-width: 1100px) {
  .job_list .list {
    position: relative;
    margin-top: 45px;
  }
}
@media screen and (min-width: 1290px) {
  .job_list {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
  }
}
.job_list .entry {
  position: relative;
  width: 100%;
  max-width: 297px;
  min-height: 250px;
  border: 1px solid #000;
  *zoom: 1;
}
.job_list .entry:before, .job_list .entry:after {
  content: " ";
  display: table;
}
.job_list .entry:after {
  clear: both;
}
.job_list .entry .info {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  border: 1px solid #1e1e1e;
  border: 0;
  margin: 0;
  padding: 0px 0px 4px;
  z-index: 5;
  *zoom: 1;
}
.job_list .entry .info:before, .job_list .entry .info:after {
  content: " ";
  display: table;
}
.job_list .entry .info:after {
  clear: both;
}
.job_list .entry .title {
  width: 99%;
  margin: 16px auto 20px;
  line-height: 21px;
  text-align: center;
}
.job_list .entry .title a {
  display: inline-block;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 24px;
  color: #1e1e1e;
}
.job_list .entry .title a:hover {
  color: #e1c883;
}
.job_list .entry .body {
  margin-bottom: -10px;
  padding: 0 15px;
}
.job_list .entry .date {
  position: relative;
  background-color: #e1c883;
  padding: 13px 20px 10px;
  font-family: "Muli", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e1e1e;
  z-index: 6;
}
.job_list .entry .date:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 36px;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgb(225, 200, 131) 0%, rgba(225, 200, 131, 0) 99%);
  z-index: -1;
}
.job_list .entry .date:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 0;
  right: 0px;
  width: 85px;
  height: 100%;
  background: transparent url("../images/pattern-small-light.jpg") repeat 11px -11px;
  z-index: -2;
}
.job_list .buttons {
  position: relative;
  bottom: 0px;
  left: 0;
  margin: 0 auto 0;
  clear: both;
}
.job_list .buttons a {
  float: none;
  display: block;
  position: relative;
  min-height: 40px;
  width: 200px;
  background-color: #1e1e1e;
  top: 0;
  border-top: 0;
  border-bottom: 0;
  margin: 0 auto 10px 57px;
  padding: 8px 0px;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
}
.job_list .buttons a:before, .job_list .buttons a:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  background-image: url("../images/button-art.png");
  background-repeat: no-repeat;
  background-position: 0 -270px;
  opacity: 1;
}
.job_list .buttons a:before {
  left: -20px;
  background-position: 0 -270px;
}
.job_list .buttons a:after {
  right: -20px;
  transform: rotate(-180deg);
}
.job_list .buttons a:hover {
  background-color: #d3a62c;
  color: #fff;
}
.job_list .buttons a:hover:before, .job_list .buttons a:hover:after {
  background-position: 0 -110px;
}
.job_list .buttons a:hover:after {
  top: 0;
}

/* ----------------------------------------------------------------------------
= Jobs Detail
----------------------------------------------------------------------------- */
.job_detail {
  position: relative;
}
.job_detail .overview {
  padding: 0 15px 0px;
  margin: 0 0 10px;
}
.job_detail .overview h1 {
  display: block;
  margin: 0;
}
.job_detail .date {
  display: block;
  width: 100%;
  max-height: 37px;
  margin-bottom: 20px;
  padding: 10px 20px 10px;
  font-size: 13px;
  font-family: "Muli", sans-serif;
  text-transform: uppercase;
}
.job_detail .label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
.job_detail .description {
  padding: 0 15px 0;
  margin: 0 0 30px;
}
.job_detail .description .buttons a {
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 40px;
}
.job_detail .description .apply {
  padding: 15px 0 0;
  margin: 15px 0;
}
.job_detail .link {
  margin: 0 0 20px;
  padding: 0;
  position: relative;
}
.job_detail .link ul.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
  font: bold 16px/24px Arial, Helvetica, sans-serif;
}
.job_detail .link ul.list li {
  height: 40px;
  padding: 0;
  margin: 0 0 5px;
  background: none;
}
.job_detail .link ul.list li:hover a,
.job_detail .link ul.list li:hover a:link,
.job_detail .link ul.list li:hover a:visited, .job_detail .link ul.list li:focus a,
.job_detail .link ul.list li:focus a:link,
.job_detail .link ul.list li:focus a:visited {
  color: red;
}
.job_detail .link ul.list a {
  display: block;
  text-decoration: none;
}
.job_detail .event_list {
  margin: 0 0 15px;
}
.job_detail .event_list .list {
  padding: 0;
}
.job_detail .disclaimer h3 {
  padding: 0 0 4px;
  margin: 0;
}
.job_detail .disclaimer p {
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
}

.iframe-map {
  margin-bottom: 45px;
  border-radius: 2px 2px;
}
.iframe-map iframe.map {
  width: 100%;
  height: 400px;
  display: block;
}

.map_holder {
  display: block;
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 45px;
  border-radius: 2px 2px;
}
.map_holder .map {
  width: 100%;
  height: 100%;
}

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

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  margin: 0;
  padding: 0 6% 20px;
  clear: both;
}
@media screen and (min-width: 1100px) {
  .sitemap {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.sitemap .site-links {
  *zoom: 1;
}
.sitemap .site-links:before, .sitemap .site-links:after {
  content: " ";
  display: table;
}
.sitemap .site-links:after {
  clear: both;
}
.sitemap .column {
  float: left;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sitemap .column {
    width: 50%;
  }
}
.sitemap .overview {
  padding: 10px 0 0;
}
@media screen and (min-width: 1100px) {
  .sitemap .overview {
    margin-bottom: 30px;
    padding: 0;
  }
}
.sitemap .textarea .content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sitemap .textarea .content ul li {
  margin: 0 0 35px 0;
  padding: 0;
  font-size: 18px;
  font-weight: normal;
  line-height: 25px;
}
.sitemap .textarea .content ul li:before, .sitemap .textarea .content ul li:after {
  display: none;
}
.sitemap .textarea .content ul li ul li {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.sitemap .textarea .content ul li ul li a {
  padding: 0 0 0 15px;
}
.sitemap .textarea .content ul li ul li ul {
  display: none;
}
.sitemap .textarea .content a {
  color: #1e1e1e;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.sitemap .textarea .content a:hover {
  color: #660A0F;
  text-decoration: none;
}

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

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 6px;
  width: 9px;
  height: 100%;
  background: #e8e8e8;
}

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

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

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

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

.jspDrag {
  position: relative;
  top: 0;
  left: 0px;
  background: #e1c883;
  width: 9px;
  height: 58px;
  cursor: pointer;
  border-bottom: 1px solid #cda331;
}

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

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

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

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

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

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

/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
.full_column.venue_list {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.venue_list {
  *zoom: 1;
}
.venue_list:before, .venue_list:after {
  content: " ";
  display: table;
}
.venue_list:after {
  clear: both;
}
.venue_list .entry {
  position: relative;
  width: 100%;
  max-width: 306px;
  height: 387px;
  margin: 0 auto 15px;
  *zoom: 1;
}
.venue_list .entry:before, .venue_list .entry:after {
  content: " ";
  display: table;
}
.venue_list .entry:after {
  clear: both;
}
@media screen and (min-width: 660px) {
  .venue_list .entry {
    float: left;
    margin: 0 0 20px 20px;
  }
}
.venue_list .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 114px;
  background-color: #fff;
  border: 0;
  margin: -5px 0 0;
  padding: 0px 20px 0;
  *zoom: 1;
}
.venue_list .info:before, .venue_list .info:after {
  content: " ";
  display: table;
}
.venue_list .info:after {
  clear: both;
}
.venue_list .vtitle {
  width: 80%;
  margin: 12px 0 0;
}
.venue_list .vtitle a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 28px;
  color: #660A0F;
}
.venue_list .vtitle a:hover {
  color: #1e1e1e;
}
.venue_list .evtagline {
  width: 84%;
  margin-bottom: 3px;
  font-family: "Judson", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.venue_list .doors {
  margin-bottom: 9px;
  width: 70%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.venue_list .buttons {
  position: absolute;
  right: 0;
  top: 0;
}
.venue_list .buttons .but-info {
  right: 0px;
  margin-bottom: 2px;
}
.venue_list .buttons .but-info:after {
  left: 24%;
  width: 25px;
  height: 25px;
}
.venue_list .buttons .but-info .info-icon {
  top: 37.5%;
  left: 38%;
}
.venue_list .buttons .but-tick {
  width: 62px;
  bottom: 0;
}
.venue_list .buttons .but-tick .ticket-icon {
  left: 24%;
  width: 32px;
}

@media screen and (min-width: 1260px) {
  .full .full_column.venue_detail {
    padding-bottom: 23px;
  }
}

.venue_detail .venue_header .title {
  margin: 0 auto 10px;
  text-align: center;
}
.venue_detail .venue_header .tagline {
  margin: 0 auto 30px;
  padding-bottom: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #e1c883;
  text-align: center;
}
.venue_detail .venue_header .tagline:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  width: 50%;
  height: 1px;
  background-color: #b6b6b6;
  margin: 30px 0 0 25%;
}
.venue_detail .faq {
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0;
}
.venue_detail .faq h3 {
  margin-bottom: 8px;
}
@media screen and (min-width: 1260px) {
  .venue_detail .faq .faq {
    margin-bottom: auto;
  }
}

.description {
  padding: 0 2%;
}
.description .v-desc-inner {
  position: relative;
  max-height: 105px;
  font-size: 16px;
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.description .v-desc-inner:after {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, #FFF 100%);
  opacity: 0.3;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.description .v-desc-inner.has-vcollapse {
  max-height: 650px;
}
.description .v-desc-inner.has-vcollapse.is-vcollapsed {
  max-height: 95px;
}
.description .v-desc-inner.has-vcollapse.is-vcollapsed:after {
  opacity: 1;
}
.description .v-desc-inner p:empty {
  display: none;
}
.description .v-see-more {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b6b6b6;
  cursor: pointer;
}
.description .v-see-more:hover {
  color: #e1c883;
}

/* @group Seating Charts */
.gallery-container {
  width: 100%;
  margin: 20px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 870px) {
  .gallery-container {
    text-align: center;
    width: 600px;
    padding: 0 2%;
  }
}

.mfp-content {
  height: auto;
}
@media screen and (max-width: 700px) {
  .mfp-content {
    height: 420px;
  }
  .mfp-content .rsSlide {
    height: 300px;
  }
}
@media screen and (max-width: 700px) {
  .mfp-content .rsDefault .rsBullets .rsBullet.rsNavSelected span {
    background-color: #fff;
  }
}
.mfp-content .rsDefault.rsHor .rsArrowRight {
  right: 60px;
}
.mfp-content .rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  position: relative;
}
.mfp-content .rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 17px;
  right: 21px;
  left: auto;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #1e1e1e;
}
@media screen and (max-width: 700px) {
  .mfp-content .rsDefault.rsHor .rsArrowRight {
    right: 40px;
    z-index: 20000;
  }
  .mfp-content .rsDefault.rsHor .rsArrowRight .rsArrowIcn {
    background-image: none;
    top: 52%;
  }
  .mfp-content .rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
    border-left-color: #fff;
  }
}
.mfp-content .rsDefault.rsHor .rsArrowLeft {
  left: 0px;
}
.mfp-content .rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  position: relative;
}
.mfp-content .rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
  top: 17px;
  left: 21px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid #1e1e1e;
}
@media screen and (max-width: 700px) {
  .mfp-content .rsDefault.rsHor .rsArrowLeft {
    left: -20px;
    z-index: 20000;
  }
  .mfp-content .rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
    background-image: none;
    top: 52%;
  }
  .mfp-content .rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before {
    border-right-color: #fff;
  }
}

.photo_gallery {
  position: relative;
  float: left;
  padding: 0;
  width: 33.3%;
  background: #fff;
  margin-bottom: 40px;
  text-align: center;
}
.photo_gallery .royalSlider {
  width: 1000px;
  height: 600px;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}
.photo_gallery.pull-right {
  float: right;
}
.photo_gallery.mid {
  margin: 0px 5%;
}
.photo_gallery .thumb {
  display: block;
  float: left;
  width: 250px;
  height: 240px;
  margin: 0 0 10px;
  padding: 0;
  overflow: hidden;
  opacity: 1;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.photo_gallery .thumb img {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  display: block;
  width: 100%;
  height: 100%;
}
.photo_gallery .thumb:hover {
  opacity: 0.7;
}
.photo_gallery strong {
  display: block;
  width: 214px;
  margin: 0;
  padding: 5px 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #111;
  border-bottom: 1px solid #660A0F;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  color: #000;
  opacity: 0.85;
  overflow: hidden;
}
.photo_gallery a {
  text-decoration: none;
}
.photo_gallery a:focus {
  color: #1e1e1e;
}
.photo_gallery h3 {
  width: 250px;
  height: 45px;
  padding: 0 2%;
  clear: both;
}
.photo_gallery h3 a {
  color: #660A0F;
}
.photo_gallery h3 a:hover {
  color: #b4111a;
}
@media screen and (max-width: 870px) {
  .photo_gallery {
    width: 50%;
  }
  .photo_gallery.pull-right {
    float: left;
  }
  .photo_gallery.mid {
    margin: 0px 20px;
  }
  .photo_gallery .thumb {
    height: 200px;
    width: 200px;
  }
  .photo_gallery .thumb img {
    height: 200px;
  }
}
@media screen and (max-width: 700px) {
  .photo_gallery {
    margin: 0px 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .photo_gallery h3 {
    margin: 0 auto;
  }
  .photo_gallery.pull-right {
    float: left;
  }
  .photo_gallery.mid {
    margin: 0px 0px;
  }
  .photo_gallery .thumb {
    margin: 0px auto 10px;
    display: block;
    float: none;
  }
}

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

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

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

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

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

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  padding: 0;
  background: #212121;
  border-top: 0px solid #212121;
  box-sizing: content-box;
  max-width: 1000px;
  width: 95%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
  * Remove all paddings around the image on small screen
  */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

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

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

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

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

.mfp-container .royalSlider {
  height: auto;
  max-width: 1000px;
  width: 100%;
}
.mfp-container .royalSlider .rsOverflow {
  width: 100% !important;
}
.mfp-container .royalSlider .rsSlide {
  text-align: center;
}
.mfp-container .royalSlider .rsImg {
  margin-left: 0px !important;
  max-width: 100%;
  height: auto !important;
}
.mfp-container .royalSlider .rsThumbsHor {
  margin-bottom: -110px;
  height: 110px;
  padding: 10px;
  background: url(../images/bg_darkblue_tall.jpg) bottom #212121 repeat-x;
}
.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 {
  margin-top: -3px;
  margin-left: -3px;
}
.mfp-container .royalSlider .rsArrowIcn {
  top: 50%;
  background-color: transparent;
}
.mfp-container .royalSlider .rsArrowLeft .rsArrowIcn {
  left: 20px;
}
.mfp-container .royalSlider .rsDefault.rsHor .rsArrowRight {
  right: 60px;
}
.mfp-container .royalSlider .rsGCaption {
  display: block;
  padding: 10px 0;
  text-align: center;
  height: 80px;
  min-height: auto;
  overflow: hidden;
  line-height: 1.4;
  text-transform: none;
  margin: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-image: none;
  background-color: transparent;
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.vendor-ie .right.elp .ev-view {
  top: 0;
  height: 99px;
}
.vendor-ie .list-view.event-listing .entry .buttons a {
  width: 175px;
}
.vendor-ie #content .spotlight .item {
  *zoom: 1;
  margin-bottom: 20px;
}
.vendor-ie #content .spotlight .item:before, .vendor-ie #content .spotlight .item:after {
  content: " ";
  display: table;
}
.vendor-ie #content .spotlight .item:after {
  clear: both;
}
.vendor-ie #content .spotlight .item .image {
  float: left;
  display: block;
}

.ie9 .right.elp .ev-view {
  top: 0;
  height: 99px;
}
.ie9 .list-view.event-listing .entry .buttons a {
  width: 175px;
}
.ie9 #content .spotlight .item {
  *zoom: 1;
  margin-bottom: 20px;
}
.ie9 #content .spotlight .item:before, .ie9 #content .spotlight .item:after {
  content: " ";
  display: table;
}
.ie9 #content .spotlight .item:after {
  clear: both;
}
.ie9 #content .spotlight .item .image {
  float: left;
  display: block;
}

#venue_widgets_framework .l-m-venue_widget {
  border-radius: 0px 0px 0 0;
}
#venue_widgets_framework .m-venueframework__header {
  z-index: 1;
  float: none;
  background-color: #1E1E1E;
  border-top-color: #e4e4e4;
  border-right-color: #e4e4e4;
  border-bottom-color: #dbdbdb;
  border-left-color: #e4e4e4;
  border-bottom-width: 1px;
  border-top-width: 0;
  border-right-width: 0px;
  border-left-width: 0px;
}
#venue_widgets_framework .m-venueframework__header-icon {
  background-color: #E1C883;
  border-left-color: white;
  border-top-color: white;
  border-bottom-color: transparent;
}
#venue_widgets_framework .m-venueframework__header-icon svg {
  fill: #1E1E1E;
}
#venue_widgets_framework .m-venueframework__header-shadow {
  background: rgba(229, 229, 229, 0);
}
#venue_widgets_framework .m-venueframework__header-text {
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 0 0 13px;
}
#venue_widgets_framework .m-venueframework__header-link, #venue_widgets_framework .m-venueframework__header-link:visited {
  background-color: transparent;
  color: #ffffff;
}
#venue_widgets_framework .m-venueframework__header-link:hover, #venue_widgets_framework .m-venueframework__header-link:focus, #venue_widgets_framework .m-venueframework__header-link:active, #venue_widgets_framework .m-venueframework__header-link:visited:hover, #venue_widgets_framework .m-venueframework__header-link:visited:focus, #venue_widgets_framework .m-venueframework__header-link:visited:active {
  background-color: transparent;
  color: #E1C883;
}
#venue_widgets_framework .m-venueframework__header-link:before, #venue_widgets_framework .m-venueframework__header-link:visited:before {
  background-color: #E1C883;
}
#venue_widgets_framework .m-venueframework__widget-body {
  border-left-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-top-color: #fff;
  background-color: #fff;
  border-radius: 0 0 0 0;
}
#venue_widgets_framework .m-venueframework__widget-body__noHeader {
  border-radius: 0px 0px 0 0;
  border-top: 1px solid #fff;
}
#venue_widgets_framework .m-owlcarousel__controls-icon {
  border-color: transparent;
  background-color: transparent;
}
#venue_widgets_framework .m-owlcarousel__controls-icon svg {
  stroke: #1E1E1E;
}
#venue_widgets_framework .m-owlcarousel__controls-icon:hover, #venue_widgets_framework .m-owlcarousel__controls-icon:focus {
  border-color: #1E1E1E;
  background-color: transparent;
}
#venue_widgets_framework .m-owlcarousel__controls-icon:hover svg, #venue_widgets_framework .m-owlcarousel__controls-icon:focus svg {
  stroke: #1E1E1E;
}
#venue_widgets_framework .owl-page span {
  background: #1E1E1E;
}
#venue_widgets_framework .owl-page.active span {
  background: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget .owl-wrapper, #venue_widgets_framework .l-m-venue_widget .owl-wrapper-outer, #venue_widgets_framework .l-m-venue_widget .owl-item {
  height: 100%;
}
#venue_widgets_framework .m-venueframework-linklist__item.has_no_link {
  border-bottom-color: #dbdbdb;
}
#venue_widgets_framework .m-venueframework-linklist__link, #venue_widgets_framework .m-venueframework-linklist__link:visited {
  border-bottom-color: #dbdbdb;
}
#venue_widgets_framework .m-venueframework-linklist__link:hover, #venue_widgets_framework .m-venueframework-linklist__link:focus, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus {
  background-color: #ffffff;
}
#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-title {
  color: #660A0F;
}
#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-subtitle {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-icon svg {
  stroke: #660A0F;
}
#venue_widgets_framework .m-venueframework-linklist__item-title {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-linklist__item-subtitle {
  color: #1E1E1E;
}
#venue_widgets_framework .m-venueframework-linklist__item-icon {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-linklist__item-icon svg {
  stroke: #423e3f;
}
#venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a:visited, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3).has_no_link {
  border-bottom-color: #dbdbdb;
}
#venue_widgets_framework .m-venueframework-newswidget__item-date {
  color: #1E1E1E;
}
#venue_widgets_framework .m-venueframework-newswidget__item-title {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-newswidget__item-subtitle {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-newswidget__link, #venue_widgets_framework .m-venueframework-newswidget__link:visited {
  border-bottom-color: #dbdbdb;
}
#venue_widgets_framework .m-venueframework-newswidget__link:hover, #venue_widgets_framework .m-venueframework-newswidget__link:focus, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus {
  background-color: transparent;
}
#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-date {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-title {
  color: #660A0F;
}
#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-subtitle {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-socialwidget__description {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a, #venue_widgets_framework .m-venueframework-socialwidget__description a:visited {
  color: #423e3f;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a:hover, #venue_widgets_framework .m-venueframework-socialwidget__description a:focus {
  color: #660A0F;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta {
  color: #1E1E1E;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta a, #venue_widgets_framework .m-venueframework-socialwidget__meta a:visited {
  color: #1E1E1E;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta a:hover, #venue_widgets_framework .m-venueframework-socialwidget__meta a:focus {
  color: #660A0F;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta .delimiter {
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .entry {
  background-color: #fff;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .title {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .m-venueframework__widget-body {
  border: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon {
  border-color: transparent;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon svg {
  stroke: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover {
  border-color: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover svg {
  stroke: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-row {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar-container:after {
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-body {
  background: #e4e4e4;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div {
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div > span.fc-date {
  color: #423e3f;
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date:after {
  background: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content {
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover {
  background: #E1C883;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date {
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date:after {
  background: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today .fc-date {
  background: #E1C883;
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date {
  background: #E1C883;
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date:after {
  background: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-body, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-dialog, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-content {
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in {
  border-radius: 0px 0px 0 0;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .modal-body {
  border: 1px solid #e4e4e4;
  border-top: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close {
  border: none;
  border: 1px solid #e4e4e4;
  background: #1E1E1E;
  color: white;
  border-radius: 0px 0px 0 0;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close:hover {
  background: transparent;
  color: #E1C883;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .date {
  color: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in h3 a {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets {
  color: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets svg {
  fill: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover svg {
  fill: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__promotionswidget .m-venueframework__widget-body {
  border: none;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-title h2 {
  color: #f7f7f7;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle {
  color: #f7f7f7;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle:after {
  background: #f7f7f7;
}
#venue_widgets_framework .l-m-venue_widget__eventslist {
  overflow: hidden;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon {
  border-color: transparent;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon svg {
  stroke: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover {
  border-color: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover svg {
  stroke: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__date {
  color: #1E1E1E;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title:hover, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a:hover {
  color: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__tagline {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__item {
  border-right-color: #dbdbdb;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a {
  color: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover {
  color: #660A0F;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover svg path {
  fill: #423e3f;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a svg path {
  fill: #660A0F;
}

#venue_widgets_framework .m-venueframework__header-text {
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#venue_widgets_framework .l-m-venue_widget__newswidget[data-layout=wide] .m-venueframework-newswidget__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-5px);
}
.home #venue_widgets_framework {
  padding: 40px 0;
}
#venue_widgets_framework .m-venueframework-linklist__link:hover,
#venue_widgets_framework .m-venueframework-linklist__link:focus {
  border-left: 5px solid #1e1e1e;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date {
  font-weight: 700;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close:hover {
  background: #1E1E1E;
  color: #E1C883;
}
