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

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

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

del {
  text-decoration: line-through; }

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

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

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

input, select {
  vertical-align: middle; }

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

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {
  font: 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-arrow-next, .icons-arrow-prev, .icons-calendar-gray, .icons-calendar-white, .icons-calendar, .icons-info-gray, .icons-info-white, .icons-info, .icons-logo, .icons-logohover, .icons-next-gold, .icons-prev-gold, .icons-tickets-white-large, .icons-tickets-white-small, .icons-tickets-white, .icons-tickets, .logo a, .logo span, .logo a:hover, a.icon-largecalendar, .rsDefault.rsHor .rsArrowLeft .rsArrowIcn, .rsDefault.rsHor .rsArrowRight .rsArrowIcn, .home-slideshow .rsContent .rsInfo .buttons a.more, .home-slideshow .rsContent .rsInfo .buttons a.more:visited, .home-slideshow .rsContent .rsInfo .buttons span.more, .home-slideshow .rsContent .rsInfo .buttons a.tickets, .home-slideshow .rsContent .rsInfo .buttons a.tickets:visited, .home-slideshow .rsContent .rsInfo .buttons span.tickets, .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.more, .featured_holder #event_list_holder .entry-item .entry .info .buttons span.more, .featured_holder .featured-nav span.prev, .featured_holder .featured-nav span.next, .event_list .entry .buttons a.tickets, .event_list .entry .buttons span.tickets, .event_list .entry .buttons a.soon, .event_list .entry .buttons span.soon, .event_list .entry .buttons a.tba, .event_list .entry .buttons span.tba, .event_list .entry .buttons a.more, .event_list .entry .buttons span.more, .event_list .entry .buttons a.ical, .event_list .entry .buttons span.ical, .event_list .entry .buttons a.ical.active, .event_list .entry .buttons a.ical:hover, .event_list .entry .buttons span.ical.active, .event_list .entry .buttons span.ical:hover, .event_list .entry .showing_dates li a.ical, #events.detail .ticket_large a, #events.detail .ticket_large span, .event_detail .showings_list a.ical, .concierge_listing .list .entry .description, .search-app .buttons a.tickets, .search-app .buttons span.tickets, .search-app .buttons a.soon, .search-app .buttons span.soon, .search-app .buttons a.tba, .search-app .buttons span.tba, .search-app .buttons a.showtime-search-instant-result-link-info, .search-app .buttons span.showtime-search-instant-result-link-info, .search-app .buttons a.ical, .search-app .buttons span.ical, .search-app .buttons a.ical.active, .search-app .buttons a.ical:hover, .search-app .buttons span.ical.active, .search-app .buttons span.ical:hover {
  background-image: url('../images/icons-se068f2a002.png');
  background-repeat: no-repeat; }

.icons-arrow-next {
  background-position: 0 0;
  height: 47px;
  width: 43px; }
  .icons-arrow-next:hover, .icons-arrow-next.arrow-next-hover {
    background-position: 0 -57px; }

.icons-arrow-prev {
  background-position: 0 -114px;
  height: 47px;
  width: 43px; }
  .icons-arrow-prev:hover, .icons-arrow-prev.arrow-prev-hover {
    background-position: 0 -171px; }

.icons-calendar-gray {
  background-position: 0 -228px;
  height: 34px;
  width: 34px; }

.icons-calendar-white {
  background-position: 0 -272px;
  height: 32px;
  width: 32px; }

.icons-calendar {
  background-position: 0 -314px;
  height: 71px;
  width: 67px; }
  .icons-calendar:hover, .icons-calendar.calendar-hover {
    background-position: 0 -395px; }

.icons-info-gray {
  background-position: 0 -476px;
  height: 34px;
  width: 34px; }
  .icons-info-gray:hover, .icons-info-gray.info-gray-hover {
    background-position: 0 -520px; }

.icons-info-white {
  background-position: 0 -564px;
  height: 28px;
  width: 7px; }

.icons-info {
  background-position: 0 -602px;
  height: 30px;
  width: 31px; }
  .icons-info:hover, .icons-info.info-hover {
    background-position: 0 -642px; }

.icons-logo {
  background-position: 0 -682px;
  height: 150px;
  width: 275px; }

.icons-logohover {
  background-position: 0 -842px;
  height: 150px;
  width: 275px; }

.icons-next-gold {
  background-position: 0 -1002px;
  height: 36px;
  width: 106px; }
  .icons-next-gold:hover, .icons-next-gold.next-gold-hover {
    background-position: 0 -1048px; }

.icons-prev-gold {
  background-position: 0 -1094px;
  height: 36px;
  width: 106px; }
  .icons-prev-gold:hover, .icons-prev-gold.prev-gold-hover {
    background-position: 0 -1140px; }

.icons-tickets-white-large {
  background-position: 0 -1186px;
  height: 60px;
  width: 46px; }

.icons-tickets-white-small {
  background-position: 0 -1256px;
  height: 28px;
  width: 20px; }

.icons-tickets-white {
  background-position: 0 -1294px;
  height: 32px;
  width: 34px; }

.icons-tickets {
  background-position: 0 -1336px;
  height: 30px;
  width: 31px; }
  .icons-tickets:hover, .icons-tickets.tickets-hover {
    background-position: 0 -1376px; }

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

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

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

.gutter {
  margin-left: 20px; }

.gutter40 {
  margin-left: 40px; }

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

.span6 {
  width: 1040px; }

.span5 {
  width: 700px; }

.span4 {
  width: 520px; }

.span3 {
  width: 320px; }

.span2 {
  width: 192px; }

.span1 {
  width: 130px; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "tablet-gothic-compressed", sans-serif;
  font-weight: 300;
  line-height: 120%;
  color: #398CB8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 2px; }

h2, h3 {
  padding-top: 30px;
  margin-bottom: 10px; }

h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font: 400 16px/20px "tablet-gothic-compressed", sans-serif; }

h1, .h1 {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 15px; }

h2, .h2 {
  font-weight: 600;
  font-size: 22px;
  color: #333; }

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

h4, .h4, h5, .h5 {
  font: 600 16px/180% "tablet-gothic", sans-serif;
  color: #398CB8;
  letter-spacing: 0;
  word-spacing: 0;
  text-transform: none; }

h5, h6, .h5, .h6 {
  color: #333; }

p, address {
  margin: 0 0 20px;
  padding: 0;
  color: #333;
  font: 300 16px/180% "tablet-gothic", sans-serif; }
  p.lead, address.lead {
    font-size: 20px; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 5px;
  padding: 5px 0 8px 15px;
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none;
  font: 300 16px/150% "tablet-gothic", sans-serif; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit; }
  ul ul, ol ul {
    margin: 0; }

ol {
  list-style: decimal; }

a {
  color: #398CB8;
  text-decoration: none;
  border: none;
  outline: none; }
  a:visited {
    color: #398CB8; }
  a:hover {
    color: #398CB8; }
  a:active {
    color: #398CB8; }
  a:hover, a:focus {
    text-decoration: underline; }

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

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

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

html {
  height: 100%; }

body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: "tablet-gothic", sans-serif;
  font-size: 16px;
  color: #333;
  background: url('../images/body-bg.jpg?1407787581');
  height: 100%; }

#container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: 100%; }
  #container:before, #container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0)));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1; }
  #container:after {
    left: auto;
    right: 0;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC40Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.4)));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); }

#layout {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding: 0 0 100px; }

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

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

.slideshow_banners {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  height: 0; }
  .slideshow_banners .home_banners {
    display: none; }
  .slideshow_banners.active {
    height: 445px; }
    .slideshow_banners.active .home_banners {
      display: block; }

.one_sidebar_right, .one_sidebar_left {
  width: 100%;
  background: transparent url('../images/pattern-white.jpg?1407787581');
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
  -moz-box-shadow: 0 2px 12px #000;
  -webkit-box-shadow: 0 2px 12px #000;
  box-shadow: 0 2px 12px #000; }
  .one_sidebar_right.page_content .home-slideshow, .one_sidebar_left.page_content .home-slideshow {
    display: none; }
  .one_sidebar_right #column_1, .one_sidebar_left #column_1 {
    width: 760px;
    float: left; }
    .one_sidebar_right #column_1.has_slideshow, .one_sidebar_left #column_1.has_slideshow {
      margin-top: 380px; }
    .one_sidebar_right #column_1 .container, .one_sidebar_left #column_1 .container {
      padding: 30px 20px;
      min-height: 551px;
      *zoom: 1; }
      .one_sidebar_right #column_1 .container:before, .one_sidebar_right #column_1 .container:after, .one_sidebar_left #column_1 .container:before, .one_sidebar_left #column_1 .container:after {
        content: "\0020";
        display: table; }
      .one_sidebar_right #column_1 .container:after, .one_sidebar_left #column_1 .container:after {
        clear: both; }
  .one_sidebar_right #column_2, .one_sidebar_left #column_2 {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 280px;
    float: left;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    left: auto;
    background: rgba(0, 0, 0, 0.05);
    border-left: 1px solid #DCDCDC;
    padding: 20px; }
  .one_sidebar_right.one_sidebar_left #column_2, .one_sidebar_left.one_sidebar_left #column_2 {
    left: 0;
    border-left: 0;
    border-right: 1px solid #DCDCDC; }
  .one_sidebar_right.one_sidebar_left #column_1, .one_sidebar_left.one_sidebar_left #column_1 {
    margin-left: 280px; }

.full {
  width: 100%;
  padding-bottom: 35px; }
  .full .full_column {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    background: transparent url('../images/pattern-white.jpg?1407787581'); }
    .full .full_column .container {
      width: 980px;
      background-color: #fff;
      padding: 20px;
      *zoom: 1; }
      .full .full_column .container:before, .full .full_column .container:after {
        content: "\0020";
        display: table; }
      .full .full_column .container:after {
        clear: both; }

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

.curved_dropshadow {
  position: relative; }
  .curved_dropshadow:before, .curved_dropshadow:after {
    visibility: visible;
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 12px;
    left: 0;
    width: 60%;
    height: 20%;
    max-height: 100px;
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
    .ie9 .curved_dropshadow:before, .ie10 .curved_dropshadow:before, .ie11 .curved_dropshadow:before, .ie9 .curved_dropshadow:after, .ie10 .curved_dropshadow:after, .ie11 .curved_dropshadow:after {
      display: block; }
  .curved_dropshadow:after {
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    right: 0;
    left: auto; }

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

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

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

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

header, .header {
  position: relative;
  margin: 0 auto;
  padding: 0;
  height: 217px;
  width: 100%; }

.logo {
  width: 275px;
  height: 143px;
  float: left;
  margin: 13px 0 0 -11px; }
  .logo a, .logo span {
    background-position: 0 -682px;
    height: 150px;
    width: 275px;
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    display: block; }
  .logo a:hover {
    background-position: 0 -842px;
    height: 150px;
    width: 275px; }

.venue-nav {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 78px 0 0;
  *zoom: 1; }
  .venue-nav:before, .venue-nav:after {
    content: "\0020";
    display: table; }
  .venue-nav:after {
    clear: both; }
  .venue-nav .logo {
    position: relative;
    width: 300px;
    height: 60px;
    float: left;
    padding-top: 12px;
    margin-left: -18px; }
    .venue-nav .logo span, .venue-nav .logo a, .venue-nav .logo a:link, .venue-nav .logo a:visited {
      display: block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      width: 300px;
      height: 60px;
      background: url(../images/logo.png) no-repeat 0 0; }
    .venue-nav .logo a:hover, .venue-nav .logo a:focus {
      background-position: 0 -72px; }
    .venue-nav .logo span {
      cursor: default; }
  .venue-nav ul {
    display: block;
    position: relative;
    list-style: none;
    width: 700px;
    height: 70px;
    float: right;
    background: url(../images/horizontal-ribbon.png) repeat-y 9px top;
    margin-top: -5px;
    padding: 0;
    *zoom: 1; }
    .venue-nav ul:before, .venue-nav ul:after {
      content: "\0020";
      display: table; }
    .venue-nav ul:after {
      clear: both; }
    .venue-nav ul li {
      position: relative;
      display: block;
      padding: 0 0 0 62px;
      margin: 0;
      float: left;
      background: none; }
      .venue-nav ul li a, .venue-nav ul li a:visited {
        display: block;
        position: relative;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        height: 70px;
        background: url(../images/venue-icons.png) no-repeat 0 0; }
    .venue-nav ul a.md {
      display: block;
      width: 150px;
      height: 70px;
      background-position: -36px 0; }
      .venue-nav ul a.md:hover, .venue-nav ul a.md:focus {
        background-position: -36px -72px; }
    .venue-nav ul a.mc {
      display: block;
      width: 170px;
      height: 70px;
      background-position: -249px 0; }
      .venue-nav ul a.mc:hover, .venue-nav ul a.mc:focus {
        background-position: -249px -72px; }
    .venue-nav ul a.tb {
      display: block;
      width: 50px;
      height: 70px;
      background-position: -479px 0; }
      .venue-nav ul a.tb:hover, .venue-nav ul a.tb:focus {
        background-position: -479px -72px; }
    .venue-nav ul a.wh {
      display: block;
      width: 65px;
      height: 70px;
      background-position: -590px 0; }
      .venue-nav ul a.wh:hover, .venue-nav ul a.wh:focus {
        background-position: -590px -72px; }

#toolbar {
  position: relative;
  display: block;
  padding: 10px 0 0;
  height: 20px;
  margin: 0;
  z-index: 900;
  *zoom: 1; }
  #toolbar:before, #toolbar:after {
    content: "\0020";
    display: table; }
  #toolbar:after {
    clear: both; }

.social {
  display: block;
  position: relative;
  margin: 2px 0 0 475px;
  padding: 0;
  float: left;
  list-style: none;
  *zoom: 1; }
  .social:before, .social:after {
    content: "\0020";
    display: table; }
  .social:after {
    clear: both; }
  .social li {
    display: block;
    position: relative;
    float: left;
    margin: 0;
    background: none; }
    .social li:after {
      content: '';
      position: absolute;
      left: -1px;
      top: 3px;
      height: 20px;
      width: 1px;
      background: #555;
      -moz-box-shadow: 1px 0 1px #222;
      -webkit-box-shadow: 1px 0 1px #222;
      box-shadow: 1px 0 1px #222; }
    .social li:first-child:after {
      display: none; }
    .social li a {
      padding: 0 14px;
      display: block;
      font-size: 25px;
      color: #B39C60;
      text-decoration: none;
      text-shadow: 0 0 1px #222;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      .social li a:visited {
        color: #B39C60; }
      .social li a:hover {
        color: #398CB8; }
      .social li a:active {
        color: #398CB8; }
      .social li a.fa-envelope {
        font-size: 22px; }

.m-search-form {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  height: 30px; }
  .m-search-form input, .m-search-form input[type="text"] {
    position: relative;
    margin: 0;
    padding: 8px 15px 6px;
    height: 30px;
    background: transparent url('../images/pattern-black.jpg?1407787581');
    width: 285px;
    font: normal 14px/14px Arial, Helvetica, sans-serif;
    color: #7F7045;
    border: 0;
    -webkit-appearance: none; }
    .m-search-form input ::-webkit-input-placeholder, .m-search-form input[type="text"] ::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #7F7045; }
    .m-search-form input :-moz-placeholder, .m-search-form input[type="text"] :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #7F7045; }
    .m-search-form input ::-moz-placeholder, .m-search-form input[type="text"] ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #7F7045; }
    .m-search-form input :-ms-input-placeholder, .m-search-form input[type="text"] :-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #7F7045; }
    .m-search-form input::-webkit-input-placeholder, .m-search-form input[type="text"]::-webkit-input-placeholder {
      font: normal 14px/14px Arial, Helvetica, sans-serif;
      color: #7F7045; }
    .m-search-form input:-moz-placeholder, .m-search-form input[type="text"]:-moz-placeholder {
      font: normal 14px/14px Arial, Helvetica, sans-serif;
      color: #7F7045; }
    .m-search-form input:-ms-input-placeholder, .m-search-form input[type="text"]:-ms-input-placeholder {
      font: normal 14px/14px Arial, Helvetica, sans-serif;
      color: #7F7045; }
    .m-search-form input:focus, .m-search-form input[type="text"]:focus {
      outline: none;
      -webkit-appearance: none; }
  .m-search-form button {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 35px;
    height: 30px;
    background: #B39C60;
    border: none;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .m-search-form button:hover {
      background: #398CB8; }

nav {
  position: relative;
  float: left;
  margin: 77px 0 0;
  padding: 0;
  height: 60px;
  z-index: 500;
  border-top: 1px solid #7F7045;
  border-bottom: 1px solid #7F7045; }
  nav.span5 {
    width: 767px; }
  nav ul {
    display: block;
    text-align: left;
    position: relative;
    margin: -1px 0 0;
    padding: 0;
    width: 100%; }
    nav ul li {
      display: block;
      padding: 0;
      margin: 0;
      height: 50px;
      float: left;
      position: relative; }
      nav ul li:after {
        position: absolute;
        content: '';
        width: 1px;
        height: 20px;
        background: #555;
        top: 20px;
        right: 0;
        -moz-box-shadow: 1px 0 1px #222;
        -webkit-box-shadow: 1px 0 1px #222;
        box-shadow: 1px 0 1px #222; }
      nav ul li:first-child, nav ul li.page_1 {
        display: none; }
      nav ul li:hover > a, nav ul li:hover a.active {
        color: #fff;
        background: #B39C60;
        -moz-box-shadow: 0 0 10px #000;
        -webkit-box-shadow: 0 0 10px #000;
        box-shadow: 0 0 10px #000; }
      nav ul li:hover:after {
        display: none; }
      nav ul li:hover li a {
        background: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      nav ul li:hover li a.active, nav ul li:hover li a.active:visited {
        background: #398CB8;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      nav ul li:last-child:after {
        display: none; }
  nav a {
    display: block;
    text-decoration: none;
    color: #fff;
    font: 300 20px/60px "tablet-gothic-compressed", sans-serif;
    text-transform: uppercase;
    margin: 0;
    padding: 0px 19px; }
    nav a:visited {
      color: #fff; }
    nav a:hover {
      color: #fff; }
    nav a:active {
      color: #fff; }
    nav a:hover, nav a.active {
      text-decoration: none; }
    nav a.active:hover, nav a.active:hover:visited {
      color: #fff; }

nav ul .sub {
  position: absolute;
  left: 0;
  top: 60px;
  display: none;
  width: auto;
  line-height: 26px;
  z-index: 9000;
  margin: 0;
  background: transparent url('../images/nav-bg.jpg?1407787581');
  border-bottom: 3px solid #807246;
  -moz-box-shadow: 0 3px 11px -3px #000;
  -webkit-box-shadow: 0 3px 11px -3px #000;
  box-shadow: 0 3px 11px -3px #000; }

nav ul ul {
  float: left;
  background: none;
  width: 190px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 5px 0; }
  nav ul ul li {
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 0 20px;
    cursor: pointer;
    float: none;
    text-align: left;
    height: auto;
    border-left: none;
    border-right: none; }
    nav ul ul li:first-child {
      display: block; }
    nav ul ul li:last-child a {
      border-bottom-color: transparent; }
    nav ul ul li:after {
      display: none; }
    nav ul ul li:hover {
      background: #398CB8;
      padding-top: 1px;
      margin-top: -1px; }
      nav ul ul li:hover a, nav ul ul li:hover a.active {
        border-bottom-color: transparent;
        background: #398CB8;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-shadow: 0 -1px 0 #225F80; }
    nav ul ul li a {
      display: block;
      margin: 0px;
      padding: 8px 0;
      font: 600 16px/120% "tablet-gothic-compressed", sans-serif;
      text-decoration: none;
      cursor: pointer;
      text-indent: 0;
      border-bottom: 1px solid #bbb;
      color: #807246;
      background: none;
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      background: none;
      text-align: left; }
      nav ul ul li a:visited {
        color: #807246; }
      nav ul ul li a:hover {
        color: #fff; }
      nav ul ul li a:active {
        color: #fff; }
      nav ul ul li a:hover, nav ul ul li a:focus {
        text-decoration: none; }
      nav ul ul li a.active {
        margin: -1px -20px 0;
        padding: 9px 20px 8px;
        border-bottom-color: transparent;
        background: #398CB8;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-shadow: 0 -1px 0 #225F80; }

a.icon-largecalendar {
  display: block;
  position: absolute;
  top: 97px;
  right: 0;
  background-position: 0 -314px;
  height: 71px;
  width: 67px;
  text-decoration: none;
  z-index: 999; }
  a.icon-largecalendar:hover, a.icon-largecalendar.calendar-hover {
    background-position: 0 -395px; }

/* ----------------------------------------------------------------------------
=Venue thumbs in footer
----------------------------------------------------------------------------- */
.venue_thumb_list {
  margin-top: 40px;
  border-top: 1px solid #222; }
  .venue_thumb_list h3.venue_group_title {
    padding-top: 20px;
    margin-bottom: 15px;
    border-top: 1px solid #444; }
  .venue_thumb_list h3 {
    margin-top: 0;
    color: #fff; }
  .venue_thumb_list .thumb_container {
    position: relative; }
    .venue_thumb_list .thumb_container:before, .venue_thumb_list .thumb_container:after {
      visibility: visible;
      content: '';
      position: absolute;
      z-index: -1;
      bottom: 12px;
      left: 0;
      width: 60%;
      height: 20%;
      max-height: 100px;
      -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
      -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
      box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
      -moz-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
      -webkit-transform: rotate(-2deg);
      transform: rotate(-2deg); }
      .ie9 .venue_thumb_list .thumb_container:before, .ie10 .venue_thumb_list .thumb_container:before, .ie11 .venue_thumb_list .thumb_container:before, .ie9 .venue_thumb_list .thumb_container:after, .ie10 .venue_thumb_list .thumb_container:after, .ie11 .venue_thumb_list .thumb_container:after {
        display: block; }
    .venue_thumb_list .thumb_container:after {
      -moz-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
      -webkit-transform: rotate(2deg);
      transform: rotate(2deg);
      right: 0;
      left: auto; }
    .venue_thumb_list .thumb_container:before, .venue_thumb_list .thumb_container:after {
      bottom: 22px; }
    .venue_thumb_list .thumb_container:before {
      -moz-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
      -webkit-transform: rotate(-4deg);
      transform: rotate(-4deg); }
    .venue_thumb_list .thumb_container:after {
      -moz-transform: rotate(4deg);
      -ms-transform: rotate(4deg);
      -webkit-transform: rotate(4deg);
      transform: rotate(4deg); }
    .venue_thumb_list .thumb_container h3 {
      font: 300 14px/28px "tablet-gothic-compressed", sans-serif;
      padding-top: 0;
      background: #B39C60;
      text-align: center;
      letter-spacing: 0.3px;
      word-spacing: 1px;
      text-shadow: 0 -1px 1px #78683F;
      margin-top: -1px;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
    .venue_thumb_list .thumb_container a {
      line-height: 100%;
      display: block; }
      .venue_thumb_list .thumb_container a svg image {
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
      .venue_thumb_list .thumb_container a:hover {
        text-decoration: none; }
        .venue_thumb_list .thumb_container a:hover h3 {
          background: #398CB8; }
        .venue_thumb_list .thumb_container a:hover svg image {
          opacity: 0; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  background: #1B1B1C; }
  footer .delimiter {
    color: black;
    padding: 0 7px; }

/*- sets up the lower bar and links -*/
.footer_top {
  position: relative;
  width: 1040px;
  height: auto;
  margin: 0 auto;
  *zoom: 1; }
  .footer_top:before, .footer_top:after {
    content: "\0020";
    display: table; }
  .footer_top:after {
    clear: both; }
  .footer_top .footer_nav {
    float: left;
    display: inline-block;
    height: 40px;
    margin: 0;
    padding: 0;
    list-style: none; }
    .footer_top .footer_nav li {
      float: left;
      margin: 0;
      padding: 0;
      text-align: center; }
      .footer_top .footer_nav li:first-child {
        border-left: none; }
        .footer_top .footer_nav li:first-child a {
          padding-left: 0; }
      .footer_top .footer_nav li a, .footer_top .footer_nav li span {
        padding-top: 0;
        margin-top: 0;
        padding: 0 8px 0 20px;
        line-height: 40px;
        font-size: 16px;
        text-decoration: none;
        position: relative;
        color: #fff; }
        .footer_top .footer_nav li a:visited, .footer_top .footer_nav li span:visited {
          color: #fff; }
        .footer_top .footer_nav li a:hover, .footer_top .footer_nav li span:hover {
          color: #B39C60; }
        .footer_top .footer_nav li a:active, .footer_top .footer_nav li span:active {
          color: #B39C60; }
        .footer_top .footer_nav li a .fa, .footer_top .footer_nav li span .fa {
          width: 30px;
          text-align: center; }
        .footer_top .footer_nav li a .fa-times, .footer_top .footer_nav li span .fa-times {
          display: none; }
        .footer_top .footer_nav li a.foot_trigger:before, .footer_top .footer_nav li span.foot_trigger:before {
          background: #444;
          content: '';
          width: 2px;
          height: 14px;
          position: absolute;
          top: 50%;
          left: 0;
          margin-top: -6px; }
      .footer_top .footer_nav li #foot_home {
        padding-right: 20px; }
      .footer_top .footer_nav li.active a {
        text-decoration: none;
        color: #B39C60; }
        .footer_top .footer_nav li.active a:visited {
          color: #B39C60; }
        .footer_top .footer_nav li.active a:hover {
          color: #fff; }
        .footer_top .footer_nav li.active a:active {
          color: #fff; }
        .footer_top .footer_nav li.active a .fa-times {
          display: inline-block; }
        .footer_top .footer_nav li.active a .fa-chevron-down {
          display: none; }
  .footer_top .credits {
    float: right;
    display: block; }
    .footer_top .credits a {
      font-family: sans-serif;
      display: inline-block;
      border: none;
      text-shadow: #000 -1px -1px 1px;
      font-style: normal; }
      .footer_top .credits a.carbonhouse {
        position: relative;
        top: 8px;
        line-height: 14px;
        color: #B39C60; }
        .footer_top .credits a.carbonhouse em {
          font-size: 12px;
          font-style: normal;
          font-weight: bold; }
        .footer_top .credits a.carbonhouse span {
          font-size: 10px; }
      .footer_top .credits a:hover {
        text-decoration: none;
        color: #fff; }

/*- styles the hidden elements that show on open -*/
.footer_bottom {
  position: relative;
  display: none;
  width: 100%;
  height: 210px;
  background: url('../images/pattern-lightgray.jpg?1407787581');
  margin: 0;
  overflow: hidden; }
  .footer_bottom .footer_content_inner {
    position: relative;
    height: 100%;
    *zoom: 1; }
    .footer_bottom .footer_content_inner:before, .footer_bottom .footer_content_inner:after {
      content: "\0020";
      display: table; }
    .footer_bottom .footer_content_inner:after {
      clear: both; }
    .footer_bottom .footer_content_inner h2 {
      font-size: 28px;
      font-weight: 300; }
  .footer_bottom .foot_copyright {
    border-top: 1px solid #ccc;
    border-top: 1px solid rgba(68, 68, 68, 0.2);
    font-size: 11px;
    padding-top: 20px;
    color: #333; }
    .footer_bottom .foot_copyright a {
      color: #333; }
      .footer_bottom .foot_copyright a:visited {
        color: #333; }
      .footer_bottom .foot_copyright a:hover {
        color: #333; }
      .footer_bottom .foot_copyright a:active {
        color: #333; }

#foot_quick_detail,
#foot_contact_detail {
  display: none; }

.foot_quick_container {
  /*
  background-color:#003A78;
  border-left:1px solid #3C6898;
  border-bottom:1px solid #001B38;*/
  margin: 0;
  padding: 15px 0; }
  .foot_quick_container ul.nav_list {
    clear: both;
    margin: 0;
    padding: 0;
    list-style: none;
    float: left; }
    .foot_quick_container ul.nav_list li {
      float: left;
      margin: 0; }
      .foot_quick_container ul.nav_list li:first-child {
        display: none; }
      .foot_quick_container ul.nav_list li a {
        display: block;
        padding: 0 20px;
        position: relative;
        color: #333;
        text-decoration: none; }
        .foot_quick_container ul.nav_list li a:visited {
          color: #333; }
        .foot_quick_container ul.nav_list li a:hover {
          color: #B39C60; }
        .foot_quick_container ul.nav_list li a:active {
          color: #B39C60; }
        .foot_quick_container ul.nav_list li a:before {
          content: '';
          position: absolute;
          width: 12px;
          height: 12px;
          background: #B39C60;
          top: 7px;
          left: 0; }
    .foot_quick_container ul.nav_list span {
      display: none; }
  .foot_quick_container ul.social {
    margin: 0;
    float: right; }
    .foot_quick_container ul.social li:after {
      display: none; }
    .foot_quick_container ul.social li a {
      font-size: 24px;
      text-shadow: none;
      padding: 0 9px; }
    .foot_quick_container ul.social li:last-child a {
      padding-right: 0; }

ul.vcard {
  list-style: none;
  margin: 5px 0 0;
  padding: 0 0 30px;
  width: 100%;
  float: left; }
  ul.vcard li {
    margin: 0 35px 0 0;
    padding: 0;
    float: left; }
    ul.vcard li .fa {
      font-size: 18px;
      padding-right: 5px;
      color: #B39C60; }
  ul.vcard a.btn-contact {
    font: 300 16px/25px "tablet-gothic-compressed", sans-serif;
    padding: 0 12px 0 26px;
    background: #B39C60;
    text-align: center;
    word-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-shadow: 0 -1px 1px #78683F;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    ul.vcard a.btn-contact:visited {
      color: #fff; }
    ul.vcard a.btn-contact:hover {
      color: #fff; }
    ul.vcard a.btn-contact:active {
      color: #fff; }
    ul.vcard a.btn-contact .fa {
      position: absolute;
      top: 5px;
      left: 8px;
      color: #fff;
      font-size: 14px;
      padding-right: 5px; }
    ul.vcard a.btn-contact:hover {
      background: #398CB8; }

.home .full {
  padding-bottom: 0; }
  .home .full .full_column {
    padding: 0 0 20px;
    background: none;
    filter: none; }
.home .promos {
  border-top: 1px solid #444;
  padding-top: 40px; }
  .home .promos .banner, .home .promos .home_spotlight {
    height: 275px;
    border-bottom: 5px solid #B39C60;
    position: relative;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .home .promos .banner:hover, .home .promos .home_spotlight:hover {
      border-bottom-color: #398CB8; }
.home .home_spotlight {
  background: #fff; }
  .home .home_spotlight .spotlight_thumb {
    width: 100%;
    height: 135px;
    position: relative;
    overflow: hidden; }
    .home .home_spotlight .spotlight_thumb img {
      width: 100%; }
    .home .home_spotlight .spotlight_thumb a.btn-readmore {
      position: absolute;
      bottom: -28px;
      left: 0;
      display: block;
      float: left;
      height: 28px;
      color: #fff;
      text-transform: uppercase;
      background: #398CB8;
      font: 300 14px/28px "tablet-gothic-compressed", sans-serif;
      letter-spacing: 0.3px;
      word-spacing: 1px;
      text-shadow: 0 -1px 1px #78683F;
      -moz-transition: all 200ms linear;
      -o-transition: all 200ms linear;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
      padding: 0 12px; }
      .home .home_spotlight .spotlight_thumb a.btn-readmore:hover {
        text-decoration: none; }
  .home .home_spotlight .spotlight_info {
    padding: 12px 10px 0 15px;
    max-height: 125px; }
  .home .home_spotlight a, .home .home_spotlight a:hover {
    text-decoration: none; }
    .home .home_spotlight a .spotlight_info, .home .home_spotlight a h3, .home .home_spotlight a p, .home .home_spotlight a:hover .spotlight_info, .home .home_spotlight a:hover h3, .home .home_spotlight a:hover p {
      text-decoration: none; }
  .home .home_spotlight h3 {
    margin-top: 0;
    margin-bottom: 8px;
    padding-top: 0;
    font: 18px/24px "tablet-gothic", sans-serif;
    text-transform: none;
    color: #333; }
  .home .home_spotlight p {
    font-size: 14px;
    line-height: 24px; }
  .home .home_spotlight:hover a.btn-readmore {
    bottom: 0; }

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

.royalSlider > * {
  float: left; }

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

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

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

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

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

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

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

.rsArrow,
.rsThumbsArrow {
  cursor: pointer; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1; }

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

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

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

img.rsImg {
  max-width: none; }

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

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

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

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

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

.royalSlider > .rsContent {
  visibility: hidden; }

.rsContent {
  background-color: #836753; }

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

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

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

.rsDefault .rsArrowIcn {
  width: 43px;
  height: 50px;
  top: 50%;
  margin-top: -47px;
  position: absolute;
  cursor: pointer; }

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  background-position: 0 -114px;
  height: 47px;
  width: 43px;
  left: 20px; }
  .rsDefault.rsHor .rsArrowLeft .rsArrowIcn:hover, .rsDefault.rsHor .rsArrowLeft .rsArrowIcn.arrow-prev-hover {
    background-position: 0 -171px; }

.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  background-position: 0 0;
  height: 47px;
  width: 43px;
  right: 20px; }
  .rsDefault.rsHor .rsArrowRight .rsArrowIcn:hover, .rsDefault.rsHor .rsArrowRight .rsArrowIcn.arrow-next-hover {
    background-position: 0 -57px; }

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

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

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

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

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

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  position: absolute;
  width: 100%;
  height: 183px;
  bottom: -129px;
  background: transparent url(../images/home-slideshow-thumb-bg.jpg) repeat-x 0 bottom;
  border-bottom-color: #ccc;
  border-bottom: 1px solid rgba(221, 221, 221, 0.4); }

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

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

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

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

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

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

.rsDefault .rsThumb .arrow {
  position: absolute;
  display: none;
  bottom: 102px;
  right: 67px;
  width: 35px;
  height: 18px;
  background: url(../images/tool-social-tip.png) no-repeat 0 -2px;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  visibility: visible;
  z-index: 5; }

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

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

.rsDefault .rsTmb {
  display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .rsDefault .rsThumbsHor {
    height: 44px; }

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

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

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

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

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

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

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

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

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

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

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

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  background: url('../images/rs-default.png?1407787581') 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?1407787581') -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?1407787581');
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

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

/***************
*
*  9. Overrides/Customization
*
****************/
.has_slideshow .full-slideshow, .has_slideshow .map_holder {
  margin: -399px 0 20px 0px; }
.has_slideshow .full-slideshow {
  margin: -400px 0 38px 0px; }

.full-slideshow {
  position: relative;
  margin: 0 auto;
  height: 980px;
  height: 360px;
  background-color: #000;
  border: 0; }
  .full-slideshow .royalSlider {
    margin: -20px 0 0 -20px; }

/*-- Custom Bullets --*/
.rsDefault .rsBullets {
  bottom: 10px;
  right: 0;
  left: auto;
  height: 35px;
  background: transparent;
  padding-right: 15px;
  text-align: right; }
  .rsDefault .rsBullets.has-video {
    bottom: 42px; }

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

.rsDefault .rsBullet span {
  background: transparent url("../images/ss-bullet.png") no-repeat 0 0; }

.rsDefault .rsBullet.rsNavSelected span {
  background: transparent url("../images/ss-bullet-on.png") no-repeat 0 0; }

.spotlight_image .rsDefault {
  position: relative; }
.spotlight_image .rsGCaption {
  position: absolute;
  bottom: 12px;
  width: 660px;
  border: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75); }
  .spotlight_image .rsGCaption .rsABlock p {
    width: 100%; }

.home-slideshow {
  position: relative;
  width: 700px;
  height: 395px;
  margin: 0 auto 50px;
  background-color: #fff;
  border-bottom: 5px solid #B39C60;
  -moz-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  *zoom: 1; }
  .home-slideshow:before, .home-slideshow:after {
    content: "\0020";
    display: table; }
  .home-slideshow:after {
    clear: both; }
  .home-slideshow:before, .home-slideshow:after {
    visibility: visible;
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 12px;
    left: 0;
    width: 60%;
    height: 20%;
    max-height: 100px;
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
    .ie9 .home-slideshow:before, .ie10 .home-slideshow:before, .ie11 .home-slideshow:before, .ie9 .home-slideshow:after, .ie10 .home-slideshow:after, .ie11 .home-slideshow:after {
      display: block; }
  .home-slideshow:after {
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    right: 0;
    left: auto; }
  .home-slideshow .full-slideshow, .home-slideshow .royalSlider {
    width: 700px;
    height: 390px;
    margin: 0;
    padding: 0;
    border: 0; }
  .home-slideshow .rsContent {
    background-color: transparent;
    position: relative; }
    .home-slideshow .rsContent .rsInfo {
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      width: 100%;
      height: 75px;
      padding: 0;
      z-index: 25;
      bottom: 0;
      right: 0;
      background: transparent url('../images/pattern-black.jpg?1407787581'); }
      .home-slideshow .rsContent .rsInfo .desc {
        position: relative;
        width: 72%;
        height: 70px; }
      .home-slideshow .rsContent .rsInfo h3 {
        display: block;
        max-width: 545px;
        padding-left: 20px;
        font: 300 32px/75px "tablet-gothic-compressed", sans-serif;
        color: #398CB8;
        text-align: left;
        overflow: hidden;
        text-transform: none;
        cursor: default;
        text-transform: uppercase;
        background: transparent url('../images/pattern-black.jpg?1407787581');
        z-index: 10;
        position: relative;
        padding-top: 0; }
        .home-slideshow .rsContent .rsInfo h3.caption-small {
          font-size: 20px;
          color: #fff; }
      .home-slideshow .rsContent .rsInfo h4 {
        padding-top: 0;
        position: absolute;
        top: -32px;
        left: 0;
        height: 32px;
        display: block;
        width: auto;
        padding: 0 20px;
        background: #B39C60;
        font: 300 20px/32px "tablet-gothic-compressed", sans-serif;
        text-shadow: 0 -1px 0 #000;
        color: #fff;
        text-align: left;
        overflow: hidden;
        cursor: default;
        z-index: 0;
        text-transform: uppercase; }
        .home-slideshow .rsContent .rsInfo h4 .y {
          margin-left: -3px; }
      .home-slideshow .rsContent .rsInfo .caption_body {
        display: block;
        height: 77px;
        width: auto;
        padding-left: 0px;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        font-family: "tablet-gothic", sans-serif;
        color: #fff;
        text-align: left;
        overflow: hidden;
        cursor: default; }
        .home-slideshow .rsContent .rsInfo .caption_body p {
          display: none; }
        .home-slideshow .rsContent .rsInfo .caption_body p:first-child {
          display: block;
          font-size: 14px;
          font-weight: 400;
          line-height: 20px;
          font-family: Arial, Helvetica, sans-serif;
          color: #fff;
          padding: 0;
          margin: 0;
          cursor: default; }
        .home-slideshow .rsContent .rsInfo .caption_body h1, .home-slideshow .rsContent .rsInfo .caption_body h2, .home-slideshow .rsContent .rsInfo .caption_body h3, .home-slideshow .rsContent .rsInfo .caption_body h4, .home-slideshow .rsContent .rsInfo .caption_body h5, .home-slideshow .rsContent .rsInfo .caption_body ul, .home-slideshow .rsContent .rsInfo .caption_body ol, .home-slideshow .rsContent .rsInfo .caption_body img, .home-slideshow .rsContent .rsInfo .caption_body iframe {
          display: none; }
      .home-slideshow .rsContent .rsInfo .buttons {
        display: block;
        position: absolute;
        bottom: 17px;
        right: 20px;
        top: auto;
        height: 35px;
        width: auto;
        *zoom: 1; }
        .home-slideshow .rsContent .rsInfo .buttons:before, .home-slideshow .rsContent .rsInfo .buttons:after {
          content: "\0020";
          display: table; }
        .home-slideshow .rsContent .rsInfo .buttons:after {
          clear: both; }
        .home-slideshow .rsContent .rsInfo .buttons a, .home-slideshow .rsContent .rsInfo .buttons a:visited, .home-slideshow .rsContent .rsInfo .buttons span {
          display: block;
          float: left;
          text-indent: -9999px;
          margin: 0 5px;
          position: relative;
          width: 51px;
          height: 30px;
          -moz-transition: none;
          -o-transition: none;
          -webkit-transition: none;
          transition: none; }
          .home-slideshow .rsContent .rsInfo .buttons a.more, .home-slideshow .rsContent .rsInfo .buttons a:visited.more, .home-slideshow .rsContent .rsInfo .buttons span.more {
            background-position: 10px -602px; }
            .home-slideshow .rsContent .rsInfo .buttons a.more:hover, .home-slideshow .rsContent .rsInfo .buttons a.more.info-hover, .home-slideshow .rsContent .rsInfo .buttons a:visited.more:hover, .home-slideshow .rsContent .rsInfo .buttons a:visited.more.info-hover, .home-slideshow .rsContent .rsInfo .buttons span.more:hover, .home-slideshow .rsContent .rsInfo .buttons span.more.info-hover {
              background-position: 10px -642px; }
          .home-slideshow .rsContent .rsInfo .buttons a.tickets, .home-slideshow .rsContent .rsInfo .buttons a:visited.tickets, .home-slideshow .rsContent .rsInfo .buttons span.tickets {
            background-position: 10px -1336px; }
            .home-slideshow .rsContent .rsInfo .buttons a.tickets:hover, .home-slideshow .rsContent .rsInfo .buttons a.tickets.tickets-hover, .home-slideshow .rsContent .rsInfo .buttons a:visited.tickets:hover, .home-slideshow .rsContent .rsInfo .buttons a:visited.tickets.tickets-hover, .home-slideshow .rsContent .rsInfo .buttons span.tickets:hover, .home-slideshow .rsContent .rsInfo .buttons span.tickets.tickets-hover {
              background-position: 10px -1376px; }
            .home-slideshow .rsContent .rsInfo .buttons a.tickets:before, .home-slideshow .rsContent .rsInfo .buttons a:visited.tickets:before, .home-slideshow .rsContent .rsInfo .buttons span.tickets:before {
              top: 5px;
              left: -9px;
              position: absolute;
              content: '';
              width: 1px;
              height: 20px;
              background: #555;
              -moz-box-shadow: 1px 0 1px #222;
              -webkit-box-shadow: 1px 0 1px #222;
              box-shadow: 1px 0 1px #222; }
        .home-slideshow .rsContent .rsInfo .buttons span {
          cursor: default; }
          .home-slideshow .rsContent .rsInfo .buttons span.tickets {
            display: none; }
            .home-slideshow .rsContent .rsInfo .buttons span.tickets.soon, .home-slideshow .rsContent .rsInfo .buttons span.tickets.tba {
              display: block; }
          .home-slideshow .rsContent .rsInfo .buttons span.tba {
            display: block; }
          .home-slideshow .rsContent .rsInfo .buttons span:hover, .home-slideshow .rsContent .rsInfo .buttons span:focus {
            background-color: Arial, Helvetica, sans-serif;
            color: blue;
            cursor: default; }
    .home-slideshow .rsContent.noneventSlide .rsInfo h3 {
      max-width: 670px; }
  .home-slideshow .rsDefault {
    background: transparent; }
    .home-slideshow .rsDefault .rsSlide,
    .home-slideshow .rsDefault .rsOverflow {
      background: transparent;
      height: 390px !important; }
      .home-slideshow .rsDefault .rsSlide img.rsImg,
      .home-slideshow .rsDefault .rsOverflow img.rsImg {
        margin-top: 0 !important;
        width: 700px;
        height: 390px; }
    .home-slideshow .rsDefault .rsGCaption {
      display: none; }
  .home-slideshow .rsGCaption .rsABlock {
    padding: 0 8px; }
  .home-slideshow .rsGCaption .desc {
    position: absolute;
    width: 290px;
    height: 332px;
    z-index: 25;
    top: 30px;
    left: 22px; }
    .home-slideshow .rsGCaption .desc .date {
      display: block;
      color: #fff;
      font: 400 19px/41px Arial, Helvetica, sans-serif;
      text-align: left;
      text-transform: uppercase; }
    .home-slideshow .rsGCaption .desc .slide_title {
      display: block;
      width: 220px;
      padding-left: 10px;
      font-size: 96px;
      font-weight: 700;
      line-height: 85%;
      color: #fff;
      text-align: left;
      overflow: hidden; }
  .home-slideshow .rsGCaption .buttons {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0; }

/**************************************
Carousel
***************************************/
@keyframes buttons {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes buttons /* Safari and Chrome */ {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.carousel.horizontal {
  position: relative;
  width: 100%;
  height: 90px; }
  .carousel.horizontal .carousel_holder {
    position: relative;
    width: 1084px;
    margin: 0 auto; }
  .carousel.horizontal .prev-scroller, .carousel.horizontal .next-scroller {
    display: block;
    position: absolute;
    top: 0px;
    background: none;
    cursor: pointer;
    height: 90px;
    width: 30px; }
    .carousel.horizontal .prev-scroller:after, .carousel.horizontal .next-scroller:after {
      display: block;
      position: absolute;
      width: 30px;
      height: 90px;
      top: 0;
      content: '\f105';
      background: black;
      font-size: 34px;
      text-align: center;
      line-height: 90px;
      font-weight: normal; }
  .carousel.horizontal .prev-scroller {
    left: 0px; }
    .carousel.horizontal .prev-scroller:after {
      content: '\f104'; }
  .carousel.horizontal .next-scroller {
    right: 0px; }
  .carousel.horizontal .list_holder {
    position: relative;
    width: 1000px;
    height: 90px;
    margin: 0 auto;
    padding: 8px 0;
    overflow: hidden; }
  .carousel.horizontal ul.list {
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 1000em;
    *zoom: 1; }
    .carousel.horizontal ul.list:before, .carousel.horizontal ul.list:after {
      content: "\0020";
      display: table; }
    .carousel.horizontal ul.list:after {
      clear: both; }
    .carousel.horizontal ul.list li {
      display: block;
      position: relative;
      float: left;
      margin: 0 12px;
      padding: 0px;
      width: 175px;
      height: 80px;
      overflow: hidden;
      background: none; }

.carousel {
  width: 1100px; }

.featured_holder {
  text-align: center;
  height: 300px;
  margin: 0;
  width: 1040px;
  overflow: hidden;
  border-bottom: 1px solid #222; }
  .featured_holder .event_list {
    position: absolute;
    overflow: hidden;
    left: 0;
    width: 1050px;
    text-align: center; }
    .featured_holder .event_list > p {
      color: #fff; }
  .featured_holder #event_list_holder {
    height: 240px;
    -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: 2000%;
      height: 100%;
      position: relative;
      list-style: none;
      overflow: hidden;
      padding: 0; }
    .featured_holder #event_list_holder .entry-item {
      width: 211px;
      float: left;
      position: relative;
      padding: 0;
      margin: 0;
      height: 240px; }
      .featured_holder #event_list_holder .entry-item .entry {
        width: 192px;
        text-align: left;
        padding: 0;
        height: 230px; }
        .featured_holder #event_list_holder .entry-item .entry:before, .featured_holder #event_list_holder .entry-item .entry:after {
          visibility: visible;
          content: '';
          position: absolute;
          z-index: -1;
          bottom: 12px;
          left: 0;
          width: 60%;
          height: 20%;
          max-height: 100px;
          -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
          -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 15px 10px rgba(0, 0, 0, 0.6);
          -moz-transform: rotate(-2deg);
          -ms-transform: rotate(-2deg);
          -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg); }
          .ie9 .featured_holder #event_list_holder .entry-item .entry:before, .ie10 .featured_holder #event_list_holder .entry-item .entry:before, .ie11 .featured_holder #event_list_holder .entry-item .entry:before, .ie9 .featured_holder #event_list_holder .entry-item .entry:after, .ie10 .featured_holder #event_list_holder .entry-item .entry:after, .ie11 .featured_holder #event_list_holder .entry-item .entry:after {
            display: block; }
        .featured_holder #event_list_holder .entry-item .entry:after {
          -moz-transform: rotate(2deg);
          -ms-transform: rotate(2deg);
          -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
          right: 0;
          left: auto; }
        .featured_holder #event_list_holder .entry-item .entry:before, .featured_holder #event_list_holder .entry-item .entry:after {
          bottom: 14px; }
        .featured_holder #event_list_holder .entry-item .entry:before {
          -moz-transform: rotate(-4deg);
          -ms-transform: rotate(-4deg);
          -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg); }
        .featured_holder #event_list_holder .entry-item .entry:after {
          -moz-transform: rotate(4deg);
          -ms-transform: rotate(4deg);
          -webkit-transform: rotate(4deg);
          transform: rotate(4deg); }
        .featured_holder #event_list_holder .entry-item .entry .thumb {
          margin: 0;
          width: 192px;
          height: 105px;
          border: none; }
          .featured_holder #event_list_holder .entry-item .entry .thumb img {
            width: 192px;
            height: 105px; }
        .featured_holder #event_list_holder .entry-item .entry h4.event_title {
          font-weight: 600;
          margin-top: 10px; }
          .featured_holder #event_list_holder .entry-item .entry h4.event_title a {
            color: #398CB8; }
            .featured_holder #event_list_holder .entry-item .entry h4.event_title a:visited {
              color: #398CB8; }
            .featured_holder #event_list_holder .entry-item .entry h4.event_title a:hover {
              color: #B39C60; }
            .featured_holder #event_list_holder .entry-item .entry h4.event_title a:active {
              color: #B39C60; }
        .featured_holder #event_list_holder .entry-item .entry .info {
          z-index: 1;
          background: transparent url('../images/pattern-white.jpg?1407787581');
          width: 192px;
          height: 125px;
          border-bottom: 5px solid #B39C60;
          overflow: hidden;
          padding: 0;
          position: relative;
          -moz-box-sizing: border-box;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          -moz-transition: all 250ms linear;
          -o-transition: all 250ms linear;
          -webkit-transition: all 250ms linear;
          transition: all 250ms linear; }
          .featured_holder #event_list_holder .entry-item .entry .info .info-container {
            max-height: 110px;
            overflow: hidden;
            -moz-transition: all 250ms linear;
            -o-transition: all 250ms linear;
            -webkit-transition: all 250ms linear;
            transition: all 250ms linear; }
          .featured_holder #event_list_holder .entry-item .entry .info .buttons {
            top: auto;
            bottom: -93px;
            width: 192px;
            right: auto;
            left: 0;
            height: 93px;
            -moz-transition: all 250ms linear;
            -o-transition: all 250ms linear;
            -webkit-transition: all 250ms linear;
            transition: all 250ms linear;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            padding: 15px 18px;
            background: transparent url('../images/pattern-white.jpg?1407787581'); }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a, .featured_holder #event_list_holder .entry-item .entry .info .buttons span {
              text-indent: 0;
              width: 100%;
              height: 28px;
              border: 0;
              color: #fff;
              font: 300 16px/27px "tablet-gothic-compressed", sans-serif;
              text-shadow: 0 -1px 1px #78683F;
              text-transform: uppercase;
              letter-spacing: 0.5px;
              word-spacing: 1px;
              background-color: #B39C60;
              -moz-box-sizing: border-box;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              text-align: center;
              background-position: 25px -1256px;
              padding-left: 20px;
              margin-top: 0;
              margin-bottom: 10px; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:visited, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:visited {
                color: #fff; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:hover, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:hover {
                color: #fff; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a:active, .featured_holder #event_list_holder .entry-item .entry .info .buttons span:active {
                color: #fff; }
              .featured_holder #event_list_holder .entry-item .entry .info .buttons a.more, .featured_holder #event_list_holder .entry-item .entry .info .buttons span.more {
                padding-left: 15px;
                background-position: 35px -564px; }
            .featured_holder #event_list_holder .entry-item .entry .info .buttons a:hover {
              text-decoration: none;
              background-color: #398CB8; }
          .featured_holder #event_list_holder .entry-item .entry .info:hover {
            border-bottom-color: #398CB8; }
            .featured_holder #event_list_holder .entry-item .entry .info:hover .buttons {
              bottom: 0; }
          .featured_holder #event_list_holder .entry-item .entry .info .date {
            color: #fff;
            font: 300 16px/28px "tablet-gothic-compressed", sans-serif;
            padding-top: 0;
            background: #B39C60;
            padding: 0 15px;
            letter-spacing: 0.5px;
            word-spacing: 1px;
            text-shadow: 0 -1px 1px #78683F;
            margin-top: -1px;
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear;
            text-transform: uppercase; }
            .featured_holder #event_list_holder .entry-item .entry .info .date .y {
              margin-left: -3px; }
          .featured_holder #event_list_holder .entry-item .entry .info div.title {
            padding: 10px 15px;
            line-height: 22px; }
        .featured_holder #event_list_holder .entry-item .entry .info_overlay {
          height: 100px;
          text-align: center;
          padding: 30px 25px 25px; }
          .featured_holder #event_list_holder .entry-item .entry .info_overlay .info_row, .featured_holder #event_list_holder .entry-item .entry .info_overlay h4 {
            display: none; }
          .featured_holder #event_list_holder .entry-item .entry .info_overlay a.btn-info {
            min-width: 0; }
  .featured_holder .featured-nav {
    position: relative;
    width: 1040px;
    margin: 15px 0 0;
    height: 36px; }
    .featured_holder .featured-nav span {
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden;
      cursor: pointer;
      display: inline-block;
      margin: 0;
      -moz-transform: none;
      -ms-transform: none;
      -webkit-transform: none;
      transform: none;
      color: #fff;
      font: 300 16px/36px "tablet-gothic-compressed", sans-serif;
      padding-top: 0;
      letter-spacing: 0.5px;
      word-spacing: 1px;
      text-shadow: 0 -1px 1px #78683F;
      margin-top: -1px;
      text-transform: uppercase;
      text-align: center; }
      .featured_holder .featured-nav span.prev {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-position: 0 -1094px;
        height: 36px;
        width: 106px;
        -moz-transition: left 250ms linear;
        -o-transition: left 250ms linear;
        -webkit-transition: left 250ms linear;
        transition: left 250ms linear; }
        .featured_holder .featured-nav span.prev:hover, .featured_holder .featured-nav span.prev.prev-gold-hover {
          background-position: 0 -1140px; }
        .featured_holder .featured-nav span.prev:hover {
          left: -5px; }
      .featured_holder .featured-nav span.next {
        left: auto;
        right: 0;
        -moz-transition: right 200ms linear;
        -o-transition: right 200ms linear;
        -webkit-transition: right 200ms linear;
        transition: right 200ms linear;
        background-position: 0 -1002px;
        height: 36px;
        width: 106px; }
        .featured_holder .featured-nav span.next:hover, .featured_holder .featured-nav span.next.next-gold-hover {
          background-position: 0 -1048px; }
        .featured_holder .featured-nav span.next:hover {
          right: -5px; }
  .featured_holder .jcarousel-pagination {
    margin: 0 auto;
    position: absolute;
    width: 800px;
    bottom: 0;
    left: 120px; }
    .featured_holder .jcarousel-pagination a {
      text-indent: -9999px;
      width: 7px;
      height: 7px;
      background: #000;
      display: inline-block;
      margin: 0 3px;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%; }
      .featured_holder .jcarousel-pagination a.active, .featured_holder .jcarousel-pagination a:hover {
        background: #B39C60; }

/**CALENDARIO: A FLEXIBLE CALENDAR PLUGIN
/*-CORE STYLES: CAN INCLUDE THESE ON EVERY PROJECT-
/*-OVERRIDE IN THE CUSTOM SECTION FOR EACH INDIVIDUAL THEME -
/*-ORIGINAL: http://tympanus.net/codrops/2012/11/27/calendario-a-flexible-calendar-plugin/ -
**/
/**
 * Popover styles
 */
.calendar .modal.fade.in {
  position: absolute;
  top: 25%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); }
  .calendar .modal.fade.in .modal-body {
    min-height: 160px;
    max-height: 320px;
    padding-top: 20px; }
  .calendar .modal.fade.in .close {
    margin: 10px;
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 20;
    border: none;
    background: none; }
    .calendar .modal.fade.in .close:after {
      top: 0;
      right: -3px;
      content: '';
      position: absolute; }
    .calendar .modal.fade.in .close:before {
      z-index: -1;
      content: '';
      top: 7px;
      position: absolute;
      width: 5px;
      height: 5px;
      display: block;
      -moz-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7);
      -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7);
      box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7); }

.calendar .calendar_tooltip {
  position: absolute;
  min-height: 200px;
  z-index: 99;
  width: 180px;
  padding: 10px 10px 0;
  top: 0;
  left: 50%;
  background: transparent url('../images/pattern-black.jpg?1407787581');
  overflow: visible !important;
  display: none; }
  .calendar .calendar_tooltip .entry {
    background: transparent url('../images/pattern-white.jpg?1407787581');
    min-height: 180px;
    width: 160px; }
    .calendar .calendar_tooltip .entry:after {
      content: '';
      position: absolute;
      top: 25%;
      left: -10px;
      border-right: 10px solid #000;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent; }
  .calendar .calendar_tooltip .time {
    display: none; }
  .calendar .calendar_tooltip .date {
    color: #fff;
    font: 300 16px/28px "tablet-gothic-compressed", sans-serif;
    padding-top: 0;
    background: #B39C60;
    padding: 0 8px 0 10px;
    letter-spacing: 0.5px;
    word-spacing: 1px;
    text-shadow: 0 -1px 1px #78683F;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    text-transform: uppercase; }
    .calendar .calendar_tooltip .date .time {
      display: inline; }
  .calendar .calendar_tooltip h3 {
    padding: 10px 0; }
    .calendar .calendar_tooltip h3 a {
      display: block;
      padding: 0 8px 0 10px; }
  .calendar .calendar_tooltip h4 {
    display: none; }
  .calendar .calendar_tooltip .thumb {
    width: 160px;
    height: 87px;
    overflow: hidden;
    display: block; }
  .calendar .calendar_tooltip img {
    width: 160px; }

.calendar .overview {
  position: absolute;
  top: -50px;
  left: -16px;
  width: 995px;
  height: 50px;
  background: url(../images/girder_full.png) no-repeat; }
  .calendar .overview h1 {
    line-height: 50px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px; }

/**
 * Calendar addons
 */
#calendario .all-events-link {
  display: none;
  text-align: center;
  display: block;
  width: 150px;
  margin: 10px auto; }
#calendario .thumb {
  display: none; }
#calendario .preventLink {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/**
 * Calendario Header
 */
#calendario .cal-header {
  background: none;
  padding: 0px;
  height: 52px;
  position: relative; }
  #calendario .cal-header h2 {
    color: #333333;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 26px;
    line-height: 52px;
    margin: 0px;
    padding: 0px; }
  #calendario .cal-header .cal-controls span {
    z-index: 100;
    position: absolute;
    width: 45px;
    height: 40px;
    top: 10px;
    color: transparent;
    cursor: pointer;
    margin: 0 1px;
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3) inset;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3) inset; }
    #calendario .cal-header .cal-controls span.cal-prev {
      position: absolute;
      left: 25px;
      cursor: pointer;
      text-indent: -9999px;
      z-index: 5;
      display: block;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1; }
      #calendario .cal-header .cal-controls span.cal-prev:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
        opacity: 0.6; }
      #calendario .cal-header .cal-controls span.cal-prev:after {
        content: '';
        top: 20px;
        display: block;
        width: 0;
        height: 0;
        margin: 12px 0px 0 15px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 12px solid #333; }
    #calendario .cal-header .cal-controls span.cal-next {
      right: 29px;
      text-indent: -9999px;
      z-index: 5;
      display: block;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1; }
      #calendario .cal-header .cal-controls span.cal-next:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
        opacity: 0.6; }
      #calendario .cal-header .cal-controls span.cal-next:after {
        top: 10px;
        content: '';
        display: block;
        width: 0;
        height: 0;
        margin: 12px 0 0 18px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid #333; }

/**
 * Base Calendar - full page
 */
#calendario {
  margin: 0 auto 40px auto;
  /* IE 9 is rounding up the calc it seems */ }
  #calendario *,
  #calendario *:after,
  #calendario *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #calendario .fc-calendar-container {
    position: relative;
    *zoom: 1;
    height: auto;
    width: auto;
    padding-bottom: 10px; }
    #calendario .fc-calendar-container:before, #calendario .fc-calendar-container:after {
      content: "\0020";
      display: table; }
    #calendario .fc-calendar-container:after {
      clear: both; }
  #calendario .fc-calendar {
    width: 100%;
    height: 100%; }
  #calendario .fc-calendar .fc-head {
    height: 40px;
    line-height: 50px;
    background: none;
    color: #333333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px; }
  #calendario .fc-calendar .fc-body {
    position: relative;
    padding: 4px 0 4px 11px;
    border: none;
    width: 100%;
    height: 500px; }
  #calendario .fc-calendar .fc-row {
    width: 100%;
    border-top: none;
    border-bottom: none;
    height: 112px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
  #calendario .fc-four-rows .fc-row {
    height: 112px; }
  #calendario .fc-five-rows .fc-row {
    height: 112px; }
  #calendario .fc-six-rows .fc-row {
    height: 112px; }
  #calendario .fc-calendar .fc-row.selected {
    height: 60%; }
    #calendario .fc-calendar .fc-row.selected .date_overlay {
      display: none; }
  #calendario .fc-calendar .fc-row.highlight > div {
    background: transparent url('../images/pattern-lightgray.jpg?1407787581'); }
    #calendario .fc-calendar .fc-row.highlight > div .fc-date {
      color: #666 !important; }
    #calendario .fc-calendar .fc-row.highlight > div p {
      color: #333 !important; }
    #calendario .fc-calendar .fc-row.highlight > div a {
      color: #fff !important; }
  #calendario .fc-calendar .fc-row.selected > div {
    background: transparent url('../images/pattern-lightgray.jpg?1407787581'); }
    #calendario .fc-calendar .fc-row.selected > div.fc-content {
      background: #398CB8; }
      #calendario .fc-calendar .fc-row.selected > div.fc-content .fc-date {
        color: #fff !important; }
      #calendario .fc-calendar .fc-row.selected > div.fc-content p {
        color: #fff !important; }
      #calendario .fc-calendar .fc-row.selected > div.fc-content a {
        color: #fff !important; }
  #calendario .fc-calendar .fc-row > div {
    float: left;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: none;
    width: 13%;
    margin: 5px;
    border: 1px solid #dddddd;
    background: transparent url('../images/pattern-white.jpg?1407787581'); }
    #calendario .fc-calendar .fc-row > div .date_overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 10; }
  #calendario .fc-calendar .fc-head > div {
    float: left;
    height: 100%;
    width: 14.1%;
    position: relative; }
  #calendario .ie9 .fc-calendar .fc-row > div,
  #calendario .ie9 .fc-calendar .fc-head > div {
    width: 14.2%; }
  #calendario .fc-calendar .fc-head > div {
    text-align: center; }
  #calendario .fc-calendar .fc-row > div > span.fc-date {
    font-family: "tablet-gothic-compressed", sans-serif;
    position: absolute;
    width: 25px;
    height: 20px;
    top: 5px;
    left: 5px;
    color: #333333;
    font-size: 15px;
    text-align: left;
    margin: 0px; }
  #calendario .fc-calendar .fc-row > div > span.fc-weekday {
    padding-left: 5px;
    display: none; }
  #calendario .fc-calendar .fc-row > div.fc-out {
    opacity: 0.6; }
  #calendario .fc-calendar .fc-row:last-child {
    border-bottom: none; }
  #calendario .fc-content {
    background: #333; }
    #calendario .fc-content .event_item_wrapper {
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear;
      visibility: hidden; }
  #calendario .fc-row.selected .fc-content {
    background: #398CB8; }
    #calendario .fc-row.selected .fc-content .event_item_wrapper {
      visibility: visible; }
    #calendario .fc-row.selected .fc-content .preventLink {
      display: none; }
    #calendario .fc-row.selected .fc-content:before {
      display: none; }
    #calendario .fc-row.selected .fc-content:after {
      display: none; }
  #calendario .fc-content, #calendario .fc-row > div.fc-content, #calendario .fc-row.highlight > div.fc-content {
    background: #398CB8;
    cursor: pointer;
    padding: 25px 5px 25px 10px; }
    #calendario .fc-content:after, #calendario .fc-row > div.fc-content:after, #calendario .fc-row.highlight > div.fc-content:after {
      z-index: 98;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      .ie9 #calendario .fc-content:after, .ie9 #calendario .fc-row > div.fc-content:after, .ie9 #calendario .fc-row.highlight > div.fc-content:after {
        filter: none; }
    #calendario .fc-content span.fc-date, #calendario .fc-row > div.fc-content span.fc-date, #calendario .fc-row.highlight > div.fc-content span.fc-date {
      color: white !important;
      text-shadow: none;
      z-index: 3; }
    #calendario .fc-content .entry, #calendario .fc-row > div.fc-content .entry, #calendario .fc-row.highlight > div.fc-content .entry {
      padding: 0 0 5px;
      margin-bottom: 10px;
      border-bottom: 1px solid #21516a; }
      #calendario .fc-content .entry .date, #calendario .fc-content .entry .buttons, #calendario .fc-row > div.fc-content .entry .date, #calendario .fc-row > div.fc-content .entry .buttons, #calendario .fc-row.highlight > div.fc-content .entry .date, #calendario .fc-row.highlight > div.fc-content .entry .buttons {
        display: none; }
      #calendario .fc-content .entry .time, #calendario .fc-row > div.fc-content .entry .time, #calendario .fc-row.highlight > div.fc-content .entry .time {
        font: 600 12px/16px "tablet-gothic", sans-serif; }
      #calendario .fc-content .entry h4, #calendario .fc-row > div.fc-content .entry h4, #calendario .fc-row.highlight > div.fc-content .entry h4 {
        display: none; }
      #calendario .fc-content .entry h3, #calendario .fc-row > div.fc-content .entry h3, #calendario .fc-row.highlight > div.fc-content .entry h3 {
        padding-top: 0;
        margin-bottom: 0;
        font: 15px/19px "tablet-gothic", sans-serif;
        word-spacing: 0;
        letter-spacing: 0;
        text-transform: none; }
        #calendario .fc-content .entry h3 a, #calendario .fc-row > div.fc-content .entry h3 a, #calendario .fc-row.highlight > div.fc-content .entry h3 a {
          color: #fff;
          text-decoration: none; }
          #calendario .fc-content .entry h3 a:visited, #calendario .fc-row > div.fc-content .entry h3 a:visited, #calendario .fc-row.highlight > div.fc-content .entry h3 a:visited {
            color: #fff; }
          #calendario .fc-content .entry h3 a:hover, #calendario .fc-row > div.fc-content .entry h3 a:hover, #calendario .fc-row.highlight > div.fc-content .entry h3 a:hover {
            color: #B39C60; }
          #calendario .fc-content .entry h3 a:active, #calendario .fc-row > div.fc-content .entry h3 a:active, #calendario .fc-row.highlight > div.fc-content .entry h3 a:active {
            color: #B39C60; }
    #calendario .fc-content .event_item_wrapper:last-child .entry, #calendario .fc-row > div.fc-content .event_item_wrapper:last-child .entry, #calendario .fc-row.highlight > div.fc-content .event_item_wrapper:last-child .entry {
      border-bottom: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0; }

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80); }

.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none; }

.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%; }

.modal.fade.in {
  top: 50%; }

.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee; }

.modal-header .close {
  margin-top: 2px; }

.modal-header h3 {
  margin: 0;
  line-height: 30px; }

.modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px; }

.modal-form {
  margin-bottom: 0; }

.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  *zoom: 1; }

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
  line-height: 0; }

.modal-footer:after {
  clear: both; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.banner {
  position: relative; }

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

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

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

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

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

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

.banner .banner_list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .banner .banner_list li {
    position: relative;
    padding: 0;
    margin-bottom: 17px;
    overflow: hidden;
    width: 320px;
    height: 120px;
    border-bottom: 5px solid #B39C60;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); }
    .banner .banner_list li:hover {
      border-bottom-color: #398CB8; }
    .banner .banner_list li:first-child {
      margin-bottom: 18px; }
  .banner .banner_list img {
    min-width: 320px;
    height: 115px; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content img[align=left], .content img[align=left].gh-image {
    float: left;
    margin: 0 15px 15px 0;
    padding: 6px; }
  .content img[align=right], .content img[align=right].gh-image {
    float: right;
    margin: 0 0 15px 15px;
    padding: 6px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content .image-left {
    clear: both; }
    .content .image-left h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-left img {
      width: 175px;
      height: 130px;
      padding: 6px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both; }
    .content .image-right h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px; }
    .content .image-right p {
      line-height: 140%; }
  .content .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 {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 2px solid black; }
    .content .overview p {
      font-size: 16px;
      padding: 0 0 15px;
      line-height: 130%;
      color: black; }
    .content .overview a, .content .overview a:link, .content .overview a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus, .content .overview a:link:hover, .content .overview a:link:focus, .content .overview a:visited:hover, .content .overview a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid black; }
    .content .baseline p {
      font-size: 16px;
      padding: 10px 0 15px;
      line-height: 130%;
      color: black; }
  .content table {
    margin: 0 0 15px;
    position: relative;
    width: 100%; }
    .content table tr td, .content table tr th {
      padding: 10px 0;
      border-bottom: 1px solid #ddd; }
    .content table.noborders td, .content table.noborders th {
      border-bottom: 0; }

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

.paging {
  margin: 5px 0 0;
  color: black;
  position: relative;
  padding: 0px;
  border-bottom: 1px solid black;
  height: 38px;
  font-size: 12px;
  line-height: 38px; }
  .paging .record {
    width: 100px;
    float: left;
    color: black;
    line-height: 19px;
    height: 18px;
    padding: 6px 0 0 10px;
    font-weight: bold; }
  .paging .pages {
    margin: 7px 0 0;
    float: left;
    width: auto;
    text-align: left; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      background: url(../images/subnav_swatch.png) repeat left top;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      color: black;
      height: 18px;
      float: left;
      line-height: 18px;
      margin: 0 1px 0 3px;
      text-align: center;
      width: 18px;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        color: white;
        background-color: blue;
        text-decoration: none; }
    .paging .pages strong {
      color: white;
      background-color: blue;
      text-decoration: none; }
  .paging .links {
    width: 200px;
    float: right;
    padding: 6px 0 0; }
    .paging .links a, .paging .links a:link, .paging .links a:visited {
      color: black;
      text-decoration: none;
      font-weight: bold; }
      .paging .links a:hover, .paging .links a:focus, .paging .links a:link:hover, .paging .links a:link:focus, .paging .links a:visited:hover, .paging .links a:visited:focus {
        color: black;
        text-decoration: underline; }
    .paging .links a.rss, .paging .links a:link.rss, .paging .links a:visited.rss {
      display: block;
      padding: 0;
      float: left;
      background: url(../images/icons_paging.png) no-repeat 0 -31px;
      width: auto;
      height: 18px;
      padding: 0 18px 0 20px;
      text-transform: none;
      line-height: 19px; }
      .paging .links a.rss:hover, .paging .links a.rss:focus, .paging .links a:link.rss:hover, .paging .links a:link.rss:focus, .paging .links a:visited.rss:hover, .paging .links a:visited.rss:focus {
        background-position: 0 -111px; }
    .paging .links a.print, .paging .links a.print:link, .paging .links a.print:visited {
      display: block;
      padding: 0;
      float: left;
      background: url(../images/icon_print.png) no-repeat 0 3px;
      width: auto;
      line-height: 19px;
      text-indent: 0px;
      height: 18px;
      padding: 0 18px 0 20px;
      text-transform: none; }
      .paging .links a.print:hover, .paging .links a.print:focus, .paging .links a.print:link:hover, .paging .links a.print:link:focus, .paging .links a.print:visited:hover, .paging .links a.print:visited:focus {
        background-position: 0 -15px; }
    .paging .links a.full_list, .paging .links a.full_list:link, .paging .links a.full_list:visited {
      display: block;
      padding: 0 0 0 20px;
      float: left;
      background: url(../images/icons_paging.png) no-repeat 0 2px;
      line-height: 19px;
      text-transform: none;
      margin: 0; }
      .paging .links a.full_list:hover, .paging .links a.full_list:focus, .paging .links a.full_list:link:hover, .paging .links a.full_list:link:focus, .paging .links a.full_list:visited:hover, .paging .links a.full_list:visited:focus {
        background-position: 0 -78px; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 20px;
  padding: 0;
  position: relative; }
  .link ul.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font: 600 16px/120% "tablet-gothic", sans-serif; }
    .link ul.list li {
      min-height: 40px;
      padding: 0;
      margin: 0 0 5px;
      background: none; }
    .link ul.list p {
      padding: 8px 0 0 50px;
      font-size: 14px;
      font-style: italic; }
    .link ul.list a {
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      min-height: 40px;
      display: block;
      color: #333;
      text-decoration: none;
      padding: 10px 8px 8px 50px;
      background-color: rgba(0, 0, 0, 0.05);
      position: relative;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      .link ul.list a:visited {
        color: #333; }
      .link ul.list a:hover {
        color: #398CB8; }
      .link ul.list a:active {
        color: #398CB8; }
      .link ul.list a:before {
        content: "\f0c1";
        width: 40px;
        height: 100%;
        background: #398CB8;
        position: absolute;
        top: 0;
        left: 0;
        font-family: FontAwesome;
        color: #fff;
        font-size: 16px;
        text-align: center;
        line-height: 40px; }
      .link ul.list a.image:before {
        content: "\f030"; }
      .link ul.list a.pdf:before {
        content: "\f0f6"; }
      .link ul.list a.email:before {
        content: "\f1d9"; }
      .link ul.list a:hover {
        background-color: rgba(0, 0, 0, 0.1); }

/* @group FAQ */
.faq {
  margin: 0 0 20px;
  padding: 0;
  position: relative;
  clear: both; }
  .faq dt {
    cursor: pointer;
    padding: 0;
    margin: 5px 0 0;
    background: rgba(0, 0, 0, 0.05);
    overflow: auto;
    min-height: 40px;
    position: relative;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .faq dt:hover {
      background: rgba(0, 0, 0, 0.1); }
      .faq dt:hover a, .faq dt:hover p {
        color: #398CB8; }
    .faq dt:before {
      content: "\f067";
      width: 40px;
      height: 40px;
      background: #398CB8;
      position: absolute;
      top: 0;
      left: 0;
      font-family: FontAwesome;
      color: #fff;
      font-size: 16px;
      text-align: center;
      line-height: 40px; }
    .faq dt p {
      font: 600 16px/120% "tablet-gothic", sans-serif;
      padding: 8px 0 8px 48px;
      margin: 0; }
    .faq dt a, .faq dt a:hover {
      text-decoration: none; }
    .faq dt.active, .faq dt.open {
      background: rgba(0, 0, 0, 0.1); }
      .faq dt.active:before, .faq dt.open:before {
        content: "\f068"; }
      .faq dt.active p, .faq dt.open p {
        color: #398CB8; }
  .faq dd {
    overflow: hidden;
    padding: 8px 0 8px 48px;
    background: rgba(0, 0, 0, 0.05); }
    .faq dd p {
      font-size: 14px; }
  .faq ul ul {
    padding-top: 5px;
    margin-bottom: 0;
    border: none; }
  .faq ul li {
    font-size: 14px; }
    .faq ul li li {
      border-bottom: none; }

/* @end */
/* ----------------------------------------------------------------------------
=Sidebar Subnav
----------------------------------------------------------------------------- */
.subnav {
  position: relative;
  padding: 0; }
  .subnav ul {
    list-style: none;
    list-style-image: none;
    padding: 15px 0;
    margin: 0 auto; }
    .subnav ul li {
      margin: 0;
      padding: 0; }
      .subnav ul li.section {
        margin-bottom: 5px;
        border-bottom: 1px solid #fff; }
    .subnav ul a {
      display: block;
      padding: 5px 0 5px 0;
      color: #333;
      position: relative; }
      .subnav ul a:visited {
        color: #333; }
      .subnav ul a:hover {
        color: #398CB8; }
      .subnav ul a:active {
        color: #398CB8; }
      .subnav ul a.active {
        color: #398CB8; }
        .subnav ul a.active:visited {
          color: #398CB8; }
        .subnav ul a.active:hover {
          color: #398CB8; }
        .subnav ul a.active:active {
          color: #398CB8; }
      .subnav ul a.section {
        font: 600 22px/130% "tablet-gothic-compressed", sans-serif;
        text-transform: uppercase;
        color: #333;
        text-shadow: 0 -1px 0 #fff;
        border-bottom: 1px solid #DCDCDC;
        padding: 5px 0 8px;
        letter-spacing: 0.5px;
        word-spacing: 2px; }
        .subnav ul a.section:visited {
          color: #333; }
        .subnav ul a.section:hover {
          color: #398CB8; }
        .subnav ul a.section:active {
          color: #398CB8; }
        .subnav ul a.section:before {
          display: none; }
      .subnav ul a:hover {
        text-decoration: none; }
    .subnav ul ul {
      display: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
body#events {
  height: auto !important; }

.events_container {
  padding-top: 8px; }
  .events_container .overview {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 20px;
    position: relative; }
    .events_container .overview h1 {
      border-bottom: 0;
      font-weight: 600;
      margin-bottom: 0;
      padding-bottom: 0;
      text-shadow: 0 1px 0 #fff;
      font-size: 22px; }
    .events_container .overview span.event_category {
      font-size: 12px;
      color: #666; }
    .events_container .overview a.rss {
      position: absolute;
      top: 5px;
      right: 0;
      font-size: 22px;
      color: #ccc; }
      .events_container .overview a.rss:visited {
        color: #ccc; }
      .events_container .overview a.rss:hover {
        color: #398CB8; }
      .events_container .overview a.rss:active {
        color: #398CB8; }
      .events_container .overview a.rss:hover {
        text-decoration: none; }

.event_filter {
  margin-top: 10px; }
  .event_filter h3.filter_by {
    font: 600 22px/130% "tablet-gothic-compressed", sans-serif;
    text-transform: uppercase;
    color: #333;
    text-shadow: 0 -1px 0 #fff;
    border-bottom: 1px solid #DCDCDC;
    padding: 5px 0 15px;
    margin-bottom: 0; }
  .event_filter ul.venue_checkbox_container {
    margin: 0 0 0;
    padding: 10px 0 15px;
    list-style: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #DCDCDC; }
    .event_filter ul.venue_checkbox_container li {
      margin: 0;
      padding: 5px 4px; }
    .event_filter ul.venue_checkbox_container label {
      position: relative;
      padding-left: 8px;
      cursor: pointer; }
      .event_filter ul.venue_checkbox_container label:before {
        content: '';
        position: absolute;
        top: 3px;
        left: -25px;
        width: 18px;
        height: 18px;
        border: 1px solid #ccc;
        -moz-box-shadow: 0 1px 1px #fff;
        -webkit-box-shadow: 0 1px 1px #fff;
        box-shadow: 0 1px 1px #fff; }
  .event_filter input[type=checkbox] {
    visibility: hidden;
    width: 20px; }
  .event_filter input[type=checkbox]:checked + label:after, .event_filter input[type=checkbox]:hover + label:after {
    content: "\f00c";
    font-family: FontAwesome;
    color: #000;
    position: absolute;
    top: 2px;
    left: -23px;
    width: 18px;
    height: 18px; }

span.btn-showevents {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font: 400 22px/40px "tablet-gothic-compressed", sans-serif;
  color: #B39C60;
  border: 1px solid #C9C9C9;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  margin-bottom: -30px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  clear: both;
  position: relative; }
  span.btn-showevents:hover {
    color: #398CB8;
    background: rgba(0, 0, 0, 0.1); }
  span.btn-showevents.inactive {
    display: none; }
  span.btn-showevents .fa-spinner {
    display: none; }
  span.btn-showevents.spinning .fa-spinner {
    display: inline-block;
    position: absolute;
    left: 262px;
    top: 9px; }

/* Event Search */
.m-search-form-light form {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid #fff; }
  .m-search-form-light form input {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font: 300 14px/20px "tablet-gothic", sans-serif;
    color: #333;
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    padding: 10px;
    background: url('../images/pattern-white.jpg?1407787581');
    -webkit-appearance: none; }
    .m-search-form-light form input::-webkit-input-placeholder {
      color: #333; }
    .m-search-form-light form input:-moz-placeholder {
      color: #333; }
    .m-search-form-light form input:-ms-input-placeholder {
      color: #333; }
    .m-search-form-light form input:focus {
      outline: none;
      -webkit-appearance: none; }
  .m-search-form-light form button {
    background: none;
    border: none;
    position: absolute;
    top: 20px;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 18px;
    color: #B39C60;
    display: block; }
    .m-search-form-light form button:hover {
      color: #398CB8; }

.event_list {
  position: relative; }
  .event_list .list {
    padding: 20px 0 0;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px; }
    .event_list .list .loading {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.5);
      z-index: -1; }
      .event_list .list .loading.active {
        z-index: 0; }
  .event_list .entry {
    padding: 20px 0;
    position: relative; }
    .event_list .entry.inactive, .event_list .entry.hide {
      display: none; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .date {
      margin-bottom: 5px; }
      .event_list .entry .date h3, .event_list .entry .date .at {
        margin: 0;
        padding: 0;
        display: inline-block; }
      .event_list .entry .date h3 {
        font-size: 16px; }
        .event_list .entry .date h3 span.y, .event_list .entry .date h3 span.t {
          margin-left: -4px; }
        .event_list .entry .date h3.venue {
          color: #777; }
      .event_list .entry .date .at {
        width: 18px;
        height: 18px;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: #bbb;
        color: #fff;
        text-align: center;
        margin: 0 5px;
        font: 300 italic 14px/16px "tablet-gothic-compressed", sans-serif; }
    .event_list .entry .info.span4, .event_list .entry .info.span5 {
      min-height: 105px;
      width: 455px;
      border-bottom: 1px solid #DCDCDC;
      margin-left: 20px;
      position: relative; }
      .event_list .entry .info.span4.span4, .event_list .entry .info.span5.span4 {
        width: 469px; }
      .event_list .entry .info.span4 h3.event_title, .event_list .entry .info.span5 h3.event_title {
        margin: 0;
        padding: 0;
        font-size: 28px; }
        .event_list .entry .info.span4 h3.event_title a, .event_list .entry .info.span5 h3.event_title a {
          display: block;
          color: #333; }
          .event_list .entry .info.span4 h3.event_title a:visited, .event_list .entry .info.span5 h3.event_title a:visited {
            color: #333; }
          .event_list .entry .info.span4 h3.event_title a:hover, .event_list .entry .info.span5 h3.event_title a:hover {
            color: #398CB8; }
          .event_list .entry .info.span4 h3.event_title a:active, .event_list .entry .info.span5 h3.event_title a:active {
            color: #398CB8; }
          .event_list .entry .info.span4 h3.event_title a:hover, .event_list .entry .info.span5 h3.event_title a:hover {
            text-decoration: none; }
    .event_list .entry .thumb {
      height: 105px;
      overflow: hidden;
      border: 1px solid #B39C60; }
      .event_list .entry .thumb img {
        width: 100%; }
    .event_list .entry .buttons {
      position: absolute;
      top: auto;
      bottom: -1px;
      right: -40px;
      width: 35px;
      height: auto; }
      .event_list .entry .buttons a, .event_list .entry .buttons span {
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        display: block;
        border: 1px solid #DCDCDC;
        margin-top: 3px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        .event_list .entry .buttons a.tickets, .event_list .entry .buttons span.tickets {
          background-position: 0 -1294px;
          height: 32px;
          width: 34px; }
        .event_list .entry .buttons a.soon, .event_list .entry .buttons span.soon {
          background-position: 0 -1294px;
          height: 32px;
          width: 34px; }
        .event_list .entry .buttons a.tba, .event_list .entry .buttons span.tba {
          background-position: 0 -1294px;
          height: 32px;
          width: 34px; }
        .event_list .entry .buttons a.more, .event_list .entry .buttons span.more {
          background-position: 0 -476px;
          height: 34px;
          width: 34px; }
          .event_list .entry .buttons a.more:hover, .event_list .entry .buttons a.more.info-gray-hover, .event_list .entry .buttons span.more:hover, .event_list .entry .buttons span.more.info-gray-hover {
            background-position: 0 -520px; }
        .event_list .entry .buttons a.ical, .event_list .entry .buttons span.ical {
          background-position: 0 -228px;
          height: 34px;
          width: 34px; }
        .event_list .entry .buttons a.tickets, .event_list .entry .buttons a.soon, .event_list .entry .buttons a.tba, .event_list .entry .buttons span.tickets, .event_list .entry .buttons span.soon, .event_list .entry .buttons span.tba {
          background-color: #B39C60;
          border: 0; }
        .event_list .entry .buttons a.more:hover, .event_list .entry .buttons span.more:hover {
          background-color: #398CB8;
          border-color: #398CB8; }
      .event_list .entry .buttons span {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
        opacity: 0.7; }
        .event_list .entry .buttons span.ical {
          filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
          opacity: 1;
          cursor: pointer; }
      .event_list .entry .buttons a.ical.active, .event_list .entry .buttons a.ical:hover, .event_list .entry .buttons span.ical.active, .event_list .entry .buttons span.ical:hover {
        border-color: #398CB8;
        background-color: #398CB8;
        width: 34px;
        height: 34px;
        background-position: 0 -272px; }
      .event_list .entry .buttons a.tickets:hover, .event_list .entry .buttons a.soon:hover, .event_list .entry .buttons a.tba:hover {
        background-color: #398CB8; }
    .event_list .entry .showing_dates {
      list-style: none;
      width: 160px;
      margin: 0;
      padding: 0;
      position: absolute;
      right: 10px;
      bottom: 50%;
      -moz-transform: translateY(50%);
      -ms-transform: translateY(50%);
      -webkit-transform: translateY(50%);
      transform: translateY(50%);
      display: none;
      z-index: 99; }
      .event_list .entry .showing_dates:after {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -9px;
        right: -8px;
        border-left: 8px solid #398CB8;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        visibility: visible; }
      .event_list .entry .showing_dates li {
        margin: 0;
        padding: 0;
        font-size: 12px;
        background-color: #398CB8; }
        .event_list .entry .showing_dates li:hover {
          background-color: #B39C60; }
        .event_list .entry .showing_dates li span.day {
          display: none; }
        .event_list .entry .showing_dates li a.ical {
          margin-right: 5px;
          display: block;
          float: left;
          text-indent: -9999px;
          overflow: hidden;
          background-position: 0 -272px;
          height: 32px;
          width: 32px;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
        .event_list .entry .showing_dates li a.showing_link {
          text-decoration: none;
          display: block;
          line-height: 32px;
          color: #fff; }
          .event_list .entry .showing_dates li a.showing_link:visited {
            color: #fff; }
          .event_list .entry .showing_dates li a.showing_link:hover {
            color: #fff; }
          .event_list .entry .showing_dates li a.showing_link:active {
            color: #fff; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
#events.detail .thumb img, .team_detail .thumb img {
  border: 1px solid #B39C60;
  width: 100%; }

#events.detail #column_1 {
  min-height: 750px;
  position: relative; }
  #events.detail #column_1 .main_column {
    padding: 20px; }
#events.detail .details ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  #events.detail .details ul label {
    display: block;
    font-weight: 600; }
  #events.detail .details ul li {
    font-size: 14px;
    padding: 15px 0 12px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ccc; }
    #events.detail .details ul li p {
      font-size: 14px;
      line-height: 130%;
      margin-bottom: 0; }
    #events.detail .details ul li a {
      font-size: 12px; }
    #events.detail .details ul li:first-child {
      border-top: 0; }
    #events.detail .details ul li:last-child {
      border-bottom: 0; }
#events.detail .details .ticket_info {
  display: block;
  margin-top: 10px; }
#events.detail .addthis_toolbox {
  width: 245px;
  margin-top: 10px; }
#events.detail .ticket_large {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  z-index: 99; }
  #events.detail .ticket_large a, #events.detail .ticket_large span {
    height: 60px;
    font: 400 28px/60px "tablet-gothic-compressed", sans-serif;
    background-color: rgba(57, 140, 184, 0.9);
    background-position: 15px -1186px;
    padding: 0 20px 0 75px;
    display: block;
    color: #fff;
    text-transform: uppercase; }
    #events.detail .ticket_large a:visited, #events.detail .ticket_large span:visited {
      color: #fff; }
    #events.detail .ticket_large a:hover, #events.detail .ticket_large span:hover {
      color: #fff; }
    #events.detail .ticket_large a:active, #events.detail .ticket_large span:active {
      color: #fff; }
  #events.detail .ticket_large a {
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    #events.detail .ticket_large a:hover {
      text-decoration: none;
      background-color: #2d6e91; }

.event_detail .event_overview {
  position: relative;
  z-index: 0; }
  .event_detail .event_overview h2.date {
    padding-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 110%; }
    .event_detail .event_overview h2.date .y {
      margin-left: -5px; }
  .event_detail .event_overview h1 {
    padding-right: 190px; }
.event_detail .showings, .event_detail .fanconnect {
  width: 350px; }
  .event_detail .showings h3, .event_detail .fanconnect h3 {
    font-weight: 600;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #DCDCDC; }
.event_detail .showings_list {
  margin-bottom: 20px; }
  .event_detail .showings_list ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .event_detail .showings_list ul li {
      margin: 0 0 5px;
      padding: 0;
      height: 32px;
      background: rgba(0, 0, 0, 0.05);
      font-size: 12px;
      line-height: 32px; }
      .event_detail .showings_list ul li .time {
        position: relative;
        font-weight: 600;
        padding-left: 13px; }
        .event_detail .showings_list ul li .time:before {
          position: absolute;
          top: 8px;
          left: 3px;
          width: 3px;
          height: 3px;
          background: #333;
          content: ''; }
  .event_detail .showings_list a.ical {
    margin-right: 10px;
    display: block;
    float: left;
    text-indent: -9999px;
    overflow: hidden;
    background-color: #398CB8;
    background-position: 0 -272px;
    height: 32px;
    width: 32px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .event_detail .showings_list a.ical:hover {
      background-color: #2d6e91; }
.event_detail .related_links.link ul.list li {
  min-height: 32px; }
.event_detail .related_links.link ul.list a {
  padding: 6px 8px 6px 40px;
  min-height: 32px;
  font: 12px/150% "tablet-gothic", sans-serif;
  text-transform: none;
  letter-spacing: 0; }
.event_detail .related_links.link ul.list a:before {
  width: 32px;
  height: 100%;
  font-size: 15px;
  line-height: 32px; }

.buttons {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 54px;
  height: 22px; }
  .buttons a {
    display: block;
    width: 22px;
    height: 22px;
    text-indent: -5000px;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
  .buttons span {
    display: block;
    width: 22px;
    height: 22px;
    text-indent: -5000px;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    cursor: default; }
    .buttons span.tickets {
      background-position: 0 -154px; }
      .buttons span.tickets:hover {
        background-position: 0 -154px; }
    .buttons span.soon {
      background-position: 0 -154px; }
      .buttons span.soon:hover {
        background-position: 0 -154px; }

a.btn-social {
  margin-right: 20px;
  font: 600 15px/32px "tablet-gothic", sans-serif;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear; }
  a.btn-social:visited {
    color: #333; }
  a.btn-social:hover {
    color: #398CB8; }
  a.btn-social:active {
    color: #398CB8; }
  a.btn-social i {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    background-color: #B39C60;
    color: #fff;
    margin-right: 5px;
    font-size: 20px;
    padding-left: 5px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    a.btn-social i:visited {
      color: #fff; }
    a.btn-social i:hover {
      color: #fff; }
    a.btn-social i:active {
      color: #fff; }
  a.btn-social:hover i {
    background-color: #398CB8; }

.seating {
  position: relative;
  display: block;
  margin: 0; }
  .seating .seating_charts .entry {
    width: 32%;
    float: left;
    padding: 8px;
    margin-bottom: 20px;
    margin-left: 14px;
    height: 280px;
    background: transparent url('../images/pattern-black.jpg?1407787581');
    border-bottom: 5px solid #B39C60;
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.7); }
    .seating .seating_charts .entry.first {
      margin-left: 0;
      clear: both; }
    .seating .seating_charts .entry.last {
      float: right;
      margin-left: 0; }
    .seating .seating_charts .entry .title {
      margin: 10px 0;
      height: 24px;
      overflow: hidden; }
      .seating .seating_charts .entry .title a {
        text-decoration: none; }
    .seating .seating_charts .entry .thumb {
      line-height: 180px;
      background: #fff;
      text-align: center; }
    .seating .seating_charts .entry img {
      max-width: 210px;
      max-height: 180px;
      vertical-align: middle; }
    .seating .seating_charts .entry .links a {
      width: 46%;
      text-align: center;
      display: block;
      clear: none;
      float: left;
      height: 30px;
      font: 300 16px/30px "tablet-gothic-compressed", sans-serif;
      background: #B39C60;
      text-transform: uppercase;
      color: #fff;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear;
      text-decoration: none; }
      .seating .seating_charts .entry .links a:visited {
        color: #fff; }
      .seating .seating_charts .entry .links a:hover {
        color: #fff; }
      .seating .seating_charts .entry .links a:active {
        color: #fff; }
      .seating .seating_charts .entry .links a:hover {
        background: #398CB8; }
      .seating .seating_charts .entry .links a:first-child {
        margin-right: 10px; }

/**
 * 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;
  margin-top: -1px; }

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

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list .list {
  padding-top: 0; }
.news_list .entry .info.span5 {
  margin-left: 0;
  width: 680px; }
  .news_list .entry .info.span5 h3.event_title {
    padding-bottom: 8px; }
  .news_list .entry .info.span5 .date h3 {
    font-weight: 600; }
.news_list .entry h4.news_tagline {
  color: #777;
  font-size: 16px; }
.news_list .entry p {
  font-size: 14px; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail .event_overview {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 15px; }
  .news_detail .event_overview h1 {
    padding-right: 0;
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 5px; }
  .news_detail .event_overview h4 {
    color: #333;
    padding-top: 0; }
.news_detail .description {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 20px; }

.contest_list .entry .span4.info {
  width: 395px; }
.contest_list .entry .buttons {
  right: -110px;
  width: 100px;
  margin-top: 5px; }
  .contest_list .entry .buttons a, .contest_list .entry .buttons a.more {
    padding-right: 6px;
    text-indent: 0;
    display: block;
    width: 100px;
    height: 33px;
    color: #bbb;
    font: 16px/32px "tablet-gothic-compressed", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center; }
    .contest_list .entry .buttons a:visited, .contest_list .entry .buttons a.more:visited {
      color: #bbb; }
    .contest_list .entry .buttons a:hover, .contest_list .entry .buttons a.more:hover {
      color: #398CB8; }
    .contest_list .entry .buttons a:active, .contest_list .entry .buttons a.more:active {
      color: #398CB8; }
    .contest_list .entry .buttons a i, .contest_list .entry .buttons a.more i {
      padding: 0 5px 0;
      font-size: 18px; }
  .contest_list .entry .buttons a.more {
    padding-right: 0;
    padding-left: 17px; }

.contest_detail h2.date {
  margin: 0;
  padding-top: 0; }
.contest_detail .event_list .list {
  padding: 0; }

#map_canvas .map_form {
  color: #222;
  font-size: 11px; }

#map_canvas .map_form label {
  width: auto;
  font-style: italic;
  font-weight: normal;
  font-size: 10px;
  padding-top: 5px;
  color: #222;
  margin: 0 0 4px; }

#map_canvas .map_form input {
  border: 1px solid #ccc;
  height: 14px;
  line-height: 14px;
  padding: 3px;
  float: left;
  color: #222; }

#map_canvas .map_form .submit {
  height: 22px;
  line-height: 14px;
  padding: 3px;
  color: #222; }

#branding.content_map {
  position: absolute;
  top: 0;
  z-index: 1; }
  .slide_map_holder.map_active #branding.content_map {
    z-index: 100; }

.slide_map_holder {
  height: 395px;
  position: relative; }
  .slide_map_holder .map_toggle_button {
    position: absolute;
    top: 300px;
    right: -15px;
    width: 60px;
    height: 80px;
    padding: 15px;
    padding-top: 0;
    cursor: pointer;
    text-indent: -10000px;
    z-index: 110; }
    .slide_map_holder .map_toggle_button:hover {
      background-position: center -110px; }
    .slide_map_holder .map_toggle_button.button_album {
      background-position: center -220px; }
      .slide_map_holder .map_toggle_button.button_album:hover {
        background-position: center -330px; }
  .slide_map_holder .address {
    position: absolute;
    bottom: 50px;
    display: none;
    color: #fff;
    letter-spacing: 1px;
    font: italic 1.3em/150% Georgia, "Times New Roman", Times, serif;
    padding: 0 8px; }
  .slide_map_holder.map_active .address {
    display: block; }

.map_holder {
  height: 395px;
  width: 700px;
  color: #222;
  font-size: 11px;
  margin: 0 0 0 0px;
  background: #CCC;
  position: relative; }
  .map_holder .map {
    width: 100%;
    height: 100%; }

.map_window {
  width: 400px; }
  .map_window .info {
    border-bottom: 2px solid #ddd;
    padding: 0 0 8px;
    margin: 0 0 12px; }
    .map_window .info h4 {
      color: #333;
      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%;
      color: #333; }
  .map_window .desc img {
    float: left;
    margin: 0 15px 0 0;
    width: 120px;
    height: auto; }
  .map_window .desc p {
    padding: 0;
    margin: 0; }
  .map_window .directions {
    display: none;
    padding: 4px 0 0 0; }
    .map_window .directions label {
      display: block;
      font-size: 12px;
      margin: 0 0 8px; }
    .map_window .directions input {
      border: 1px solid #999;
      padding: 7px 3px;
      margin: 0;
      width: 66%;
      font-size: 12px;
      color: #333; }
    .map_window .directions form button {
      float: right;
      display: block;
      border: none;
      height: 30px;
      width: auto;
      padding: 0 15px;
      margin: 0 0 15px 0;
      text-align: left;
      position: relative;
      background: #398CB8;
      color: #fff;
      font: 13px/30px "tablet-gothic", sans-serif;
      text-decoration: none; }
  .map_window .links {
    padding: 8px 0 0;
    margin: 12px 0 0;
    list-style-type: none;
    list-style-image: none; }
    .map_window .links li {
      float: left;
      font-size: 11px;
      line-height: 24px;
      padding: 0 10px; }
      .map_window .links li.phone {
        background-position: 0 0; }
      .map_window .links li.url a {
        float: left;
        border: 0;
        display: block;
        height: 30px;
        width: auto;
        padding: 0 8px;
        margin: 0 0 15px;
        text-align: center;
        line-height: 30px;
        position: relative;
        background: url(../images/bg_btn_blue.png) repeat-x 0 0;
        color: #FFF;
        font-size: 11px;
        font-weight: 600;
        font-family: "tablet-gothic-compressed", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        text-shadow: 0px 0px 1px #aaa;
        -moz-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5); }
        .map_window .links li.url a:hover {
          background: #222; }
    .map_window .links .button {
      float: left;
      border: 0;
      display: block;
      height: 30px;
      width: auto;
      padding: 0 10px;
      margin: 0 0 15px; }
      .map_window .links .button button {
        padding: 0 8px;
        color: #fff;
        border: 0;
        text-align: center;
        line-height: 30px;
        position: relative;
        background: #FFCC66 repeat-x 0 0;
        color: #FFF;
        font-size: 11px;
        font-weight: 600;
        font-family: "tablet-gothic-compressed", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        text-shadow: 0px 0px 1px #aaa;
        -moz-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.5); }
        .map_window .links .button button:hover {
          background: #222; }
      .map_window .links .button.directions {
        display: none; }
    .map_window .links a {
      color: #333; }

.map_control {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  z-index: 9999;
  padding: 7px 0 7px 0;
  background: #002f65;
  background: -moz-linear-gradient(top, #002f65 95%, #002c5f 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, #002f65), color-stop(100%, #002c5f));
  background: -webkit-linear-gradient(top, #002f65 95%, #002c5f 100%);
  background: -o-linear-gradient(top, #002f65 95%, #002c5f 100%);
  background: -ms-linear-gradient(top, #002f65 95%, #002c5f 100%);
  background: linear-gradient(to bottom, #002f65 95%, #002c5f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002f65', endColorstr='#002c5f',GradientType=0 ); }
  .map_control label {
    display: block;
    float: left;
    color: #fff;
    text-indent: -5000px;
    width: 80px;
    height: 32px;
    background: url(../images/map_control.png) no-repeat 0 center; }
  .map_control button {
    color: #fff;
    display: block;
    float: left;
    border: 0;
    text-indent: -5000px;
    margin-left: 10px;
    width: 155px;
    height: 32px;
    opacity: 0.5;
    filter: alpha(opacity=50); }
    .map_control button.restaurant {
      background-position: -255px center; }
    .map_control button.parking {
      background-position: -420px center; }
    .map_control button.map_anchor {
      display: none;
      position: fixed;
      left: center;
      top: 0;
      margin-left: 250px;
      background-position: -585px center;
      opacity: 1;
      filter: alpha(opacity=100);
      z-index: 99999; }
    .map_control button.active {
      opacity: 1;
      filter: alpha(opacity=100); }
    .map_control button:hover {
      opacity: 1;
      filter: alpha(opacity=100); }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sitemap ul li {
      margin: 15px 0 0 0;
      padding: 0; }
      .sitemap ul li a {
        display: block;
        font: 600 22px/130% "tablet-gothic-compressed", sans-serif;
        text-transform: uppercase;
        color: #333;
        text-shadow: 0 -1px 0 #fff;
        border-bottom: 1px solid #DCDCDC;
        padding: 5px 0 8px;
        letter-spacing: 0.5px;
        word-spacing: 2px;
        text-decoration: none; }
        .sitemap ul li a:visited {
          color: #333; }
        .sitemap ul li a:hover {
          color: #398CB8; }
        .sitemap ul li a:active {
          color: #398CB8; }
    .sitemap ul ul li {
      margin: 0; }
      .sitemap ul ul li a {
        font: 300 16px/140% "tablet-gothic", sans-serif;
        border-bottom: 0;
        letter-spacing: 0;
        word-spacing: 0;
        display: block;
        padding: 5px 0 5px 0;
        color: #398CB8;
        text-transform: none; }
        .sitemap ul ul li a:visited {
          color: #398CB8; }
        .sitemap ul ul li a:hover {
          color: #333; }
        .sitemap ul ul li a:active {
          color: #333; }

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0 0; }
    .concierge_listing .list .entry {
      padding: 10px 0;
      border-bottom: 1px solid #dcdcdc; }
      .concierge_listing .list .entry h3 {
        padding-top: 0; }
        .concierge_listing .list .entry h3 a {
          text-decoration: none; }
          .concierge_listing .list .entry h3 a:hover {
            color: #B39C60; }
      .concierge_listing .list .entry .info span {
        margin-right: 15px;
        font-weight: 300;
        min-width: 200px;
        float: left; }
        .concierge_listing .list .entry .info span i {
          color: #bbb;
          padding: 0 10px 0 0;
          font-size: 19px; }
      .concierge_listing .list .entry .description {
        clear: both;
        padding-top: 5px;
        background-position: 0 -476px;
        padding-left: 20px; }
        .concierge_listing .list .entry .description:hover, .concierge_listing .list .entry .description.info-gray-hover {
          background-position: 0 -520px; }
        .concierge_listing .list .entry .description p {
          margin-bottom: 0; }

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

.jspPane {
  position: absolute; }

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

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

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

.jspCap {
  display: none; }

.jspHorizontalBar .jspCap {
  float: left; }

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

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

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

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

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

.jspVerticalBar .jspArrow {
  height: 16px; }

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

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

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

/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
.venue_list .entry {
  float: left; }
  .venue_list .entry .thumb {
    height: 130px; }
  .venue_list .entry .info.span5 {
    width: 525px;
    min-height: 130px; }
    .venue_list .entry .info.span5 h3.venue_title {
      margin-bottom: 8px; }
  .venue_list .entry .buttons {
    right: -44px; }

.venue_detail #column_2 {
  font: 300 16px/140% "tablet-gothic", sans-serif; }
  .venue_detail #column_2 iframe {
    border: 1px solid #B39C60; }
.venue_detail .section {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  padding: 15px 0 12px; }
  .venue_detail .section.address {
    border-top: 0; }
  .venue_detail .section h3 {
    padding-top: 0;
    font-weight: 600;
    margin-bottom: 5px; }

/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
#fb_connect_status {
  display: none; }

.fbtabs {
  padding: 20px 0 20px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 350px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0 0 15px;
  position: relative; }
  .fbtabs h4, .fbtabs .css-tabs {
    display: none; }
  .fbtabs a.seeall {
    position: absolute;
    top: -60px;
    right: 0;
    z-index: 25;
    cursor: pointer;
    display: block;
    padding: 0 0 0 25px;
    font: 600 20px/120% "tablet-gothic-compressed", sans-serif;
    color: #333;
    text-transform: uppercase; }
    .fbtabs a.seeall:visited {
      color: #333; }
    .fbtabs a.seeall:hover {
      color: #398CB8; }
    .fbtabs a.seeall:active {
      color: #398CB8; }
    .fbtabs a.seeall:hover {
      text-decoration: none; }
    .fbtabs a.seeall:before {
      position: absolute;
      top: 0;
      left: 0;
      font-family: FontAwesome;
      content: "\f005";
      color: #B39C60; }
  .fbtabs .css-panes {
    clear: both;
    padding: 0;
    width: 330px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    top: -1px;
    height: 225px; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none; }
    .fbtabs .css-panes .attendee {
      float: left;
      padding: 0;
      margin: 0 14px 14px 0;
      width: 65px;
      text-align: center;
      line-height: 110%; }
      .fbtabs .css-panes .attendee a {
        display: block;
        clear: both;
        text-align: left;
        line-height: 120%;
        font-size: 12px;
        color: #333;
        text-decoration: none; }
        .fbtabs .css-panes .attendee a div {
          color: #666;
          font-weight: normal;
          font-size: 12px; }
      .fbtabs .css-panes .attendee img {
        display: block;
        height: 65px;
        width: 65px;
        margin-bottom: 5px; }

.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, #fb_rsvp_status {
  position: relative;
  z-index: 15;
  width: 230px;
  margin: 10px auto;
  text-align: center;
  display: none; }

#fb_rsvp button, #fb_rsvp_status button, #fb_rsvp_status span, #fb_rsvp a, #fb_rsvp_status a {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin: 0;
  margin-right: 0px;
  text-align: center;
  line-height: 11px;
  font: 600 18px/30px "tablet-gothic-compressed", sans-serif;
  padding: 5px 10px;
  cursor: pointer;
  background: #B39C60;
  color: #fff;
  border: 0; }

#fb_rsvp a#button_fb_rsvp_going {
  float: none;
  margin: 0 auto; }

#fb_rsvp #button_fb_rsvp_maybe,
#fb_rsvp_status #button_fb_rsvp_cancel {
  background: rgba(0, 0, 0, 0.1);
  color: #333; }

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

.team_detail .event_list h3.teams_title {
  border-bottom: 1px solid #dcdcdc;
  padding-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 22px; }
.team_detail .thumb {
  margin-bottom: 20px; }

.full .searchresults {
  padding: 20px; }
  .full .searchresults .results-search-form {
    width: 300px;
    margin: 0 auto; }

.search-app ul {
  list-style: none;
  padding-left: 0; }
.search-app .ember-text-field, .search-app a.submit {
  display: none; }
.search-app .showtime-search-instant-result-header {
  margin: 30px 0 8px;
  padding: 0 0 10px;
  clear: both;
  font-family: "tablet-gothic-compressed", sans-serif;
  border-bottom: 1px solid #DCDCDC;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #398CB8; }
  .search-app .showtime-search-instant-result-header.result-header-main {
    color: #333;
    padding-bottom: 5px; }
  .search-app .showtime-search-instant-result-header .showtime-search-instant-result-keyword-container {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 35px; }
  .search-app .showtime-search-instant-result-header .showtime-search-instant-result-keyword {
    color: #398CB8; }
  .search-app .showtime-search-instant-result-header ul li {
    float: left;
    margin: 0px 10px;
    width: auto; }
    .search-app .showtime-search-instant-result-header ul li:hover, .search-app .showtime-search-instant-result-header ul li.is-selected {
      color: #398CB8;
      cursor: pointer; }
  .search-app .showtime-search-instant-result-header ul.showtime-search-instant-result-filter {
    float: right;
    text-transform: none; }
.search-app .showtime-search-instant-result {
  position: relative;
  border-bottom: 1px solid #DCDCDC;
  padding: 15px 0;
  margin-right: 40px; }
  .search-app .showtime-search-instant-result.has_image {
    padding-left: 210px;
    min-height: 120px; }
  .search-app .showtime-search-instant-result.events .showtime-search-instant-result-info {
    display: none; }
  .search-app .showtime-search-instant-result .showtime-search-instant-imgcontainer {
    position: absolute;
    top: 15px;
    left: 0; }
    .search-app .showtime-search-instant-result .showtime-search-instant-imgcontainer img {
      width: 190px;
      height: auto;
      border: 1px solid #B39C60; }
  .search-app .showtime-search-instant-result a, .search-app .showtime-search-instant-result a:hover {
    text-decoration: none; }
  .search-app .showtime-search-instant-result a.showtime-search-instant-result-link-info:hover {
    background-color: #398CB8; }
  .search-app .showtime-search-instant-result h4, .search-app .showtime-search-instant-result h3 {
    text-transform: uppercase;
    padding-top: 0; }
  .search-app .showtime-search-instant-result h4.date {
    font-size: 16px;
    font-family: "tablet-gothic-compressed", sans-serif;
    font-weight: 300;
    color: #B39C60;
    margin-bottom: 5px;
    letter-spacing: 0.5px; }
    .search-app .showtime-search-instant-result h4.date span.y {
      margin-left: -2px; }
  .search-app .showtime-search-instant-result h3 {
    color: #333;
    font-size: 24px; }
    .search-app .showtime-search-instant-result h3:hover {
      color: #398CB8; }
  .search-app .showtime-search-instant-result .venue_title {
    position: relative;
    font: 300 16px "tablet-gothic-compressed", sans-serif;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 30px; }
    .search-app .showtime-search-instant-result .venue_title:after {
      text-transform: none;
      position: absolute;
      top: 2px;
      left: 0;
      content: 'at';
      width: 18px;
      height: 18px;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      background: #bbb;
      color: #fff;
      text-align: center;
      margin: 0 5px;
      font: 300 italic 14px/16px "tablet-gothic-compressed", sans-serif; }
.search-app .buttons {
  position: absolute;
  top: auto;
  bottom: -1px;
  right: -40px;
  width: 35px;
  height: auto; }
  .search-app .buttons a, .search-app .buttons span {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    display: block;
    border: 1px solid #DCDCDC;
    margin-top: 3px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .search-app .buttons a.tickets, .search-app .buttons span.tickets {
      background-position: 0 -1294px;
      height: 32px;
      width: 34px; }
    .search-app .buttons a.soon, .search-app .buttons span.soon {
      background-position: 0 -1294px;
      height: 32px;
      width: 34px; }
    .search-app .buttons a.tba, .search-app .buttons span.tba {
      background-position: 0 -1294px;
      height: 32px;
      width: 34px; }
    .search-app .buttons a.showtime-search-instant-result-link-info, .search-app .buttons span.showtime-search-instant-result-link-info {
      background-position: 0 -476px;
      height: 34px;
      width: 34px; }
      .search-app .buttons a.showtime-search-instant-result-link-info:hover, .search-app .buttons a.showtime-search-instant-result-link-info.info-gray-hover, .search-app .buttons span.showtime-search-instant-result-link-info:hover, .search-app .buttons span.showtime-search-instant-result-link-info.info-gray-hover {
        background-position: 0 -520px; }
    .search-app .buttons a.ical, .search-app .buttons span.ical {
      background-position: 0 -228px;
      height: 34px;
      width: 34px; }
    .search-app .buttons a.tickets, .search-app .buttons a.soon, .search-app .buttons a.tba, .search-app .buttons span.tickets, .search-app .buttons span.soon, .search-app .buttons span.tba {
      background-color: #B39C60;
      border: 0; }
    .search-app .buttons a.more:hover, .search-app .buttons span.more:hover {
      background-color: #398CB8;
      border-color: #398CB8; }
  .search-app .buttons span {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7; }
    .search-app .buttons span.ical {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
      cursor: pointer; }
  .search-app .buttons a.ical.active, .search-app .buttons a.ical:hover, .search-app .buttons span.ical.active, .search-app .buttons span.ical:hover {
    border-color: #398CB8;
    background-color: #398CB8;
    width: 34px;
    height: 34px;
    background-position: 0 -272px; }
  .search-app .buttons a.tickets:hover, .search-app .buttons a.soon:hover, .search-app .buttons a.tba:hover {
    background-color: #398CB8; }
.search-app .teaser {
  color: #333; }
