@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/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Web Variables
----------------------------------------------------------------------------- */
/* page background and defaults */
/* header toolbar */
/* header and main nav */
/* Homepage slideshow */
/* Homepage Event List defaults */
/* Homepage Just Added list */
/* footer */
/* global footer */
/* ----------------------------------------------------------------------------
=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 */
/*____________________________* oocss grid system *____________________________________*/
.left,
.unit,
.col1of2,
.sign-up .one_sidebar_right #column_1,
.contact-us .one_sidebar_right #column_1,
.directions .one_sidebar_right #column_1,
.sign-up .one_sidebar_right #column_2,
.contact-us .one_sidebar_right #column_2,
.directions .one_sidebar_right #column_2,
.home_column #column_1,
.home_column #column_2,
.sitemap .column,
.col1of3,
.col2of3,
.col1of4,
.one_sidebar_right #column_2,
.one_sidebar_left #column_1,
.col3of4,
.one_sidebar_right #column_1,
.one_sidebar_left #column_2,
.col1of5,
.col2of5,
.col3of5,
.col4of5 {
  float: left; }

.right {
  float: right; }

.col1of1, .one_sidebar_right, .one_sidebar_left, .sign-up .one_sidebar_right,
.contact-us .one_sidebar_right,
.directions .one_sidebar_right, .home_column {
  float: none; }

.col1of2, .sign-up .one_sidebar_right #column_1,
.contact-us .one_sidebar_right #column_1,
.directions .one_sidebar_right #column_1, .sign-up .one_sidebar_right #column_2,
.contact-us .one_sidebar_right #column_2,
.directions .one_sidebar_right #column_2, .home_column #column_1, .home_column #column_2, .sitemap .column {
  width: 50%; }

.col1of3 {
  width: 33.33333%; }

.col2of3 {
  width: 66.66666%; }

.col1of4, .one_sidebar_right #column_2, .one_sidebar_left #column_1 {
  width: 25%; }

.col3of4, .one_sidebar_right #column_1, .one_sidebar_left #column_2 {
  width: 75%; }

.col1of5 {
  width: 20%; }

.col2of5 {
  width: 40%; }

.col3of5 {
  width: 60%; }

.col4of5 {
  width: 80%; }

.lastCol, .one_sidebar_right #column_2, .one_sidebar_left #column_2, .sign-up .one_sidebar_right #column_2,
.contact-us .one_sidebar_right #column_2,
.directions .one_sidebar_right #column_2, .home_column #column_2, .sitemap #sitemap_column_2 {
  overflow: hidden;
  *overflow: visible;
  *zoom: 1; }

.lastCol, .one_sidebar_right #column_2, .one_sidebar_left #column_2, .sign-up .one_sidebar_right #column_2,
.contact-us .one_sidebar_right #column_2,
.directions .one_sidebar_right #column_2, .home_column #column_2, .sitemap #sitemap_column_2,
.lastUnit {
  float: none;
  width: auto;
  _position: relative;
  _left: -3px;
  _margin-right: -3px; }

/*______________________________________________________________________________________*/
.one_sidebar_right #column_1 {
  padding-right: 25px; }

.one_sidebar_left #column_1 {
  padding-right: 25px; }

.sign-up .one_sidebar_right #column_1,
.contact-us .one_sidebar_right #column_1,
.directions .one_sidebar_right #column_1 {
  padding-right: 25px; }

.home_column #column_1 {
  padding-right: 8px; }

/* ----------------------------------------------------------------------------
=Sprites
----------------------------------------------------------------------------- */
.icons, .the-residents #content .full_column div.textarea .resident-btn, .the-residents #content .full_column div.textarea .tickets-btn, header nav ul li.page_1 a, header nav ul li.page_28 a, header nav ul li.page_6 a, header nav ul li.page_29 a, header nav ul li.page_30 > a, .news_feed h2, .twitter-title, .upcoming_holder h2, .justadded_holder h2, .event_list .overview #view_btns a#list_view_btn:before, .event_list .overview #view_btns a#list_view:before, .event_list .overview #view_btns a#grid_view_btn:before, .event_list .overview #view_btns a#grid_view:before {
  background: url('../images/icons-s5d6600fa12.png') no-repeat; }

h1, h2, h3, h4, h5, h6 {
  padding: 0; }
  h1 a, h1 a:link, h1 a:visited, h2 a, h2 a:link, h2 a:visited, h3 a, h3 a:link, h3 a:visited, h4 a, h4 a:link, h4 a:visited, h5 a, h5 a:link, h5 a:visited, h6 a, h6 a:link, h6 a:visited {
    text-decoration: none; }

h1, h2, h3 {
  margin: 0 0 8px;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 100;
  line-height: 120%;
  color: #9c5f1c; }

h1 {
  font-size: 25px; }

h2 {
  font-size: 18px; }

h3 {
  font-size: 14px; }

h4 {
  margin: 0;
  padding: 0;
  color: white;
  font: 500 12px/150% Arial, Helvetica, sans-serif; }

h5 {
  margin: 0;
  padding: 0 0 2px;
  color: white;
  font: 500 12px/140% Arial, Helvetica, sans-serif; }

h6 {
  margin: 0;
  padding: 0 0 4px;
  color: white;
  font: 500 12px/140% Arial, Helvetica, sans-serif;
  text-transform: uppercase; }

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

ul, ol {
  margin: 0 0 0 5px;
  padding: 5px 0 8px 15px; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit;
    line-height: 130%; }
  ul ul, ol ul {
    margin: 0; }

ol {
  list-style: none; }

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

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

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

blockquote {
  margin-bottom: 12px;
  padding: 0 17px;
  line-height: 18px; }

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
body {
  width: 100%;
  height: 100%;
  background: #2c0c0c url("../images/bg_top.jpg") no-repeat center 0px;
  margin: 0;
  padding: 0;
  font: normal 12px/2em Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: left; }

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

#layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #180001; }
  #layout #content {
    width: 945px;
    margin: 0 auto;
    padding: 20px 0; }

.one_sidebar_right {
  position: relative;
  margin: 0;
  padding: 0 0 20px;
  zoom: 1; }
  .one_sidebar_right:before, .one_sidebar_right:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  .one_sidebar_right:after {
    clear: both; }

.gbox {
  background-color: #2c0c0c;
  padding: 20px; }

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

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

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

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

/* ----------------------------------------------------------------------------
= GENERAL CONTENT ITEMS
----------------------------------------------------------------------------- */
.ad-serve {
  width: 728px;
  margin: 20px auto 0;
  padding: 0; }
  .ad-serve .banner.active {
    width: 728px;
    height: 90px;
    margin: 0 auto;
    overflow: hidden; }
  .ad-serve iframe {
    width: 728px;
    height: 90px;
    margin: 0 auto;
    overflow: hidden; }

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

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

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

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

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

.the-residents #content .full_column div.textarea {
  float: left;
  width: 460px;
  margin-bottom: 25px;
  padding-left: 25px;
  min-height: 400px; }
  .the-residents #content .full_column div.textarea:nth-child(odd) {
    padding-left: 0; }
  .the-residents #content .full_column div.textarea h2 a {
    color: #9c5f1c; }
  .the-residents #content .full_column div.textarea img {
    border: 0;
    margin-bottom: 0; }
  .the-residents #content .full_column div.textarea .resident-btn {
    display: block;
    float: right;
    background-position: 0 0;
    height: 21px;
    width: 58px;
    text-indent: -100px;
    overflow: hidden; }
  .the-residents #content .full_column div.textarea .tickets-btn {
    display: block;
    float: right;
    background-position: 0 -31px;
    height: 21px;
    width: 132px;
    margin-left: 15px;
    text-indent: -120px;
    overflow: hidden; }

.formContainer label {
  display: block;
  margin: 0;
  padding: 0; }
.formContainer .label {
  width: 80px;
  float: left;
  font-weight: bold; }
.formContainer .supportLabel {
  color: #777;
  font-size: 11px;
  margin: 4px 0px; }
.formContainer .formButton {
  clear: both;
  width: auto;
  margin: 15px auto 0;
  padding: 3px 3px 4px;
  font-size: 12px;
  color: black; }

.inputGroup {
  display: block;
  clear: both;
  height: 65px; }
  .inputGroup input, .inputGroup option {
    width: 195px;
    color: black;
    border-color: #EEE;
    padding: 3px; }

.inputGroupNoPad select {
  width: 285px;
  border-color: #EEE;
  padding: 3px;
  color: black; }

header, .header {
  position: relative;
  margin: 0 auto 0;
  padding: 10px 0;
  width: 945px;
  height: 115px;
  background: transparent url("../images/header-bckgrd.png") no-repeat left top; }
  header .logo, .header .logo {
    position: absolute;
    width: 351px;
    height: 115px;
    top: 15px;
    left: 0px;
    z-index: 501; }
    header .logo span, header .logo a, header .logo a:link, header .logo a:visited, .header .logo span, .header .logo a, .header .logo a:link, .header .logo a:visited {
      text-indent: -5000px;
      display: block;
      width: 100%;
      height: 100%;
      background: url(../images/logo.png) no-repeat 0 0; }
    header .logo span, .header .logo span {
      cursor: default; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  position: relative;
  width: 945px;
  background: transparent url("../images/bg_footer.png") no-repeat 0 0;
  margin: 10px auto 40px;
  padding: 20px 0 0;
  zoom: 1; }
  footer:before, footer:after, .footer:before, .footer:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  footer:after, .footer:after {
    clear: both; }
  footer .venueinfo, .footer .venueinfo {
    position: relative;
    float: left;
    margin: 0px 0 0 23px;
    min-height: 80px; }
    footer .venueinfo address, .footer .venueinfo address {
      font-size: 12px;
      color: #CCCCCC;
      line-height: 160%;
      padding: 4px 0 0 20px;
      margin: 0; }
      footer .venueinfo address a, .footer .venueinfo address a {
        font-size: 10px; }
  footer .copyrights, .footer .copyrights {
    text-align: center; }
  footer .logos, .footer .logos {
    position: relative;
    width: 945px;
    margin: 0 auto; }
    footer .logos .stubhub, .footer .logos .stubhub {
      position: absolute;
      top: -12px;
      right: 197px;
      width: 52px;
      height: 33px;
      background: transparent url('../images/stubhub-ftlogo.png?1469223457') no-repeat 0 0;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden; }
  footer .nav, .footer .nav {
    width: 100%;
    margin: 0; }
    footer .nav ul, .footer .nav ul {
      display: block;
      list-style: none;
      padding: 0;
      margin: 0 auto; }
      footer .nav ul li, .footer .nav ul li {
        display: block;
        float: left;
        height: auto;
        padding: 0 0 12px 70px; }
        footer .nav ul li a, .footer .nav ul li a {
          padding: 0;
          margin: 0;
          font-size: 11px;
          text-decoration: none; }
          footer .nav ul li a:hover, footer .nav ul li a:hover span, .footer .nav ul li a:hover, .footer .nav ul li a:hover span {
            text-decoration: underline; }
        footer .nav ul li .sub, .footer .nav ul li .sub {
          display: block; }
          footer .nav ul li .sub li, .footer .nav ul li .sub li {
            float: none;
            padding: 0; }

.global_footer {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 40px; }
  .global_footer .global_footer_wrap {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    padding: 5px 0; }
  .global_footer p {
    display: block;
    color: white;
    font: 500 10px/100% Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 12px 0 0;
    float: left; }
    .global_footer p a, .global_footer p a:visited {
      color: white;
      text-decoration: underline; }
      .global_footer p a:hover, .global_footer p a:focus, .global_footer p a:visited:hover, .global_footer p a:visited:focus {
        color: white;
        text-decoration: underline; }
  .global_footer a#carbonhouse, .global_footer a#carbonhouse:link, .global_footer a#carbonhouse:visited {
    display: block;
    position: absolute;
    top: 15px;
    right: 0px;
    margin: 0;
    font-size: 10px;
    font-weight: bold;
    font-family: 'helvetica';
    color: #fff;
    cursor: pointer;
    text-decoration: none; }
    .global_footer a#carbonhouse span, .global_footer a#carbonhouse:link span, .global_footer a#carbonhouse:visited span {
      font-size: 12px; }
      .global_footer a#carbonhouse span.carbon, .global_footer a#carbonhouse:link span.carbon, .global_footer a#carbonhouse:visited span.carbon {
        color: #A0A0A0; }
      .global_footer a#carbonhouse span.house, .global_footer a#carbonhouse:link span.house, .global_footer a#carbonhouse:visited span.house {
        color: #D2D2D2; }
    .global_footer a#carbonhouse:hover, .global_footer a#carbonhouse:link:hover, .global_footer a#carbonhouse:visited:hover {
      text-decoration: none;
      color: #FFF; }
      .global_footer a#carbonhouse:hover span, .global_footer a#carbonhouse:link:hover span, .global_footer a#carbonhouse:visited:hover span {
        color: #FFF; }

header nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 575px;
  height: 62px;
  margin: 45px 0 0 0;
  padding: 0;
  z-index: 500; }
  header nav ul {
    float: right;
    display: block;
    position: relative;
    height: 51px; }
    header nav ul li {
      display: block;
      float: left;
      position: relative;
      margin: 0 0 0 35px;
      padding: 0; }
      header nav ul li:first-child, header nav ul li.page_1 {
        margin-left: 0px; }
      header nav ul li.page_1 a {
        background-position: 0 -402px;
        height: 54px;
        width: 58px; }
        header nav ul li.page_1 a:hover, header nav ul li.page_1 a.nav-home-hover {
          background-position: 0 -466px; }
      header nav ul li.page_28 a {
        background-position: 0 -274px;
        height: 54px;
        width: 90px; }
        header nav ul li.page_28 a:hover, header nav ul li.page_28 a.nav-events-hover {
          background-position: 0 -338px; }
      header nav ul li.page_6 a {
        background-position: 0 -786px;
        height: 54px;
        width: 84px; }
        header nav ul li.page_6 a:hover, header nav ul li.page_6 a.nav-venue-hover {
          background-position: 0 -850px; }
      header nav ul li.page_29 a {
        background-position: 0 -530px;
        height: 54px;
        width: 116px; }
        header nav ul li.page_29 a:hover, header nav ul li.page_29 a.nav-residents-hover {
          background-position: 0 -594px; }
      header nav ul li.page_30 .sub {
        display: none !important; }
      header nav ul li.page_30 > a {
        background-position: 0 -658px;
        height: 54px;
        width: 65px; }
        header nav ul li.page_30 > a:hover, header nav ul li.page_30 > a.nav-signup-hover {
          background-position: 0 -722px; }
  header nav a, header nav a:link, header nav a:visited {
    display: block;
    width: 90px;
    height: 51px;
    margin: 0;
    padding: 0;
    font: normal 14px/120% Arial, Helvetica, sans-serif;
    color: #DDDDDD;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-indent: -280px;
    overflow: hidden; }
  header nav .hover > a {
    color: white; }

nav ul .sub {
  display: none;
  position: absolute;
  left: -15px;
  top: 41px;
  min-width: 100px;
  width: 175px;
  background-color: #2c0c0c;
  margin: 0;
  padding: 0;
  line-height: 26px;
  z-index: 9000; }

nav ul ul {
  float: left;
  background: none;
  width: 100%;
  height: auto;
  border: none;
  margin: 0;
  padding: 0; }
  nav ul ul li {
    float: none;
    height: auto;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #c4b269;
    margin: 0px;
    padding: 0px;
    list-style: none;
    cursor: pointer; }
    nav ul ul li:first-child {
      display: block; }
    nav ul ul li:last-child {
      border-bottom: none; }
    nav ul ul li a, nav ul ul li a:link, nav ul ul li a:visited {
      display: block;
      width: auto;
      height: auto;
      background-color: #2c0c0c;
      background-image: none;
      margin: 0;
      padding: 10px 0px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 11px;
      font-weight: normal;
      line-height: 110%;
      letter-spacing: 0;
      color: #fff;
      text-indent: 8px;
      text-align: left;
      text-transform: none;
      text-shadow: none;
      text-decoration: none;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      nav ul ul li a:hover, nav ul ul li a:focus, nav ul ul li a:link:hover, nav ul ul li a:link:focus, nav ul ul li a:visited:hover, nav ul ul li a:visited:focus {
        background-color: #61320b;
        text-decoration: none; }

.home #layout {
  background-color: transparent; }

.home .news_feed,
.home .banner,
.home .social_feed,
.home .rdio-container {
  background-color: #180001;
  margin-bottom: 8px; }

.banner.active {
  width: 470px;
  height: 130px;
  margin-bottom: 10px; }
  .banner.active .slideshow .slide {
    top: auto;
    left: auto; }
  .banner.active .slideshow:after {
    background: none; }

.listing-sponsor.right .banner.active {
  width: 70px;
  height: 45px; }

.news_feed {
  position: relative;
  height: 210px;
  padding-right: 10px; }
  .news_feed .view_more {
    position: absolute;
    top: 5px;
    right: 12px; }
    .news_feed .view_more a {
      font-size: 11px;
      text-decoration: none; }
      .news_feed .view_more a:hover {
        text-decoration: underline; }
  .news_feed h2 {
    position: relative;
    top: 12px;
    left: 19px;
    background-position: 0 -147px;
    height: 14px;
    width: 48px;
    margin-bottom: 18px;
    text-indent: -100px;
    overflow: hidden; }
  .news_feed .list ul li {
    list-style: none;
    padding-bottom: 7px; }
  .news_feed #news_item .title a {
    font-size: 12px;
    text-decoration: none; }
    .news_feed #news_item .title a:hover {
      text-decoration: underline; }

/*a,
a:visited{
	display:block;
	width:28px;
	height:28px;

	text-indent:-9000px;
	&:hover {
		
	}
	&.soc_fb {
		background-position: 0 0;
	}
	&.soc_tw {
		background-position: -40px 0;
	}
	&.soc_my {
		background-position: -80px 0;
	}
	&.soc_you {
		background-position: -120px 0;
	}
}*/
.social-icons {
  float: right;
  display: inline-block;
  text-indent: -1500px; }

.home .facebook,
.home .twitter {
  position: relative;
  width: 28px;
  height: 28px;
  background: transparent;
  background-image: url("../images/social_icons.png");
  background-repeat: no-repeat; }

.home .facebook {
  top: 6px;
  right: 15px;
  background-position: 0 0; }

.home .twitter {
  top: 6px;
  right: 21px;
  background-position: -40px 0; }

.rdio-container {
  margin-top: 10px;
  height: 260px;
  width: 100%; }

.twitter-timeline {
  margin-left: 15px;
  height: 485px; }

.twitter-title {
  float: left;
  background-position: 0 -171px;
  height: 45px;
  width: 110px; }

.tweet .e-entry-titlee {
  font-size: 11px;
  color: #fff; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative;
    background-color: transparent; }
  .content a, .content a:link, .content a:visited {
    text-decoration: none; }
    .content a:hover, .content a:link:hover, .content a:visited:hover {
      text-decoration: underline; }
  .content .overview a, .content .overview a:link, .content .overview a:visited {
    color: white;
    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 .overview p {
    clear: both; }
  .content .baseline {
    margin: 0 0 10px;
    padding: 0 0 10px; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: white; }
      .content table tr td {
        padding: 5px;
        border: none; }

/* ----------------------------------------------------------------------------
=Image Templates
----------------------------------------------------------------------------- */
img[align=left], img[align=left].gh-image {
  float: left;
  margin: 0 15px 15px 0;
  padding: 6px; }
img[align=right], img[align=right].gh-image {
  float: right;
  margin: 0 0 15px 15px;
  padding: 6px; }
img.gh-image {
  padding: 0;
  margin: 0 15px 15px 0; }
img.image {
  padding: 0;
  margin: 0 15px 15px 0; }

.venue-info img.gh-image {
  padding: 0;
  margin: 0 15px -8px 0;
  border: 2px solid #cbb167; }

.image-left {
  clear: both; }
  .image-left h3 {
    font-size: 20px;
    font-weight: normal; }
  .image-left img {
    width: auto;
    height: auto;
    padding: 6px;
    margin: 0 15px 15px 0; }
  .image-left p {
    line-height: 140%; }

.image-right {
  clear: both; }
  .image-right h3 {
    font-size: 20px;
    font-weight: normal; }
  .image-right img {
    width: auto;
    height: auto;
    padding: 2px;
    margin: 0 0 15px 15px; }
  .image-right p {
    line-height: 140%; }

.image-three {
  text-align: left;
  float: left;
  width: 140px;
  padding: 0 24px 30px;
  margin: 0; }
  .image-three a, .image-three a:link, .image-three a:visited {
    display: block;
    width: 132px;
    height: 106px; }
    .image-three a img, .image-three a img.image, .image-three a img.gh-image, .image-three a:link img, .image-three a:link img.image, .image-three a:link img.gh-image, .image-three a:visited img, .image-three a:visited img.image, .image-three a:visited img.gh-image {
      padding: 2px;
      margin: 0;
      width: 132px;
      height: 106px; }
    .image-three a:hover, .image-three a:focus, .image-three a:link:hover, .image-three a:link:focus, .image-three a:visited:hover, .image-three a:visited:focus {
      text-decoration: none; }
  .image-three p {
    color: black;
    width: 132px;
    text-align: center;
    padding: 5px 0 0;
    font-weight: bold; }

.image-four {
  text-align: center;
  float: left;
  width: 130px;
  padding: 0 10px;
  margin: 0; }
  .image-four a, .image-four a:link, .image-four a:visited {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto; }
  .image-four img, .image-four img.image, .image-four img.gh-image {
    padding: 0;
    background: none;
    margin: 0 0 10px; }

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

.paging {
  position: relative;
  margin: 2px 0 2px 19px;
  padding: 10px 0;
  width: 620px;
  height: 20px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  color: black;
  font-size: 12px; }
  .paging.final {
    margin: 30px auto 10px auto; }
  .paging .record {
    width: auto;
    float: left;
    color: #ffe246;
    line-height: 19px;
    height: 24px;
    padding: 0;
    text-transform: uppercase; }
  .paging .pages {
    margin: 0 -20px 0 0;
    float: right;
    width: auto;
    text-align: left; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      width: 18px;
      height: 18px;
      float: left;
      margin: 0 1px 0 3px;
      color: #ffe246;
      text-align: center;
      line-height: 18px;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        color: transparent;
        background-color: white;
        text-decoration: none; }
      .paging .pages strong.last, .paging .pages strong.first, .paging .pages a.last, .paging .pages a.first, .paging .pages a:link.last, .paging .pages a:link.first, .paging .pages a:visited.last, .paging .pages a:visited.first {
        display: none; }
    .paging .pages strong {
      color: transparent;
      text-decoration: none; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 20px;
  position: relative; }
  .link ul.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font-size: 14px; }
    .link ul.list li {
      height: auto; }
      .link ul.list li:hover a, .link ul.list li:hover a:link, .link ul.list li:hover a:visited, .link ul.list li:focus a, .link ul.list li:focus a:link, .link ul.list li:focus a:visited {
        color: #ffe246; }
        .link ul.list li:hover a:hover, .link ul.list li:hover a:link:hover, .link ul.list li:hover a:visited:hover, .link ul.list li:focus a:hover, .link ul.list li:focus a:link:hover, .link ul.list li:focus a:visited:hover {
          color: white; }
    .link ul.list p {
      padding: 0;
      font-style: italic; }
    .link ul.list .description {
      font-style: italic;
      font-size: 12px; }
    .link ul.list a, .link ul.list a:link, .link ul.list a:visited {
      color: #ffe246;
      padding: 0 30px 0 0;
      margin: 0;
      text-decoration: none;
      background: url(../images/outbound_link.png) no-repeat right 1px; }
      .link ul.list a:hover, .link ul.list a:focus, .link ul.list a:link:hover, .link ul.list a:link:focus, .link ul.list a:visited:hover, .link ul.list a:visited:focus {
        color: white; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap .column {
    float: left;
    position: relative;
    padding: 0; }
    .sitemap .column:first-child {
      padding-right: 20px; }
  .sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sitemap ul li {
      margin: 0 0 10px 0;
      padding: 0;
      font-size: 18px;
      font-weight: normal;
      line-height: 25px; }
      .sitemap ul li ul li {
        margin: 0;
        font-size: 12px;
        font-weight: bold; }
        .sitemap ul li ul li a {
          padding: 0;
          color: #fff; }
          .sitemap ul li ul li a:hover, .sitemap ul li ul li a:focus {
            color: #ffe246; }
        .sitemap ul li ul li ul {
          display: none; }
  .sitemap a {
    display: block;
    border-bottom: 1px solid #555;
    color: #ffe246; }
    .sitemap a:hover, .sitemap a:focus {
      color: #fff; }

/* ----------------------------------------------------------------------------
=Search Results
----------------------------------------------------------------------------- */
#events_axs.search .event_list > p {
  text-indent: 20px; }

/* ----------------------------------------------------------------------------
= special nav on guest services page
----------------------------------------------------------------------------- */
ul.guest-service-nav {
  width: 85%;
  margin: 0;
  padding: 3px 0 0; }
  ul.guest-service-nav li {
    list-style: none;
    border-bottom: dashed 1px #643a00;
    padding: 5px 20px; }
    ul.guest-service-nav li:first-child {
      border-top: dashed 1px #643a00; }
    ul.guest-service-nav li a {
      font-family: Georgia, Times, "Times New Roman", serif;
      line-height: 2em;
      color: #fff; }

.subnav {
  position: relative;
  width: 318px;
  padding: 0;
  margin: 0 0 20px; }
  .subnav ul {
    display: block;
    list-style: none;
    list-style-image: none;
    padding: 20px 20px 10px;
    margin: 0;
    width: 280px;
    background: #333; }
    .subnav ul li {
      height: auto;
      padding: 0 0 6px;
      margin: 0 0 10px;
      border-bottom: 1px solid #222; }
      .subnav ul li:last-child {
        background: none; }
      .subnav ul li.active ul {
        display: block;
        list-style: none;
        list-style-image: none;
        list-style-type: none;
        padding: 2px 0 2px 12px;
        margin: 0;
        background: none;
        width: auto; }
      .subnav ul li.active a:active {
        color: #fff; }
      .subnav ul li a {
        display: block;
        padding: 0;
        margin: 0;
        text-decoration: none;
        color: #fff;
        line-height: 26px;
        font: 500 14px/140% Arial, Helvetica, sans-serif; }
        .subnav ul li a:hover, .subnav ul li a.active, .subnav ul li a:active {
          color: #ffe246;
          text-decoration: none; }
      .subnav ul li.active.onparent a.active {
        color: #fff; }
    .subnav ul ul {
      display: none; }
      .subnav ul ul li {
        border-bottom: none; }
        .subnav ul ul li:first-child a {
          line-height: 24px; }

/* ----------------------------------------------------------------------------
=branding
----------------------------------------------------------------------------- */
#branding {
  position: relative;
  width: 945px;
  margin: 0 auto;
  padding: 0; }

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow {
  position: relative;
  border: none;
  width: 945px;
  height: 280px;
  background: #000 url("../images/slide-bckgrd.jpg") no-repeat 0 0;
  margin: 0 0 32px;
  padding: 0; }
  .slideshow:after {
    content: "";
    display: block;
    position: relative;
    background: transparent url("../images/banner_shadow.png") no-repeat 0 0;
    height: 26px; }
  .slideshow .controls {
    display: none;
    position: absolute;
    width: 610px;
    margin: 0 auto;
    height: 85px;
    top: 0;
    left: 0; }
    .slideshow .controls .nav-controls {
      position: relative; }
      .slideshow .controls .nav-controls a, .slideshow .controls .nav-controls a:link, .slideshow .controls .nav-controls a:visited {
        display: block;
        height: 70px;
        width: 54px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px; }
        .slideshow .controls .nav-controls a:hover, .slideshow .controls .nav-controls a:focus, .slideshow .controls .nav-controls a:link:hover, .slideshow .controls .nav-controls a:link:focus, .slideshow .controls .nav-controls a:visited:hover, .slideshow .controls .nav-controls a:visited:focus {
          text-decoration: none; }
        .slideshow .controls .nav-controls a.prev, .slideshow .controls .nav-controls a:link.prev, .slideshow .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 130px; }
          .slideshow .controls .nav-controls a.prev:hover, .slideshow .controls .nav-controls a:link.prev:hover, .slideshow .controls .nav-controls a:visited.prev:hover {
            background-position: 0 -70px; }
        .slideshow .controls .nav-controls a.next, .slideshow .controls .nav-controls a:link.next, .slideshow .controls .nav-controls a:visited.next {
          right: 8px;
          top: 130px; }
          .slideshow .controls .nav-controls a.next:hover, .slideshow .controls .nav-controls a:link.next:hover, .slideshow .controls .nav-controls a:visited.next:hover {
            background-position: -54px -70px; }
  .slideshow .slide {
    position: relative;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow .slide span {
      display: block; }
  .slideshow .caption_holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 610px;
    height: 35px;
    background: #333; }
    .slideshow .caption_holder span {
      display: block;
      width: auto;
      height: 35px; }
    .slideshow .caption_holder .image-caption .caption a {
      display: none; }
    .slideshow .caption_holder .caption p {
      display: block;
      margin: 0;
      color: #fff;
      padding: 7px 15px 0 15px;
      text-shadow: none;
      font-weight: normal; }
    .slideshow .caption_holder .caption a {
      color: black;
      text-decoration: none;
      font-size: 14px;
      line-height: 120%;
      font-weight: bold; }
      .slideshow .caption_holder .caption a:hover, .slideshow .caption_holder .caption a:visited {
        text-decoration: none; }
    .slideshow .caption_holder .caption .date {
      display: none; }
    .slideshow .caption_holder .caption .buttons {
      display: none; }
  .slideshow .thumbs_holder {
    display: none; }
    .slideshow .thumbs_holder .thumbs {
      display: none; }
    .slideshow .thumbs_holder .caption {
      display: none; }
  .slideshow .video {
    width: 610px;
    height: 305px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .video #video_player, .slideshow .video #video_holder {
      display: block;
      width: 610px;
      height: 305px; }
  .slideshow .imglink a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px; }
    .slideshow .imglink a #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
=Video Player
----------------------------------------------------------------------------- */
#video_player {
  position: relative;
  width: 300px;
  float: left;
  height: 250px;
  margin: 0 20px 0 0;
  padding: 10px;
  background: #000;
  z-index: 19; }
  #video_player .slideshow {
    width: 100%;
    height: 220px;
    margin: 0; }
    #video_player .slideshow .slide a.advance-link {
      line-height: 250px;
      background: black; }
      #video_player .slideshow .slide a.advance-link img {
        vertical-align: middle; }
    #video_player .slideshow .video, #video_player .slideshow .slide, #video_player .slideshow .slide span {
      width: 300px;
      height: 250px;
      background: url(../images/red_play.png) no-repeat center center; }
    #video_player .slideshow .video #video_player, #video_player .slideshow .video #video_holder {
      width: 100%;
      height: 100%; }
    #video_player .slideshow .caption_holder {
      display: none;
      width: 280px;
      height: 22px;
      padding: 5px 10px;
      overflow: hidden;
      text-align: center;
      background: none;
      top: 180px;
      bottom: auto; }
      #video_player .slideshow .caption_holder .caption p {
        display: block;
        width: 280px;
        color: #ffe246;
        font: 500 14px/16px Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        padding: 2px 0 3px;
        margin: 0 auto; }

/* ----------------------------------------------------------------------------
=Home - Slideshows
----------------------------------------------------------------------------- */
.home .slideshow {
  height: 311px;
  margin-bottom: 11px; }
  .home .slideshow .slide {
    top: 6px;
    left: 6px; }

#events_axs .one_sidebar_right #column_1, #news .one_sidebar_right #column_1 {
  border: 0; }
  #events_axs .one_sidebar_right #column_1 .holder, #news .one_sidebar_right #column_1 .holder {
    padding: 0; }

#event_axs #layout .content {
  padding: 10px 0 20px; }

/* ----------------------------------------------------------------------------
= Event Feed on homepage
----------------------------------------------------------------------------- */
.justadded_holder {
  height: 322px; }
  .justadded_holder .scrolled_content {
    display: block;
    position: relative; }
    .justadded_holder .scrolled_content .viewport {
      position: relative;
      display: block;
      padding: 0;
      width: 300px;
      height: 260px;
      margin: 0 auto;
      overflow: hidden; }
      .justadded_holder .scrolled_content .viewport .content.overview {
        width: 300px;
        padding: 0;
        background: none;
        margin: 0; }
      .justadded_holder .scrolled_content .viewport .scrollbar {
        display: none;
        position: absolute;
        right: -9px;
        top: 0px;
        display: block;
        width: 14px;
        height: 260px;
        margin: 0;
        padding: 1px;
        background: none; }
        .justadded_holder .scrolled_content .viewport .scrollbar .track {
          width: 1px;
          height: 260px;
          position: relative;
          background: #333; }
          .justadded_holder .scrolled_content .viewport .scrollbar .track .thumb {
            position: absolute;
            top: 0;
            left: -3px;
            width: 10px;
            height: 30px;
            background: transparent;
            cursor: pointer; }
  .justadded_holder .event_list {
    height: auto; }

.upcoming_holder {
  height: 635px; }
  .upcoming_holder .scrolled_content {
    display: block;
    position: relative; }
    .upcoming_holder .scrolled_content .viewport {
      position: relative;
      display: block;
      width: 100%;
      height: 580px;
      border: 0;
      margin: 0;
      padding: 0;
      overflow: hidden; }
      .upcoming_holder .scrolled_content .viewport .content.overview {
        width: 465px;
        padding: 0;
        background: none;
        margin: 0; }
      .upcoming_holder .scrolled_content .viewport .scrollbar {
        display: none;
        position: absolute;
        right: -9px;
        top: 0px;
        display: block;
        width: 14px;
        height: 210px;
        margin: 0;
        padding: 1px;
        background: none; }
        .upcoming_holder .scrolled_content .viewport .scrollbar .track {
          width: 1px;
          height: 210px;
          position: relative; }
          .upcoming_holder .scrolled_content .viewport .scrollbar .track .thumb {
            position: absolute;
            top: 0;
            left: -3px;
            width: 10px;
            height: 30px;
            background: transparent;
            cursor: pointer; }
  .upcoming_holder .event_list {
    height: auto; }

.upcoming_holder, .justadded_holder {
  display: block;
  width: 100%;
  background-color: #180001; }
  .upcoming_holder h2, .justadded_holder h2 {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    font: normal 18px "league-gothic", Tahoma, Verdana, Arial, sans-serif;
    line-height: 120%;
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    text-indent: -200px;
    overflow: hidden;
    background-position: 0 -92px;
    height: 45px;
    width: 196px; }
  .upcoming_holder .event_list, .justadded_holder .event_list {
    position: relative;
    width: 96%;
    border: 0;
    margin: 0 auto;
    padding: 0; }
    .upcoming_holder .event_list .entry, .justadded_holder .event_list .entry {
      float: left;
      width: 140px;
      min-height: 70px;
      margin: 0px 50px 20px 20px;
      padding: 0; }
      .upcoming_holder .event_list .entry .info, .justadded_holder .event_list .entry .info {
        width: 100%;
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        /*				.date, h3, h4, a {
        					font-family: $mainfont;
        					color:$primarycolor;
        				}*/
        /*				h5 {
        					width:175px;
        					height:auto;
        					font-family: $mainfont;
        					color:$primarycolor;
        				}*/ }
        .upcoming_holder .event_list .entry .info .date, .justadded_holder .event_list .entry .info .date {
          text-transform: none;
          margin: 0 0 3px;
          width: 195px; }
        .upcoming_holder .event_list .entry .info h3, .justadded_holder .event_list .entry .info h3 {
          width: 100%;
          height: auto;
          line-height: 100%;
          margin: 0;
          white-space: nowrap; }
          .upcoming_holder .event_list .entry .info h3 a, .justadded_holder .event_list .entry .info h3 a {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            font-weight: normal; }
      .upcoming_holder .event_list .entry.alt, .justadded_holder .event_list .entry.alt {
        background: none; }
      .upcoming_holder .event_list .entry .buttons, .justadded_holder .event_list .entry .buttons {
        position: relative;
        right: 0px;
        top: 3px;
        width: auto; }
        .upcoming_holder .event_list .entry .buttons a, .upcoming_holder .event_list .entry .buttons a:visited, .upcoming_holder .event_list .entry .buttons span, .justadded_holder .event_list .entry .buttons a, .justadded_holder .event_list .entry .buttons a:visited, .justadded_holder .event_list .entry .buttons span {
          width: auto;
          height: auto;
          background: transparent;
          margin-left: 5px;
          padding-left: 5px;
          border-left: 1px solid #fff;
          line-height: 120%;
          font-family: Arial, Helvetica, sans-serif;
          font-size: 12px;
          font-weight: 400;
          color: #ffe246;
          text-transform: uppercase; }
          .ie8 .upcoming_holder .event_list .entry .buttons a, .ie9 .upcoming_holder .event_list .entry .buttons a, .ie8 .upcoming_holder .event_list .entry .buttons a:visited, .ie9 .upcoming_holder .event_list .entry .buttons a:visited, .ie8 .upcoming_holder .event_list .entry .buttons span, .ie9 .upcoming_holder .event_list .entry .buttons span, .ie8 .justadded_holder .event_list .entry .buttons a, .ie9 .justadded_holder .event_list .entry .buttons a, .ie8 .justadded_holder .event_list .entry .buttons a:visited, .ie9 .justadded_holder .event_list .entry .buttons a:visited, .ie8 .justadded_holder .event_list .entry .buttons span, .ie9 .justadded_holder .event_list .entry .buttons span {
            filter: none;
            background-image: none; }
          .upcoming_holder .event_list .entry .buttons a:first-child, .upcoming_holder .event_list .entry .buttons a:visited:first-child, .upcoming_holder .event_list .entry .buttons span:first-child, .justadded_holder .event_list .entry .buttons a:first-child, .justadded_holder .event_list .entry .buttons a:visited:first-child, .justadded_holder .event_list .entry .buttons span:first-child {
            border: 0;
            margin-left: 0;
            padding-left: 0; }
          .upcoming_holder .event_list .entry .buttons a.more, .upcoming_holder .event_list .entry .buttons a:visited.more, .upcoming_holder .event_list .entry .buttons span.more, .justadded_holder .event_list .entry .buttons a.more, .justadded_holder .event_list .entry .buttons a:visited.more, .justadded_holder .event_list .entry .buttons span.more {
            color: #ffe246; }
          .upcoming_holder .event_list .entry .buttons a:hover, .upcoming_holder .event_list .entry .buttons a:visited:hover, .upcoming_holder .event_list .entry .buttons span:hover, .justadded_holder .event_list .entry .buttons a:hover, .justadded_holder .event_list .entry .buttons a:visited:hover, .justadded_holder .event_list .entry .buttons span:hover {
            background: transparent;
            color: #ffe246; }
            .ie8 .upcoming_holder .event_list .entry .buttons a:hover, .ie9 .upcoming_holder .event_list .entry .buttons a:hover, .ie8 .upcoming_holder .event_list .entry .buttons a:visited:hover, .ie9 .upcoming_holder .event_list .entry .buttons a:visited:hover, .ie8 .upcoming_holder .event_list .entry .buttons span:hover, .ie9 .upcoming_holder .event_list .entry .buttons span:hover, .ie8 .justadded_holder .event_list .entry .buttons a:hover, .ie9 .justadded_holder .event_list .entry .buttons a:hover, .ie8 .justadded_holder .event_list .entry .buttons a:visited:hover, .ie9 .justadded_holder .event_list .entry .buttons a:visited:hover, .ie8 .justadded_holder .event_list .entry .buttons span:hover, .ie9 .justadded_holder .event_list .entry .buttons span:hover {
              filter: none;
              background-image: none; }

/* ----------------------------------------------------------------------------
= Event Featured List (on homepage with grid and list view)
----------------------------------------------------------------------------- */
.event_list {
  position: relative;
  margin-bottom: 20px; }
  .event_list hr {
    height: 1px;
    border-top-color: #333; }
  .event_list #column_1 {
    float: right;
    width: 600px;
    margin: 0;
    padding: 0;
    position: relative; }
  .event_list #column_2 {
    float: left;
    width: 322px;
    margin: 0; }
  .event_list .overview {
    padding: 0;
    overflow: hidden; }
    .event_list .overview h1 {
      float: left;
      width: auto;
      margin-top: 1px; }
    .event_list .overview #view_btns {
      float: right;
      height: 20px;
      padding: 0;
      margin: 10px 0px 0 0; }
      .event_list .overview #view_btns a {
        display: block;
        float: left;
        width: 70px;
        height: 15px;
        margin: 0 5px;
        line-height: 135%;
        overflow: hidden; }
        .event_list .overview #view_btns a#list_view_btn, .event_list .overview #view_btns a#list_view {
          border-right: 1px solid #9c5f1c;
          padding-right: 5px;
          color: #9c5f1c; }
          .event_list .overview #view_btns a#list_view_btn:before, .event_list .overview #view_btns a#list_view:before {
            content: "";
            float: left;
            display: block;
            margin-top: -1px;
            margin-right: 5px;
            cursor: default;
            background-position: 0 -250px;
            height: 14px;
            width: 12px; }
        .event_list .overview #view_btns a#grid_view_btn, .event_list .overview #view_btns a#grid_view {
          color: #9c5f1c; }
          .event_list .overview #view_btns a#grid_view_btn:before, .event_list .overview #view_btns a#grid_view:before {
            content: "";
            float: left;
            display: block;
            margin-top: -1px;
            margin-right: 5px;
            background-position: 0 -226px;
            height: 14px;
            width: 11px; }
  .event_list .list {
    position: relative;
    margin: 0 0 15px;
    padding: 0;
    height: 390px;
    display: block; }
    .event_list .list .event_list_labels {
      list-style: none;
      display: block;
      width: 100%;
      margin: 15px 0 10px;
      padding: 0;
      height: 35px; }
      .event_list .list .event_list_labels li {
        display: inline-block;
        text-transform: uppercase;
        border-left: 1px dotted #5A5A5A;
        height: 35px;
        padding: 0 0 0 10px;
        line-height: 130%;
        font-size: 13px;
        color: #000; }
        .event_list .list .event_list_labels li span {
          display: block;
          margin-top: 5px; }
        .event_list .list .event_list_labels li.span2 {
          width: 150px; }
        .event_list .list .event_list_labels li:first-child {
          border-left: 0px; }
    .event_list .list p.noevents {
      padding: 10px;
      color: black; }
  .event_list .list.grid_view {
    margin: 0 0 15px; }
    .event_list .list.grid_view .event_list_labels {
      display: none; }
    .event_list .list.grid_view .entry {
      float: left;
      position: relative;
      width: 300px;
      margin: 0 0 12px;
      padding: 0;
      overflow: hidden; }
      .event_list .list.grid_view .entry .info {
        float: left;
        position: relative;
        width: 152px;
        height: 70px;
        margin: 0;
        padding: 0;
        z-index: 10; }
        .event_list .list.grid_view .entry .info .date {
          width: 100%;
          padding: 0;
          margin: 0;
          position: relative;
          top: auto;
          left: auto; }
          .event_list .list.grid_view .entry .info .date span {
            display: none; }
        .event_list .list.grid_view .entry .info h3 {
          width: 100%;
          margin: 0;
          padding: 0;
          text-transform: none; }
          .event_list .list.grid_view .entry .info h3 a {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px; }
        .event_list .list.grid_view .entry .info h5 {
          display: none; }
        .event_list .list.grid_view .entry .info p {
          display: none; }
        .event_list .list.grid_view .entry .info .buttons {
          display: block;
          list-style: none;
          padding: 0;
          margin: 0 auto; }
          .event_list .list.grid_view .entry .info .buttons a,
          .event_list .list.grid_view .entry .info .buttons span {
            border-left: 1px solid #fff;
            margin: 0 0 0 2px;
            padding: 0 0 0 4px;
            text-transform: uppercase; }
            .event_list .list.grid_view .entry .info .buttons a:first-child,
            .event_list .list.grid_view .entry .info .buttons span:first-child {
              margin-left: 0;
              padding: 0;
              border-left: 0; }
            .event_list .list.grid_view .entry .info .buttons a.more,
            .event_list .list.grid_view .entry .info .buttons span.more {
              border-right: 0; }
          .event_list .list.grid_view .entry .info .buttons span.soon,
          .event_list .list.grid_view .entry .info .buttons span.onsale {
            cursor: default;
            font-size: 11px; }
            .event_list .list.grid_view .entry .info .buttons span.soon:hover,
            .event_list .list.grid_view .entry .info .buttons span.onsale:hover {
              margin: 0; }
          .event_list .list.grid_view .entry .info .buttons span.tickets {
            opacity: 0.7; }
            .event_list .list.grid_view .entry .info .buttons span.tickets:hover {
              text-decoration: none; }
      .event_list .list.grid_view .entry .thumb {
        display: block;
        float: left;
        position: relative;
        border: none;
        width: 134px;
        height: 79px;
        margin: 0 10px 0 0;
        padding: 0;
        z-index: 1; }
        .event_list .list.grid_view .entry .thumb a {
          display: block;
          width: 100%;
          height: 100%;
          overflow: hidden; }
        .event_list .list.grid_view .entry .thumb img {
          padding: 0;
          width: 100%;
          height: 100%; }
  .event_list .list.list_view {
    margin-top: 10px; }
    .event_list .list.list_view .entry {
      height: 25px;
      border-bottom: 1px dotted #333;
      padding-bottom: 8px;
      margin-bottom: 5px;
      clear: both; }
    .event_list .list.list_view .info {
      position: relative; }
      .event_list .list.list_view .info h3,
      .event_list .list.list_view .info .date,
      .event_list .list.list_view .info .buttons {
        display: inline-block; }
      .event_list .list.list_view .info .date {
        width: 180px;
        position: absolute;
        left: 0; }
        .event_list .list.list_view .info .date span {
          position: absolute;
          right: 0;
          text-align: right; }
      .event_list .list.list_view .info h3 {
        width: 295px;
        padding-left: 200px;
        overflow: hidden;
        font-family: Arial, Helvetica, sans-serif;
        white-space: nowrap; }
        .event_list .list.list_view .info h3 a {
          font-size: 12px; }
          .event_list .list.list_view .info h3 a:hover {
            text-decoration: underline; }
      .event_list .list.list_view .info .buttons {
        float: right; }
        .event_list .list.list_view .info .buttons a,
        .event_list .list.list_view .info .buttons span {
          border-left: 1px solid #fff;
          margin: 0 0 0 2px;
          padding: 0 0 0 4px; }
          .event_list .list.list_view .info .buttons a:first-child,
          .event_list .list.list_view .info .buttons span:first-child {
            border-left: 0; }
          .event_list .list.list_view .info .buttons a.more,
          .event_list .list.list_view .info .buttons span.more {
            border-right: 0; }
      .event_list .list.list_view .info h5 {
        display: none; }
    .event_list .list.list_view .thumb {
      display: none; }

.event_list .paging {
  clear: both;
  border: 0; }
  .event_list .paging.final {
    margin: 15px auto; }
  .event_list .paging .nav {
    width: 58%;
    margin: 0 auto; }
  .event_list .paging .record {
    display: none; }
  .event_list .paging .pages {
    float: none;
    margin: 0 auto;
    text-align: center; }
    .event_list .paging .pages a,
    .event_list .paging .pages strong {
      width: auto;
      height: auto;
      background: transparent url("../images/bg_pag.png") repeat-x 0 0;
      margin-left: 6px;
      padding: 2px 6px;
      font-size: 10px;
      line-height: 100%;
      color: #000; }
      .event_list .paging .pages a.current,
      .event_list .paging .pages strong.current {
        color: #908122; }
    .event_list .paging .pages a:hover {
      text-decoration: underline;
      color: #000; }

.event_list .formContainer .inputGroup {
  display: block;
  clear: both;
  height: 65px; }
  .event_list .formContainer .inputGroup input {
    width: 195px;
    color: #000;
    border-color: #eee;
    padding: 3px; }
.event_list .formContainer .label {
  width: 80px;
  float: left;
  font-weight: bold; }
.event_list .formContainer .inputGroupNoPad select {
  width: 285px;
  border-color: #eee;
  padding: 3px;
  color: #000; }
.event_list .formContainer .formButton {
  width: auto;
  margin: 15px auto 0;
  padding: 3px;
  clear: both;
  color: #000; }

.elist-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2c0c0c; }
  .elist-spotlight .holder {
    width: 945px;
    margin: 0 auto; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .overview {
  margin-top: 0;
  margin-bottom: 10px; }
  .event_detail .overview h1 {
    position: relative;
    display: block;
    margin: 0 0 0 -10px;
    padding: 0 10px 0 8px;
    font: 26px/20px Georgia, Times, "Times New Roman", serif;
    line-height: 120%;
    text-align: left; }
    .event_detail .overview h1 em {
      font-style: normal; }
.event_detail #column_1 {
  float: right;
  width: 558px;
  margin: 0;
  position: relative; }
  .event_detail #column_1 p:empty {
    display: none; }
  .event_detail #column_1 .header {
    width: 568px;
    height: auto;
    background: #252525;
    margin: 0;
    padding: 10px; }
    .event_detail #column_1 .header p {
      font: 500 12px/120% Arial, Helvetica, sans-serif; }
    .event_detail #column_1 .header h1 {
      color: white;
      font: 500 18px/120% Arial, Helvetica, sans-serif;
      text-transform: none;
      margin: 0 0 3px;
      padding: 0; }
    .event_detail #column_1 .header h5 {
      color: white;
      font: 500 14px/120% Arial, Helvetica, sans-serif;
      text-transform: none; }
  .event_detail #column_1 .buttons {
    position: absolute;
    right: 20px;
    top: -5px;
    left: auto; }
    .event_detail #column_1 .buttons a, .event_detail #column_1 .buttons a:visited, .event_detail #column_1 .buttons span {
      float: right;
      line-height: 27px;
      /*				&.status_1 {
      					&:hover {
      						color: $secondarycolor !important;
      						background: white;
      						text-decoration: none;
      					}
      				}
      				&.onsalesoon {
      					&:hover {
      						color: $secondarycolor !important;
      						background: white;
      						text-decoration: none;
      					}
      				}
      				&:hover {
      					color: $secondarycolor !important;
      					background-color: white;
      					text-decoration: none;
      				}*/ }
  .event_detail #column_1 .details {
    position: relative;
    width: 75%;
    margin: 0 auto;
    padding: 25px 0; }
    .event_detail #column_1 .details th {
      font-family: Georgia, Times, "Times New Roman", serif;
      color: #9c5f1c; }
    .event_detail #column_1 .details tbody tr {
      border-bottom: 1px dotted #333; }
    .event_detail #column_1 .details tbody tr td:last-child {
      width: 79px; }
    .event_detail #column_1 .details .buy-tickets {
      display: block;
      background: transparent url("../images/btn_buytickets.gif") no-repeat 0 0;
      width: 79px;
      height: 21px;
      text-indent: -100px;
      overflow: hidden; }
  .event_detail #column_1 .single-wrap {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    zoom: 1; }
    .event_detail #column_1 .single-wrap:before, .event_detail #column_1 .single-wrap:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .event_detail #column_1 .single-wrap:after {
      clear: both; }
  .event_detail #column_1 .websites {
    float: right;
    display: block;
    margin: 0 0 10px;
    padding: 10px 0; }
    .event_detail #column_1 .websites h3 {
      display: none;
      font-family: Georgia, Times, "Times New Roman", serif; }
    .event_detail #column_1 .websites ul {
      display: block;
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: right; }
      .event_detail #column_1 .websites ul li {
        float: left;
        display: block;
        padding: 0 8px 0 0;
        margin: 6px 0 0;
        border-right: 1px solid #333; }
        .event_detail #column_1 .websites ul li a,
        .event_detail #column_1 .websites ul li a:visited {
          padding: 0 0 0 12px;
          margin: 0;
          font-size: 13px;
          font-family: Georgia, Times, "Times New Roman", serif;
          color: #9c5f1c; }
          .event_detail #column_1 .websites ul li a:hover,
          .event_detail #column_1 .websites ul li a:visited:hover {
            color: #9c5f1c; }
          .event_detail #column_1 .websites ul li a[title="Amazon"],
          .event_detail #column_1 .websites ul li a:visited[title="Amazon"] {
            display: none; }
  .event_detail #column_1 .social {
    float: right;
    display: block;
    margin: 0;
    padding: 10px 0;
    color: #fff; }
    .event_detail #column_1 .social ul {
      display: block;
      list-style: none;
      padding: 0;
      margin: 0;
      zoom: 1;
      position: relative;
      overflow: auto; }
      .event_detail #column_1 .social ul:before, .event_detail #column_1 .social ul:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .event_detail #column_1 .social ul:after {
        clear: both; }
      .event_detail #column_1 .social ul li {
        float: left;
        display: block;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0 0 0 12px; }
        .event_detail #column_1 .social ul li a,
        .event_detail #column_1 .social ul li a:visited {
          display: block;
          width: 28px;
          height: 28px;
          background: transparent;
          background-image: url("../images/social_icons.png");
          background-repeat: no-repeat;
          text-indent: -9000px; }
          .event_detail #column_1 .social ul li a.soc_fb,
          .event_detail #column_1 .social ul li a:visited.soc_fb {
            background-position: 0 0; }
          .event_detail #column_1 .social ul li a.soc_tw,
          .event_detail #column_1 .social ul li a:visited.soc_tw {
            background-position: -40px 0; }
          .event_detail #column_1 .social ul li a.soc_my,
          .event_detail #column_1 .social ul li a:visited.soc_my {
            background-position: -80px 0; }
          .event_detail #column_1 .social ul li a.soc_you,
          .event_detail #column_1 .social ul li a:visited.soc_you {
            background-position: -120px 0; }
  .event_detail #column_1 .bio {
    clear: both;
    display: block;
    margin: 0;
    padding: 10px 0 25px; }
  .event_detail #column_1 .disclaimer {
    padding: 10px 0;
    margin: 20px 0 10px;
    border-top: 1px solid #333;
    font-style: italic; }
.event_detail #column_2 {
  float: left;
  width: 322px;
  margin: 0; }
  .event_detail #column_2 .image {
    width: 322px;
    height: 322px;
    margin: 0 0 15px; }
    .event_detail #column_2 .image img {
      width: 322px;
      height: auto; }
  .event_detail #column_2 .video_container {
    margin: 30px 0;
    width: 320px;
    height: 240px;
    border: 1px solid #333; }

.scrollable .list {
  /* this cannot be too large */
  width: 20000em;
  position: absolute; }

.scrollable .list .entry {
  float: left;
  clear: none; }

.scrollable .list .group {
  float: left; }

.featured_holder {
  background: url(../images/bg_carousel.png) no-repeat 0 10px;
  margin: 0 0 30px -40px;
  position: relative;
  width: 1060px;
  padding: 0;
  float: left;
  height: 140px; }
  .featured_holder .prev, .featured_holder .next {
    background: url(../images/arrows_carousel.png) no-repeat 0 0;
    cursor: pointer;
    height: 50px;
    position: absolute;
    top: 50px;
    text-indent: -9999px;
    width: 27px;
    z-index: 5;
    display: block; }
  .featured_holder .prev {
    left: 20px; }
    .featured_holder .prev:hover {
      background-position: 0 -50px; }
  .featured_holder .next {
    background-position: -27px 0;
    right: 20px; }
    .featured_holder .next:hover {
      background-position: -27px -50px; }
  .featured_holder #featured.event_list {
    width: 940px;
    margin: 0;
    padding: 0 60px;
    height: 140px;
    z-index: 500;
    background: none; }
    .featured_holder #featured.event_list .list {
      background: none;
      padding: 0;
      margin: 0; }
    .featured_holder #featured.event_list .entry {
      padding: 20px 0 0;
      float: left;
      margin-right: 10px;
      width: 170px;
      height: 130px;
      padding: 0;
      background: #eee;
      clear: none;
      position: relative;
      border: 5px solid #eee;
      overflow: hidden; }
      .featured_holder #featured.event_list .entry .info {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        margin: 0;
        width: 170px;
        padding: 0px;
        height: 130px;
        background: url(../images/bg_carousel_info.png) no-repeat 0 0; }
        .featured_holder #featured.event_list .entry .info h3 {
          padding: 10px;
          margin: 0;
          text-indent: 0;
          line-height: 18px;
          font-size: 14px;
          height: auto;
          font-weight: 700; }
          .featured_holder #featured.event_list .entry .info h3 a {
            color: red;
            font-weight: 700;
            font-size: 14px; }
            .featured_holder #featured.event_list .entry .info h3 a:hover {
              color: black; }
        .featured_holder #featured.event_list .entry .info h4 {
          padding: 0 10px;
          font-size: 11px;
          font-weight: bold;
          margin: 0; }
        .featured_holder #featured.event_list .entry .info .date {
          position: absolute;
          bottom: 7px;
          left: 12px;
          margin: 0;
          padding: 0;
          color: black;
          font-size: 11px;
          font-style: bold; }
        .featured_holder #featured.event_list .entry .info .buttons {
          position: absolute;
          top: 0px;
          right: 0px;
          width: 100px;
          height: 100px; }
          .featured_holder #featured.event_list .entry .info .buttons a, .featured_holder #featured.event_list .entry .info .buttons a:visited {
            display: block;
            width: 100px;
            height: 27px;
            padding: 0;
            margin: 0;
            position: relative;
            float: left;
            text-align: center;
            color: white;
            text-shadow: 0px -1px 0 #152336;
            text-decoration: none; }
            .featured_holder #featured.event_list .entry .info .buttons a:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited:hover {
              color: white;
              text-shadow: none;
              background: white; }
            .featured_holder #featured.event_list .entry .info .buttons a.more, .featured_holder #featured.event_list .entry .info .buttons a:visited.more {
              background: none;
              margin-right: 10px;
              color: white;
              text-decoration: none; }
            .featured_holder #featured.event_list .entry .info .buttons a.tickets, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets {
              background-position: 0 0; }
              .featured_holder #featured.event_list .entry .info .buttons a.tickets:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets:hover {
                background-position: 0 0; }
            .featured_holder #featured.event_list .entry .info .buttons a:hover, .featured_holder #featured.event_list .entry .info .buttons a:focus, .featured_holder #featured.event_list .entry .info .buttons a:visited:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited:focus {
              text-decoration: none; }
          .featured_holder #featured.event_list .entry .info .buttons span {
            display: block;
            width: 80px;
            height: 27px;
            padding: 0;
            margin: 0;
            position: relative;
            float: left;
            text-align: center;
            cursor: default;
            color: white; }
            .featured_holder #featured.event_list .entry .info .buttons span.tickets {
              background-position: 0 0; }
              .featured_holder #featured.event_list .entry .info .buttons span.tickets:hover {
                background-position: 0 0; }
            .featured_holder #featured.event_list .entry .info .buttons span.soon {
              background-position: 0 0; }
              .featured_holder #featured.event_list .entry .info .buttons span.soon:hover {
                background-position: 0 0; }
        .featured_holder #featured.event_list .entry .info .buttons {
          position: absolute;
          top: auto;
          bottom: 5px;
          right: 5px;
          width: auto;
          height: 22px; }
      .featured_holder #featured.event_list .entry .thumb {
        display: block;
        width: 170px;
        height: 130px;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 20;
        background: none;
        border: none;
        float: none;
        margin: 0; }
        .featured_holder #featured.event_list .entry .thumb img {
          width: 170px;
          height: 130px;
          padding: 0;
          margin: 0; }
  .featured_holder h3 {
    text-indent: -9999px;
    margin: 0;
    height: 0px; }
  .featured_holder .list_holder {
    position: relative;
    z-index: 10;
    margin: 0;
    overflow: hidden;
    width: 940px;
    height: 140px; }
  .featured_holder .group {
    float: left;
    height: 140px;
    padding: 0; }

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

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

.lower_level {
  position: relative;
  border-top: 1px solid #333;
  margin-top: 10px;
  padding-top: 15px; }
  .lower_level span.right {
    display: block;
    position: absolute;
    top: 10px;
    right: 0; }
    .lower_level span.right a {
      margin-left: 8px; }

/* @group FAQ */
.faq {
  margin: 0 0 20px;
  padding: 0;
  position: relative; }
  .faq dt {
    cursor: pointer;
    padding: 0 0 10px 20px;
    position: relative;
    margin: 0;
    overflow: auto; }
    .faq dt:hover p {
      color: white; }
    .faq dt p {
      font-size: 14px;
      color: #ffe246;
      text-transform: none;
      padding: 0;
      font-weight: normal;
      margin: 0; }
    .faq dt.active p {
      color: white; }
    .faq dt.active:before {
      content: '–';
      color: white; }
    .faq dt:before {
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 16px;
      content: '+';
      color: #ffe246; }
  .faq dd {
    height: 0px;
    overflow: hidden;
    padding: 0 20px; }
    .faq dd p {
      color: #fff; }
  .faq ul, .faq ol {
    margin: 0 0 0 5px;
    padding: 5px 0 8px 15px;
    color: #fff;
    font: 500 14px/140% Arial, Helvetica, sans-serif;
    list-style-type: square;
    list-style-position: outside;
    list-style-image: none; }
    .faq ul li, .faq ol li {
      margin: 0;
      padding: 0 0 6px 0;
      list-style-type: inherit;
      line-height: 130%; }
    .faq ul ul, .faq ol ul {
      margin: 0; }

/* @end */
/*@group Calendar Styles (includes Full Page and Small Calendar Styles) */
/*******************

1) Full Page Styles
	1.1) Full Page Structure
	1.2) Full Page Header
	1.3) Full Page Body
	1.4) Full Page Date Boxes
	1.5) Full Page Tooltip (for event detail)
2) Small Calendar Styles
	2.1) Small Page Structure
	2.2) Small Page Header
	2.3) Small Page Body
	2.4) Small Page Date Boxes
	2.5) Small Page Tooltip (for event detail)

*******************/
/* @subgroup 1.1) Full Page Structure */
#calendar.full {
  width: 610px;
  height: 700px;
  background: transparent;
  margin-top: 5px;
  position: relative; }

.calendar .full_column {
  height: 800px; }

.calendar .cal_full_bottom {
  height: 80px;
  width: 590px;
  margin-top: 14px; }

/*@subgroup 1.2) Full Page Header */
.full {
  /* MonthlyCalendar */ }
  .full .MonthlyCalendar {
    height: 700px;
    width: 610px;
    border-collapse: collapse;
    margin-left: 0px;
    position: relative;
    /* CalendarHead */ }
    .full .MonthlyCalendar .MonthNavigation {
      height: 50px;
      padding: 0; }
    .full .MonthlyCalendar .MonthNavPrev,
    .full .MonthlyCalendar .MonthNavNext,
    .full .MonthlyCalendar .TodayLink {
      top: 12px; }
      .full .MonthlyCalendar .MonthNavPrev a,
      .full .MonthlyCalendar .MonthNavNext a,
      .full .MonthlyCalendar .TodayLink a {
        width: 24px;
        height: 24px;
        display: block; }
    .full .MonthlyCalendar .MonthNavPrev {
      left: 157px;
      cursor: pointer; }
      .full .MonthlyCalendar .MonthNavPrev a.link-prev {
        display: block;
        background: url(../images/cal_arrows.png) no-repeat 0 0; }
        .full .MonthlyCalendar .MonthNavPrev a.link-prev:hover {
          background-position: 0 -24px; }
    .full .MonthlyCalendar .MonthNavNext {
      right: 154px;
      cursor: pointer; }
      .full .MonthlyCalendar .MonthNavNext a.link-next {
        background: url(../images/cal_arrows.png) no-repeat -24px 0; }
        .full .MonthlyCalendar .MonthNavNext a.link-next:hover {
          background-position: -24px -24px; }
    .full .MonthlyCalendar .MonthName {
      position: relative;
      width: 200px;
      text-align: center;
      display: block;
      left: 1px;
      font-weight: normal;
      margin: 0 auto;
      padding: 14px 0 0;
      color: #888888;
      text-decoration: none;
      text-transform: uppercase;
      line-height: 135%;
      text-shadow: none;
      letter-spacing: 0;
      background: transparent;
      font-size: 22px; }
    .full .MonthlyCalendar #CalendarHead {
      color: #000;
      height: 58px;
      line-height: 15px tr;
        line-height-color: transparent; }
      .full .MonthlyCalendar #CalendarHead tr td {
        padding: 0;
        border: none; }
      .full .MonthlyCalendar #CalendarHead .DateHeader {
        width: 20px;
        text-align: center;
        font-size: 14px;
        line-height: 140%;
        color: #888888;
        height: 27px;
        text-transform: uppercase;
        background: url(../images/full_calendar_datehead.png) repeat-x center top; }
        .full .MonthlyCalendar #CalendarHead .DateHeader span {
          padding-top: 5px;
          display: block; }

/* full */
/*@subgroup 1.3) Full Page Body */
.full .jMonthCalendar {
  position: relative;
  height: 700px;
  width: 570px;
  padding-top: 0; }
  .full .jMonthCalendar .button {
    text-indent: 0;
    position: relative;
    margin: 40px 0 0 4px;
    background: #006EB8;
    width: 80px;
    height: 40px; }
    .full .jMonthCalendar .button:hover {
      background: #006EB8;
      opacity: 0.5; }
    .full .jMonthCalendar .button img {
      width: 78px;
      height: 46px;
      border: solid 1px #00599C; }
    .full .jMonthCalendar .button label {
      display: none; }

/*@subgroup 1.4) Full Page Date Boxes */
.full .DateBox {
  width: 85px;
  height: 98px;
  border: 1px solid #CCC;
  background: #f2f2f2; }

.full .DateLabel {
  width: 25px;
  height: 30px;
  text-align: left;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  padding: 4px 0 0 8px;
  letter-spacing: 1px;
  background: none; }

.full #CalendarBody .active {
  background: #00589A url(../images/cal_event.png) repeat-x left top; }

.full #CalendarBody .active .DateLabel {
  background: none; }

.full .DateLabel a {
  color: red;
  text-decoration: none; }

.full #CalendarBody .Inactive, .full #CalendarBody .Inactive.active {
  opacity: 1.0; }

.full #CalendarBody .Today {
  background: #4C6D1D url(../images/cal_day.png) repeat-x left top;
  opacity: 1.0; }

.full #CalendarBody .Today .DateLabel {
  background: transparent; }

/*@subgroup 1.5) Full Page Tooltip (for event detail) */
#calendar.full .tooltip {
  width: 331px;
  height: 187px;
  left: 150px;
  top: 150px;
  font-weight: bold;
  z-index: 6000;
  background: url(../images/bg_cal_tooltip.png) no-repeat 0 0;
  filter: none; }
  #calendar.full .tooltip .buttons {
    width: 73px; }
    #calendar.full .tooltip .buttons a, #calendar.full .tooltip .buttons span {
      display: block;
      background: url(../images/btns_events.png) no-repeat -32px -32px;
      height: 32px;
      position: relative;
      text-indent: -9999px;
      width: 32px;
      cursor: pointer; }
    #calendar.full .tooltip .buttons .more {
      background-position: 0 -32px;
      float: left; }
      #calendar.full .tooltip .buttons .more:hover {
        background-position: 0 0; }
    #calendar.full .tooltip .buttons .tickets {
      float: right; }
      #calendar.full .tooltip .buttons .tickets:hover {
        background-position: -32px 0; }
    #calendar.full .tooltip .buttons span.tickets, #calendar.full .tooltip .buttons span.soon {
      background-position: -32px -64px;
      cursor: default;
      float: right; }
      #calendar.full .tooltip .buttons span.tickets:hover, #calendar.full .tooltip .buttons span.soon:hover {
        background-position: -32px -64px; }
  #calendar.full .tooltip .content {
    border: none;
    margin: 25px 0 0;
    padding: 20px;
    color: black;
    height: 115px; }
    #calendar.full .tooltip .content h3 a {
      color: red;
      font-weight: 900;
      font-size: 18px; }
      #calendar.full .tooltip .content h3 a:hover {
        color: black; }
  #calendar.full .tooltip .close {
    position: absolute;
    top: 12px;
    right: 11px;
    width: 40px;
    height: 14px;
    font: normal 14px/16px Arial, Helvetica, sans-serif;
    color: #111;
    cursor: pointer;
    text-transform: lowercase;
    text-align: right; }
    #calendar.full .tooltip .close:hover {
      color: #FFF; }

#calendar.full .tooltip label {
  display: block;
  padding-bottom: 15px;
  color: #FFEB51;
  font-size: 14px;
  border-bottom: 1px solid #333; }

#calendar.full .tooltip .info {
  font-size: 12px;
  line-height: 140%;
  display: block;
  clear: both;
  padding: 4px 0 0;
  margin: 0 0 15px; }

#calendar.full .tooltip .info .date {
  display: block;
  width: 51px;
  height: 51px;
  float: left;
  text-align: center;
  line-height: 44px;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  background: none;
  letter-spacing: 2px;
  margin-left: 8px; }

#calendar.full .tooltip .info .cal_details {
  float: left;
  width: 120px;
  padding-top: 8px; }

#calendar.full .tooltip .info .cal_details a {
  display: block;
  color: #fff;
  text-decoration: none; }

#calendar.full .tooltip .info .cal_details a:hover {
  text-decoration: underline;
  color: #007ACB; }

#calendar.full .tooltip .info .cal_details a:hover .cal_event_title,
#calendar.full .tooltip .info .cal_details a:hover .time {
  color: #007ACB; }

#calendar.full .tooltip .info .cal_details .cal_event_title {
  display: block;
  color: #fff;
  height: 10px;
  line-height: 13px; }

#calendar.full .tooltip .info .cal_details .time {
  color: #fff;
  display: block;
  height: 14px; }

/***************************************************************/
/*@subgroup 2.1) Small Page Structure */
.calendar_holder {
  position: relative;
  height: 255px;
  width: 312px;
  margin: 0 0 0 12px;
  float: left;
  background: url(../images/cal_bg_full.png) no-repeat 0 0;
  padding: 0; }

#calendar {
  position: relative;
  height: 255px;
  width: 312px;
  font: 12px Arial, Helvetica, sans-serif;
  margin: 0;
  background: none;
  padding: 0; }

.MonthlyCalendar {
  height: 85%;
  width: 90%;
  border-collapse: collapse;
  margin-left: 15px; }

a.cal_view_all {
  display: block;
  position: absolute;
  bottom: 32px;
  left: 11px;
  width: 121px;
  height: 14px;
  padding: 0;
  background: url(../images/cal_small_see_all.png) no-repeat 0 0;
  text-indent: -9000px; }

a.cal_view_all:hover {
  background-position: 0 -14px;
  text-decoration: none; }

/*@subgroup 2.2) Small Page Header */
.MonthlyCalendar .MonthNavigation {
  clear: both;
  padding: 5px 10px 0 10px; }

.MonthlyCalendar .MonthNavPrev,
.MonthlyCalendar .MonthNavNext {
  width: 16px;
  height: 28px;
  position: absolute;
  top: 16px;
  text-indent: -4000px;
  cursor: pointer;
  z-index: 50; }

.MonthlyCalendar .MonthNavPrev a {
  display: block;
  width: 16px;
  height: 28px;
  background: url(../images/cal_arrows.png) no-repeat 0 0; }

.MonthlyCalendar .MonthNavNext a {
  display: block;
  width: 16px;
  height: 28px;
  background: url(../images/cal_arrows.png) no-repeat -16px 0; }

.MonthlyCalendar .MonthNavPrev a:hover {
  background: url(../images/cal_arrows.png) no-repeat 0 -28px; }

.MonthlyCalendar .MonthNavNext a:hover {
  background: url(../images/cal_arrows.png) no-repeat -16px -28px; }

.MonthlyCalendar .MonthNavPrev {
  left: 12px; }

.MonthlyCalendar .MonthNavNext {
  right: 12px;
  background-position: -14px 0; }

.MonthlyCalendar .MonthName {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  z-index: 30;
  color: #333333;
  line-height: 28px;
  padding: 0 6px 0 0;
  margin-top: 0;
  font-weight: 900; }

.MonthlyCalendar #CalendarHead {
  width: 100%;
  color: #fff;
  line-height: 20px;
  height: 50px; }

.MonthlyCalendar #CalendarHead tr {
  color: #fff; }

.MonthlyCalendar #CalendarHead tr td {
  padding: 0;
  border: none; }

.MonthlyCalendar #CalendarHead .DateHeader {
  width: 20px;
  text-align: center;
  font-size: 10px;
  color: #666;
  height: 30px;
  font-weight: 700;
  text-transform: uppercase; }

/*@subgroup 2.3) Small Page Body */
.jMonthCalendar {
  position: relative;
  height: 100%;
  width: 100%;
  padding-top: 10px;
  z-index: 200;
  background: url(../images/cal_bg_full.png) no-repeat 0 0; }

.MonthlyCalendar #CalendarBody tr {
  height: 22px; }

#CalendarBody .Inactive, #CalendarBody .active.Inactive {
  background: none; }

#CalendarBody .active .DateLabel {
  background: none; }

#CalendarBody .active a {
  display: none;
  color: red;
  cursor: pointer; }
  #CalendarBody .active a:hover {
    text-decoration: none;
    color: black; }

#CalendarBody .Inactive a, #CalendarBody .active.Inactive a {
  display: none; }

#CalendarBody .Inactive, #CalendarBody .Inactive .DateLabel {
  background: none;
  opacity: 0;
  border: none; }

.jMonthCalendar .MoreEvents {
  font-size: 12px;
  cursor: pointer;
  display: block;
  position: absolute;
  text-align: center; }

.jMonthCalendar .button {
  font-size: 12px;
  cursor: pointer;
  display: block;
  width: 40px;
  height: 22px;
  position: absolute;
  text-align: center;
  margin: 0;
  z-index: 5000;
  padding: 0;
  background-color: transparent; }

.jMonthCalendar .button label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: red; }

.jMonthCalendar .button:hover {
  background: none; }
  .jMonthCalendar .button:hover label {
    color: red; }

/*@subgroup 2.4) Small Page Date Boxes */
td.DateBox {
  vertical-align: top;
  width: 32px;
  height: 24px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 22px;
  background: url(../images/cal_day.png) no-repeat right 4px; }
  td.DateBox:nth-child(7) {
    background: none; }

.DateLabel {
  height: 22px;
  width: 38px;
  text-align: center;
  background: none;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px; }

.DateLabel a {
  cursor: default;
  text-decoration: none;
  color: #fff; }

.jMonthCalendar .Event {
  font-size: 12px;
  padding: 1px 1px 1px 4px;
  cursor: pointer;
  display: block;
  position: absolute;
  text-align: left;
  overflow: hidden;
  height: 14px; }

.Event a {
  text-decoration: none;
  color: red;
  float: left;
  white-space: nowrap;
  padding-top: 1px; }

.Event a:hover {
  text-decoration: underline; }

.Event span.ui-icon-triangle-1-w {
  float: left; }

.Event span.ui-icon-triangle-1-e {
  float: right; }

#CalendarBody .DateBoxOver {
  background: #007ACB; }

.Today .DateLabel, #CalendarBody .Today.active .DateLabel {
  background: url(../images/cal_today.png) no-repeat 3px 0; }

.Today .DateLabel a {
  color: #fff; }

/*@subgroup 2.5) Small Page Tooltip (for event detail)	 */
#calendar .tooltip {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 298px;
  z-index: 100;
  padding: 15px;
  height: 226px;
  background: url(../images/cal_tooltip_bg.png) no-repeat 0 0; }

#calendar .tooltip .scrolled_content {
  height: 230px;
  width: 270px;
  overflow: hidden;
  position: relative; }

#calendar .tooltip .viewport {
  height: 220px;
  width: 270px;
  overflow: hidden;
  position: relative; }

#calendar .tooltip .scrollbar {
  display: none;
  width: 24px;
  height: 230px;
  position: absolute;
  right: 0;
  top: 0; }

#calendar .tooltip .scrollbar .track {
  width: 24px;
  height: 230px;
  position: relative;
  background: url(../images/cal_small_scroll_bg.png) no-repeat right top; }

#calendar .tooltip .scrollbar .track .thumb {
  width: 24px;
  height: 53px;
  background: url(../images/cal_small_scroll_thumb.png) no-repeat left top;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer; }

#calendar .tooltip label {
  display: none; }

#calendar .tooltip .close {
  width: 20px;
  height: 80px;
  background: url(../images/cal_close.png) no-repeat 0 0;
  text-indent: -5000px;
  position: absolute;
  top: 35%;
  right: 10px;
  cursor: pointer; }
  #calendar .tooltip .close:hover {
    background-position: 0 -222px; }

#calendar .tooltip .content {
  width: 260px;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: scroll;
  position: absolute;
  left: 0;
  top: 0;
  list-style: none; }

#calendar .tooltip .static_bg {
  background: #43413A url(../images/bg_cal_detail_inside.png) 0 0 repeat-x; }

#calendar .tooltip .date_btns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 255px;
  height: 30px;
  padding: 10px 0;
  border-top: 1px solid #011930; }
  #calendar .tooltip .date_btns .date {
    float: left;
    width: 200px; }
    #calendar .tooltip .date_btns .date p {
      font-weight: 500;
      color: #fff;
      font-size: 12px;
      text-transform: uppercase; }
    #calendar .tooltip .date_btns .date span {
      clear: both;
      display: block;
      position: relative; }

#calendar .tooltip .info {
  width: 270px;
  padding: 0;
  height: 160px;
  overflow: hidden; }
  #calendar .tooltip .info p {
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    font-family: 'Arial'; }
    #calendar .tooltip .info p.tagline {
      font-size: 12px;
      font-style: italic; }
  #calendar .tooltip .info h3 {
    position: relative; }
    #calendar .tooltip .info h3 a, #calendar .tooltip .info h3 a:link, #calendar .tooltip .info h3 a:visited {
      color: red;
      font-weight: 700;
      text-decoration: none;
      font-size: 18px;
      line-height: 120%;
      text-transform: none; }
      #calendar .tooltip .info h3 a:hover, #calendar .tooltip .info h3 a:focus, #calendar .tooltip .info h3 a:link:hover, #calendar .tooltip .info h3 a:link:focus, #calendar .tooltip .info h3 a:visited:hover, #calendar .tooltip .info h3 a:visited:focus {
        text-decoration: none;
        color: #FFF; }
  #calendar .tooltip .info .description {
    height: 120px;
    overflow: hidden; }
    #calendar .tooltip .info .description h3 {
      font-size: 14px;
      text-transform: none;
      position: relative; }

#calendar .tooltip .content .calendar_detail {
  height: 200px;
  overflow: hidden;
  padding: 10px 0;
  position: relative; }
  #calendar .tooltip .content .calendar_detail:nth-child(2) {
    border-top: 1px solid #011930; }
  #calendar .tooltip .content .calendar_detail .buttons {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100px;
    height: 100px; }
    #calendar .tooltip .content .calendar_detail .buttons a, #calendar .tooltip .content .calendar_detail .buttons a:visited {
      display: block;
      width: 100px;
      height: 27px;
      padding: 0;
      margin: 0;
      position: relative;
      float: left;
      text-align: center;
      color: white;
      text-shadow: 0px -1px 0 #152336;
      text-decoration: none; }
      #calendar .tooltip .content .calendar_detail .buttons a:hover, #calendar .tooltip .content .calendar_detail .buttons a:visited:hover {
        color: white;
        text-shadow: none;
        background: white; }
      #calendar .tooltip .content .calendar_detail .buttons a.more, #calendar .tooltip .content .calendar_detail .buttons a:visited.more {
        background: none;
        margin-right: 10px;
        color: white;
        text-decoration: none; }
      #calendar .tooltip .content .calendar_detail .buttons a.tickets, #calendar .tooltip .content .calendar_detail .buttons a:visited.tickets {
        background-position: 0 0; }
        #calendar .tooltip .content .calendar_detail .buttons a.tickets:hover, #calendar .tooltip .content .calendar_detail .buttons a:visited.tickets:hover {
          background-position: 0 0; }
      #calendar .tooltip .content .calendar_detail .buttons a:hover, #calendar .tooltip .content .calendar_detail .buttons a:focus, #calendar .tooltip .content .calendar_detail .buttons a:visited:hover, #calendar .tooltip .content .calendar_detail .buttons a:visited:focus {
        text-decoration: none; }
    #calendar .tooltip .content .calendar_detail .buttons span {
      display: block;
      width: 80px;
      height: 27px;
      padding: 0;
      margin: 0;
      position: relative;
      float: left;
      text-align: center;
      cursor: default;
      color: white; }
      #calendar .tooltip .content .calendar_detail .buttons span.tickets {
        background-position: 0 0; }
        #calendar .tooltip .content .calendar_detail .buttons span.tickets:hover {
          background-position: 0 0; }
      #calendar .tooltip .content .calendar_detail .buttons span.soon {
        background-position: 0 0; }
        #calendar .tooltip .content .calendar_detail .buttons span.soon:hover {
          background-position: 0 0; }
  #calendar .tooltip .content .calendar_detail .buttons {
    top: auto;
    bottom: 15px;
    width: auto; }

#calendar .tooltip .thumb {
  position: relative;
  width: 94px;
  height: 74px;
  padding: 0;
  float: right;
  margin: 0 10px 10px 10px; }
  #calendar .tooltip .thumb img {
    width: 90px;
    height: 70px;
    border: 2px solid #011930;
    margin: 0;
    padding: 0; }

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

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

/* @group Default Banner */
.banner {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative; }
  .banner .slideshow {
    width: 100%;
    height: 100%;
    background: none;
    margin: 0;
    padding: 0; }
    .banner .slideshow .slide {
      width: 100%;
      height: 100%;
      background: none;
      margin: 0;
      padding: 0; }
      .banner .slideshow .slide span {
        width: auto;
        height: auto; }
      .banner .slideshow .slide img {
        padding: 0;
        border: none;
        background: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0; }
    .banner .slideshow a {
      display: block;
      width: 100%;
      height: 100%; }
    .banner .slideshow .imglink {
      display: none;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }
      .banner .slideshow .imglink a {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }

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

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

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

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

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

#map_canvas {
  height: 326px;
  margin: 0 0 20px;
  font-size: 12px; }
  #map_canvas address {
    font-size: 13px;
    color: #000; }
  #map_canvas label {
    width: auto;
    font-style: italic;
    font-weight: normal;
    font-size: 11px;
    margin: 0 0 4px;
    padding-top: 5px;
    color: #000; }
  #map_canvas .map_form {
    color: black;
    font-size: 12px; }
    #map_canvas .map_form input {
      float: left;
      height: 18px;
      border: 1px solid #ccc;
      padding: 3px;
      color: #000; }
    #map_canvas .map_form .submit {
      height: 26px;
      background: #000;
      border: 1px solid #000;
      padding: 3px;
      line-height: 14px;
      color: #fff; }

#fb_connect_status {
  display: none; }

.fbtabs {
  padding: 0 0 15px;
  width: 200px;
  height: 370px;
  margin: 0 0 15px;
  position: relative; }
  .fbtabs h4 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    margin: 10px 0;
    padding: 0 0 0 28px;
    text-align: left;
    text-transform: uppercase;
    background: url(../images/social_icons.png) no-repeat 0 2px; }
  .fbtabs a.seeall {
    position: absolute;
    top: 45px;
    right: 12px;
    width: 16px;
    height: 12px;
    padding: 5px;
    z-index: 25;
    cursor: pointer;
    display: block;
    text-indent: -90000px;
    background: url(../images/icon_seeall.png) no-repeat center center; }
  .fbtabs .css-tabs {
    margin: 0 0 0 -1px;
    padding: 0; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0; }
    .fbtabs .css-tabs a {
      background-color: #2577C6;
      border: 1px solid #fff;
      color: #fff;
      display: block;
      font-size: 10px;
      margin: 0 1px 0;
      padding: 5px 10px 2px;
      text-transform: uppercase;
      text-decoration: none; }
      .fbtabs .css-tabs a.current {
        background-color: #fff;
        color: #2577C6; }
  .fbtabs .css-panes {
    background-color: #fff;
    clear: both;
    padding: 5px;
    width: 170px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    height: 260px;
    top: -1px; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 238px;
      padding: 10px 0;
      background: #ffffff; }
    .fbtabs .css-panes .attendee {
      float: left;
      height: 85px;
      padding: 0 3px;
      width: 50px;
      text-align: center;
      font-weight: bold;
      line-height: 110%; }
      .fbtabs .css-panes .attendee a {
        display: block;
        clear: both;
        text-align: left;
        line-height: 120%;
        font-size: 11px;
        color: #222;
        text-decoration: none; }
        .fbtabs .css-panes .attendee a div {
          font-weight: normal;
          font-size: 10px; }
      .fbtabs .css-panes .attendee img {
        display: block;
        height: 50px;
        width: 50px; }

.fbtabs_holder {
  padding: 5px 10px 10px;
  margin: 0;
  position: relative; }

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

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

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

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

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

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

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

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

#fb_rsvp button, #fb_rsvp_status button {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 0px;
  text-align: center;
  line-height: 11px;
  background: #FEE230;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid #EBBB2A;
  cursor: pointer; }

#fb_rsvp_status span {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 10px;
  text-align: center;
  line-height: 11px;
  background: #FEE230;
  color: #222;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid #EBBB2A;
  cursor: pointer; }

#fb_rsvp #button_fb_rsvp_going {
  color: #222;
  margin-right: 10px; }

#fb_rsvp_status span, #fb_rsvp button:hover, #fb_rsvp_status button:hover {
  color: #222;
  background: #EBBB2A; }

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

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

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

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

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

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

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

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

#fb_window_content .warning {
  background: #FFEBE8; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      width: 600px;
      position: relative;
      border-bottom: 1px solid #ffe246; }
      .concierge_listing .list .entry .thumb {
        width: 110px;
        height: 85px;
        margin: 0 20px 5px 0;
        padding: 5px;
        float: left;
        border: 1px solid #ffe246; }
        .concierge_listing .list .entry .thumb a {
          display: block;
          width: 110px;
          height: 85px; }
        .concierge_listing .list .entry .thumb img {
          width: 110px;
          height: 85px; }
    .concierge_listing .list .info {
      float: left;
      width: 370px;
      margin: 0; }
      .concierge_listing .list .info h3 a {
        color: #ffe246;
        text-decoration: none; }
        .concierge_listing .list .info h3 a:hover {
          color: white; }
      .concierge_listing .list .info address {
        color: white;
        font-size: 12px;
        font-style: italic;
        line-height: 130%;
        padding: 0; }
  .concierge_listing .buttons {
    width: 110px;
    height: auto;
    top: 10px; }
    .concierge_listing .buttons a, .concierge_listing .buttons a:link, .concierge_listing .buttons a:visited {
      width: 110px;
      line-height: 27px; }

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

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

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

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

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

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

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

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

#lightbox-nav a {
  outline: none; }

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

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

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

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

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

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

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

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

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

/* @group Photo Gallery */
.photo_gallery {
  margin: 0 0 20px 15px;
  padding: 0;
  width: 277px;
  height: auto;
  display: block;
  float: left;
  position: relative;
  overflow: hidden; }
  .photo_gallery:nth-child(even) {
    float: right;
    margin: 0 15px 20px 0; }
  .photo_gallery .thumb {
    display: block;
    margin: 0;
    padding: 0;
    width: 275px;
    height: 170px;
    border: 1px solid #333;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    .photo_gallery .thumb:hover, .photo_gallery .thumb:focus {
      border: 1px solid white; }
    .photo_gallery .thumb img {
      margin: 0;
      padding: 0;
      border: none;
      display: block;
      width: 275px;
      height: 170px; }
  .photo_gallery .view-gallery {
    width: 275px;
    height: 30px;
    text-align: center;
    margin: 4px auto 8px;
    color: white;
    background: transparent;
    line-height: 280%; }
  .photo_gallery h2.photo-name {
    width: 275px;
    text-align: left;
    margin: 0 auto 10px;
    color: white;
    font: 500 12px/14px Arial, Helvetica, sans-serif; }
  .photo_gallery strong {
    display: block;
    width: 277px;
    margin: 0;
    padding: 5px 0;
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: none;
    overflow: hidden;
    border-bottom: 1px solid #ffe246;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    color: #FFF; }
  .photo_gallery a {
    text-decoration: none; }
    .photo_gallery a:hover {
      text-decoration: none; }

.apple_overlay {
  display: none;
  width: 670px;
  padding: 15px 15px 10px;
  height: auto;
  background: #fff; }
  .apple_overlay .close {
    background-image: url(../images/lightbox-btn-close.gif);
    position: absolute;
    bottom: 20px;
    right: 16px;
    cursor: pointer;
    width: 66px;
    height: 22px;
    z-index: 9000; }
  .apple_overlay .content {
    background: transparent; }
  .apple_overlay .slideshow {
    width: 640px;
    height: auto;
    background: #fff;
    margin: 0;
    position: relative; }
    .apple_overlay .slideshow .controls {
      width: 640px;
      padding: 5px 0;
      color: #fff;
      position: absolute;
      right: -15px;
      bottom: 110px;
      z-index: 20;
      background: url(../images/bg_80.png) repeat; }
      .apple_overlay .slideshow .controls .nav-controls {
        position: relative; }
        .apple_overlay .slideshow .controls .nav-controls a.prev {
          width: 20px;
          height: 30px;
          padding: 0;
          display: block;
          background: url(../images/cal_arrows.png) no-repeat 0 0;
          text-indent: -5000px;
          float: left;
          margin-left: 5px; }
          .apple_overlay .slideshow .controls .nav-controls a.prev:hover {
            background-position: 0 -30px; }
        .apple_overlay .slideshow .controls .nav-controls a.next {
          display: block;
          width: 20px;
          height: 30px;
          padding: 0;
          margin-right: 5px;
          background: url(../images/cal_arrows.png) no-repeat -24px 0;
          text-indent: -5000px;
          float: right; }
          .apple_overlay .slideshow .controls .nav-controls a.next:hover {
            background-position: -24px -30px; }
    .apple_overlay .slideshow .slide {
      width: 100%;
      height: 360px;
      overflow: hidden;
      background: #000;
      background: #EFEFEF;
      padding: 5px 5px 0;
      border-top: 10px solid #003865;
      border-left: 10px solid #003865;
      border-right: 10px solid #003865; }
      .apple_overlay .slideshow .slide a.advance-link {
        display: block;
        width: 100%;
        height: 100%; }
      .apple_overlay .slideshow .slide span {
        display: block;
        width: 100%;
        height: 360px; }
      .apple_overlay .slideshow .slide img {
        width: 640px;
        height: 360px; }
    .apple_overlay .slideshow .caption_holder {
      position: relative;
      bottom: auto;
      left: auto;
      width: 590px;
      padding: 0 30px;
      height: 51px;
      z-index: auto;
      border-bottom: 10px solid #003865;
      border-left: 10px solid #003865;
      border-right: 10px solid #003865;
      background: none; }
      .apple_overlay .slideshow .caption_holder span {
        display: block;
        width: auto;
        height: 29px;
        top: 12px;
        left: 36px;
        position: absolute;
        z-index: 22; }
    .apple_overlay .slideshow .caption p {
      color: white;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      line-height: 29px;
      padding: 0;
      font-weight: 500;
      background: none;
      height: 34px;
      overflow: hidden;
      margin: 0; }
      .apple_overlay .slideshow .caption p a {
        display: none; }
    .apple_overlay .slideshow .caption a {
      display: none; }
    .apple_overlay .slideshow .caption a[rel="video"], .apple_overlay .slideshow .caption a[rel="imglink"] {
      display: none; }
    .apple_overlay .slideshow .thumbs_holder {
      display: block;
      width: 600px;
      height: 80px;
      position: relative;
      margin: 15px 0 0; }
      .apple_overlay .slideshow .thumbs_holder ul {
        display: block;
        list-style-type: none;
        list-style-image: none;
        padding: 0;
        margin: 0; }
        .apple_overlay .slideshow .thumbs_holder ul li {
          float: left;
          width: 70px;
          margin-right: 5px;
          height: 40px; }
          .apple_overlay .slideshow .thumbs_holder ul li.selected a.thumb, .apple_overlay .slideshow .thumbs_holder ul li.selected a.thumb:link, .apple_overlay .slideshow .thumbs_holder ul li.selected a.thumb:visited, .apple_overlay .slideshow .thumbs_holder ul li.selected a.thumb:hover, .apple_overlay .slideshow .thumbs_holder ul li.selected a.thumb:focus {
            border: 2px solid #ffe246; }
          .apple_overlay .slideshow .thumbs_holder ul li.selected .caption {
            display: none; }
          .apple_overlay .slideshow .thumbs_holder ul li a, .apple_overlay .slideshow .thumbs_holder ul li a:link, .apple_overlay .slideshow .thumbs_holder ul li a:visited {
            display: none; }
          .apple_overlay .slideshow .thumbs_holder ul li a.thumb, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:link, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:visited {
            display: block;
            width: 70px;
            height: 40px;
            border: none;
            background: transparent;
            border: 2px solid #fff; }
            .apple_overlay .slideshow .thumbs_holder ul li a.thumb:hover, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:focus, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:link:hover, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:link:focus, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:visited:hover, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:visited:focus {
              border: 2px solid #ffe246; }
            .apple_overlay .slideshow .thumbs_holder ul li a.thumb img, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:link img, .apple_overlay .slideshow .thumbs_holder ul li a.thumb:visited img {
              display: block;
              width: 70px;
              height: 40px;
              background: transparent; }
      .apple_overlay .slideshow .thumbs_holder .caption {
        display: none; }
    .apple_overlay .slideshow .video {
      width: 640px;
      height: 360px;
      background: url(../images/play.png) no-repeat center 160px;
      position: absolute;
      left: 15px;
      top: 15px;
      display: none;
      z-index: 601; }
      .apple_overlay .slideshow .video #video_player, .apple_overlay .slideshow .video #video_holder {
        display: block;
        width: auto;
        height: 360px;
        margin: 0 auto;
        text-align: center; }
    .apple_overlay .slideshow .imglink {
      width: 640px;
      height: 360px;
      position: absolute;
      left: 0px;
      top: 0px;
      display: none; }
      .apple_overlay .slideshow .imglink #imglink {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }
    .apple_overlay .slideshow img {
      display: block;
      width: 100%;
      height: 100%; }
  .apple_overlay #map_overlay {
    background-image: url(../images/map_transparent.png); }
    .apple_overlay #map_overlay .apple_overlay {
      display: none;
      width: 620px;
      padding: 35px;
      height: 370px; }
  .apple_overlay .contentWrap {
    height: 375px;
    overflow: hidden;
    border: 1px solid #FF9100; }

/* Typekit inactive and loading style fallbacks */
/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.ie8 th,
.ie8 tr,
.ie8 td {
  text-align: left; }

.ie9 th,
.ie9 tr,
.ie9 td {
  text-align: left; }
.ie9 .gradiant {
  filter: none !important; }

/*
	@import "toolbar";
	@import "buttons";
*/
