@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: none; }

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

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

del {
  text-decoration: line-through; }

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

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

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

input, select {
  vertical-align: middle; }

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

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

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

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

/* 
 * minimal base styles 
 */
body, 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; }

a, a:active, a:visited {
  color: #FD0; }

a:hover {
  color: #fff; }

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

ol {
  list-style-type: decimal; }

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

small {
  font-size: 85%; }

strong, th {
  font-weight: bold; }

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

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

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

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

textarea {
  overflow: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix:after {
  clear: both; }

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

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */ }
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */ }
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ }
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Compass support variables
=Determine what css3 support levels are generated from mixins
=Reference at http://compass-style.org/reference/compass/support/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Mobile Variables
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* added 07/10/12 */
/* #FFC342 added 07/10/12 */
/* Dividers and Element Colors */
/* added 07/10/12 ****/
/* Base Backgrounds */
/* Event Item Size Variables */
.icons-sprite, .icons-alert-btn-bg, .icons-arrow-white, .icons-calcontent-arrow, .icons-cart, .icons-facebook, .icons-fbicon, .icons-info, .icons-instagram, .icons-largecal-next, .icons-largecal-prev, .icons-logo, .icons-mail, .icons-more-news-bg, .icons-navcalendar-bg, .icons-phone, .icons-pinterest, .icons-smallcal-next, .icons-smallcal-prev, .icons-support-us, .icons-ticket-navy, .icons-ticket-orange, .icons-twitter, .icons-website, .icons-weston-logo, .icons-youtube, .cal-header .cal-controls span, .cal-header .cal-controls span:first-child, .cal-content-reveal .buttons a, .cal-content-reveal .buttons a:visited, .cal-content-reveal .buttons a[class*="btn"], .cal-content-reveal .buttons span.soon, .cal-content-reveal .buttons a:hover, .cal-content-reveal .buttons a:visited:hover, .cal-content-reveal .buttons a[class*="btn"]:hover, .cal-content-reveal .buttons span.soon:hover, .cal-content-reveal .buttons a.more, .cal-content-reveal .buttons a.more:visited, .cal-content-reveal .buttons a[class*="btn"].more, .cal-content-reveal .buttons span.soon.more, .calendar .full .full_column .cal-header .cal-controls span, .calendar .full .full_column .cal-header .cal-controls span:first-child, .calendar .full .full_column .tooltip .cal_event_info .buttons a, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"], .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon, .calendar .full .full_column .tooltip .cal_event_info .buttons a:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"]:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a.more, .calendar .full .full_column .tooltip .cal_event_info .buttons a.more:visited, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].more, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.more, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content:hover:before, .map_window .links li.phone, .map_window .links li.url, .fbtabs h4, body.weston-art-gallery .weston-logo {
  background-image: url('../images/icons-s91b06f65c0.png');
  background-repeat: no-repeat; }

.icons-alert-btn-bg {
  background-position: 0 0;
  height: 33px;
  width: 116px; }

.icons-arrow-white {
  background-position: 0 -43px;
  height: 25px;
  width: 25px; }

.icons-calcontent-arrow {
  background-position: 0 -78px;
  height: 90px;
  width: 129px; }

.icons-cart {
  background-position: 0 -178px;
  height: 35px;
  width: 20px; }
  .icons-cart:hover, .icons-cart.cart-hover {
    background-position: 0 -223px; }

.icons-facebook {
  background-position: 0 -268px;
  height: 22px;
  width: 22px; }

.icons-fbicon {
  background-position: 0 -300px;
  height: 16px;
  width: 16px; }

.icons-info {
  background-position: 0 -326px;
  height: 13px;
  width: 12px; }
  .icons-info:hover, .icons-info.info-hover {
    background-position: 0 -349px; }

.icons-instagram {
  background-position: 0 -372px;
  height: 22px;
  width: 22px; }

.icons-largecal-next {
  background-position: 0 -404px;
  height: 30px;
  width: 22px; }

.icons-largecal-prev {
  background-position: 0 -444px;
  height: 30px;
  width: 22px; }

.icons-logo {
  background-position: 0 -484px;
  height: 127px;
  width: 197px; }
  .icons-logo:hover, .icons-logo.logo-hover {
    background-position: 0 -621px; }

.icons-mail {
  background-position: 0 -758px;
  height: 22px;
  width: 22px; }

.icons-more-news-bg {
  background-position: 0 -790px;
  height: 33px;
  width: 116px; }
  .icons-more-news-bg:hover, .icons-more-news-bg.more-news-bg-hover {
    background-position: 0 -833px; }

.icons-navcalendar-bg {
  background-position: 0 -876px;
  height: 70px;
  width: 64px; }

.icons-phone {
  background-position: 0 -956px;
  height: 16px;
  width: 16px; }

.icons-pinterest {
  background-position: 0 -982px;
  height: 22px;
  width: 22px; }

.icons-smallcal-next {
  background-position: 0 -1014px;
  height: 24px;
  width: 24px; }

.icons-smallcal-prev {
  background-position: 0 -1048px;
  height: 24px;
  width: 24px; }

.icons-support-us {
  background-position: 0 -1082px;
  height: 97px;
  width: 97px; }
  .icons-support-us:hover, .icons-support-us.support-us-hover {
    background-position: 0 -1189px; }

.icons-ticket-navy {
  background-position: 0 -1296px;
  height: 11px;
  width: 14px; }
  .icons-ticket-navy:hover, .icons-ticket-navy.ticket-navy-hover {
    background-position: 0 -1317px; }

.icons-ticket-orange {
  background-position: 0 -1338px;
  height: 11px;
  width: 14px; }

.icons-twitter {
  background-position: 0 -1359px;
  height: 22px;
  width: 22px; }

.icons-website {
  background-position: 0 -1391px;
  height: 16px;
  width: 16px; }

.icons-weston-logo {
  background-position: 0 -1417px;
  height: 43px;
  width: 1000px; }

.icons-youtube {
  background-position: 0 -1470px;
  height: 22px;
  width: 22px; }

h1 {
  margin: 0 0 10px;
  padding: 0 0 10px;
  color: #21454D;
  font: 700 22px/140% "adelle", georgia, serif;
  border-bottom: 1px solid #dfdfdf; }
  h1 a {
    text-decoration: none; }

h2 {
  margin: 0 0 10px;
  padding: 0;
  font: 700 18px/140% "adelle", georgia, serif;
  color: #21454D; }
  h2 a,
  h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 10px;
  padding: 0;
  color: #919A3A;
  font: 700 16px/140% "adelle", georgia, serif; }
  h3 a,
  h3 a:visited {
    text-decoration: none; }

h4,
h5,
h6 {
  margin: 0 0 10px;
  padding: 0;
  color: #919A3A;
  font: 700 15px/24px "adelle-sans", helvetica, sans-serif; }
  h4 a,
  h4 a:visited,
  h5 a,
  h5 a:visited,
  h6 a,
  h6 a:visited {
    text-decoration: none; }

h5,
h6 {
  margin: 0 0 2px; }

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

b,
strong {
  font-weight: bold; }

ul,
ol {
  margin: 0;
  padding: 5px 0 8px;
  list-style: none; }
  ul li,
  ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style: none;
    font: 400 14px/24px "adelle-sans", helvetica, sans-serif;
    position: relative; }
  ul ul,
  ol ul {
    margin: 0; }

blockquote {
  padding-left: 20px;
  position: relative; }
  blockquote p {
    font-style: italic; }
  blockquote:after {
    content: '“';
    position: absolute;
    top: 25px;
    left: -5px;
    font-size: 100px;
    width: 20px;
    color: rgba(34, 65, 73, 0.15);
    height: 40px; }

ol {
  list-style: none; }

a {
  color: #919A3A;
  text-decoration: none;
  border: none;
  outline: none; }
  a:visited {
    color: #919A3A; }
  a:hover {
    color: #2D5762; }
  a:active {
    color: #2D5762; }
  a:hover, a:focus {
    text-decoration: underline; }

hr {
  margin: 0 0 10px;
  clear: both; }

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

[class*="span"] {
  float: left;
  min-height: 1px; }

[class*="span"].pull-right {
  float: right; }

[class*="span"].span-center {
  float: none; }

.gutter {
  margin-left: 20px; }

.span-center {
  float: none;
  margin: 0 auto; }

.span6 {
  max-width: 1000px; }

.span5 {
  width: 800px; }

.span4 {
  width: 100%; }

.span3 {
  width: 440px; }

.span2 {
  width: 100%; }

.span1 {
  width: 155px; }

@media screen and (min-width: 820px) {
  .span4 {
    width: calc(100% - 340px); }

  .span2 {
    width: 320px; } }
/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font: normal 14px/24px "adelle-sans", helvetica, sans-serif;
  color: #333;
  width: 100%;
  height: 100%; }

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 0;
  background: #222; }
  .bg div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: none;
    background-position: center top;
    background-size: cover; }

@media screen and (min-width: 1326px) {
  body {
    background-size: 100%, auto; } }
#container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%; }

#layout {
  margin: 0 auto;
  padding: 0 5px;
  position: relative; }

#content {
  padding: 0 0 60px; }

.home #content {
  padding: 0; }

.full_column {
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 20px; }
  .full_column .search_results {
    background: #fff;
    margin: 0; }

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

.column {
  margin: 0;
  padding: 0;
  position: relative;
  float: left; }

#column_1 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  position: relative; }
  #column_1 .holder {
    background: #fff;
    z-index: 1;
    padding: 20px;
    min-height: 500px; }

#events.detail #column_1.has-slideshow {
  padding: 0; }
  #events.detail #column_1.has-slideshow .full-slideshow:first-child {
    margin-top: 0;
    margin-bottom: 0; }

#column_1, #column_3 {
  z-index: 10; }

#column_2 {
  position: relative;
  z-index: 20; }

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

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

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

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

/* ----------------------------------------------------------------------------
= GENERAL CONTENT ITEMS
----------------------------------------------------------------------------- */
.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;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 0 0 10px; }
  .error p {
    color: #222;
    font-size: 12px;
    padding: 0;
    margin: 0; }

.login_form {
  display: block;
  position: relative;
  margin: 0 0 10px;
  padding: 0;
  float: left; }

.login_form input, .login_form input[type="text"] {
  margin: 0 15px 0 0;
  padding: 0 5px;
  position: relative;
  background: #FFF;
  width: 120px;
  text-transform: uppercase;
  font-size: 24px;
  color: #222;
  border: 1px solid #fff;
  font-weight: bold;
  height: 24px;
  line-height: 24px;
  float: left;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.login_form input.login {
  display: block;
  float: left;
  line-height: 25px;
  padding: 0 5px;
  text-decoration: none;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  background: black;
  border: 1px solid white;
  width: 50px;
  font-size: 12px;
  height: auto;
  margin: 0;
  height: 25px; }

.login_form input.login:hover {
  background: #333;
  border: 1px solid #333; }

header {
  margin: 0 auto;
  height: 75px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: 15px 0 0; }
  @media screen and (min-width: 550px) {
    header {
      padding: 25px 0 0;
      height: 100px; } }
  @media screen and (min-width: 820px) {
    header {
      margin-bottom: 40px;
      padding: 55px 0 0;
      height: 230px; } }
  header .logo {
    position: relative;
    width: 190px;
    height: 40px;
    float: left;
    margin-left: 10px; }
    header .logo span, header .logo a {
      text-indent: -5000px;
      display: block;
      width: 100%;
      height: 100%;
      background: url(../images/logo.svg) no-repeat 0 0;
      background-size: contain; }
      header .logo span:hover, header .logo a:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
    header .logo span {
      cursor: default; }
  @media screen and (min-width: 550px) {
    header .logo {
      width: 225px;
      height: 50px; } }
  @media screen and (min-width: 820px) {
    header .logo {
      width: 355px;
      height: 75px; } }
  @media screen and (min-width: 1000px) {
    header .logo {
      margin-left: 0; } }

.toolbar {
  display: none; }

@media screen and (min-width: 550px) {
  .toolbar {
    display: block;
    background: rgba(0, 0, 0, 0.45);
    height: 40px; }
    .toolbar a.btn-donate {
      height: 45px;
      width: auto;
      text-align: center;
      font: 600 18px/45px "adelle", georgia, serif; }
      .toolbar a.btn-donate:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }
    .toolbar .toolbar-links ul {
      list-style: none;
      margin: 0;
      padding: 0;
      position: relative; }
      .toolbar .toolbar-links ul li {
        margin: 0;
        padding: 0;
        float: left; }
        .toolbar .toolbar-links ul li a, .toolbar .toolbar-links ul li span {
          color: #fff;
          font: 700 12px/40px "adelle-sans", helvetica, sans-serif;
          letter-spacing: 1px;
          text-transform: uppercase;
          position: relative;
          display: block;
          text-indent: -4000000px;
          width: 60px;
          overflow: hidden; }
          .toolbar .toolbar-links ul li a:visited, .toolbar .toolbar-links ul li span:visited {
            color: #fff; }
          .toolbar .toolbar-links ul li a:hover, .toolbar .toolbar-links ul li span:hover {
            color: #919A3A; }
          .toolbar .toolbar-links ul li a:active, .toolbar .toolbar-links ul li span:active {
            color: #919A3A; }
          .toolbar .toolbar-links ul li a:before, .toolbar .toolbar-links ul li span:before {
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            left: 10px;
            background: url(../images/icons-toolbar.png) no-repeat 0 0;
            content: ''; }
          .toolbar .toolbar-links ul li a:hover, .toolbar .toolbar-links ul li span:hover {
            text-decoration: none; }
            .toolbar .toolbar-links ul li a:hover:before, .toolbar .toolbar-links ul li span:hover:before {
              background-position: 0 bottom; }
        .toolbar .toolbar-links ul li ul {
          background: rgba(0, 0, 0, 0.45);
          position: absolute;
          top: 40px;
          left: 0px;
          display: none;
          z-index: 100; }
          .toolbar .toolbar-links ul li ul li:after {
            display: none; }
          .toolbar .toolbar-links ul li ul a {
            text-indent: 0;
            padding: 0 20px 0 60px;
            width: auto; }
        .toolbar .toolbar-links ul li:hover ul {
          display: block; }
        .toolbar .toolbar-links ul li span:hover {
          color: #fff; }
        .toolbar .toolbar-links ul li.facebook a:before, .toolbar .toolbar-links ul li.facebook span:before {
          background-position: -40px 0; }
        .toolbar .toolbar-links ul li.facebook a:hover:before, .toolbar .toolbar-links ul li.facebook span:hover:before {
          background-position: -40px bottom; } }
      @media screen and (min-width: 550px) and (min-width: 1000px) {
        .toolbar .toolbar-links ul li {
          font: 700 12px/40px "adelle-sans", helvetica, sans-serif;
          color: white; }
          .toolbar .toolbar-links ul li a, .toolbar .toolbar-links ul li span {
            text-indent: 0;
            padding: 0 20px 0 60px;
            width: auto; }
          .toolbar .toolbar-links ul li.facebook a, .toolbar .toolbar-links ul li.facebook span {
            padding: 0 20px 0 50px; } }
@media screen and (min-width: 550px) {
        .toolbar .toolbar-links ul li:after {
          width: 1px;
          height: 20px;
          position: absolute;
          top: 10px;
          right: 0;
          background: rgba(0, 0, 0, 0.45);
          content: ''; }
        .toolbar .toolbar-links ul li.facebook:after {
          display: none; }
    .toolbar .search {
      width: 300px;
      padding: 0;
      position: relative; }
      .toolbar .search:after {
        width: 1px;
        height: 20px;
        position: absolute;
        top: 10px;
        left: 249px;
        background: rgba(0, 0, 0, 0.45);
        content: ''; }
      .toolbar .search form {
        padding: 0;
        float: left; }
      .toolbar .search input[type="text"] {
        width: 250px;
        height: 40px;
        background: rgba(255, 255, 255, 0.08);
        color: white;
        font: 700 12px/20px "adelle-sans", helvetica, sans-serif;
        text-transform: uppercase;
        border: 0;
        float: left;
        margin: 0;
        padding: 10px 20px;
        display: block;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
      .toolbar .search button {
        width: 50px;
        height: 40px;
        line-height: 40px;
        background: rgba(255, 255, 255, 0.08);
        border: 0;
        display: block;
        float: left;
        color: #fff;
        padding: 0;
        margin: 0;
        font-size: 16px; }
        .toolbar .search button:hover {
          background: #919A3A; } }
    @media screen and (min-width: 550px) and (max-width: 600px) {
      .toolbar .search {
        width: 250px; }
        .toolbar .search input[type="text"] {
          width: calc(100% - 50px); } }

.venue-nav {
  display: none; }

@media screen and (min-width: 820px) {
  .venue-nav {
    display: block;
    position: absolute;
    top: 60px;
    right: 0;
    width: 450px;
    height: 65px;
    text-align: center; }
    .venue-nav ul {
      margin: 0 auto;
      padding: 0;
      list-style: none;
      width: auto; }
      .venue-nav ul li {
        margin: 0;
        padding: 0 25px;
        display: inline-block;
        position: relative; }
        .venue-nav ul li a {
          text-indent: -999999px;
          display: block;
          text-transform: uppercase;
          background: url(../images/venues.png) no-repeat 0 0; }
          .venue-nav ul li a:hover {
            text-decoration: none; }
        .venue-nav ul li.venue_american a {
          background-position: 0 0;
          width: 210px;
          height: 65px; }
          .venue-nav ul li.venue_american a:hover {
            background-position: 0 bottom; }
        .venue-nav ul li.venue_taylor a {
          background-position: right 0;
          width: 135px;
          height: 65px; }
          .venue-nav ul li.venue_taylor a:hover {
            background-position: right bottom; }
      .venue-nav ul .sub {
        display: none;
        position: absolute;
        top: 90px;
        width: 250px;
        height: 50px;
        padding: 10px 20px;
        background: #fff;
        z-index: 202;
        font: 600 16px/30px "adelle", georgia, serif;
        text-transform: uppercase;
        color: #21454D;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        .venue-nav ul .sub:before {
          content: '';
          position: absolute;
          top: -13px;
          margin-left: -13px;
          border-left: 13px solid transparent;
          border-right: 13px solid transparent;
          border-bottom: 13px solid #fff; }
      .venue-nav ul .venue_american .sub {
        left: 20px; }
        .venue-nav ul .venue_american .sub:before {
          left: 33px; }
      .venue-nav ul .venue_taylor .sub {
        width: 420px;
        right: 20px; }
        .venue-nav ul .venue_taylor .sub:before {
          right: 33px; } }
/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  margin: 0;
  position: relative;
  float: none;
  background: #eee; }
  footer .holder, .footer .holder {
    *zoom: 1; }
    footer .holder:before, footer .holder:after, .footer .holder:before, .footer .holder:after {
      content: "\0020";
      display: table; }
    footer .holder:after, .footer .holder:after {
      clear: both; }
  footer .venue-info, .footer .venue-info {
    width: 315px;
    margin: 0 auto 20px;
    color: #333;
    *zoom: 1;
    text-align: center; }
    footer .venue-info:before, footer .venue-info:after, .footer .venue-info:before, .footer .venue-info:after {
      content: "\0020";
      display: table; }
    footer .venue-info:after, .footer .venue-info:after {
      clear: both; }
    footer .venue-info .map-marker, .footer .venue-info .map-marker {
      width: 140px;
      height: 150px;
      margin: 0 auto 10px;
      background: #2D5762 url(../images/map-marker.png) no-repeat 0 0; }
    footer .venue-info.the-american-theatre .map-marker, .footer .venue-info.the-american-theatre .map-marker {
      background-position: 0 bottom; }
    footer .venue-info a, .footer .venue-info a {
      display: block;
      font: 700 15px/140% "adelle", georgia, serif;
      color: #71B0B4; }
      footer .venue-info a:visited, .footer .venue-info a:visited {
        color: #71B0B4; }
      footer .venue-info a:hover, .footer .venue-info a:hover {
        color: #2D5762; }
      footer .venue-info a:active, .footer .venue-info a:active {
        color: #2D5762; }
      footer .venue-info a:hover, .footer .venue-info a:hover {
        text-decoration: none; }
    footer .venue-info address, .footer .venue-info address {
      display: block;
      color: #333;
      font: 400 14px/24px "adelle-sans", helvetica, sans-serif;
      margin-bottom: 0; }
    @media screen and (min-width: 550px) {
      footer .venue-info, .footer .venue-info {
        width: 50%;
        float: left; } }
    @media screen and (min-width: 1000px) {
      footer .venue-info, .footer .venue-info {
        margin: 0 0 0 30px;
        width: 315px;
        text-align: left; }
        footer .venue-info.the-american-theatre, .footer .venue-info.the-american-theatre {
          width: 320px; }
        footer .venue-info .map-marker, .footer .venue-info .map-marker {
          float: left;
          margin: 0 20px 0 0; }
        footer .venue-info address, .footer .venue-info address {
          float: left; } }
  footer .nav, .footer .nav {
    width: 100%; }
    footer .nav ul, .footer .nav ul {
      margin: 0;
      padding: 0 0 20px;
      text-align: center; }
      footer .nav ul li, .footer .nav ul li {
        list-style: none;
        padding: 0 0 4px;
        display: block;
        margin: 0; }
        footer .nav ul li:before, .footer .nav ul li:before {
          content: "";
          position: absolute;
          background: #71B0B4;
          top: 9px;
          left: 0;
          width: 8px;
          height: 8px;
          display: none; }
        footer .nav ul li a, .footer .nav ul li a {
          color: #2D5762;
          font: 500 13px/15px "adelle", georgia, serif;
          text-transform: uppercase; }
          footer .nav ul li a:visited, .footer .nav ul li a:visited {
            color: #2D5762; }
          footer .nav ul li a:hover, .footer .nav ul li a:hover {
            color: #919A3A; }
          footer .nav ul li a:active, .footer .nav ul li a:active {
            color: #919A3A; }
          footer .nav ul li a:hover, .footer .nav ul li a:hover {
            text-decoration: none; }
    @media screen and (min-width: 820px) {
      footer .nav ul li, .footer .nav ul li {
        padding: 0 13px 4px 20px;
        display: inline-block; }
        footer .nav ul li:before, .footer .nav ul li:before {
          display: block; }
        footer .nav ul li:first-child:before, .footer .nav ul li:first-child:before {
          display: none; } }
    @media screen and (min-width: 1000px) {
      footer .nav, .footer .nav {
        width: 300px;
        float: left;
        border-right: 1px solid #ccc; }
        footer .nav ul, .footer .nav ul {
          text-align: left; }
          footer .nav ul li, .footer .nav ul li {
            display: block; }
            footer .nav ul li:first-child:before, .footer .nav ul li:first-child:before {
              display: block; } }
  footer .delimiter, .footer .delimiter {
    color: #333;
    padding: 0 1px; }
  footer .global_footer, .footer .global_footer {
    clear: both;
    margin-top: 90px;
    border-top: 1px solid #dfdfdf;
    padding-top: 10px;
    text-align: center;
    width: 100%;
    position: relative; }
    footer .global_footer a, .footer .global_footer a {
      color: #333; }
      footer .global_footer a:visited, .footer .global_footer a:visited {
        color: #333; }
      footer .global_footer a:hover, .footer .global_footer a:hover {
        color: #2D5762; }
      footer .global_footer a:active, .footer .global_footer a:active {
        color: #2D5762; }
    footer .global_footer p, .footer .global_footer p {
      font-size: 10px;
      margin: 0; }
    footer .global_footer .footer-logo, .footer .global_footer .footer-logo {
      display: block;
      height: 45px;
      position: absolute;
      top: -60px;
      text-indent: -9999999px; }
      footer .global_footer .footer-logo.logo-hamptoncoliseum, .footer .global_footer .footer-logo.logo-hamptoncoliseum {
        width: 90px;
        left: 45%;
        margin-left: -100px;
        background: url(../images/logo-hamptoncoliseum.png) no-repeat center center; }
      footer .global_footer .footer-logo.logo-ticketmaster, .footer .global_footer .footer-logo.logo-ticketmaster {
        width: 140px;
        height: 35px;
        top: -50px;
        left: auto;
        right: 50%;
        margin-right: -150px;
        background: url(../images/logo-ticketmaster.png) no-repeat center center; }
    footer .global_footer a#carbonhouse, footer .global_footer a#carbonhouse:link, footer .global_footer a#carbonhouse:visited, .footer .global_footer a#carbonhouse, .footer .global_footer a#carbonhouse:link, .footer .global_footer a#carbonhouse:visited {
      display: block;
      font-size: 10px;
      font-weight: bold;
      font-family: 'helvetica';
      color: #666;
      cursor: pointer;
      text-decoration: none; }
      footer .global_footer a#carbonhouse span, footer .global_footer a#carbonhouse:link span, footer .global_footer a#carbonhouse:visited span, .footer .global_footer a#carbonhouse span, .footer .global_footer a#carbonhouse:link span, .footer .global_footer a#carbonhouse:visited span {
        font-size: 12px; }
        footer .global_footer a#carbonhouse span.carbon, footer .global_footer a#carbonhouse:link span.carbon, footer .global_footer a#carbonhouse:visited span.carbon, .footer .global_footer a#carbonhouse span.carbon, .footer .global_footer a#carbonhouse:link span.carbon, .footer .global_footer a#carbonhouse:visited span.carbon {
          color: #666; }
        footer .global_footer a#carbonhouse span.house, footer .global_footer a#carbonhouse:link span.house, footer .global_footer a#carbonhouse:visited span.house, .footer .global_footer a#carbonhouse span.house, .footer .global_footer a#carbonhouse:link span.house, .footer .global_footer a#carbonhouse:visited span.house {
          color: #666; }
      footer .global_footer a#carbonhouse:hover, footer .global_footer a#carbonhouse:link:hover, footer .global_footer a#carbonhouse:visited:hover, .footer .global_footer a#carbonhouse:hover, .footer .global_footer a#carbonhouse:link:hover, .footer .global_footer a#carbonhouse:visited:hover {
        text-decoration: none;
        color: #999; }
        footer .global_footer a#carbonhouse:hover span, footer .global_footer a#carbonhouse:link:hover span, footer .global_footer a#carbonhouse:visited:hover span, .footer .global_footer a#carbonhouse:hover span, .footer .global_footer a#carbonhouse:link:hover span, .footer .global_footer a#carbonhouse:visited:hover span {
          color: #999; }
    @media screen and (min-width: 820px) {
      footer .global_footer, .footer .global_footer {
        text-align: left;
        height: 50px; }
        footer .global_footer .footer-logo.logo-hamptoncoliseum, .footer .global_footer .footer-logo.logo-hamptoncoliseum {
          width: 90px;
          left: 0;
          margin: 0; }
        footer .global_footer .footer-logo.logo-ticketmaster, .footer .global_footer .footer-logo.logo-ticketmaster {
          width: 140px;
          height: 35px;
          top: -50px;
          left: auto;
          right: 0;
          margin: 0; }
        footer .global_footer a#carbonhouse, footer .global_footer a#carbonhouse:link, footer .global_footer a#carbonhouse:visited, .footer .global_footer a#carbonhouse, .footer .global_footer a#carbonhouse:link, .footer .global_footer a#carbonhouse:visited {
          position: absolute;
          top: 10px;
          right: 0; } }

/* ----------------------------------------------------------------------------
=partners
----------------------------------------------------------------------------- */
.partner_container {
  width: 100%;
  height: 120px;
  position: relative;
  margin-bottom: 50px;
  background: #fff; }
  .partner_container .partners {
    margin: 0 auto;
    float: none;
    height: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0; }
    .partner_container .partners .owl-carousel {
      padding: 0;
      margin: 0 auto;
      text-align: center; }
      .partner_container .partners .owl-carousel:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background-color: white;
        z-index: 4; }
      .partner_container .partners .owl-carousel .owl-item {
        height: 85px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        .partner_container .partners .owl-carousel .owl-item .img-container {
          width: 100%;
          height: 100%;
          display: block;
          position: relative;
          line-height: 55px; }
        .partner_container .partners .owl-carousel .owl-item:before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          height: 80px;
          width: 1px;
          background: #DFDFDF; }
        .partner_container .partners .owl-carousel .owl-item img {
          max-height: 80px;
          max-width: 180px;
          vertical-align: middle; }
        .partner_container .partners .owl-carousel .owl-item:after {
          content: '';
          position: absolute;
          bottom: -13px;
          left: 50%;
          margin-left: -24px;
          border-bottom: 13px solid #21454D;
          border-left: 24px solid transparent;
          border-right: 24px solid transparent;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
        .partner_container .partners .owl-carousel .owl-item:hover:after {
          bottom: 0; }
      .partner_container .partners .owl-carousel.no_scroller li {
        padding: 0;
        margin: 0;
        width: 20%;
        height: 85px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
        display: table-cell;
        float: left;
        overflow: hidden; }
        .partner_container .partners .owl-carousel.no_scroller li:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          height: 55px;
          width: 1px;
          background: #DFDFDF; }
  .partner_container .owl-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0; }
    .partner_container .owl-controls.hidden {
      display: none; }
    .partner_container .owl-controls .owl-next, .partner_container .owl-controls .owl-prev {
      position: absolute;
      top: -120px;
      left: -50px;
      width: 50px;
      height: 120px;
      text-indent: -400000px;
      overflow: hidden;
      cursor: pointer;
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
      font-size: 70px;
      line-height: 120px;
      text-align: center;
      color: #eee;
      z-index: 99; }
      .partner_container .owl-controls .owl-next:after, .partner_container .owl-controls .owl-prev:after {
        content: '';
        position: absolute;
        top: 40px;
        left: 10px;
        border-right: 20px solid #ccc;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent; }
      .partner_container .owl-controls .owl-next.owl-next, .partner_container .owl-controls .owl-prev.owl-next {
        left: auto;
        right: -50px; }
        .partner_container .owl-controls .owl-next.owl-next:after, .partner_container .owl-controls .owl-prev.owl-next:after {
          border-left: 20px solid #ccc;
          border-right: 0;
          left: 20px; }
      .partner_container .owl-controls .owl-next:hover, .partner_container .owl-controls .owl-prev:hover {
        background: #21454D; }

.main-nav {
  display: none; }

.mobile-nav-holder {
  display: none; }

.mobile-nav-holder.is-opened {
  display: block; }

#nav-toggle {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  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: white;
    margin-top: 0px;
    cursor: pointer;
    color: white;
    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: 820px) {
    #nav-toggle {
      display: none; } }
  @media screen and (min-width: 550px) {
    #nav-toggle {
      top: 25px; } }

@media screen and (min-width: 820px) {
  .main-nav {
    display: block; }

  .mobile-nav-holder {
    display: none; }

  .main-nav {
    position: relative;
    float: left;
    margin: 45px 0 0;
    padding: 0;
    width: 100%;
    height: 55px;
    z-index: 200;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.45); }
    .main-nav ul {
      display: block;
      text-align: left;
      position: relative;
      margin: 0;
      padding: 0 10px;
      width: 100%;
      height: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .main-nav ul li {
        display: block;
        padding: 0;
        margin: 0;
        height: 30px;
        float: left;
        position: relative; }
        .main-nav ul li:before {
          width: 1px;
          height: 20px;
          position: absolute;
          top: 18px;
          right: 0;
          background: rgba(255, 255, 255, 0.2);
          content: ''; }
        .main-nav ul li:last-child:before {
          display: none; }
        .main-nav ul li.has_sub:hover:after {
          content: '';
          position: absolute;
          bottom: -68px;
          left: 30%;
          margin-left: -13px;
          width: 26px;
          height: 26px;
          background: white;
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
          .ie8 .main-nav ul li.has_sub:hover:after {
            bottom: -40px;
            background: transparent url('../images/ie8-triangle.png?1395843608') left top no-repeat; }
    .main-nav > ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0; }
    .main-nav a {
      display: block;
      text-decoration: none;
      text-align: left;
      font: 700 15px/55px "adelle-sans", helvetica, sans-serif;
      margin: 0;
      padding: 0px 11px;
      text-transform: uppercase;
      color: #919A3A; }
      .main-nav a:visited {
        color: #919A3A; }
      .main-nav a:hover {
        color: #fff; }
      .main-nav a:active {
        color: #fff; }
      .main-nav a span {
        color: #919A3A;
        font: 700 15px/55px "adelle", georgia, serif; }
      .main-nav a:hover, .main-nav a.active {
        text-decoration: none;
        color: white; }
        .main-nav a:hover span, .main-nav a.active span {
          color: white; } }
    @media screen and (min-width: 820px) and (min-width: 821px) and (max-width: 899px) {
      .main-nav a {
        font-size: 14px;
        padding: 0 10px; } }
  @media screen and (min-width: 820px) and (min-width: 900px) {
    .main-nav a span {
      font: 700 16px/55px "adelle", georgia, serif; } }
  @media screen and (min-width: 820px) and (min-width: 1000px) {
    .main-nav a span {
      font: 700 19px/55px "adelle", georgia, serif;
      white-space: nowrap; } }

.main-nav ul .sub {
  position: absolute;
  left: 50%;
  top: 55px;
  display: none;
  width: 300px;
  padding: 30px 0 0;
  line-height: 26px;
  z-index: 9000;
  margin: 0 0 0 -150px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

nav ul li.has_banner .sub {
  left: 0;
  margin: 0; }
nav ul li.has_banner .sub, nav ul li.has_banner .sub:after {
  width: 510px; }

.main-nav ul ul {
  float: left;
  background: white;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 10px 12px 10px 15px; }
  .main-nav ul ul li {
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 1px 0;
    cursor: pointer;
    float: none;
    text-align: left;
    height: auto;
    border-left: none;
    border-right: none;
    border-top: 1px solid #ddd; }
    .main-nav ul ul li:first-child {
      display: block;
      border-top: none; }
    .main-nav ul ul li:before, .main-nav ul ul li:after {
      display: none; }
    .main-nav ul ul li a {
      display: block;
      margin: 0px;
      padding: 0;
      text-decoration: none;
      height: auto;
      cursor: pointer;
      text-indent: 0;
      text-transform: none;
      background: none;
      text-align: left;
      text-transform: uppercase;
      font: 700 14px/32px "adelle", georgia, serif;
      color: #21454D; }
      .main-nav ul ul li a:visited {
        color: #21454D; }
      .main-nav ul ul li a:hover {
        color: #919A3A; }
      .main-nav ul ul li a:active {
        color: #919A3A; }
      .main-nav ul ul li a:hover, .main-nav ul ul li a:focus {
        text-decoration: none;
        cursor: pointer; }

.mobile-nav-holder {
  position: absolute;
  left: 0;
  top: 75px;
  width: 100%;
  height: calc(100% - 75px);
  z-index: 1000;
  background: #21454D;
  *zoom: 1;
  text-align: center; }
  .mobile-nav-holder:before, .mobile-nav-holder:after {
    content: "\0020";
    display: table; }
  .mobile-nav-holder:after {
    clear: both; }
  @media screen and (min-width: 550px) {
    .mobile-nav-holder {
      top: 100px;
      height: calc(100% - 100px); } }
  .mobile-nav-holder .search {
    width: 100%;
    padding: 10px;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .mobile-nav-holder .search:after {
      width: 1px;
      height: 20px;
      position: absolute;
      top: 20px;
      right: 61px;
      background: rgba(0, 0, 0, 0.45);
      content: ''; }
    .mobile-nav-holder .search form {
      padding: 0; }
    .mobile-nav-holder .search input[type="text"] {
      width: calc(100% - 50px);
      height: 40px;
      background: rgba(255, 255, 255, 0.08);
      color: white;
      font: 700 12px/20px "adelle-sans", helvetica, sans-serif;
      text-transform: uppercase;
      border: 0;
      float: left;
      margin: 0;
      padding: 10px 20px;
      display: block;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .mobile-nav-holder .search button {
      width: 50px;
      height: 40px;
      line-height: 40px;
      background: rgba(255, 255, 255, 0.08);
      border: 0;
      display: block;
      float: left;
      color: #fff;
      padding: 0;
      margin: 0;
      font-size: 16px; }
      .mobile-nav-holder .search button:hover {
        background: #919A3A; }
  .mobile-nav-holder .mobile-nav {
    clear: both;
    padding: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .mobile-nav-holder .mobile-nav ul {
      position: relative; }
      .mobile-nav-holder .mobile-nav ul:before {
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.2);
        content: ''; }
    .mobile-nav-holder .mobile-nav ul .sub {
      display: none; }
      .mobile-nav-holder .mobile-nav ul .sub ul:before {
        display: none; }
    .mobile-nav-holder .mobile-nav ul > li {
      position: relative; }
      .mobile-nav-holder .mobile-nav ul > li:before {
        width: 100%;
        height: 1px;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.2);
        content: ''; }
    .mobile-nav-holder .mobile-nav ul li > a {
      display: block;
      text-decoration: none;
      font: 700 18px/55px "adelle", georgia, serif;
      margin: 0;
      padding: 0px 11px;
      text-transform: uppercase;
      color: #919A3A; }
      .mobile-nav-holder .mobile-nav ul li > a:visited {
        color: #919A3A; }
      .mobile-nav-holder .mobile-nav ul li > a:hover {
        color: #fff; }
      .mobile-nav-holder .mobile-nav ul li > a:active {
        color: #fff; }
      .mobile-nav-holder .mobile-nav ul li > a:hover, .mobile-nav-holder .mobile-nav ul li > a.active {
        text-decoration: none;
        color: white; }
    .mobile-nav-holder .mobile-nav ul .sub li:before {
      display: none; }
    .mobile-nav-holder .mobile-nav ul .sub li a {
      font: 700 15px/35px "adelle-sans", helvetica, sans-serif;
      color: #71B0B4; }
      .mobile-nav-holder .mobile-nav ul .sub li a:visited {
        color: #71B0B4; }
      .mobile-nav-holder .mobile-nav ul .sub li a:hover {
        color: #919A3A; }
      .mobile-nav-holder .mobile-nav ul .sub li a:active {
        color: #919A3A; }
  .mobile-nav-holder .buttons {
    float: none;
    margin: 10px; }
  .mobile-nav-holder .toolbar-links {
    float: none; }
    .mobile-nav-holder .toolbar-links ul {
      list-style: none;
      margin: 0;
      padding: 0;
      position: relative; }
      .mobile-nav-holder .toolbar-links ul li {
        margin: 0;
        padding: 0;
        position: relative;
        display: inline-block; }
        .mobile-nav-holder .toolbar-links ul li a {
          color: #fff;
          font: 700 12px/40px "adelle-sans", helvetica, sans-serif;
          letter-spacing: 1px;
          text-transform: uppercase;
          position: relative;
          display: inline-block;
          text-indent: -400000px;
          width: 60px;
          overflow: hidden; }
          .mobile-nav-holder .toolbar-links ul li a:visited {
            color: #fff; }
          .mobile-nav-holder .toolbar-links ul li a:hover {
            color: #919A3A; }
          .mobile-nav-holder .toolbar-links ul li a:active {
            color: #919A3A; }
          .mobile-nav-holder .toolbar-links ul li a:before {
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            left: 10px;
            background: url(../images/icons-toolbar.png) no-repeat 0 0;
            content: ''; }
          .mobile-nav-holder .toolbar-links ul li a:hover {
            text-decoration: none; }
            .mobile-nav-holder .toolbar-links ul li a:hover:before {
              background-position: 0 bottom; }
        .mobile-nav-holder .toolbar-links ul li.facebook a:before {
          background-position: -40px 0; }
        .mobile-nav-holder .toolbar-links ul li.facebook a:hover:before {
          background-position: -40px bottom; }
        .mobile-nav-holder .toolbar-links ul li:after {
          width: 1px;
          height: 20px;
          position: absolute;
          top: 10px;
          right: 0;
          background: rgba(0, 0, 0, 0.45);
          content: ''; }
        .mobile-nav-holder .toolbar-links ul li.facebook:after {
          display: none; }

/* ----------------------------------------------------------------------------
	=Page Content
	----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  	=Image Templates
  	----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  	=Text Templates
  	----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  	=Tables
  	----------------------------------------------------------------------------- */ }
  .content ul li {
    list-style: none;
    padding-left: 18px; }
    .content ul li:before {
      content: '';
      width: 8px;
      height: 8px;
      position: absolute;
      background: #71B0B4;
      top: 9px;
      left: 0; }
  .content ol {
    margin-left: 18px; }
    .content ol li {
      list-style: decimal; }
  .content .container {
    clear: both;
    position: relative; }
  .textarea .content img {
    max-width: 100%;
    display: block;
    margin: 0 0 15px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  @media screen and (min-width: 550px) {
    .content img[align='left'], .content img[align='left'].gh-image, .content img[style*='float: left'], .content img[style*='float:left'], .content img.left {
      float: left;
      margin: 0 10px 10px 0; }
    .content img[align='right'], .content img[align='right'].gh-image, .content img[style*='float: right'], .content img[style*='float:right'], .content img.right {
      float: right;
      margin: 0 0 10px 10px; } }
  .content .image-left {
    clear: both; }
    .content .image-left h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-left img {
      width: 175px;
      height: 130px;
      padding: 6px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both; }
    .content .image-right h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px; }
    .content .image-right p {
      line-height: 140%; }
  .content .image-three {
    text-align: left;
    float: left;
    width: 140px;
    padding: 0 24px 30px;
    margin: 0; }
    .content .image-three a,
    .content .image-three a:link,
    .content .image-three a:visited {
      display: block;
      width: 132px;
      height: 106px; }
      .content .image-three a img,
      .content .image-three a img.image,
      .content .image-three a img.gh-image,
      .content .image-three a:link img,
      .content .image-three a:link img.image,
      .content .image-three a:link img.gh-image,
      .content .image-three a:visited img,
      .content .image-three a:visited img.image,
      .content .image-three a:visited img.gh-image {
        padding: 2px;
        margin: 0;
        width: 132px;
        height: 106px; }
      .content .image-three a:hover, .content .image-three a:focus,
      .content .image-three a:link:hover,
      .content .image-three a:link:focus,
      .content .image-three a:visited:hover,
      .content .image-three a:visited:focus {
        text-decoration: none; }
    .content .image-three p {
      color: black;
      width: 132px;
      text-align: center;
      padding: 5px 0 0;
      font-weight: bold; }
  .content .image-four {
    text-align: center;
    float: left;
    width: 130px;
    padding: 0 10px;
    margin: 0; }
    .content .image-four a,
    .content .image-four a:link,
    .content .image-four a:visited {
      display: block;
      margin: 0;
      padding: 0;
      width: auto;
      height: auto; }
    .content .image-four img,
    .content .image-four img.image,
    .content .image-four img.gh-image {
      padding: 0;
      background: none;
      margin: 0 0 10px; }
  .content .overview,
  .content .lead {
    margin: 0 0 15px;
    padding: 0;
    font-size: 16px;
    line-height: 200%; }
    .content .overview p,
    .content .lead p {
      font-size: 16px;
      line-height: 200%; }
    .content .overview h1,
    .content .lead h1 {
      border-bottom: 0;
      margin-bottom: 0; }
    .content .overview a,
    .content .overview a:visited,
    .content .lead a,
    .content .lead a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus,
      .content .overview a:visited:hover,
      .content .overview a:visited:focus,
      .content .lead a:hover,
      .content .lead a:focus,
      .content .lead a:visited:hover,
      .content .lead a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid black; }
    .content .baseline p {
      font-size: 16px;
      padding: 10px 0 15px;
      line-height: 130%;
      color: black; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: black; }
      .content table tr td {
        padding: 5px;
        border: none; }

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

.paging {
  margin: 0;
  position: relative;
  padding: 10px 0px;
  height: 25px;
  font-size: 12px;
  border-bottom: 1px solid #dfdfdf; }
  .paging .record {
    width: 100px;
    float: left;
    text-transform: uppercase;
    font: 500 12px/25px "adelle-sans", helvetica, sans-serif;
    height: 18px;
    font-weight: bold; }
  .paging .pages {
    margin: 0;
    float: right;
    text-align: right;
    padding: 0; }
    .paging .pages strong,
    .paging .pages a,
    .paging .pages a:link,
    .paging .pages a:visited {
      background: #c5c4bd;
      color: #fff;
      height: 25px;
      line-height: 25px;
      margin: 0 0 0 1px;
      text-align: center;
      width: 25px;
      display: inline-block;
      text-decoration: none; }
      .paging .pages strong:hover,
      .paging .pages a:hover,
      .paging .pages a:link:hover,
      .paging .pages a:visited:hover {
        background-color: #2C3E50;
        text-decoration: none; }
      .paging .pages strong.prev, .paging .pages strong.next, .paging .pages strong.first, .paging .pages strong.last,
      .paging .pages a.prev,
      .paging .pages a.next,
      .paging .pages a.first,
      .paging .pages a.last,
      .paging .pages a:link.prev,
      .paging .pages a:link.next,
      .paging .pages a:link.first,
      .paging .pages a:link.last,
      .paging .pages a:visited.prev,
      .paging .pages a:visited.next,
      .paging .pages a:visited.first,
      .paging .pages a:visited.last {
        text-indent: -9999px;
        position: relative; }
        .paging .pages strong.prev:before, .paging .pages strong.next:before, .paging .pages strong.first:before, .paging .pages strong.last:before,
        .paging .pages a.prev:before,
        .paging .pages a.next:before,
        .paging .pages a.first:before,
        .paging .pages a.last:before,
        .paging .pages a:link.prev:before,
        .paging .pages a:link.next:before,
        .paging .pages a:link.first:before,
        .paging .pages a:link.last:before,
        .paging .pages a:visited.prev:before,
        .paging .pages a:visited.next:before,
        .paging .pages a:visited.first:before,
        .paging .pages a:visited.last:before {
          content: '\f04b';
          font-family: FontAwesome;
          text-indent: 0;
          width: 25px;
          height: 25px;
          font-size: 10px;
          line-height: 25px;
          position: absolute;
          top: 0px;
          left: 0;
          color: #fff;
          text-align: center; }
        .paging .pages strong.prev.prev, .paging .pages strong.next.prev, .paging .pages strong.first.prev, .paging .pages strong.last.prev,
        .paging .pages a.prev.prev,
        .paging .pages a.next.prev,
        .paging .pages a.first.prev,
        .paging .pages a.last.prev,
        .paging .pages a:link.prev.prev,
        .paging .pages a:link.next.prev,
        .paging .pages a:link.first.prev,
        .paging .pages a:link.last.prev,
        .paging .pages a:visited.prev.prev,
        .paging .pages a:visited.next.prev,
        .paging .pages a:visited.first.prev,
        .paging .pages a:visited.last.prev {
          -moz-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
          -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg); }
        .paging .pages strong.prev.first:before, .paging .pages strong.next.first:before, .paging .pages strong.first.first:before, .paging .pages strong.last.first:before,
        .paging .pages a.prev.first:before,
        .paging .pages a.next.first:before,
        .paging .pages a.first.first:before,
        .paging .pages a.last.first:before,
        .paging .pages a:link.prev.first:before,
        .paging .pages a:link.next.first:before,
        .paging .pages a:link.first.first:before,
        .paging .pages a:link.last.first:before,
        .paging .pages a:visited.prev.first:before,
        .paging .pages a:visited.next.first:before,
        .paging .pages a:visited.first.first:before,
        .paging .pages a:visited.last.first:before {
          content: '\f04a';
          font-size: 12px; }
        .paging .pages strong.prev.last:before, .paging .pages strong.next.last:before, .paging .pages strong.first.last:before, .paging .pages strong.last.last:before,
        .paging .pages a.prev.last:before,
        .paging .pages a.next.last:before,
        .paging .pages a.first.last:before,
        .paging .pages a.last.last:before,
        .paging .pages a:link.prev.last:before,
        .paging .pages a:link.next.last:before,
        .paging .pages a:link.first.last:before,
        .paging .pages a:link.last.last:before,
        .paging .pages a:visited.prev.last:before,
        .paging .pages a:visited.next.last:before,
        .paging .pages a:visited.first.last:before,
        .paging .pages a:visited.last.last:before {
          content: '\f04e';
          font-size: 12px; }
    .paging .pages strong {
      color: white;
      background-color: #2C3E50;
      text-decoration: none; }

/* ----------------------------------------------------------------------------
		=Links and Link Lists
		----------------------------------------------------------------------------- */
.link {
  margin: 0;
  position: relative;
  clear: both; }
  .link ul.list {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    border-top: 1px solid #dfdfdf; }
    .link ul.list li {
      padding: 0;
      margin: 0;
      color: #21454D;
      border-bottom: 1px solid #dfdfdf; }
      .link ul.list li:before {
        display: none; }
    .link ul.list p {
      padding: 0; }
    .link ul.list a {
      display: block;
      color: #21454D;
      text-decoration: none;
      font: 700 15px/120% "adelle", georgia, serif;
      padding: 10px 20px 5px 0;
      margin-right: 10px;
      margin-bottom: 5px;
      background: transparent url('../images/icons-links.png?1395843607') right 8px no-repeat; }
      .link ul.list a:visited {
        color: #21454D; }
      .link ul.list a:hover {
        color: #71B0B4; }
      .link ul.list a:active {
        color: #71B0B4; }
      .link ul.list a.image {
        background-position: right -68px; }
      .link ul.list a.pdf {
        background-position: right -28px; }
      .link ul.list a.email {
        background-position: right -105px; }

/* SEATING CHARTS */
.seating_charts .entry {
  width: 49%;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background: #eee;
  margin-bottom: 10px;
  height: auto; }
  .seating_charts .entry .thumb {
    background: #fff; }
  .seating_charts .entry img {
    max-width: 280px;
    max-height: 360px;
    vertical-align: middle; }
  .seating_charts .entry h3 {
    margin: 0 0 10px;
    height: 20px;
    font-size: 13px;
    overflow: hidden; }
    .seating_charts .entry h3 a:hover {
      text-decoration: none; }
  .seating_charts .entry.alt {
    float: right; }
  .seating_charts .entry .buttons {
    padding: 10px 0 0; }
    .seating_charts .entry .buttons a {
      width: 48%;
      text-align: center;
      display: block;
      clear: none;
      float: left; }
      .seating_charts .entry .buttons a.btn-green {
        float: right; }

/* ----------------------------------------------------------------------------
	=Spotlights
	----------------------------------------------------------------------------- */
.holder .spotlight {
  *zoom: 1; }
  .holder .spotlight:before, .holder .spotlight:after {
    content: "\0020";
    display: table; }
  .holder .spotlight:after {
    clear: both; }
  .holder .spotlight .spot {
    width: 100%;
    clear: both;
    border-top: 1px solid #dfdfdf;
    padding: 10px 0;
    float: left; }
    .holder .spotlight .spot .image {
      float: left; }
    .holder .spotlight .spot img {
      margin-right: 10px;
      width: 100%; }
    .holder .spotlight .spot .spot_info {
      float: left; }

/* ----------------------------------------------------------------------------
	=Sitemap
	----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap .column {
    float: left;
    width: 300px;
    padding: 0;
    position: relative; }
  .sitemap #sitemap_column_1 {
    margin: 0 20px 0 0; }
  .sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sitemap ul li {
      margin: 0 0 15px 0;
      padding: 0;
      line-height: 140%; }
      .sitemap ul li:before {
        display: none; }
      .sitemap ul li ul {
        border-bottom: 1px solid #dfdfdf; }
        .sitemap ul li ul li {
          position: relative;
          margin: 0;
          padding: 5px 0 5px 15px;
          border-top: 1px solid #dfdfdf; }
          .sitemap ul li ul li a {
            font: 400 14px/140% "adelle-sans", helvetica, sans-serif;
            text-transform: none;
            padding: 0;
            border: 0;
            color: #71B0B4; }
            .sitemap ul li ul li a:visited {
              color: #71B0B4; }
            .sitemap ul li ul li a:hover {
              color: #919A3A; }
            .sitemap ul li ul li a:active {
              color: #919A3A; }
            .sitemap ul li ul li a:before {
              content: '';
              position: absolute;
              background: #dfdfdf;
              top: 10px;
              left: 0;
              width: 8px;
              height: 8px; }
          .sitemap ul li ul li ul {
            display: none; }
  .sitemap a {
    text-decoration: none;
    color: #919A3A;
    font: 700 15px/140% "adelle-sans", helvetica, sans-serif;
    text-transform: uppercase;
    display: block;
    padding: 10px 0; }
    .sitemap a:visited {
      color: #919A3A; }
    .sitemap a:hover {
      color: #2D5762; }
    .sitemap a:active {
      color: #2D5762; }
    .sitemap a:hover, .sitemap a:focus {
      text-decoration: none; }

.login {
  text-align: center;
  min-height: 200px; }
  .login form {
    padding: 20px 0; }
    .login form input {
      border: 1px solid #ccc;
      font: 700 12px/20px "adelle-sans", helvetica, sans-serif;
      margin: 0 auto 20px;
      padding: 10px 20px;
      display: block; }
    .login form button {
      display: block;
      height: 45px;
      width: 110px;
      margin: 0 auto;
      background: #919a3a;
      color: white;
      text-transform: uppercase;
      border: 0;
      text-align: center;
      font: 600 18px/45px "adelle", georgia, serif; }
      .login form button:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }

.buttons a, .buttons span, [class*="btn"], .btn {
  text-transform: uppercase;
  height: 32px;
  padding: 0 10px;
  font: 600 15px/32px "adelle", georgia, serif;
  color: #fff;
  background: #919A3A;
  display: inline-block;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: relative;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .buttons a:visited, .buttons span:visited, [class*="btn"]:visited, .btn:visited {
    color: #fff; }
  .buttons a:hover, .buttons span:hover, [class*="btn"]:hover, .btn:hover {
    color: #fff; }
  .buttons a:active, .buttons span:active, [class*="btn"]:active, .btn:active {
    color: #fff; }
  .buttons a:hover, .buttons span:hover, [class*="btn"]:hover, .btn:hover {
    text-decoration: none;
    background: #6e752c; }
  .buttons a.btn-blue, .buttons span.btn-blue, [class*="btn"].btn-blue, .btn.btn-blue {
    background: #2D5762; }
    .buttons a.btn-blue:hover, .buttons span.btn-blue:hover, [class*="btn"].btn-blue:hover, .btn.btn-blue:hover {
      background: #21454D; }
  .buttons a.tickets, .buttons a.onsale.soon, .buttons a.tba, .buttons a.more, .buttons a.btn-tbtickets, .buttons span.tickets, .buttons span.onsale.soon, .buttons span.tba, .buttons span.more, .buttons span.btn-tbtickets, [class*="btn"].tickets, [class*="btn"].onsale.soon, [class*="btn"].tba, [class*="btn"].more, [class*="btn"].btn-tbtickets, .btn.tickets, .btn.onsale.soon, .btn.tba, .btn.more, .btn.btn-tbtickets {
    width: 125px;
    margin-bottom: 10px; }
    .buttons a.tickets:before, .buttons a.onsale.soon:before, .buttons a.tba:before, .buttons a.more:before, .buttons a.btn-tbtickets:before, .buttons span.tickets:before, .buttons span.onsale.soon:before, .buttons span.tba:before, .buttons span.more:before, .buttons span.btn-tbtickets:before, [class*="btn"].tickets:before, [class*="btn"].onsale.soon:before, [class*="btn"].tba:before, [class*="btn"].more:before, [class*="btn"].btn-tbtickets:before, .btn.tickets:before, .btn.onsale.soon:before, .btn.tba:before, .btn.more:before, .btn.btn-tbtickets:before {
      /*			width: 14px;
      			height: 20px;
      			background:transparent image-url('ticket_icon.png') center center no-repeat;
      			content: '';
      			position: absolute;
      			top: 0;
      			left: 14px;*/ }
    .buttons a.tickets.soon, .buttons a.tickets.tba, .buttons a.onsale.soon.soon, .buttons a.onsale.soon.tba, .buttons a.tba.soon, .buttons a.tba.tba, .buttons a.more.soon, .buttons a.more.tba, .buttons a.btn-tbtickets.soon, .buttons a.btn-tbtickets.tba, .buttons span.tickets.soon, .buttons span.tickets.tba, .buttons span.onsale.soon.soon, .buttons span.onsale.soon.tba, .buttons span.tba.soon, .buttons span.tba.tba, .buttons span.more.soon, .buttons span.more.tba, .buttons span.btn-tbtickets.soon, .buttons span.btn-tbtickets.tba, [class*="btn"].tickets.soon, [class*="btn"].tickets.tba, [class*="btn"].onsale.soon.soon, [class*="btn"].onsale.soon.tba, [class*="btn"].tba.soon, [class*="btn"].tba.tba, [class*="btn"].more.soon, [class*="btn"].more.tba, [class*="btn"].btn-tbtickets.soon, [class*="btn"].btn-tbtickets.tba, .btn.tickets.soon, .btn.tickets.tba, .btn.onsale.soon.soon, .btn.onsale.soon.tba, .btn.tba.soon, .btn.tba.tba, .btn.more.soon, .btn.more.tba, .btn.btn-tbtickets.soon, .btn.btn-tbtickets.tba {
      font-size: 13px; }
  .buttons a.more, .buttons span.more, [class*="btn"].more, .btn.more {
    /*		&:before {
    			content: "\f05a";
    			background: none;
    			font-family: FontAwesome;
    			font-size: 14px;
    		}*/ }

.column {
  padding: 0px;
  background: none;
  margin: 0 0 15px;
  position: relative; }
  .column .subnav {
    margin: 0 0 20px 0;
    min-height: 100px;
    border-top: 0;
    padding: 5px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.45);
    position: relative; }
    .column .subnav ul {
      list-style: none;
      list-style-image: none;
      margin: 0;
      padding: 0; }
      .column .subnav ul li {
        margin: 0;
        padding: 0; }
        .column .subnav ul li.active ul {
          display: block;
          list-style: none;
          list-style-image: none;
          list-style-type: none;
          padding: 0 0 5px 15px;
          margin: 0;
          background: none;
          width: auto; }
          .column .subnav ul li.active ul a {
            font: 400 14px/140% "adelle-sans", helvetica, sans-serif;
            text-transform: none;
            padding: 0 0 10px;
            border: 0;
            color: #71B0B4; }
            .column .subnav ul li.active ul a:visited {
              color: #71B0B4; }
            .column .subnav ul li.active ul a:hover {
              color: #fff; }
            .column .subnav ul li.active ul a:active {
              color: #fff; }
            .column .subnav ul li.active ul a:before {
              content: "";
              position: absolute;
              background: rgba(255, 255, 255, 0.2);
              top: 7px;
              left: -15px;
              width: 8px;
              height: 8px; }
            .column .subnav ul li.active ul a:active {
              color: white; }
        .column .subnav ul li a {
          text-decoration: none;
          color: #919A3A;
          font: 700 15px/140% "adelle-sans", helvetica, sans-serif;
          padding: 10px 0;
          border-top: 1px solid rgba(255, 255, 255, 0.2);
          display: block;
          text-transform: uppercase; }
          .column .subnav ul li a:visited {
            color: #919A3A; }
          .column .subnav ul li a:hover {
            color: #fff; }
          .column .subnav ul li a:active {
            color: #fff; }
          .column .subnav ul li a:hover, .column .subnav ul li a.active, .column .subnav ul li a:active {
            color: white; }
          .column .subnav ul li a.section {
            color: white;
            font: 700 21px/140% "adelle", georgia, serif;
            border: 0; }
            .column .subnav ul li a.section:visited {
              color: white; }
            .column .subnav ul li a.section:hover {
              color: #919A3A; }
            .column .subnav ul li a.section:active {
              color: #919A3A; }
            .column .subnav ul li a.section:hover, .column .subnav ul li a.section.active:hover, .column .subnav ul li a.section:active {
              color: #919A3A; }
      .column .subnav ul ul {
        display: none; }
        .column .subnav ul ul li {
          border-bottom: none; }
          .column .subnav ul ul li:first-child a {
            line-height: 24px; }

/* HOMEPAGE STYLES */
body.home .full_column {
  background: none;
  padding: 0;
  margin-bottom: 0; }

.home #branding {
  margin: 0 0 20px; }
  @media screen and (min-width: 820px) {
    .home #branding {
      margin: 0; } }

.feature {
  background: rgba(0, 0, 0, 0.45); }
  .feature h3 {
    color: white;
    font-size: 18px;
    margin: 0; }
    .feature h3 a {
      color: #fff; }
      .feature h3 a:visited {
        color: #fff; }
      .feature h3 a:hover {
        color: #919A3A; }
      .feature h3 a:active {
        color: #919A3A; }
      .feature h3 a:hover {
        text-decoration: none; }
  .feature .spotlight-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45); }
    .feature .spotlight-image img {
      width: 100%;
      height: auto; }
  .feature .spotlight-info {
    padding: 10px 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .feature p {
    color: white;
    line-height: 22px;
    margin: 0 0 5px; }
  .feature hr {
    border-color: rgba(0, 0, 0, 0.45);
    margin: 0 0 5px; }
  .feature a.btn-readmore {
    display: block;
    background: transparent;
    text-align: right;
    font-weight: 700;
    padding: 0;
    color: #919A3A; }
    .feature a.btn-readmore:visited {
      color: #919A3A; }
    .feature a.btn-readmore:hover {
      color: #fff; }
    .feature a.btn-readmore:active {
      color: #fff; }
  @media screen and (min-width: 480px) {
    .feature .spotlight-image {
      float: left;
      width: 50%; }
    .feature .spotlight-info {
      float: left;
      width: 50%; } }
  @media screen and (min-width: 550px) {
    .feature .spotlight-image {
      float: left;
      width: 320px; }
    .feature .spotlight-info {
      float: left;
      padding: 15px 20px;
      width: calc(100% - 320px); } }
  @media screen and (min-width: 820px) {
    .feature {
      height: 360px; }
      .feature .spotlight-image {
        float: none;
        width: 100%;
        height: 175px; }
        .feature .spotlight-image img {
          height: 175px; }
      .feature .spotlight-info {
        float: none;
        width: 100%; } }

.featured_holder h3.header {
  line-height: 40px;
  text-align: left;
  text-transform: uppercase;
  color: white;
  margin: 0; }
  .featured_holder h3.header a {
    display: inline-block;
    margin: 0 10px;
    padding: 0 10px;
    position: relative;
    color: #919A3A;
    font-family: "adelle-sans", helvetica, sans-serif; }
    .featured_holder h3.header a:visited {
      color: #919A3A; }
    .featured_holder h3.header a:hover {
      color: #fff; }
    .featured_holder h3.header a:active {
      color: #fff; }
    .featured_holder h3.header a:before {
      width: 1px;
      height: 16px;
      position: absolute;
      top: 12px;
      left: 0;
      background: rgba(0, 0, 0, 0.45);
      content: ''; }
    .featured_holder h3.header a:hover {
      text-decoration: none; }

.spotlight-list {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .spotlight-list .spotlight {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 270px;
    margin-bottom: 20px;
    position: relative; }
    .spotlight-list .spotlight:first-child {
      margin-right: 20px; }
    .spotlight-list .spotlight:last-child {
      margin-left: 20px; }
      @media screen and (max-width: 1009px) {
        .spotlight-list .spotlight:last-child {
          margin-right: 20px; } }
    @media screen and (max-width: 999px) {
      .spotlight-list .spotlight:first-child, .spotlight-list .spotlight:last-child {
        margin-left: 0;
        margin-right: 0; } }
    .spotlight-list .spotlight .spotlight-image {
      width: 320px;
      max-width: 100%;
      margin: 0 auto;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .spotlight-list .spotlight img {
      width: 100%;
      height: auto;
      max-height: 100%; }
    .spotlight-list .spotlight img:hover {
      -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
      -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
      box-shadow: 0 1px 10px rgba(0, 0, 0, 0.45); }
  .spotlight-list .spotlight-info {
    padding: 0 0 20px;
    margin: 0;
    width: 100%;
    position: absolute;
    bottom: 0; }
  .spotlight-list p, .spotlight-list h3 {
    color: white;
    padding: 0 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 320px;
    margin: 0 auto; }
  .spotlight-list h3 {
    font-size: 22px;
    margin: 0 auto 3px; }
  .spotlight-list a:hover {
    text-decoration: none; }
  @media screen and (min-width: 650px) {
    .spotlight-list .spotlight {
      width: 50%;
      float: left; }
      .spotlight-list .spotlight.pull-right {
        float: right; } }
  @media screen and (min-width: 1000px) {
    .spotlight-list .spotlight {
      width: 320px;
      background: rgba(0, 0, 0, 0.45); } }

/*
 *  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;
  width: 100%;
  -ms-touch-action: pan-y; }
  .owl-carousel .owl-controls {
    visibility: visible;
    opacity: 1; }

.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;
  z-index: 3; }

.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: transparent;
  visibility: hidden;
  opacity: 0;
  display: none !important; }
  .owl-controls .owl-prev, .owl-controls .owl-next {
    position: absolute;
    z-index: 5; }
  .owl-controls .owl-prev {
    left: 0px; }
  .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 {
  display: none; }

@media screen and (min-width: 1100px) {
  .owl-controls {
    display: block !important; } }
/* v1.0.5 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr; }

.royalSlider > * {
  float: left; }

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

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

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

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

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

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

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

.rsArrow,
.rsThumbsArrow {
  cursor: pointer; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1; }

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

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

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

img.rsImg {
  max-width: none; }

.grab-cursor {
  cursor: url('../images/grab.png?1395843606') 8 8, move; }

.grabbing-cursor {
  cursor: url('../images/grabbing.png?1395843606') 8 8, move; }

.rsNoDrag {
  cursor: auto; }

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20; }

/******************************
*
*  RoyalSlider Default Skin
*
*    1. Arrows
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    9. Overrides
*
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
*
******************************/
/* Override width/height */
.royalSlider {
  width: 100%;
  height: 360px;
  background: rgba(0, 0, 0, 0.45); }

/* Background */
.royalSlider > .rsContent {
  visibility: hidden; }

.rsVideoFrameHolder.rsVideoActive {
  z-index: 18; }

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

.rsDefault.rsVer .rsArrow {
  width: 100%;
  height: 44px; }

.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: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -12px;
  position: absolute;
  cursor: pointer; }

.rsDefault .rsArrowLeft,
.rsDefault .rsArrowRight {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  .rsDefault .rsArrowLeft .rsArrowIcn:before,
  .rsDefault .rsArrowRight .rsArrowIcn:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    border-right: 20px solid #ccc;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent; }
  .rsDefault .rsArrowLeft.rsArrowRight .rsArrowIcn:before,
  .rsDefault .rsArrowRight.rsArrowRight .rsArrowIcn:before {
    border-left: 20px solid #ccc;
    border-right: 0; }
  .rsDefault .rsArrowLeft:hover .rsArrowIcn:before,
  .rsDefault .rsArrowRight:hover .rsArrowIcn:before {
    border-right-color: #919A3A;
    border-left-color: #919A3A; }

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

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

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn {
  background-position: -96px -32px; }

.rsDefault.rsVer .rsArrowRight .rsArrowIcn {
  background-position: -96px -64px; }

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

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 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); }

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

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  width: 100%;
  height: 72px; }

.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: hidden;
  width: 96px;
  height: 72px; }

.rsDefault .rsThumb img {
  width: 100%;
  height: 100%; }

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

.rsDefault .rsThumb.rsNavSelected img {
  opacity: 0.3;
  filter: alpha(opacity=30); }

.rsDefault .rsTmb {
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .rsDefault .rsThumbsHor {
    height: 44px; }

  .rsDefault .rsThumbsVer {
    width: 59px; } }
/***************
*
*  4. Tabs
*
****************/
.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  position: relative; }
  .rsDefault .rsTabs .rsTab {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    height: auto;
    width: auto;
    color: #fff;
    padding: 6px 10px 6px 10px;
    min-width: 72px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    background: #21454D;
    *display: inline;
    *zoom: 1;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    border-right: 1px solid #0F2F27; }
    .rsDefault .rsTabs .rsTab:after {
      width: 0;
      height: 0;
      border-top: 10px solid #6d6e66;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      position: absolute;
      bottom: -10px;
      left: 50%;
      margin-left: -10px;
      z-index: 99; }
    .rsDefault .rsTabs .rsTab:last-child {
      border-right-color: #6d6e66; }
    .rsDefault .rsTabs .rsTab.rsNavSelected {
      color: #FFF;
      background: #6d6e66;
      border-right-color: #6d6e66; }
      .rsDefault .rsTabs .rsTab.rsNavSelected:after {
        content: ''; }
      .rsDefault .rsTabs .rsTab.rsNavSelected:hover {
        border-color: #A90432; }
        .rsDefault .rsTabs .rsTab.rsNavSelected:hover:after {
          border-top-color: #A90432; }
    .rsDefault .rsTabs .rsTab:hover, .rsDefault .rsTabs .rsTab:active {
      background: #A90432;
      border-color: #A90432; }
      .rsDefault .rsTabs .rsTab:hover:after, .rsDefault .rsTabs .rsTab:active:after {
        content: '';
        border-top-color: #A90432; }

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

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

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

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

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

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

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

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

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

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

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

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

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

/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 0;
  left: 0;
  text-align: left;
  height: 75px;
  color: #FFF;
  padding: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 12px; }
  .rsDefault .rsGCaption .rsABlock {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
    padding: 32px 15px 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden; }
    .rsDefault .rsGCaption .rsABlock p {
      margin-bottom: 0;
      font: 500 13px/120% "adelle-sans", helvetica, sans-serif;
      color: #fff;
      text-transform: uppercase;
      text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.65); }
  .rsDefault .rsGCaption:empty {
    display: none; }

/***************
*
*  9. Overrides/Customization
*
****************/
.full-slideshow {
  margin: -20px 0 20px -20px;
  width: calc(100% + 40px);
  max-height: 360px;
  position: relative; }

.rsOverflow {
  margin-bottom: -8px; }

.event-slideshow .full-slideshow {
  margin: 0;
  width: 100%; }

.has-slideshow .event-slideshow {
  position: relative; }
  .has-slideshow .event-slideshow.spotlight_image {
    margin: 0;
    overflow: hidden;
    width: 100%; }
    .has-slideshow .event-slideshow.spotlight_image img {
      width: 100%; }

.home-slideshow {
  overflow: hidden; }
  @media screen and (min-width: 820px) {
    .home-slideshow {
      height: 360px;
      overflow: hidden; }
      .home-slideshow .royalSlider {
        height: 360px !important; } }
  @media screen and (max-width: 1000px) {
    .home-slideshow {
      padding: 0; }
      .home-slideshow .rsDefault .rsGCaption {
        bottom: 0;
        height: 90px; } }
  @media screen and (max-width: 820px) {
    .home-slideshow {
      padding: 0; }
      .home-slideshow .rsDefault .rsGCaption {
        bottom: 0;
        height: 90px; } }
  @media screen and (max-width: 650px) {
    .home-slideshow {
      padding: 0 0 105px; }
      .home-slideshow .rsDefault .rsGCaption {
        bottom: -105px;
        height: 105px; }
        .home-slideshow .rsDefault .rsGCaption .rsABlock {
          padding: 10px 15px 0; }
        .home-slideshow .rsDefault .rsGCaption div.desc {
          width: 100%; }
        .home-slideshow .rsDefault .rsGCaption .buttons {
          position: absolute;
          top: auto;
          bottom: 0;
          right: auto;
          left: -5px; } }
  @media screen and (max-width: 550px) {
    .home-slideshow {
      padding: 0 0 125px; }
      .home-slideshow .rsDefault .rsGCaption {
        bottom: -125px;
        height: 125px; }
        .home-slideshow .rsDefault .rsGCaption .rsABlock {
          padding: 10px 15px 0; }
        .home-slideshow .rsDefault .rsGCaption div.desc {
          width: 100%; }
        .home-slideshow .rsDefault .rsGCaption .buttons {
          position: absolute;
          top: auto;
          bottom: 0;
          right: auto;
          left: -5px; } }
  .home-slideshow .rsGCaption {
    width: 100%;
    height: 85px; }
    .home-slideshow .rsGCaption .rsABlock {
      padding: 15px 20px 0; }
    .home-slideshow .rsGCaption div.desc {
      width: calc(100% - 270px);
      float: left;
      padding: 0; }
    .home-slideshow .rsGCaption h3 {
      margin-top: 10px;
      color: white;
      font-size: 18px;
      line-height: 120%; }
      .home-slideshow .rsGCaption h3.event-title {
        margin-top: 5px; }
    .home-slideshow .rsGCaption h4.date {
      color: #fff;
      margin: 0;
      letter-spacing: 0;
      font: 500 15px/120% "adelle-sans", helvetica, sans-serif; }
      .home-slideshow .rsGCaption h4.date .y {
        margin-left: -2px; }
    .home-slideshow .rsGCaption .buttons {
      position: absolute;
      top: 25px;
      right: 0; }
      .home-slideshow .rsGCaption .buttons a, .home-slideshow .rsGCaption .buttons a:visited, .home-slideshow .rsGCaption .buttons a[class*="btn"], .home-slideshow .rsGCaption .buttons span.soon {
        display: inline-block;
        background: none;
        padding: 0 20px; }
        .home-slideshow .rsGCaption .buttons a:hover, .home-slideshow .rsGCaption .buttons a:visited:hover, .home-slideshow .rsGCaption .buttons a[class*="btn"]:hover, .home-slideshow .rsGCaption .buttons span.soon:hover {
          color: #919A3A; }
        .home-slideshow .rsGCaption .buttons a.tickets, .home-slideshow .rsGCaption .buttons a:visited.tickets, .home-slideshow .rsGCaption .buttons a[class*="btn"].tickets, .home-slideshow .rsGCaption .buttons span.soon.tickets {
          background: transparent;
          width: auto; }
          .home-slideshow .rsGCaption .buttons a.tickets:after, .home-slideshow .rsGCaption .buttons a:visited.tickets:after, .home-slideshow .rsGCaption .buttons a[class*="btn"].tickets:after, .home-slideshow .rsGCaption .buttons span.soon.tickets:after {
            width: 1px;
            height: 25px;
            position: absolute;
            top: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.45);
            content: ''; }
      .home-slideshow .rsGCaption .buttons span.tickets {
        display: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
#events .overview, #news .overview {
  position: relative;
  margin-top: 10px; }
  #events .overview h1, #news .overview h1 {
    margin-bottom: 0; }
  #events .overview .links, #news .overview .links {
    position: absolute;
    top: 3px;
    right: 10px; }
    #events .overview .links a.icon-rss, #news .overview .links a.icon-rss {
      font-size: 18px;
      color: #2C3E50; }
      #events .overview .links a.icon-rss:visited, #news .overview .links a.icon-rss:visited {
        color: #2C3E50; }
      #events .overview .links a.icon-rss:hover, #news .overview .links a.icon-rss:hover {
        color: #A90432; }
      #events .overview .links a.icon-rss:active, #news .overview .links a.icon-rss:active {
        color: #2C3E50; }
      #events .overview .links a.icon-rss:hover, #news .overview .links a.icon-rss:hover {
        text-decoration: none; }

.event_list {
  position: relative; }
  .event_list .list {
    padding: 0;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: #333; }
  .event_list .entry {
    border-top: 1px solid #DFDFDF;
    padding: 20px 0; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 2px 0 0;
      width: calc(100% - 190px); }
      .event_list .entry .info h3 {
        margin: 2px 0;
        font-size: 18px;
        line-height: 130%; }
        .event_list .entry .info h3 a {
          color: #21454D;
          text-decoration: none;
          font-weight: 700; }
          .event_list .entry .info h3 a:visited {
            color: #21454D; }
          .event_list .entry .info h3 a:hover {
            color: #919A3A; }
          .event_list .entry .info h3 a:active {
            color: #919A3A; }
      .event_list .entry .info h3, .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        width: 100%; }
      .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        color: #666;
        font: 500 14px/130% "adelle-sans", helvetica, sans-serif; }
        .event_list .entry .info .date .y, .event_list .entry .info h4 .y, .event_list .entry .info p .y {
          margin-left: -3px; }
      .event_list .entry .info .buttons {
        margin-top: 10px; }
        .event_list .entry .info .buttons a, .event_list .entry .info .buttons span {
          display: block;
          float: left;
          margin-right: 10px; }
    .event_list .entry .thumb {
      width: 180px;
      height: 100px;
      margin: 0 10px 0 0;
      float: left; }
      .event_list .entry .thumb a {
        display: block;
        width: 100%;
        height: 100%; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 100%;
        height: 100%; }
      .event_list .entry .thumb:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
        opacity: 0.9; }
    @media screen and (max-width: 480px) {
      .event_list .entry .info, .event_list .entry .thumb {
        width: 100%;
        height: auto; }
      .event_list .entry .info h3, .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        width: 100%; }
      .event_list .entry .thumb img {
        height: auto; } }
    @media screen and (min-width: 550px) {
      .event_list .entry .info .buttons {
        position: absolute;
        top: 0;
        right: 0;
        width: 125px;
        margin: 0; }
        .event_list .entry .info .buttons a, .event_list .entry .info .buttons span {
          float: none;
          margin: 0 0 10px; }
      .event_list .entry .info h3, .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        width: calc(100% - 135px); } }
    @media screen and (min-width: 820px) {
      .event_list .entry .info .buttons {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 10px; }
        .event_list .entry .info .buttons a, .event_list .entry .info .buttons span {
          float: left;
          margin-right: 10px; }
      .event_list .entry .info h3, .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        width: 100%; } }
    @media screen and (min-width: 900px) {
      .event_list .entry .info .buttons {
        position: absolute;
        top: 0;
        right: 0;
        width: 125px;
        margin: 0; }
        .event_list .entry .info .buttons a, .event_list .entry .info .buttons span {
          float: none;
          margin: 0 0 10px; }
      .event_list .entry .info h3, .event_list .entry .info .date, .event_list .entry .info h4, .event_list .entry .info p {
        width: calc(100% - 135px); } }
  .event_list .entry.archive {
    padding: 10px 0; }
    .event_list .entry.archive .info {
      width: 100%;
      padding: 0; }
      .event_list .entry.archive .info h3, .event_list .entry.archive .info .date, .event_list .entry.archive .info p {
        width: 480px; }
      .event_list .entry.archive .info h4 {
        width: 100%; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail {
  padding: 0;
  position: relative;
  /* Column 1 Details */ }
  .event_detail .container {
    background: rgba(255, 255, 255, 0.9);
    clear: both;
    /*		&:after {
    			content:'';
    			width:1px;
    			height:300px;
    			background:#dfdfdf;
    			position:absolute;
    			left:275px;
    			top:0;
    		}*/ }
  .event_detail .event-header h1 {
    font-size: 18px; }
  .event_detail .event-header h4 {
    margin: 0; }
  .event_detail .event-section {
    margin: 0 0 20px; }
    .event_detail .event-section h3.section-header {
      color: #333;
      margin: 0 0 5px; }
  .event_detail .showings {
    margin: 0 0 20px; }
    .event_detail .showings .span3 {
      width: 100%;
      background: #fff;
      height: 32px;
      padding: 0;
      clear: both;
      margin-bottom: 10px;
      position: relative; }
    .event_detail .showings .date, .event_detail .showings .ical, .event_detail .showings .showing_ticket_link {
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .event_detail .showings .ical {
      background: url(../images/icons-event.png) no-repeat 0 0; }
      .event_detail .showings .ical:hover {
        background-color: #21454D; }
    .event_detail .showings .date {
      color: #333;
      font-size: 12px;
      line-height: 32px;
      padding: 0 10px; }
    .event_detail .showings .buttons {
      background: #919A3A;
      height: 32px;
      position: absolute;
      right: 0;
      top: 0;
      line-height: 32px; }
      .event_detail .showings .buttons a, .event_detail .showings .buttons span {
        width: 32px;
        text-indent: -999999px;
        float: right; }
        .event_detail .showings .buttons a:before, .event_detail .showings .buttons span:before {
          left: 10px;
          top: 2px; }
        .event_detail .showings .buttons a.onsale.soon, .event_detail .showings .buttons a.tba, .event_detail .showings .buttons span.onsale.soon, .event_detail .showings .buttons span.tba {
          padding-left: 17px;
          width: 110px; }
          .event_detail .showings .buttons a.onsale.soon:before, .event_detail .showings .buttons a.tba:before, .event_detail .showings .buttons span.onsale.soon:before, .event_detail .showings .buttons span.tba:before {
            left: 2px; }
  .event_detail .share .addthis_toolbox {
    float: left; }
  .event_detail .sponsor_list .span1 {
    text-align: center;
    width: 145px; }
  .event_detail .sponsor_list img {
    max-width: 135px; }
  .event_detail .span3 {
    width: 100%;
    padding: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .event_detail .span1 {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: white; }
  .event_detail .details .thumb, .event_detail .span3 .event-header, .event_detail .span1 .date {
    display: none; }
  .event_detail .span1 .event-header h1 {
    border-bottom: 0;
    padding-bottom: 0; }
  @media screen and (min-width: 550px) {
    .event_detail {
      /* Column 1 Details */ }
      .event_detail .span3 {
        width: calc(100% - 275px); }
      .event_detail .span1 {
        width: 275px;
        border-right: 1px solid #dfdfdf; }
      .event_detail .details .thumb, .event_detail .span3 .event-header, .event_detail .span1 .date {
        display: block; }
      .event_detail .span1 .event-header {
        display: none; } }
  @media screen and (min-width: 820px) {
    .event_detail {
      /* Column 1 Details */ }
      .event_detail .span3 {
        width: 100%;
        padding: 20px; }
      .event_detail .span1 {
        width: 100%;
        border-right: 0; }
      .event_detail .details .thumb, .event_detail .span3 .event-header, .event_detail .span1 .date {
        display: none; }
      .event_detail .span1 .event-header {
        display: block; } }
  @media screen and (min-width: 1000px) {
    .event_detail {
      /* Column 1 Details */ }
      .event_detail .span3 {
        width: calc(100% - 275px); }
      .event_detail .span1 {
        width: 275px;
        border-right: 1px solid #dfdfdf; }
      .event_detail .details .thumb, .event_detail .span3 .event-header, .event_detail .span1 .date {
        display: block; }
      .event_detail .span1 .event-header {
        display: none; } }
  .event_detail .details {
    padding: 20px;
    clear: both; }
    .event_detail .details .thumb {
      width: 235px;
      height: 130px;
      margin-bottom: 10px;
      overflow: hidden; }
      .event_detail .details .thumb img {
        width: 100%;
        height: auto; }
    .event_detail .details ul {
      padding: 0;
      margin: 0 0 10px; }
      .event_detail .details ul li {
        padding: 8px 0;
        margin: 0;
        border-top: 1px solid #DFDFDF;
        font-size: 12px;
        line-height: 20px;
        color: #666; }
        .event_detail .details ul li p, .event_detail .details ul li span {
          font-size: 12px;
          line-height: 20px; }
        .event_detail .details ul li:first-child {
          border-top: 0; }
        .event_detail .details ul li:before {
          display: none; }
    .event_detail .details label {
      display: block;
      color: #333;
      font: 700 16px/140% "adelle", georgia, serif; }
    .event_detail .details .buttons a {
      width: 100%;
      text-align: left;
      position: relative; }
      .event_detail .details .buttons a:after {
        content: '';
        height: 32px;
        width: 32px;
        position: absolute;
        right: 0;
        top: 0;
        background: url(../images/icons-event.png) no-repeat right 0; }
      .event_detail .details .buttons a:hover {
        background-color: #21454D; }

/**************************************
Carousel
***************************************/
@keyframes buttons {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes buttons /* Safari and Chrome */ {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.carousel {
  width: 100%;
  margin: 10px 0; }

.featured_holder {
  text-align: center;
  height: 245px;
  margin: 10px 0; }
  .featured_holder .event_list {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center; }
    .featured_holder .event_list > p {
      color: #fff; }
  .featured_holder #event_list_holder {
    height: 205px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    margin: 0 auto; }
    .featured_holder #event_list_holder #event_list {
      width: calc(100% + 20px);
      margin-right: -20px;
      height: 100%;
      position: relative;
      list-style: none; }
    .featured_holder #event_list_holder .entry-item {
      width: 100%;
      float: left;
      position: relative;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 0 15px 0 5px;
      margin: 0; }
      .featured_holder #event_list_holder .entry-item .entry {
        width: 100%;
        height: 205px;
        padding: 0;
        position: relative;
        background: rgba(0, 0, 0, 0.45);
        text-align: left; }
        .featured_holder #event_list_holder .entry-item .entry .thumb {
          width: 100%;
          height: 45px; }
          .featured_holder #event_list_holder .entry-item .entry .thumb a {
            width: 100%;
            height: 130px;
            overflow: hidden; }
          .featured_holder #event_list_holder .entry-item .entry .thumb img {
            width: 100%;
            height: auto;
            background: rgba(0, 0, 0, 0.45);
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
          .featured_holder #event_list_holder .entry-item .entry .thumb h3 {
            margin: 15px 10px;
            text-align: center;
            color: white;
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
        .featured_holder #event_list_holder .entry-item .entry .info {
          position: absolute;
          z-index: 1;
          bottom: -26px;
          background: rgba(113, 176, 180, 0.75);
          left: 0;
          width: 100%;
          height: 0;
          overflow: hidden;
          -moz-box-sizing: border-box;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          -moz-transition: all 200ms linear;
          -o-transition: all 200ms linear;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear;
          -moz-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }
          .featured_holder #event_list_holder .entry-item .entry .info .buttons {
            position: absolute;
            top: auto;
            bottom: 0;
            width: 100%;
            height: 0;
            background: #2D5762;
            padding: 0;
            text-align: center;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box; }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a, .featured_holder #event_list_holder .entry-item .entry .info .buttons span, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more {
              font-size: 14px;
              width: 45%;
              font-weight: 700;
              display: inline-block;
              padding: 0 5px;
              letter-spacing: 1px;
              -moz-box-sizing: border-box;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              background: none;
              color: white;
              position: relative;
              top: 50%;
              -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more:visited {
                color: white; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more:hover {
                color: #919A3A; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more:active {
                color: #919A3A; }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets {
              width: 50%; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tickets:before {
                width: 1px;
                height: 20px;
                position: absolute;
                top: 5px;
                right: 0;
                background: rgba(0, 0, 0, 0.45);
                content: ''; }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more {
              background: transparent;
              margin-right: 0; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more:before, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more:hover:before {
                display: none; }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba {
              font-size: 10px;
              padding-left: 19px; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a.onsale.soon:before, .featured_holder #event_list_holder .entry-item .entry .info .buttons a.tba:before {
                left: 1px; }
          .featured_holder #event_list_holder .entry-item .entry .info.active {
            display: block;
            height: 205px;
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            animation: buttons 200ms linear;
            -webkit-animation: buttons 200ms linear;
            bottom: 0;
            padding: 0; }
            .featured_holder #event_list_holder .entry-item .entry .info.active .buttons {
              top: auto;
              bottom: 0;
              height: 75px; }
          .featured_holder #event_list_holder .entry-item .entry .info .date, .featured_holder #event_list_holder .entry-item .entry .info h4 {
            color: #fff;
            margin: 15px 10px 2px;
            font-size: 15px;
            font-weight: 600;
            text-transform: none;
            text-shadow: 0 -1px 1px #21454D; }
          .featured_holder #event_list_holder .entry-item .entry .info h3 {
            margin: 0 10px;
            line-height: 120%;
            width: 100%;
            font-size: 16px;
            text-shadow: 0 -1px 0 #21454D; }
            .featured_holder #event_list_holder .entry-item .entry .info h3 a {
              color: white;
              text-transform: none;
              font-weight: 600; }
              .featured_holder #event_list_holder .entry-item .entry .info h3 a:visited {
                color: white; }
              .featured_holder #event_list_holder .entry-item .entry .info h3 a:hover {
                color: #2D5762; }
              .featured_holder #event_list_holder .entry-item .entry .info h3 a:active {
                color: #21454D; }
  .featured_holder .owl-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0; }
    .featured_holder .owl-controls .owl-buttons div {
      position: absolute;
      top: -205px;
      left: -35px;
      width: 40px;
      height: 205px;
      text-indent: -400000px;
      overflow: hidden;
      cursor: pointer; }
      .featured_holder .owl-controls .owl-buttons div:before {
        content: '';
        position: absolute;
        top: 80px;
        right: 10px;
        border-right: 20px solid rgba(0, 0, 0, 0.45);
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent; }
      .featured_holder .owl-controls .owl-buttons div.owl-next {
        left: auto;
        right: -25px; }
        .featured_holder .owl-controls .owl-buttons div.owl-next:before {
          border-right: 0;
          border-left: 20px solid rgba(0, 0, 0, 0.45); }
      .featured_holder .owl-controls .owl-buttons div:hover {
        background: rgba(0, 0, 0, 0.25); }
      .featured_holder .owl-controls .owl-buttons div.owl-next:hover:before {
        border-left: 20px solid #919A3A; }
      .featured_holder .owl-controls .owl-buttons div.owl-prev:hover:before {
        border-right: 20px solid #919A3A; }
  @media screen and (max-width: 1100px) {
    .featured_holder #event_list_holder #event_list {
      width: calc(100% - 10px);
      margin-right: 0; }
    .featured_holder .entry-item {
      padding: 0 10px; } }
  @media screen and (max-width: 480px) {
    .featured_holder {
      height: 290px; }
      .featured_holder #event_list_holder {
        height: 250px; }
      .featured_holder #event_list_holder .entry-item {
        padding: 0 0 0 5px; }
        .featured_holder #event_list_holder .entry-item .entry {
          height: 250px; }
          .featured_holder #event_list_holder .entry-item .entry .thumb a {
            height: 160px; }
          .featured_holder #event_list_holder .entry-item .entry .info.active {
            height: 250px; } }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .content .overview {
    border: none;
    margin: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    padding-bottom: 10px; }
    .news_list .entry .info {
      width: 100%; }
      .news_list .entry .info h3, .news_list .entry .info .date, .news_list .entry .info h4, .news_list .entry .info p {
        width: 100%; }
      .news_list .entry .info .buttons {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 10px; }
      .news_list .entry .info p {
        font: normal 13px/22px Arial, Helvetica, sans-serif;
        text-transform: none; }

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

.job_list .entry {
  border-top: 1px solid #dfdfdf;
  padding: 15px 0; }
  .job_list .entry:first-child {
    border-top: 0; }
  .job_list .entry h4 {
    font: 500 13px/130% "adelle-sans", helvetica, sans-serif;
    margin-bottom: 5px; }

.job_detail .overview {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 8px;
  margin-bottom: 8px; }
  .job_detail .overview h1 {
    border-bottom: 0;
    margin-bottom: 5px;
    padding-bottom: 0; }
  .job_detail .overview h4 {
    font: 500 13px/130% "adelle-sans", helvetica, sans-serif;
    margin-bottom: 5px; }
    .job_detail .overview h4.salary {
      color: #666;
      margin-top: 2px; }
.job_detail h3.qualifications_heading {
  margin-top: 15px; }

/* @group FAQ */
.faq {
  margin: 0 0 20px;
  padding: 0;
  position: relative; }
  .faq dl {
    border-bottom: 1px solid #dfdfdf;
    font-size: 11px; }
  .faq dt {
    cursor: pointer;
    padding: 0 25px 0 0;
    margin: 0;
    border-top: 1px solid #dfdfdf;
    overflow: auto;
    position: relative;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .faq dt:before {
      -moz-transition: -moz-transform 100ms linear;
      -o-transition: -o-transform 100ms linear;
      -webkit-transition: -webkit-transform 100ms linear;
      transition: transform 100ms linear;
      content: "";
      width: 0;
      position: absolute;
      height: 0;
      border-right: 8px solid #71B0B4;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      top: 12px;
      right: 15px; }
    .faq dt p {
      font: 700 15px/120% "adelle", georgia, serif;
      margin: 0;
      padding: 10px 0;
      color: #21454D; }
    .faq dt:hover a {
      text-decoration: none; }
      .faq dt:hover a p {
        color: #71B0B4; }
    .faq dt.active:before, .faq dt.open:before {
      right: 13px;
      -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }
    .faq dt.active p, .faq dt.open p {
      color: #71B0B4; }
  .faq dd {
    overflow: hidden;
    padding: 10px 0 10px; }
    .faq dd p {
      font-size: 14px; }
    .faq dd ul li {
      list-style: none;
      padding-left: 18px;
      font-size: 14px;
      line-height: 22px; }
      .faq dd ul li:before {
        font-family: FontAwesome;
        content: "\f111";
        position: absolute;
        color: #2D5762;
        font-size: 7px;
        top: 0;
        left: 0; }
  .faq.exhibition_faq dl {
    border-bottom-color: #C0C0C0; }
    .faq.exhibition_faq dl dt {
      border-top-color: #C0C0C0; }
      .faq.exhibition_faq dl dt:before {
        border-right-color: #000; }
    .faq.exhibition_faq dl dd {
      padding: 0; }

/* @end */
/* S,M,T,W,T,F,S */
/**CALENDARIO: A FLEXIBLE CALENDAR PLUGIN
/*-CORE STYLES: CAN INCLUDE THESE ON EVERY PROJECT-
/*-OVERRIDE IN THE CUSTOM SECTION FOR EACH INDIVIDUAL THEME - 
/*-ORIGINAL: http://tympanus.net/codrops/2012/11/27/calendario-a-flexible-calendar-plugin/ -
**/
.fc-calendar-container {
  position: relative;
  height: 400px;
  width: 400px; }

.fc-calendar {
  width: 100%;
  height: 100%; }

.fc-calendar .fc-head {
  height: 30px;
  line-height: 30px;
  background: #ccc;
  color: #fff; }

.fc-calendar .fc-body {
  position: relative;
  width: 100%;
  height: 100%;
  height: -moz-calc(100% - 30px);
  height: -webkit-calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #ddd; }

.fc-calendar .fc-row {
  width: 100%;
  border-bottom: 1px solid #ddd; }

.fc-four-rows .fc-row {
  height: 25%; }

.fc-five-rows .fc-row {
  height: 37px;
  height: -moz-calc(20% - 3px);
  height: -webkit-calc(20% - 3px);
  height: calc(20% - 3px); }

.fc-six-rows .fc-row {
  height: 16.66%;
  height: -moz-calc(100%/6 - 3px);
  height: -webkit-calc(100%/6 - 3px);
  height: calc(100%/6 - 3px); }

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
  float: left;
  height: 100%;
  width: 136px;
  /* 100% / 7 */
  width: -moz-calc(100%/7 - 3px);
  width: -webkit-calc(100%/7 - 3px);
  width: calc(100%/7 - 3px);
  position: relative; }

.fc-calendar .fc-head > div {
  width: 136px;
  width: -moz-calc(100%/7);
  width: -webkit-calc(100%/7);
  width: calc(100%/7); }

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
  width: 14.2%; }

.fc-calendar .fc-row > div {
  border-right: 1px solid #ddd;
  padding: 4px;
  overflow: hidden;
  position: relative; }

/**
 * Custom code for full page cal
 */
.fc-calendar .fc-row.selected {
  height: 50%; }
  .fc-calendar .fc-row.selected .date_overlay {
    display: none; }

.fc-calendar .fc-row.selected > div {
  background: #4E3149; }

.fc-calendar .fc-head > div {
  text-align: center; }

.fc-calendar .fc-row > div > span.fc-date {
  position: absolute;
  width: 30px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #ddd;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  bottom: 5px;
  right: 5px;
  text-align: right; }

.fc-calendar .fc-row > div > span.fc-weekday {
  padding-left: 5px;
  display: none; }

.fc-calendar .fc-row > div.fc-today {
  background: #fff4c3; }

.fc-calendar .fc-row > div.fc-out {
  opacity: 0.6; }

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
  border-right: none; }

.fc-calendar .fc-row:last-child {
  border-bottom: none; }

/**-CORE STYLES END-**/
/**-
/* - OVERRIDES FOR CALENDARIO PLUGIN CAN GO BELOW THIS CAN INCLUDE ANY -
/* - ADDITIONAL COMPONENTS NOT IN CORE PLUGIN AS WELL AS OVERRIDES TO -
/* - THE CORE FILES UNDER fc-calendar -
**/
/* - Additional elements styles - */
.cal-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none; }

.calendar-container {
  position: absolute;
  top: 170px;
  left: 50%;
  width: 0;
  margin-left: -265px;
  border: 5px solid #FFDA70;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 30;
  overflow: hidden;
  padding: 10px;
  background: #f7cd74 url('../images/noise.png?1395843609');
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF7CD74', endColorstr='#FFF2B950');
  background: url('../images/noise.png?1395843609'), url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3Y2Q3NCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YyYjk1MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: url('../images/noise.png?1395843609'), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7cd74), color-stop(100%, #f2b950));
  background: url('../images/noise.png?1395843609'), -moz-linear-gradient(top, #f7cd74 0%, #f2b950 100%);
  background: url('../images/noise.png?1395843609'), -webkit-linear-gradient(top, #f7cd74 0%, #f2b950 100%);
  background: url('../images/noise.png?1395843609'), linear-gradient(to bottom, #f7cd74 0%, #f2b950 100%);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  height: 350px; }
  .calendar-container .ie8 {
    filter: none;
    background: #fff; }
  .calendar-container.fixed {
    left: auto;
    position: fixed;
    top: 20px; }
  .calendar-container h3.calendar-title {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 13px;
    font: 600 18px/140% "adelle-sans", helvetica, sans-serif; }
  .calendar-container .cal-close {
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
    z-index: 10;
    display: block;
    font: 700 14px/14px "adelle-sans", helvetica, sans-serif;
    text-transform: uppercase;
    color: #2C3E50;
    padding-right: 25px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
    .calendar-container .cal-close i {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 19px;
      line-height: 14px;
      padding-left: 6px; }
    .calendar-container .cal-close:hover, .calendar-container .cal-close:hover i {
      color: #DE7D24; }
  .calendar-container.inactive {
    z-index: 0; }

#calendario {
  width: 256px;
  padding: 0;
  margin: 10px auto 0 0;
  position: relative;
  border: 2px solid #FFDA88;
  height: 280px;
  -moz-box-shadow: 0 -1px 1px rgba(180, 110, 57, 0.65);
  -webkit-box-shadow: 0 -1px 1px rgba(180, 110, 57, 0.65);
  box-shadow: 0 -1px 1px rgba(180, 110, 57, 0.65); }
  #calendario *,
  #calendario *:after,
  #calendario *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

a.button-arrow {
  position: absolute;
  bottom: 10px;
  right: 20px; }
  a.button-arrow:hover {
    text-decoration: none; }

.cal-calendar-wrap {
  margin: 10px auto;
  position: relative; }

.cal-header {
  padding: 15px 0px 0;
  height: 40px;
  position: relative; }
  .cal-header h2, .cal-header h3 {
    text-align: center; }
  .cal-header h2 {
    color: #2C3E50;
    font: 500 16px/24px "adelle-sans", helvetica, sans-serif;
    margin: 0px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
    padding: 0; }
  .cal-header h3 {
    display: none;
    font-size: 22px;
    color: #2C3E50; }
  .cal-header .cal-controls span {
    z-index: 100;
    position: absolute;
    top: 14px;
    color: #0C4963;
    text-align: center;
    cursor: pointer;
    margin: 0;
    right: 10px;
    background-position: 0 -1014px;
    height: 24px;
    width: 24px; }
    .cal-header .cal-controls span:hover, .cal-header .cal-controls span:active, .cal-header .cal-controls span:focus {
      color: #fff; }
    .cal-header .cal-controls span:first-child {
      left: 10px;
      right: auto;
      border-left: 0;
      background-position: 0 -1048px;
      height: 24px;
      width: 24px; }

.cal-content-reveal {
  width: 215px;
  height: 215px;
  position: absolute;
  z-index: 100;
  top: 15px;
  left: 280px;
  overflow: hidden;
  opacity: 0;
  display: none; }
  .cal-content-reveal .header-date {
    display: none; }
  .cal-content-reveal .scrolled_content {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    list-style: none; }
  .cal-content-reveal .content, .cal-content-reveal .overview {
    margin: 0px !important;
    padding: 0 !important; }
  .cal-content-reveal .viewport {
    width: 215px;
    height: 215px;
    overflow: hidden;
    position: relative; }
  .cal-content-reveal .cal_overlay_item {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    float: left; }
    .cal-content-reveal .cal_overlay_item:first-child {
      margin-top: 0;
      padding-top: 0;
      border-top: 0; }
  .cal-content-reveal .calendar_detail {
    margin-bottom: 15px;
    border-bottom: 1px solid #FDD991;
    width: 200px; }
    .cal-content-reveal .calendar_detail .time, .cal-content-reveal .calendar_detail .cal_event_info {
      display: block;
      padding: 0; }
    .cal-content-reveal .calendar_detail .cal_event_thumb {
      display: none; }
    .cal-content-reveal .calendar_detail .cal_event_date, .cal-content-reveal .calendar_detail h5 {
      font: 500 13px/120% "adelle-sans", helvetica, sans-serif;
      color: #7F4B24;
      text-transform: uppercase; }
    .cal-content-reveal .calendar_detail .cal_event_date, .cal-content-reveal .calendar_detail h5, .cal-content-reveal .calendar_detail h3, .cal-content-reveal .calendar_detail .buttons a, .cal-content-reveal .calendar_detail .buttons span {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55); }
    .cal-content-reveal .calendar_detail h3 {
      font: 500 16px/120% "adelle-sans", helvetica, sans-serif;
      margin-bottom: 4px; }
      .cal-content-reveal .calendar_detail h3 a {
        color: #2C3E50; }
        .cal-content-reveal .calendar_detail h3 a:visited {
          color: #2C3E50; }
        .cal-content-reveal .calendar_detail h3 a:hover {
          color: #2D5762; }
        .cal-content-reveal .calendar_detail h3 a:active {
          color: #2D5762; }
        .cal-content-reveal .calendar_detail h3 a:hover {
          text-decoration: none; }
    .cal-content-reveal .calendar_detail .cal_event_info {
      width: 200px;
      min-height: 59px;
      padding-right: 0; }
  .cal-content-reveal .buttons {
    position: relative;
    height: 28px;
    width: 207px; }
    .cal-content-reveal .buttons a, .cal-content-reveal .buttons a:visited, .cal-content-reveal .buttons a[class*="btn"], .cal-content-reveal .buttons span.soon {
      display: block;
      float: left;
      padding: 0 0 0 18px;
      width: 95px;
      color: #2C3E50;
      font-weight: 700;
      background-position: 0 -1292px;
      -moz-transition: color 100ms linear;
      -o-transition: color 100ms linear;
      -webkit-transition: color 100ms linear;
      transition: color 100ms linear; }
      .cal-content-reveal .buttons a:hover, .cal-content-reveal .buttons a.ticket-navy-hover, .cal-content-reveal .buttons a:visited:hover, .cal-content-reveal .buttons a:visited.ticket-navy-hover, .cal-content-reveal .buttons a[class*="btn"]:hover, .cal-content-reveal .buttons a[class*="btn"].ticket-navy-hover, .cal-content-reveal .buttons span.soon:hover, .cal-content-reveal .buttons span.soon.ticket-navy-hover {
        background-position: 0 -1313px; }
      .cal-content-reveal .buttons a:before, .cal-content-reveal .buttons a:visited:before, .cal-content-reveal .buttons a[class*="btn"]:before, .cal-content-reveal .buttons span.soon:before {
        display: none; }
      .cal-content-reveal .buttons a.btn-gray, .cal-content-reveal .buttons a:visited.btn-gray, .cal-content-reveal .buttons a[class*="btn"].btn-gray, .cal-content-reveal .buttons span.soon.btn-gray {
        background: none;
        width: 90px;
        padding: 0;
        margin-right: 10px; }
      .cal-content-reveal .buttons a:hover, .cal-content-reveal .buttons a:visited:hover, .cal-content-reveal .buttons a[class*="btn"]:hover, .cal-content-reveal .buttons span.soon:hover {
        color: #DE7D24;
        background-position: 0 -1334px; }
      .cal-content-reveal .buttons a.more, .cal-content-reveal .buttons a:visited.more, .cal-content-reveal .buttons a[class*="btn"].more, .cal-content-reveal .buttons span.soon.more {
        background-position: 0 -322px; }
        .cal-content-reveal .buttons a.more:hover, .cal-content-reveal .buttons a.more.info-hover, .cal-content-reveal .buttons a:visited.more:hover, .cal-content-reveal .buttons a:visited.more.info-hover, .cal-content-reveal .buttons a[class*="btn"].more:hover, .cal-content-reveal .buttons a[class*="btn"].more.info-hover, .cal-content-reveal .buttons span.soon.more:hover, .cal-content-reveal .buttons span.soon.more.info-hover {
          background-position: 0 -345px; }
      .cal-content-reveal .buttons a.tickets.onsale.soon, .cal-content-reveal .buttons a.tba, .cal-content-reveal .buttons a:visited.tickets.onsale.soon, .cal-content-reveal .buttons a:visited.tba, .cal-content-reveal .buttons a[class*="btn"].tickets.onsale.soon, .cal-content-reveal .buttons a[class*="btn"].tba, .cal-content-reveal .buttons span.soon.tickets.onsale.soon, .cal-content-reveal .buttons span.soon.tba {
        width: 111px;
        padding-left: 16px;
        padding-right: 0; }
      .ie8 .cal-content-reveal .buttons a, .ie8 .cal-content-reveal .buttons a:visited, .ie8 .cal-content-reveal .buttons a[class*="btn"], .ie8 .cal-content-reveal .buttons span.soon {
        font-size: 12px; }
    .cal-content-reveal .buttons span.tickets {
      display: none; }
  .cal-content-reveal h4 {
    font-size: 12px;
    color: #2D5762;
    margin: 0;
    padding: 0; }
    .cal-content-reveal h4.date-time {
      font-weight: 600; }
    .cal-content-reveal h4.time {
      font: 11px/150% "helvetica",sans-serif;
      color: #333; }
  .cal-content-reveal p {
    font-size: 12px !IMPORTANT;
    font-weight: 500;
    line-height: 16px !important;
    color: #1F0613;
    margin: 5px 0 0 0;
    padding: 0px !important;
    border-top: none !important; }

/*--Overrides to core styles--*/
.fc-calendar-container {
  height: 220px;
  width: auto;
  background: none;
  /**- End fc-row>div -**/ }
  .fc-calendar-container .fc-calendar {
    width: 90%;
    margin: 0 auto; }
  .fc-calendar-container .fc-calendar .fc-body {
    padding: 0;
    border: none;
    width: 100%;
    height: 195px;
    height: -moz-calc(100% - 20px);
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px); }
  .fc-calendar-container .fc-calendar .fc-head {
    background: none;
    color: #3C4951;
    text-transform: uppercase;
    height: 30px;
    font: 700 13px/24px "adelle-sans", helvetica, sans-serif;
    padding: 6px 0 0;
    text-shadow: none; }
  .fc-calendar-container .fc-calendar .fc-row {
    border-top: none;
    border-bottom: none; }
  .fc-calendar-container .fc-calendar .fc-row > div {
    position: relative;
    border-right: 0;
    background: #FFECC5;
    margin: 3px 2px 0 1px;
    /** - End fc-content -**/ }
    .fc-calendar-container .fc-calendar .fc-row > div span.fc-date {
      top: 50%;
      left: 0;
      width: 30px;
      height: 30px;
      text-align: center;
      margin: -15px 0 0;
      color: #374550;
      font: 500 16px/30px "adelle-sans", helvetica, sans-serif;
      pointer-events: none; }
    .fc-calendar-container .fc-calendar .fc-row > div.fc-today {
      background: #0C4963; }
      .fc-calendar-container .fc-calendar .fc-row > div.fc-today span.fc-date {
        text-shadow: none;
        font-weight: 500;
        color: #fff;
        z-index: 3;
        background: none; }
    .fc-calendar-container .fc-calendar .fc-row > div.fc-content {
      background: #EA8C44;
      cursor: pointer; }
      .fc-calendar-container .fc-calendar .fc-row > div.fc-content span.fc-date {
        text-shadow: none;
        font-weight: 500;
        -moz-transition: background 0.2s ease-out;
        -o-transition: background 0.2s ease-out;
        -webkit-transition: background 0.2s ease-out;
        transition: background 0.2s ease-out;
        color: #fff;
        z-index: 3; }
      .fc-calendar-container .fc-calendar .fc-row > div.fc-content:hover, .fc-calendar-container .fc-calendar .fc-row > div.fc-content:active, .fc-calendar-container .fc-calendar .fc-row > div.fc-content:focus, .fc-calendar-container .fc-calendar .fc-row > div.fc-content.selected, .fc-calendar-container .fc-calendar .fc-row > div.fc-content.fc-today {
        background: #0C4963; }
        .fc-calendar-container .fc-calendar .fc-row > div.fc-content:hover span.fc-date, .fc-calendar-container .fc-calendar .fc-row > div.fc-content:active span.fc-date, .fc-calendar-container .fc-calendar .fc-row > div.fc-content:focus span.fc-date, .fc-calendar-container .fc-calendar .fc-row > div.fc-content.selected span.fc-date, .fc-calendar-container .fc-calendar .fc-row > div.fc-content.fc-today span.fc-date {
          color: #fff; }
      .fc-calendar-container .fc-calendar .fc-row > div.fc-content div {
        display: none; }
    .fc-calendar-container .fc-calendar .fc-row > div:first-child {
      border-left: 0px; }
    .fc-calendar-container .fc-calendar .fc-row > div:empty {
      background: rgba(255, 236, 197, 0.4); }
  .fc-calendar-container .fc-calendar .fc-row:last-child > div {
    border-bottom: 0; }

/**- End fc-calendar-container -**/
/**- Global Scrollbar Styles -**/
.scrollbar {
  display: none;
  width: 10px;
  height: 225px;
  position: absolute;
  right: 15px;
  top: 45px;
  text-align: center; }

.scrollbar .track {
  width: 1px;
  background: white;
  height: 197px;
  position: relative;
  border-left: 2px #C8BFA1 solid;
  margin-left: 9px; }

.scrollbar .track_up {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #C8BFA1;
  position: absolute;
  left: -8px;
  top: -16px;
  cursor: pointer; }

.scrollbar .track_down {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #C8BFA1;
  position: absolute;
  left: -8px;
  bottom: -16px;
  cursor: pointer; }

.scrollbar .track .thumb {
  position: absolute;
  left: -9px;
  top: 15px;
  cursor: pointer; }

/**-
/* - OVERRIDES FOR HOME PAGE CALENDAR
**/
/**-
/* - OVERRIDES FOR FULL PAGE CALENDAR
**/
.calendar .full .overview {
  text-align: center; }
.calendar .full .overview h1 {
  display: block;
  margin: 0 0 20px;
  font-weight: 300; }
.calendar .full a.button-arrow {
  bottom: 40px; }
.calendar .full .full_column {
  /* - End Cal Header - */
  /*--Overrides to core styles--*/
  /**- End fc-calendar-container -**/ }
  .calendar .full .full_column span.cal-close {
    display: none; }
  .calendar .full .full_column #calendario {
    margin: 0 auto;
    width: 100%;
    height: 650px;
    border: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .calendar .full .full_column #calendario span.cal-content-close {
      display: none; }
  .calendar .full .full_column .cal-header {
    background: none;
    padding: 10px 0 0;
    height: 60px;
    position: relative; }
    .calendar .full .full_column .cal-header h2, .calendar .full .full_column .cal-header h3 {
      text-align: center; }
    .calendar .full .full_column .cal-header h2 {
      color: #2D5762;
      font: 24px/45px "adelle-sans", helvetica, sans-serif;
      margin: 0px;
      padding: 0px;
      letter-spacing: 0px; }
    .calendar .full .full_column .cal-header h3 {
      display: none;
      font-size: 10px;
      font-weight: 700;
      color: #b7bbc2; }
    .calendar .full .full_column .cal-header .cal-controls span {
      z-index: 100;
      position: absolute;
      top: 16px;
      text-align: center;
      cursor: pointer;
      margin: 0;
      right: 0;
      background-position: 0 -404px;
      height: 30px;
      width: 22px; }
      .calendar .full .full_column .cal-header .cal-controls span:hover, .calendar .full .full_column .cal-header .cal-controls span:active, .calendar .full .full_column .cal-header .cal-controls span:focus {
        color: #fff; }
      .calendar .full .full_column .cal-header .cal-controls span:first-child {
        left: 0;
        right: auto;
        border-left: 0;
        background-position: 0 -444px;
        height: 30px;
        width: 22px; }
  .calendar .full .full_column .tooltip {
    position: absolute;
    z-index: 100;
    display: none;
    width: 200px;
    height: auto;
    margin: 0 5px 5px 0; }
    .calendar .full .full_column .tooltip .cal_event_info {
      padding: 5px 5px 5px 7px;
      width: 100%;
      height: 100%;
      position: relative;
      background: #fefefe;
      -moz-box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 20px;
      -webkit-box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 20px;
      box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 20px;
      border-left: 5px solid #919A3A; }
      .calendar .full .full_column .tooltip .cal_event_info:after {
        content: '';
        display: block;
        position: absolute;
        top: 20%;
        left: -12px;
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid #919A3A; }
      .calendar .full .full_column .tooltip .cal_event_info .cal_info_header {
        height: 100%;
        display: block;
        width: 100%;
        overflow: hidden; }
      .calendar .full .full_column .tooltip .cal_event_info .cal_event_thumb {
        display: block;
        position: relative;
        border: none;
        z-index: 1;
        margin: 0 auto 5px;
        padding: 0;
        float: none;
        overflow: visible;
        box-shadow: none;
        width: 180px; }
        .calendar .full .full_column .tooltip .cal_event_info .cal_event_thumb img {
          width: 100%; }
      .calendar .full .full_column .tooltip .cal_event_info .venueInfo {
        padding: 0 !important;
        background: none !important;
        text-align: left;
        text-transform: uppercase;
        font-size: 11px;
        line-height: 15px; }
      .calendar .full .full_column .tooltip .cal_event_info span.cal_event_date, .calendar .full .full_column .tooltip .cal_event_info .venueInfo {
        font: 500 12px/120% "adelle-sans", helvetica, sans-serif;
        text-transform: uppercase;
        display: block;
        position: relative;
        color: #666;
        margin: 0 0 5px; }
      .calendar .full .full_column .tooltip .cal_event_info h3 {
        margin: 0 0 5px;
        font-weight: bold;
        color: #A90432;
        line-height: 120%; }
        .calendar .full .full_column .tooltip .cal_event_info h3 a {
          color: #A90432;
          line-height: 100%; }
          .calendar .full .full_column .tooltip .cal_event_info h3 a:visited {
            color: #A90432; }
          .calendar .full .full_column .tooltip .cal_event_info h3 a:hover {
            color: #6C1F25; }
          .calendar .full .full_column .tooltip .cal_event_info h3 a:active {
            color: #6C1F25; }
          .calendar .full .full_column .tooltip .cal_event_info h3 a:hover {
            text-decoration: none; }
      .calendar .full .full_column .tooltip .cal_event_info .buttons {
        position: relative;
        height: 28px; }
        .calendar .full .full_column .tooltip .cal_event_info .buttons a, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"], .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon {
          display: block;
          float: left;
          padding: 0 0 0 18px;
          width: 90px;
          color: #2C3E50;
          font-weight: 700;
          font-size: 12px;
          background-position: 0 -1292px;
          -moz-transition: color 100ms linear;
          -o-transition: color 100ms linear;
          -webkit-transition: color 100ms linear;
          transition: color 100ms linear; }
          .calendar .full .full_column .tooltip .cal_event_info .buttons a:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a.ticket-navy-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited.ticket-navy-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"]:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].ticket-navy-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.ticket-navy-hover {
            background-position: 0 -1313px; }
          .ie8 .calendar .full .full_column .tooltip .cal_event_info .buttons a, .ie8 .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited, .ie8 .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"], .ie8 .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon {
            font-size: 11px; }
          .calendar .full .full_column .tooltip .cal_event_info .buttons a:before, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited:before, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"]:before, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon:before {
            display: none; }
          .calendar .full .full_column .tooltip .cal_event_info .buttons a.btn-gray, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited.btn-gray, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].btn-gray, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.btn-gray {
            background: none;
            width: 90px;
            padding: 0;
            margin-right: 10px; }
          .calendar .full .full_column .tooltip .cal_event_info .buttons a:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"]:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon:hover {
            color: #DE7D24;
            background-position: 0 -1334px; }
          .calendar .full .full_column .tooltip .cal_event_info .buttons a.more, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited.more, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].more, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.more {
            background-position: 0 -322px; }
            .calendar .full .full_column .tooltip .cal_event_info .buttons a.more:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a.more.info-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited.more:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a:visited.more.info-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].more:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons a[class*="btn"].more.info-hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.more:hover, .calendar .full .full_column .tooltip .cal_event_info .buttons span.soon.more.info-hover {
              background-position: 0 -345px; }
        .calendar .full .full_column .tooltip .cal_event_info .buttons span.tickets {
          display: none; }
      .calendar .full .full_column .tooltip .cal_event_info em {
        display: none; }
  .calendar .full .full_column .cal-hide-overlay {
    display: none;
    z-index: 4; }
  .calendar .full .full_column .cal-content-reveal {
    display: block;
    float: none;
    position: absolute;
    top: 154px;
    left: 300px;
    margin: 0;
    padding: 15px;
    text-align: center;
    width: 330px;
    height: 295px;
    overflow: auto;
    background: #F1B954;
    border: 5px solid #F1B954;
    overflow: hidden;
    opacity: 0;
    display: none; }
    .calendar .full .full_column .cal-content-reveal .cal-overlay-close {
      display: block;
      position: absolute;
      top: 8px;
      right: 15px;
      width: 85px;
      padding: 3px 0 0;
      height: 18px;
      font-weight: bold;
      background: url(../images/cal_close_btn.png) no-repeat top right;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      z-index: 99;
      color: #fff; }
      .calendar .full .full_column .cal-content-reveal .cal-overlay-close:hover {
        color: #2D5762; }
      .calendar .full .full_column .cal-content-reveal .cal-overlay-close:active {
        color: #fff; }
    .calendar .full .full_column .cal-content-reveal .cal_overlay_item {
      margin-bottom: 0;
      border-bottom: 1px solid #333; }
      .calendar .full .full_column .cal-content-reveal .cal_overlay_item .info {
        padding: 8px 0 7px; }
    .calendar .full .full_column .cal-content-reveal .scrolled_content {
      width: 100%;
      margin: 0;
      padding: 35px 15px 15px;
      height: 100%;
      overflow: hidden;
      position: absolute;
      left: 0;
      top: 0;
      list-style: none; }
    .calendar .full .full_column .cal-content-reveal .content, .calendar .full .full_column .cal-content-reveal .oveview {
      margin: 0px !important;
      padding: 0 !important;
      text-align: left; }
    .calendar .full .full_column .cal-content-reveal .viewport {
      width: 290px;
      height: 235px;
      overflow: hidden;
      position: relative;
      padding: 0 25px 10px 15px;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      border-radius: 8px; }
    .calendar .full .full_column .cal-content-reveal .scrollbar {
      display: none;
      width: 10px;
      height: 210px;
      position: absolute;
      right: 25px;
      top: 23px;
      text-align: center; }
    .calendar .full .full_column .cal-content-reveal .scrollbar .track {
      width: 1px;
      background: white;
      height: 200px;
      position: relative;
      border-left: 2px #F8BE46 solid;
      margin-left: 9px; }
    .calendar .full .full_column .cal-content-reveal .scrollbar .track_up {
      width: 14px;
      height: 11px;
      position: absolute;
      left: -8px;
      top: -21px;
      cursor: pointer; }
    .calendar .full .full_column .cal-content-reveal .scrollbar .track_down {
      width: 14px;
      height: 11px;
      position: absolute;
      left: -8px;
      bottom: -21px;
      cursor: pointer; }
    .calendar .full .full_column .cal-content-reveal .scrollbar .track .thumb {
      width: 16px;
      height: 77px;
      background: url(../images/scroller_drag.png) no-repeat 0 0;
      position: absolute;
      left: -10px;
      top: 15px;
      cursor: pointer; }
    .calendar .full .full_column .cal-content-reveal .cal_image {
      width: 166px;
      height: 90px;
      overflow: hidden;
      border: 5px solid #691644;
      margin-bottom: 2px;
      display: block; }
    .calendar .full .full_column .cal-content-reveal .cal_description {
      margin-left: 6px;
      text-align: center; }
    .calendar .full .full_column .cal-content-reveal h4 {
      letter-spacing: 0px;
      font-size: 12px;
      line-height: 17px;
      color: #222;
      margin: 0;
      padding: 0; }
    .calendar .full .full_column .cal-content-reveal h3 {
      line-height: 26px;
      margin: 0;
      padding: 0;
      font-family: "Trebuchet MS", Helvetica, sans-serif; }
    .calendar .full .full_column .cal-content-reveal h3 a {
      letter-spacing: 0px;
      font-size: 15px;
      font-weight: bold;
      color: #F1B954; }
      .calendar .full .full_column .cal-content-reveal h3 a:hover {
        color: #333; }
      .calendar .full .full_column .cal-content-reveal h3 a:active {
        color: #F1B954; }
    .calendar .full .full_column .cal-content-reveal p {
      font-size: 12px !IMPORTANT;
      font-weight: 500;
      line-height: 18px !important;
      color: #1F0613;
      margin: 20px 0 0 0;
      padding: 0px !important;
      border-top: none !important; }
    .calendar .full .full_column .cal-content-reveal em {
      color: #b8baa5;
      font-size: 12px; }
    .calendar .full .full_column .cal-content-reveal .buttons {
      position: absolute;
      top: 16px;
      left: 196px; }
      .calendar .full .full_column .cal-content-reveal .buttons a {
        display: block; }
        .calendar .full .full_column .cal-content-reveal .buttons a.more, .calendar .full .full_column .cal-content-reveal .buttons a.tickets {
          width: 79px;
          margin-bottom: 3px; }
  .calendar .full .full_column .fc-calendar-container {
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    /**- End fc-row>div -**/ }
    .calendar .full .full_column .fc-calendar-container .fc-calendar {
      width: 100%; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-body {
      padding: 0 0 4px 0;
      border: none;
      width: 100%;
      height: 540px; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-head {
      font-weight: 500;
      text-transform: uppercase;
      font-size: 14px;
      height: 35px;
      line-height: 35px;
      padding-left: 0;
      margin: 0 4px 4px; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row {
      border-top: none;
      border-bottom: none;
      height: 15%; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected {
        height: 50%; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div {
      position: relative;
      background: #fff;
      border-right: none;
      margin: 4px;
      width: 13.3%;
      width: -moz-calc(100%/7 - 8px);
      width: -webkit-calc(100%/7 - 8px);
      width: calc(100%/7 - 8px);
      border: 1px solid #dfdfdf;
      border: 1px solid transparent;
      background: #eee;
      /** - End fc-content -**/ }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div span.fc-date {
        top: 0;
        left: 0px;
        height: 25px;
        text-align: center;
        margin: 0px;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        pointer-events: none; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-today {
        background: #F1B954; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-today span.fc-date {
          color: #fff;
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content {
        border: 1px solid #dfdfdf;
        background: #21454D;
        cursor: pointer;
        padding: 30px 5px 0; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content:after {
          position: absolute;
          width: 126px;
          height: 91px;
          left: 0;
          top: 0;
          background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzIxNDU0ZCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzIxNDU0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxNDU0ZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
          background-size: 100%;
          background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(33, 69, 77, 0)), color-stop(75%, #21454d), color-stop(100%, #21454d));
          background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(33, 69, 77, 0) 50%, #21454d 75%, #21454d 100%);
          background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(33, 69, 77, 0) 50%, #21454d 75%, #21454d 100%);
          background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(33, 69, 77, 0) 50%, #21454d 75%, #21454d 100%);
          content: ''; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content span.fc-date {
          text-shadow: none;
          font-weight: 500;
          font-size: 16px;
          background: none;
          z-index: 3;
          color: #fff;
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content:hover {
          background: #F1B954; }
          .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content:hover:before {
            position: absolute;
            bottom: 0;
            left: 0;
            background-position: 0 -78px;
            height: 90px;
            width: 129px;
            content: '';
            z-index: 99; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content div {
          display: block; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div.fc-content .calendar_detail {
          display: none; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div:empty {
        background: rgba(238, 238, 238, 0.4); }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div.fc-content:hover:before, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div.fc-content:after {
      display: none; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div,
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row:hover > div {
      background: #ccc; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div.fc-today,
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row:hover > div.fc-today {
        background: #2C3E50; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div.fc-content,
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row:hover > div.fc-content {
        background: #21454D; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div.fc-content span.fc-date,
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row:hover > div.fc-content span.fc-date {
          color: #fff; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc {
      width: 100%;
      text-align: center;
      margin: 0 0 8px;
      font-size: 11px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc span {
        color: #F1B954;
        line-height: 115%; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a.event_time, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc span.event_time {
          display: block; }
          .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a.event_time .date, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc span.event_time .date {
            display: none; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a:hover, .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc span:hover {
          text-decoration: none; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc .venueInfo {
        color: #fefefe;
        font: 500 12px/115% "adelle-sans", helvetica, sans-serif;
        text-transform: uppercase;
        margin-bottom: 4px; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 {
        margin: 0 0 5px;
        line-height: 115%;
        font-size: 14px; }
        .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a {
          line-height: auto; }
          .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc h3 a:hover {
            color: #F4BB52; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row > div div.event_shortdesc:last-child {
        border-bottom: 0; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div div {
      display: block; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div div.cal_overlay_item {
      display: none; }
      .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div div.cal_overlay_item.show_overlay {
        display: block;
        position: absolute;
        top: 0;
        right: -20px;
        background: #fff; }
    .calendar .full .full_column .fc-calendar-container .fc-calendar .fc-row.selected > div div.event_shortdesc {
      display: block; }
.calendar .full .all-events-link {
  display: none; }
.calendar .full .cal_print_button {
  margin: 5px 0 0 0;
  float: left;
  display: block;
  padding: 4px 5px;
  text-align: center;
  width: 140px;
  margin-left: 367px;
  margin-left: -moz-calc(50% - 70px);
  margin-left: -webkit-calc(50% - 70px);
  margin-left: calc(50% - 70px); }

/*
 * 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: 0;
  width: 5px;
  height: 100%;
  background: none; }

.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: #FFECC5;
  background: rgba(255, 236, 197, 0.4);
  position: relative;
  width: 5px;
  margin-left: 0; }

.jspDrag {
  background: #DE7D24;
  position: relative;
  top: 0;
  left: 0;
  width: 5px;
  cursor: pointer; }

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

.jspArrow {
  background: rgba(255, 236, 197, 0.9);
  text-indent: -20000px;
  display: block;
  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%; }

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
  margin: 0 -3px 0 0; }

.event_list#teams .thumb {
  width: 80px;
  height: 62px; }
  .event_list#teams .thumb a {
    width: 80px;
    height: 62px; }
  .event_list#teams .thumb img {
    width: 80px;
    height: 62px; }
.event_list#teams .info {
  padding: 30px 0 0; }
  .event_list#teams .info h3 a {
    font-size: 20px;
    color: red; }
    .event_list#teams .info h3 a:hover {
      color: #FFF; }

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

/* @group Default Banner */
.banner {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  margin: 0 0 10px;
  position: relative;
  height: 120px;
  -moz-box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5); }
  .banner .slideshow {
    background: none;
    margin: 0;
    padding: 0; }
    .banner .slideshow:hover .slide:before {
      display: block; }
    .banner .slideshow .slide {
      background: none;
      margin: 0;
      padding: 0;
      height: 100%; }
      .banner .slideshow .slide img {
        padding: 0;
        border: none;
        background: none;
        max-width: 320px; }
    .banner .slideshow a {
      display: block;
      width: 100%;
      height: 100%; }
    .banner .slideshow .imglink {
      display: none;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }
      .banner .slideshow .imglink a {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }

.banner .slideshow .thumbs_holder, .banner .slideshow .thumbs_holder ul.thumbs, .banner .slideshow .controls, .banner .slideshow .controls .nav-controls {
  display: none; }

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  .rslides:hover {
    -moz-box-shadow: 0 0 15px -3px rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0 0 15px -3px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px -3px rgba(255, 255, 255, 0.6); }

.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 img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0; }

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

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

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

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

.map_holder {
  display: block;
  width: 100%;
  height: 360px;
  margin: 0 0 20px; }
  .map_holder .map {
    width: 100%;
    height: 100%; }

.map_window .info {
  border-bottom: 1px dotted #999;
  padding: 0 0 6px;
  margin: 0 0 6px; }
  .map_window .info h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 140%; }
  .map_window .info address {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: bold;
    line-height: 140%; }
.map_window .desc {
  padding-top: 3px;
  width: 100%; }
  .map_window .desc img {
    float: left;
    margin: 0 15px 0 0;
    width: 120px;
    height: auto; }
  .map_window .desc p {
    padding: 0 0 11px;
    margin: 0; }
.map_window .directions {
  display: none;
  padding: 2px 0 0; }
  .map_window .directions label {
    display: block;
    font-size: 12px;
    margin: 0 0 8px; }
  .map_window .directions input {
    border: 1px solid #999;
    padding: 3px 3px;
    margin: 0 0 8px;
    width: 98%;
    font-size: 12px; }
  .map_window .directions form button {
    float: right;
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 5px;
    background: #919A3A;
    color: #fff;
    border: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
.map_window .links {
  border-top: 1px dotted #999;
  padding: 8px 0 0;
  margin: 8px 0 0;
  list-style-type: none;
  list-style-image: none; }
  .map_window .links li {
    float: left;
    font-size: 11px;
    line-height: 16px;
    padding: 0 24px; }
    .map_window .links li.phone {
      background-position: 0 -956px; }
    .map_window .links li.url {
      background-position: 0 -1391px; }
  .map_window .links .button {
    float: right;
    padding: 0;
    border: 0;
    background: #2D5762;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px; }
    .map_window .links .button button {
      font-size: 12px;
      line-height: 28px;
      font-weight: bold;
      text-transform: uppercase;
      padding: 0 8px 0 28px;
      color: #fff;
      border: 0; }
    .map_window .links .button.desc button {
      background: url(../images/map_support_icons.png) no-repeat 2px -46px; }
    .map_window .links .button.directions button {
      background: url(../images/map_support_icons.png) no-repeat 2px -70px; }
  .map_window .links a {
    color: #333; }

/*
Concierge Map
*/
.visiting .visiting_spotlight {
  margin-top: 41px; }
.visiting .map_holder .map_control {
  display: block; }

#branding_map .map_holder {
  margin: 0 0 60px; }

.map_control {
  text-align: right;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.45); }
  .map_control button {
    border: 0;
    margin: 0 0 0 6px;
    padding: 0 12px;
    width: auto;
    height: 31px;
    cursor: pointer;
    float: none;
    display: inline-block;
    text-align: center;
    color: #ccc;
    background: #2d5762;
    text-transform: uppercase;
    font: 600 15px/32px "adelle", georgia, serif; }
    .map_control button.active {
      color: #fff;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
      outline: none;
      border: 0; }
    .map_control button.map_anchor {
      display: none; }
    .map_control button.restaurants, .map_control button.restaurant {
      margin-right: 7px; }

#fb_connect_status {
  display: none; }

.fbtabs {
  padding: 20px;
  width: 320px;
  height: 374px;
  margin: 0 0 15px;
  position: relative;
  border: 1px solid #DFDFDF;
  border-top: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff url('../images/subnav_bg.png?1395843609') 2px bottom no-repeat; }
  .fbtabs h4 {
    color: #A90432;
    font-size: 19px;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    margin: 0 0 20px;
    padding: 0 28px 15px 0;
    border-bottom: 1px solid #DFDFDF;
    text-align: left;
    text-transform: uppercase;
    background-position: 145px -300px; }
  .fbtabs a.seeall {
    position: absolute;
    top: 56px;
    right: -1px;
    width: 93px;
    height: 40px;
    font: 500 13px/40px "adelle-sans", helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #fff; }
    .fbtabs a.seeall:visited {
      color: #fff; }
    .fbtabs a.seeall:hover {
      color: #fff; }
    .fbtabs a.seeall:active {
      color: #fff; }
    .fbtabs a.seeall:hover {
      background-color: #DE7D24;
      text-decoration: none; }
  .fbtabs .css-tabs {
    margin: 0 0 20px -1px;
    padding: 0;
    width: 280px;
    height: 40px;
    background-color: #01B7E9; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0;
      height: 100%;
      margin: 0;
      border-right: 1px solid #fff; }
    .fbtabs .css-tabs a {
      background-color: #01B7E9;
      color: #fff;
      display: block;
      margin: 0;
      padding: 0 17px;
      text-align: center;
      height: 40px;
      font: 500 13px/40px "adelle-sans", helvetica, sans-serif;
      text-transform: uppercase;
      text-decoration: none;
      position: relative; }
      .fbtabs .css-tabs a.current, .fbtabs .css-tabs a:hover {
        background-color: #DE7D24;
        color: #fff; }
      .fbtabs .css-tabs a.current:before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -10px;
        border-top: 10px solid #DE7D24;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent; }
    .fbtabs .css-tabs #tab_friends a {
      padding: 0 20px; }
  .fbtabs .css-panes {
    clear: both;
    padding: 0;
    width: 280px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    height: 190px;
    top: -1px; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 190px;
      padding: 0; }
    .fbtabs .css-panes .attendee {
      float: left;
      height: 100px;
      padding: 0 9px;
      width: 50px;
      text-align: center;
      font-weight: bold;
      line-height: 110%; }
      .fbtabs .css-panes .attendee a {
        display: block;
        clear: both;
        text-align: left;
        line-height: 120%;
        font-size: 11px;
        color: #222;
        text-decoration: none; }
        .fbtabs .css-panes .attendee a div {
          font-weight: normal;
          font-size: 10px; }
      .fbtabs .css-panes .attendee img {
        display: block;
        height: 50px;
        width: 50px;
        border: 1px solid #dfdfdf;
        margin-bottom: 4px; }

.fbtabs_holder {
  padding: 0;
  margin: 0;
  position: relative; }

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

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

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

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

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

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

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

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

#fb_rsvp_status span,
#fb_rsvp button, #fb_rsvp_status button {
  display: block;
  float: left;
  border: 0;
  text-align: center;
  background: #919A3A;
  cursor: pointer;
  width: 133px;
  text-transform: uppercase;
  height: 22px;
  padding: 0;
  font: 500 13px/22px "adelle-sans", helvetica, sans-serif;
  color: #fff;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  #fb_rsvp_status span:visited,
  #fb_rsvp button:visited, #fb_rsvp_status button:visited {
    color: #fff; }
  #fb_rsvp_status span:hover,
  #fb_rsvp button:hover, #fb_rsvp_status button:hover {
    color: #fff; }
  #fb_rsvp_status span:active,
  #fb_rsvp button:active, #fb_rsvp_status button:active {
    color: #fff; }
  #fb_rsvp_status span:hover,
  #fb_rsvp button:hover, #fb_rsvp_status button:hover {
    text-decoration: none;
    background: #6e752c; }

#fb_rsvp_status span:hover {
  background: #919A3A;
  cursor: default; }

#fb_rsvp #button_fb_rsvp_going, #fb_rsvp span, #fb_rsvp_status #button_fb_rsvp_going, #fb_rsvp_status span {
  margin-right: 10px; }

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

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

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

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

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

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

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

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

#fb_window_content .warning {
  background: #FFEBE8; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      position: relative;
      border-top: 1px solid #dfdfdf; }
      .concierge_listing .list .entry:first-child {
        border-top: 0; }
      .concierge_listing .list .entry .thumb {
        width: 150px;
        height: auto;
        margin: 0 20px 5px 0;
        float: left;
        line-height: 100%;
        border: 1px solid #dfdfdf; }
        .concierge_listing .list .entry .thumb a {
          display: block; }
        .concierge_listing .list .entry .thumb img {
          width: 150px;
          min-height: 65px; }
    .concierge_listing .list .info {
      float: left;
      width: 445px;
      margin: 0; }
      .concierge_listing .list .info h3 a {
        color: #A90432;
        text-decoration: none; }
        .concierge_listing .list .info h3 a:visited {
          color: #A90432; }
        .concierge_listing .list .info h3 a:hover {
          color: #6C1F25; }
        .concierge_listing .list .info h3 a:active {
          color: #6C1F25; }
        .concierge_listing .list .info h3 a:hover {
          color: #222; }
      .concierge_listing .list .info address {
        font-size: 12px;
        font-style: italic;
        line-height: 130%;
        padding: 0;
        display: none; }
    .concierge_listing .list .category_3.entry .thumb, .concierge_listing .list .category_4.entry .thumb {
      display: none; }
    .concierge_listing .list .category_3.entry .info, .concierge_listing .list .category_4.entry .info {
      width: 100%; }
      .concierge_listing .list .category_3.entry .info h3, .concierge_listing .list .category_4.entry .info h3 {
        margin-bottom: 5px; }
      .concierge_listing .list .category_3.entry .info address, .concierge_listing .list .category_4.entry .info address {
        display: block;
        margin-bottom: 0; }
  .concierge_listing .booking {
    width: auto;
    position: relative; }
    .concierge_listing .booking a, .concierge_listing .booking a:link, .concierge_listing .booking a:visited {
      display: block;
      float: left;
      text-decoration: none;
      text-align: center;
      color: #fff;
      width: auto;
      text-transform: uppercase; }
      .concierge_listing .booking a:hover, .concierge_listing .booking a:link:hover, .concierge_listing .booking a:visited:hover {
        background: #2D5762; }

.blog_page .full_column {
  *zoom: 1; }
  .blog_page .full_column:before, .blog_page .full_column:after {
    content: "\0020";
    display: table; }
  .blog_page .full_column:after {
    clear: both; }
.blog_page .span6 {
  float: none; }
.blog_page .full-slideshow {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  margin: 0px;
  padding: 0 0 120px; }
  .blog_page .full-slideshow .royalSlider {
    width: 100%; }
  .blog_page .full-slideshow .rsDefault .rsBullets {
    background: none; }
  .blog_page .full-slideshow .rsDefault .rsGCaption {
    bottom: -120px;
    height: 120px;
    background: none;
    width: 100%; }
    .blog_page .full-slideshow .rsDefault .rsGCaption .infoBlock {
      padding: 10px 0px; }
    .blog_page .full-slideshow .rsDefault .rsGCaption h2 {
      background: none;
      font-family: "adelle", georgia, serif;
      font-size: 24px;
      color: #71B0B4;
      text-shadow: none;
      font-weight: 900;
      margin: 0px;
      line-height: 1.2;
      text-transform: uppercase;
      padding: 0; }
    .blog_page .full-slideshow .rsDefault .rsGCaption p {
      font-family: "adelle-sans", helvetica, sans-serif;
      font-size: 16px;
      color: #21454D;
      text-shadow: none;
      font-weight: 400;
      padding: 0px 0px;
      text-transform: none; }
.blog_page h2 {
  background: #21454D;
  color: white;
  padding: 10px 20px 10px 10px;
  letter-spacing: 1px;
  font-weight: 400; }
  .blog_page h2 a {
    float: right;
    font-size: 12px;
    color: #71B0B4;
    font-family: "adelle-sans", helvetica, sans-serif;
    font-weight: 400;
    line-height: 25px; }
    .blog_page h2 a:hover {
      text-decoration: none;
      color: white; }
    .blog_page h2 a .fa {
      font-size: 18px;
      line-height: 25px;
      margin-left: 5px;
      vertical-align: top; }
.blog_page h3 {
  font-weight: 900; }
.blog_page .column_1 {
  width: 100%;
  float: left; }
  .blog_page .column_1 .column_1, .blog_page .column_1 .column_2 {
    width: 48%;
    margin-top: 0; }
  .blog_page .column_1 .read-more {
    float: right; }
    .blog_page .column_1 .read-more .fa {
      margin-left: 5px; }
    .blog_page .column_1 .read-more:hover {
      text-decoration: none; }
.blog_page .column_2 {
  width: 100%;
  margin-top: 20px;
  float: right; }
  .blog_page .column_2 .column_1, .blog_page .column_2 .column_2 {
    width: 100%;
    margin-top: 0; }
  .blog_page .column_2 h2 {
    margin-right: -20px;
    margin-bottom: 20px; }
.blog_page .spotlight img {
  max-width: 100%; }
.blog_page .spotlight a:hover {
  text-decoration: none; }
.blog_page .trending {
  margin-bottom: 20px; }
  .blog_page .trending .spotlight {
    margin-bottom: 10px;
    clear: both;
    display: block;
    height: 70px; }
    .blog_page .trending .spotlight img {
      float: left;
      width: 70px;
      height: 70px;
      margin-right: 10px; }
  .blog_page .trending .column_2 {
    display: none; }
    .blog_page .trending .column_2 .spotlight {
      height: auto; }
    .blog_page .trending .column_2 img {
      width: 100%;
      height: auto; }
.blog_page .featured .spotlight {
  display: block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden; }
.blog_page .featured .spotlight img {
  float: left;
  height: auto;
  width: 100%; }
.blog_page .featured .title {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
  height: 60px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear; }
  .blog_page .featured .title h3 {
    color: white; }
.blog_page .featured h3 {
  margin-top: 10px; }
.blog_page .featured p {
  margin-bottom: 20px; }
.blog_page .link ul.list a {
  background: none;
  position: relative; }
  .blog_page .link ul.list a:after {
    font-family: 'FontAwesome';
    content: '\f054';
    font-size: 18px;
    position: absolute;
    right: 0px;
    top: 10px; }
@media screen and (min-width: 820px) {
  .blog_page .column_1, .blog_page .column_2 {
    width: 49%; }
  .blog_page .column_2 {
    margin-top: 0; }
  .blog_page .span6 {
    float: left; } }
@media screen and (min-width: 480px) {
  .blog_page .column_1 .column_1, .blog_page .column_1 .column_2, .blog_page .column_2 .column_1, .blog_page .column_2 .column_2 {
    width: 49%; }
  .blog_page .trending .column_1 {
    width: calc(100% - 240px); }
  .blog_page .trending .column_2 {
    width: 230px;
    display: block; }
  .blog_page .featured .spotlight .title {
    bottom: -60px; }
  .blog_page .featured .spotlight:hover .title {
    bottom: 0px; } }
@media screen and (min-width: 820px) {
  .blog_page .trending .column_1 {
    width: 100%; }
  .blog_page .trending .column_2 {
    display: none; }
  .blog_page .featured .spotlight {
    float: left; }
  .blog_page .featured .spotlight img {
    float: left;
    height: 140px;
    width: 225px; }
  .blog_page .featured .column_1 .spotlight img {
    height: 300px;
    width: 225px; } }
@media screen and (min-width: 1000px) {
  .blog_page .trending .column_1 {
    width: calc(100% - 240px); }
  .blog_page .trending .column_2 {
    width: 230px;
    display: block; }
  .blog_page .full-slideshow .rsDefault .rsGCaption h2 {
    font-size: 30px; }
  .blog_page .full-slideshow .rsDefault .rsGCaption p {
    font-size: 20px; } }

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

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

#jquery-lightbox a img {
  border: none; }

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

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

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

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

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

#lightbox-nav a {
  outline: none; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-container .royalSlider {
  height: 630px;
  width: 800px; }
  .mfp-container .royalSlider.mfp-hide {
    width: auto; }
  .mfp-container .royalSlider .rsThumbsHor {
    margin-top: 40px;
    height: 80px; }
  .mfp-container .royalSlider .rsThumb {
    width: 140px;
    height: 80px;
    overflow: hidden;
    text-align: center; }
    .mfp-container .royalSlider .rsThumb img {
      height: auto;
      width: 140px;
      min-height: 80px;
      margin: 0 auto; }
    .mfp-container .royalSlider .rsThumb.rsNavSelected {
      background: #01B7E9; }
  .mfp-container .royalSlider .rsArrowIcn {
    bottom: 50%;
    margin-bottom: -20px; }
  .mfp-container .royalSlider .rsGCaption {
    padding: 0;
    text-align: center;
    height: 18px;
    min-height: 18px;
    overflow: hidden;
    font: bold 14px/18px Arial, Helvetica, sans-serif;
    margin: 0;
    position: absolute;
    bottom: 52px;
    left: 0;
    background: none;
    color: #333;
    width: 100%; }

.photo_gallery {
  height: 40px;
  margin: 0 0 10px;
  position: relative;
  width: 100%; }
  .photo_gallery .royalSlider {
    height: auto; }
    .photo_gallery .royalSlider .rsGCaption, .photo_gallery .royalSlider a.rsImg {
      display: none; }
  .photo_gallery .set .thumb img {
    max-width: 190px; }
  .photo_gallery .open-gallery-link {
    height: 40px;
    width: 100%;
    background: #000;
    position: relative; }
    .photo_gallery .open-gallery-link:before, .photo_gallery .open-gallery-link:after {
      content: "";
      position: absolute;
      z-index: 0;
      bottom: 0;
      left: 0;
      -moz-box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.7);
      -webkit-box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.7);
      box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.7);
      -moz-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
      -webkit-transform: rotate(-4deg);
      transform: rotate(-4deg);
      width: 100px;
      height: 35px;
      bottom: 10px; }
    .photo_gallery .open-gallery-link:after {
      -moz-transform: rotate(4deg);
      -ms-transform: rotate(4deg);
      -webkit-transform: rotate(4deg);
      transform: rotate(4deg);
      right: 0;
      left: auto; }
  .photo_gallery .view-gallery {
    line-height: 40px;
    text-align: center; }
  .photo_gallery h2 {
    float: none;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 5px;
    min-height: auto;
    height: auto;
    max-height: 42px;
    overflow: hidden;
    border-bottom: none;
    text-transform: none; }
  .photo_gallery p {
    height: 1.5em;
    width: 100%;
    text-align: left;
    overflow: hidden;
    padding: 3px 5px 0;
    margin: 0;
    color: #A483A4;
    font-size: 11px;
    font-weight: 200;
    line-height: 125%; }
  .photo_gallery a:hover {
    text-decoration: none; }
  .photo_gallery:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9; }

/* @end */
/* Typekit inactive and loading style fallbacks */
body.weston-art-gallery {
  background-image: url('../images/bodybg-weston.jpg?1395843606');
  background-color: #F4F4F2; }
  body.weston-art-gallery h1, body.weston-art-gallery h3 {
    color: #000; }
  body.weston-art-gallery h1 {
    border-bottom-color: #C0C0C0; }
  body.weston-art-gallery.exhibition-archives h1 {
    border-bottom: 0; }
  body.weston-art-gallery #container {
    background: none; }
  body.weston-art-gallery .weston-logo {
    background-position: 0 -1417px;
    height: 43px;
    width: 1000px;
    margin: 50px auto 20px;
    border-bottom: 1px solid #666;
    overflow: hidden;
    text-indent: -9999px; }
  body.weston-art-gallery .column .subnav:before, body.weston-art-gallery .column .subnav:after {
    display: none; }
  body.weston-art-gallery .column .subnav ul li a.section {
    background: #000; }
  body.weston-art-gallery .column .subnav ul li.active > a.active {
    color: #000;
    background: #ccc;
    margin: -1px -18px;
    padding-left: 18px; }
    body.weston-art-gallery .column .subnav ul li.active > a.active:visited {
      color: #000; }
    body.weston-art-gallery .column .subnav ul li.active > a.active:hover {
      color: #000; }
    body.weston-art-gallery .column .subnav ul li.active > a.active:active {
      color: #000; }
  body.weston-art-gallery .column .subnav ul li .sub li.active > a.active {
    background: none;
    margin: 0;
    padding-left: 0;
    color: #A90432; }
    body.weston-art-gallery .column .subnav ul li .sub li.active > a.active:visited {
      color: #A90432; }
    body.weston-art-gallery .column .subnav ul li .sub li.active > a.active:hover {
      color: #A90432; }
    body.weston-art-gallery .column .subnav ul li .sub li.active > a.active:active {
      color: #A90432; }
  body.weston-art-gallery #search button {
    background: #000; }
  body.weston-art-gallery #column_2 .banner {
    height: auto;
    padding: 5px;
    background: #fff; }
  body.weston-art-gallery .event_list .entry .info h3 a {
    color: #333; }
    body.weston-art-gallery .event_list .entry .info h3 a:visited {
      color: #333; }
    body.weston-art-gallery .event_list .entry .info h3 a:hover {
      color: #A90432; }
    body.weston-art-gallery .event_list .entry .info h3 a:active {
      color: #A90432; }
  body.weston-art-gallery .event_list .entry .info .buttons a.tickets, body.weston-art-gallery .event_list .entry .info .buttons a.onsale.soon, body.weston-art-gallery .event_list .entry .info .buttons a.tba, body.weston-art-gallery .event_list .entry .info .buttons a.more {
    background-color: #333; }
    body.weston-art-gallery .event_list .entry .info .buttons a.tickets:hover, body.weston-art-gallery .event_list .entry .info .buttons a.onsale.soon:hover, body.weston-art-gallery .event_list .entry .info .buttons a.tba:hover, body.weston-art-gallery .event_list .entry .info .buttons a.more:hover {
      background-color: #A90432; }

/*------------------------------------*/
/*----Social Status Tabs--------------*/
/*------------------------------------*/
.social_feeds {
  max-width: calc(100% - 33px);
  height: 269px;
  margin: 0 auto;
  clear: both;
  padding: 0px 0 0 0;
  width: 300px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.6);
  position: relative; }
  .social_feeds .social_status {
    height: 260px;
    width: 100%;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background: url(../images/bg.twitter_list.png); }
    .social_feeds .social_status .facebook_status {
      margin: 9px 13px 0;
      height: 260px; }
    .social_feeds .social_status .status {
      display: none; }
    .social_feeds .social_status .status.active {
      display: block; }
    .social_feeds .social_status .social_twitter_header {
      width: 100%;
      color: white;
      background: #919A3A;
      font: 700 16px/140% "adelle", georgia, serif;
      height: 30px;
      line-height: 30px;
      box-sizing: border-box;
      padding: 0px 10px;
      letter-spacing: 0.03em; }
      .social_feeds .social_status .social_twitter_header.second {
        background: #71B0B4; }
    .social_feeds .social_status ul.tab_controls {
      position: absolute;
      top: 15px;
      right: -38px;
      margin: 0;
      padding: 0; }
      .social_feeds .social_status ul.tab_controls li {
        width: 37px;
        height: 40px;
        padding: 0;
        margin: 0 0 10px 0;
        background: #000;
        background-image: url(../images/icons-toolbar.png);
        background-color: rgba(0, 0, 0, 0.45);
        -moz-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.6);
        -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.6);
        box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.6); }
        .social_feeds .social_status ul.tab_controls li.twitter {
          background-position: 0px 0px; }
          .social_feeds .social_status ul.tab_controls li.twitter:hover, .social_feeds .social_status ul.tab_controls li.twitter.active {
            background-position: 0 bottom; }
        .social_feeds .social_status ul.tab_controls li.facebook {
          background-position: -40px 0; }
          .social_feeds .social_status ul.tab_controls li.facebook:hover, .social_feeds .social_status ul.tab_controls li.facebook.active {
            background-position: -40px bottom; }
      .social_feeds .social_status ul.tab_controls a {
        display: block;
        text-indent: -9999px;
        width: 50px;
        height: 52px; }
    .social_feeds .social_status ul.chirp {
      margin: 0;
      padding: 0; }
      .social_feeds .social_status ul.chirp li {
        margin: 0;
        padding: 0; }
    .social_feeds .social_status #tweets, .social_feeds .social_status #tweets2, .social_feeds .social_status #tweets1, .social_feeds .social_status .tweets2, .social_feeds .social_status .tweets1 {
      width: 100%;
      padding: 5px 0 0 0;
      overflow-y: scroll; }
      .social_feeds .social_status #tweets .viewport, .social_feeds .social_status #tweets2 .viewport, .social_feeds .social_status #tweets1 .viewport, .social_feeds .social_status .tweets2 .viewport, .social_feeds .social_status .tweets1 .viewport {
        height: 100px;
        width: 100%;
        overflow: hidden;
        position: relative; }
      .social_feeds .social_status #tweets .scrollbar, .social_feeds .social_status #tweets2 .scrollbar, .social_feeds .social_status #tweets1 .scrollbar, .social_feeds .social_status .tweets2 .scrollbar, .social_feeds .social_status .tweets1 .scrollbar {
        width: 10px;
        height: 100px;
        position: absolute;
        right: 10px;
        top: 18px; }
      .social_feeds .social_status #tweets .overview, .social_feeds .social_status #tweets2 .overview, .social_feeds .social_status #tweets1 .overview, .social_feeds .social_status .tweets2 .overview, .social_feeds .social_status .tweets1 .overview {
        width: calc(100% - 20px);
        height: 100%;
        margin: 0;
        padding: 0 11px;
        overflow-y: scroll;
        position: absolute;
        left: 0;
        top: 0;
        list-style: none; }
      .social_feeds .social_status #tweets .scrollbar .track, .social_feeds .social_status #tweets2 .scrollbar .track, .social_feeds .social_status #tweets1 .scrollbar .track, .social_feeds .social_status .tweets2 .scrollbar .track, .social_feeds .social_status .tweets1 .scrollbar .track {
        width: 1px;
        background: white;
        height: 100px;
        position: relative;
        border-left: 1px #CCCCCC solid;
        margin-top: 5px; }
      .social_feeds .social_status #tweets .scrollbar .track .thumb, .social_feeds .social_status #tweets2 .scrollbar .track .thumb, .social_feeds .social_status #tweets1 .scrollbar .track .thumb, .social_feeds .social_status .tweets2 .scrollbar .track .thumb, .social_feeds .social_status .tweets1 .scrollbar .track .thumb {
        width: 8px;
        height: 18px;
        background: #666;
        border-right: white;
        border-bottom: white;
        position: absolute;
        left: -5px;
        top: 25px;
        cursor: pointer; }
      .social_feeds .social_status #tweets li, .social_feeds .social_status #tweets2 li, .social_feeds .social_status #tweets1 li, .social_feeds .social_status .tweets2 li, .social_feeds .social_status .tweets1 li {
        font-size: 12px;
        list-style-type: none;
        border-bottom: solid 1px #a0a0a0;
        border-top: 1px solid #fff;
        padding: 10px 0 10px 0;
        color: #fff; }
        .social_feeds .social_status #tweets li:first-child, .social_feeds .social_status #tweets2 li:first-child, .social_feeds .social_status #tweets1 li:first-child, .social_feeds .social_status .tweets2 li:first-child, .social_feeds .social_status .tweets1 li:first-child {
          border-top: none; }
      .social_feeds .social_status #tweets .tweet_meta, .social_feeds .social_status #tweets2 .tweet_meta, .social_feeds .social_status #tweets1 .tweet_meta, .social_feeds .social_status .tweets2 .tweet_meta, .social_feeds .social_status .tweets1 .tweet_meta {
        font-style: italic;
        color: #ffffff;
        margin-top: 10px; }
        .social_feeds .social_status #tweets .tweet_meta span, .social_feeds .social_status #tweets2 .tweet_meta span, .social_feeds .social_status #tweets1 .tweet_meta span, .social_feeds .social_status .tweets2 .tweet_meta span, .social_feeds .social_status .tweets1 .tweet_meta span {
          margin-right: 12px; }
        .social_feeds .social_status #tweets .tweet_meta a, .social_feeds .social_status #tweets2 .tweet_meta a, .social_feeds .social_status #tweets1 .tweet_meta a, .social_feeds .social_status .tweets2 .tweet_meta a, .social_feeds .social_status .tweets1 .tweet_meta a {
          margin-right: 12px;
          text-decoration: none; }
      .social_feeds .social_status #tweets a, .social_feeds .social_status #tweets2 a, .social_feeds .social_status #tweets1 a, .social_feeds .social_status .tweets2 a, .social_feeds .social_status .tweets1 a {
        color: #919A3A; }
        .social_feeds .social_status #tweets a:hover, .social_feeds .social_status #tweets2 a:hover, .social_feeds .social_status #tweets1 a:hover, .social_feeds .social_status .tweets2 a:hover, .social_feeds .social_status .tweets1 a:hover {
          color: #2D5762; }
  @media screen and (min-width: 1000px) {
    .social_feeds {
      float: left;
      clear: none;
      margin: 0 0 0 10px; } }

/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
