@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 {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #CCC;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */ }

/* 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';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Myriad Pro Typekit Weights:
=Light -----300 
=Regular ---400 
=Semibold --600 
=Bold ------700
=Black -----900 
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Superclarendon Typekit Weights:
=Light -----300 
=Regular ---400  
=Bold ------700
=Black -----900 
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=News Gothic STD Typekit Weights:
=Regular ---400  
=Bold ------700
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=League Gothic Typekit Weights:
=Regular ---400  
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=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/
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* Dividers and Element Colors */
/* Base Backgrounds */
/* Event Item Size Variables */
h1 {
  margin: 0 0 8px;
  padding: 0;
  color: #2F93C0;
  font: 700 20px/120% "superclarendon";
  text-transform: uppercase; }
  h1 a, h1 a:link, h1 a:visited {
    text-decoration: none; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #B7502C;
  font: 700 18px/120% "news-gothic-std";
  text-transform: uppercase; }
  h2 a, h2 a:link, h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  color: #2F93C0;
  text-transform: uppercase;
  font: bold 16px/130% "news-gothic-std"; }
  h3 a, h3 a:link, h3 a:visited {
    text-decoration: none; }

h4 {
  margin: 0;
  padding: 0;
  color: #B7502C;
  font: bold 14px/150% "news-gothic-std";
  text-transform: uppercase; }
  h4 a, h4 a:link, h4 a:visited {
    text-decoration: none; }

h5 {
  margin: 0;
  padding: 0 0 2px 0;
  color: black;
  font: bold 12px/140% Arial, Helvetica, sans-serif; }
  h5 a, h5 a:link, h5 a:visited {
    text-decoration: none; }

h6 {
  margin: 0;
  padding: 0 0 4px;
  color: black;
  font: bold 10px/140% Arial, Helvetica, sans-serif; }

p, address {
  margin: 0 0 15px;
  padding: 0;
  color: #666;
  font: normal 12px/140% Arial, Helvetica, sans-serif; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 5px;
  padding: 5px 0 8px 15px;
  color: #666;
  font: 12px/140% Arial, Helvetica, sans-serif;
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none; }
  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, a:link, a:visited {
  color: #2F93C0;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus, a:link:hover, a:link:focus, a:visited:hover, a:visited:focus {
    text-decoration: underline; }

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

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

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: white;
  background: #000;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased; }
  body.bg_arena {
    background: #000 url(../images/bg_arena.png) no-repeat center top; }
  body.bg_ballpark {
    background: #000 url(../images/bg_ballpark.png) no-repeat center top; }
  body.bg_theatre {
    background: #000 url(../images/bg_theatre.png) no-repeat center top; }

#container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/toolbar_bg.png) repeat-x left top; }

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

.full {
  position: relative;
  width: 980px;
  background: #fff url(../images/page_content_fade.jpg) repeat-x left top;
  border-bottom: solid 4px #ababab; }

.full_column {
  width: 980px; }
  .full_column #column_1 {
    width: 960px;
    padding: 10px; }
    .full_column #column_1.search_results {
      margin: 0; }

.one_sidebar_right {
  position: relative;
  width: 980px;
  background: #fff url(../images/page_content_fade.jpg) repeat-x left top;
  border-bottom: solid 4px #ababab;
  padding: 0 0 35px; }
  .one_sidebar_right #column_1 {
    width: 620px;
    margin: 20px 0 0 15px;
    float: left; }
  .one_sidebar_right #column_2 {
    width: 314px;
    float: right;
    margin: 20px 0 0; }

.two_sidebar_center {
  position: relative;
  width: 980px;
  background: #fff url(../images/page_content_fade.jpg) repeat-x left top;
  border-bottom: solid 4px #ababab; }
  .two_sidebar_center #column_1 {
    float: left; }
  .two_sidebar_center #column_3 {
    float: left; }

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

header, .header {
  margin: 0 auto 0;
  padding: 0;
  width: 980px;
  height: 294px;
  position: relative; }
  header .logo, .header .logo {
    position: relative;
    width: 490px;
    height: 85px;
    padding: 0 0 10px;
    margin: 0 auto; }
    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: 490px;
      height: 85px;
      background: url(../images/logo.png) no-repeat center 0; }
    header .logo a:hover, .header .logo a:hover {
      background-position: center -84px; }
    header .logo span, .header .logo span {
      cursor: default; }

.toolbar {
  position: absolute;
  top: 0px;
  right: 0;
  display: block;
  padding: 0;
  margin: 0;
  z-index: 900;
  width: 980px;
  height: 37px; }
  .toolbar .icons {
    display: block;
    margin: 0 15px 0 0;
    padding: 0;
    float: right;
    list-style: none;
    zoom: 1; }
    .toolbar .icons:before, .toolbar .icons:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .toolbar .icons:after {
      clear: both; }
    .toolbar .icons li {
      display: block;
      background: none;
      float: left;
      width: auto;
      margin: 0;
      padding: 7px 0 0; }
    .toolbar .icons a, .toolbar .icons a:link, .toolbar .icons a:visited {
      display: block;
      height: 24px;
      width: 28px;
      margin: 0 2px 0 0;
      padding: 0;
      float: left;
      line-height: 25px;
      text-shadow: 1px 1px 1px #000000;
      font-size: 18px;
      text-align: center;
      color: #fff; }
      .toolbar .icons a:hover, .toolbar .icons a:link:hover, .toolbar .icons a:visited:hover {
        text-decoration: none;
        color: #FF9933; }
    .toolbar .icons a.tool_email {
      background-position: 0 0;
      background: url(../images/toolbar_social.png) no-repeat 0 0;
      float: left;
      text-indent: -9000px; }
      .toolbar .icons a.tool_email:hover {
        background-position: 0 -25px; }
    .toolbar .icons a.tool_twitter {
      background-position: -28px 0; }
      .toolbar .icons a.tool_twitter:hover {
        background-position: -28px -25px; }
    .toolbar .icons a.tool_facebook {
      background-position: -56px 0; }
      .toolbar .icons a.tool_facebook:hover {
        background-position: -56px -25px; }
    .toolbar .icons a.tool_flickr {
      background-position: -80px 0; }
      .toolbar .icons a.tool_flickr:hover {
        background-position: -80px -25px; }

.search_wrap {
  display: block;
  position: relative;
  margin: 4px 0 0;
  padding: 0;
  width: 203px;
  height: 25px;
  float: right;
  background: url(../images/search_bg.png) no-repeat 0 0; }
  .search_wrap input, .search_wrap input[type="text"] {
    margin: 0;
    padding: 7px 0 7px 9px;
    position: relative;
    background: transparent;
    width: 163px;
    border: none;
    color: #ccc;
    font: normal italic 12px/120% "myriad-pro"; }
  .search_wrap button {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 25px;
    text-indent: -9000px;
    background: url(../images/search_bg.png) no-repeat -173px 0;
    border: none; }

.header_venues {
  position: relative;
  display: block;
  list-style: none;
  height: 60px;
  margin: 0 auto;
  padding: 50px 0 12px; }
  .header_venues li {
    display: block;
    background: none;
    float: left;
    width: auto;
    padding: 0;
    margin: 0; }
  .header_venues a, .header_venues a:visited {
    display: block;
    width: 245px;
    height: 60px;
    text-indent: 70px;
    color: white;
    text-transform: uppercase;
    font: 400 12px/510% "superclarendon";
    text-shadow: 1px 1px 1px #000000;
    background: url(../images/header_venues.png) no-repeat 0 0; }
    .header_venues a.arena, .header_venues a:visited.arena {
      background-position: 0 0; }
      .header_venues a.arena:hover, .header_venues a:visited.arena:hover {
        background-position: 0 -61px; }
    .header_venues a.theatre, .header_venues a:visited.theatre {
      background-position: 0 -120px; }
      .header_venues a.theatre:hover, .header_venues a:visited.theatre:hover {
        background-position: 0 -181px; }
    .header_venues a.ballpark, .header_venues a:visited.ballpark {
      background-position: 0 -241px; }
      .header_venues a.ballpark:hover, .header_venues a:visited.ballpark:hover {
        background-position: 0 -300px; }
    .header_venues a.ice, .header_venues a:visited.ice {
      background-position: 0 -360px; }
      .header_venues a.ice:hover, .header_venues a:visited.ice:hover {
        background-position: 0 -420px; }
  .header_venues a:hover {
    text-decoration: none;
    color: #FFB56C; }

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

#column_1, #column_3 {
  width: 200px;
  margin: 20px 0 0;
  z-index: 10; }

#column_2 {
  width: 540px;
  padding: 5px 10px 10px;
  position: relative;
  z-index: 20; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  position: relative;
  width: 980px;
  margin: 40px auto;
  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 a, footer a:link, footer a:visited, .footer a, .footer a:link, .footer a:visited {
    margin: 0;
    padding: 0;
    color: white;
    text-decoration: none;
    font: bold 10px/130% Arial, Helvetica, sans-serif; }
    footer a:hover, footer a:link:hover, footer a:visited:hover, .footer a:hover, .footer a:link:hover, .footer a:visited:hover {
      text-decoration: none;
      color: #3195C2; }
  footer .teams, .footer .teams {
    position: relative;
    float: left;
    width: 320px;
    height: 90px;
    background: url(../images/footer_tall_delim.png) no-repeat right center;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear; }
    footer .teams a, footer .teams a:link, footer .teams a:visited, .footer .teams a, .footer .teams a:link, .footer .teams a:visited {
      display: block;
      float: left;
      width: 97px;
      height: 90px;
      text-indent: -9000px;
      text-decoration: none;
      background: url(../images/foot_teams.png) no-repeat 0 0; }
      footer .teams a:hover, footer .teams a:link:hover, footer .teams a:visited:hover, .footer .teams a:hover, .footer .teams a:link:hover, .footer .teams a:visited:hover {
        text-decoration: none; }
      footer .teams a.foot_thunder, footer .teams a:link.foot_thunder, footer .teams a:visited.foot_thunder, .footer .teams a.foot_thunder, .footer .teams a:link.foot_thunder, .footer .teams a:visited.foot_thunder {
        background-position: -12px 0; }
        footer .teams a.foot_thunder:hover, footer .teams a:link.foot_thunder:hover, footer .teams a:visited.foot_thunder:hover, .footer .teams a.foot_thunder:hover, .footer .teams a:link.foot_thunder:hover, .footer .teams a:visited.foot_thunder:hover {
          background-position: -12px -90px; }
      footer .teams a.foot_ports, footer .teams a:link.foot_ports, footer .teams a:visited.foot_ports, .footer .teams a.foot_ports, .footer .teams a:link.foot_ports, .footer .teams a:visited.foot_ports {
        background-position: -108px 0; }
        footer .teams a.foot_ports:hover, footer .teams a:link.foot_ports:hover, footer .teams a:visited.foot_ports:hover, .footer .teams a.foot_ports:hover, .footer .teams a:link.foot_ports:hover, .footer .teams a:visited.foot_ports:hover {
          background-position: -108px -90px; }
      footer .teams a.foot_kings, footer .teams a:link.foot_kings, footer .teams a:visited.foot_kings, .footer .teams a.foot_kings, .footer .teams a:link.foot_kings, .footer .teams a:visited.foot_kings {
        background: url(../images/stockton-kings-logo.svg) no-repeat center center;
        background-size: 100%;
        margin-left: 12px; }
        footer .teams a.foot_kings:hover, footer .teams a:link.foot_kings:hover, footer .teams a:visited.foot_kings:hover, .footer .teams a.foot_kings:hover, .footer .teams a:link.foot_kings:hover, .footer .teams a:visited.foot_kings:hover {
          opacity: 0.8; }
  footer .nav, .footer .nav {
    float: left;
    width: auto;
    margin: 0;
    padding: 4px 0 0 24px;
    zoom: 1; }
    footer .nav:before, footer .nav:after, .footer .nav:before, .footer .nav:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .nav:after, .footer .nav:after {
      clear: both; }
    footer .nav ul, .footer .nav ul {
      display: block;
      list-style: none;
      list-style-image: none;
      padding: 0;
      line-height: 100%;
      float: left;
      margin: 0 25px 0 0; }
      footer .nav ul.last, .footer .nav ul.last {
        margin: 0; }
      footer .nav ul li, .footer .nav ul li {
        display: block;
        height: auto;
        padding: 0 0 6px; }
        footer .nav ul li:first-child, .footer .nav ul li:first-child {
          border-left: none; }
        footer .nav ul li a, .footer .nav ul li a {
          color: white;
          font: bold 10px/120% Arial, Helvetica, sans-serif;
          padding: 0;
          margin: 0;
          text-transform: uppercase;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          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 {
            color: #3195C2;
            text-decoration: none; }
          footer .nav ul li a.active, footer .nav ul li a.active:hover, .footer .nav ul li a.active, .footer .nav ul li a.active:hover {
            color: #3195C2;
            cursor: default; }
  footer .footer_banners, .footer .footer_banners {
    float: right;
    width: 290px;
    zoom: 1; }
    footer .footer_banners:before, footer .footer_banners:after, .footer .footer_banners:before, .footer .footer_banners:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .footer_banners:after, .footer .footer_banners:after {
      clear: both; }
  footer .global_footer, .footer .global_footer {
    float: left;
    padding: 0;
    margin: 20px 0 0;
    width: 980px;
    position: relative;
    zoom: 1; }
    footer .global_footer:before, footer .global_footer:after, .footer .global_footer:before, .footer .global_footer:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .global_footer:after, .footer .global_footer:after {
      clear: both; }
    footer .global_footer a.foot_asm, footer .global_footer a.foot_asm:visited, .footer .global_footer a.foot_asm, .footer .global_footer a.foot_asm:visited {
      display: block;
      float: left;
      position: relative;
      width: 75px;
      height: 35px;
      margin: 5px 0 0 126px;
      padding: 0 12px;
      background: url(../images/asm.svg) no-repeat;
      background-size: contain;
      text-indent: -9000px; }
      footer .global_footer a.foot_asm:hover, footer .global_footer a.foot_asm:visited:hover, .footer .global_footer a.foot_asm:hover, .footer .global_footer a.foot_asm:visited:hover {
        opacity: 0.75; }
    footer .global_footer p, .footer .global_footer p {
      display: block;
      float: left;
      color: white;
      font: 600 10px/120% "myriad-pro";
      margin: 0;
      padding: 15px 0 0; }
      footer .global_footer p a, .footer .global_footer p a {
        color: white;
        text-decoration: none;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        footer .global_footer p a:hover, .footer .global_footer p a:hover {
          color: #3195C2;
          text-decoration: none; }
    footer .global_footer span.delimiter, .footer .global_footer span.delimiter {
      display: inline;
      padding: 0 4px; }
    footer .global_footer a#carbonhouse, footer .global_footer a#carbonhouse:link, footer .global_footer a#carbonhouse:visited, .footer .global_footer a#carbonhouse, .footer .global_footer a#carbonhouse:link, .footer .global_footer a#carbonhouse:visited {
      display: inline-block;
      margin: 0 0 10px;
      font-size: 10px;
      font-weight: bold;
      font-family: 'helvetica';
      color: #b2b2b2;
      cursor: pointer;
      text-decoration: none; }
      footer .global_footer a#carbonhouse span, footer .global_footer a#carbonhouse:link span, footer .global_footer a#carbonhouse:visited span, .footer .global_footer a#carbonhouse span, .footer .global_footer a#carbonhouse:link span, .footer .global_footer a#carbonhouse:visited span {
        font-size: 12px; }
        footer .global_footer a#carbonhouse span.carbon, footer .global_footer a#carbonhouse:link span.carbon, footer .global_footer a#carbonhouse:visited span.carbon, .footer .global_footer a#carbonhouse span.carbon, .footer .global_footer a#carbonhouse:link span.carbon, .footer .global_footer a#carbonhouse:visited span.carbon {
          color: #9f9f9f; }
        footer .global_footer a#carbonhouse span.house, footer .global_footer a#carbonhouse:link span.house, footer .global_footer a#carbonhouse:visited span.house, .footer .global_footer a#carbonhouse span.house, .footer .global_footer a#carbonhouse:link span.house, .footer .global_footer a#carbonhouse:visited span.house {
          color: #d2d2d2; }
      footer .global_footer a#carbonhouse:hover, footer .global_footer a#carbonhouse:link:hover, footer .global_footer a#carbonhouse:visited:hover, .footer .global_footer a#carbonhouse:hover, .footer .global_footer a#carbonhouse:link:hover, .footer .global_footer a#carbonhouse:visited:hover {
        text-decoration: none;
        color: #FFF; }
        footer .global_footer a#carbonhouse:hover span, footer .global_footer a#carbonhouse:link:hover span, footer .global_footer a#carbonhouse:visited:hover span, .footer .global_footer a#carbonhouse:hover span, .footer .global_footer a#carbonhouse:link:hover span, .footer .global_footer a#carbonhouse:visited:hover span {
          color: #FFF; }

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

nav {
  position: relative;
  margin: 20px 0 0 -10px;
  padding: 0;
  width: 1005px;
  height: 56px;
  background: url(../images/nav_bg.png) repeat-x 0 0; }
  nav ul {
    display: block;
    text-align: left;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 990px;
    height: 56px; }
    nav ul li {
      display: block;
      padding: 0;
      margin: 0;
      height: 56px;
      float: left;
      position: relative; }
      nav ul li:first-child, nav ul li.page_1 {
        display: none; }
      nav ul li.page_8 a {
        background: none; }
        nav ul li.page_8 a.active {
          color: white;
          text-decoration: none;
          background: black; }
      nav ul li.hover.page_8 > a {
        color: white;
        text-decoration: none;
        background: black; }
  nav a, nav a:link, nav a:visited {
    display: block;
    height: 56px;
    text-decoration: none;
    color: white;
    text-align: left;
    font: 400 20px/270% "league-gothic";
    text-transform: uppercase;
    margin: 0;
    padding: 0 16px;
    background: url(../images/nav_border.png) no-repeat right top;
    letter-spacing: 1px; }
    nav a:hover, nav a.active, nav a:link:hover, nav a:link.active, nav a:visited:hover, nav a:visited.active {
      color: white;
      text-decoration: none; }
  nav .hover a {
    color: white;
    text-decoration: none;
    background: black; }
    nav .hover a span {
      color: white; }

nav .selected a:hover, nav a.active {
  color: white;
  text-decoration: none;
  background: black; }
  nav .selected a:hover span, nav a.active span {
    color: white; }

nav li.page_3 .sub {
  left: -14px; }

nav ul .sub {
  position: absolute;
  left: 0;
  top: 46px;
  display: none;
  width: 210px;
  padding: 5px 20px;
  z-index: 1000;
  margin: 0;
  background: url(../images/nav_sub_bg.jpg) repeat-y 0 0; }

nav ul ul {
  float: left;
  background: none;
  width: 210px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 0; }
  nav ul ul li {
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    float: none;
    text-align: left;
    height: auto;
    border-left: none;
    border-right: none;
    z-index: 99; }
    nav ul ul li:first-child {
      display: block; }
      nav ul ul li:first-child a, nav ul ul li:first-child a:link, nav ul ul li:first-child a:visited {
        border-top: none; }
        nav ul ul li:first-child a:hover, nav ul ul li:first-child a:link:hover, nav ul ul li:first-child a:visited:hover {
          margin: -1px 0 0 -20px;
          padding: 11px 0 10px; }
    nav ul ul li:hover {
      z-index: 100; }
    nav ul ul li a, nav ul ul li a:link, nav ul ul li a:visited {
      display: block;
      margin: 0px;
      padding: 10px 0;
      text-decoration: none;
      height: auto;
      cursor: pointer;
      text-indent: 0;
      color: #fff;
      text-transform: uppercase;
      background: none;
      text-align: left;
      font: bold 12px/120% Arial, Helvetica, sans-serif;
      text-shadow: 0px 1px 0px #000000;
      letter-spacing: normal;
      border-top: 1px solid #666; }
      nav ul ul li a:hover, nav ul ul li a:focus, nav ul ul li a.active, nav ul ul li a:link:hover, nav ul ul li a:link:focus, nav ul ul li a:link.active, nav ul ul li a:visited:hover, nav ul ul li a:visited:focus, nav ul ul li a:visited.active {
        text-decoration: none;
        cursor: pointer;
        color: #fff;
        width: 250px;
        margin: 0 0 0 -20px;
        padding: 11px 0 10px;
        background: url(../images/nav_sub_over.jpg) repeat-y 0 0;
        text-indent: 20px;
        border-top: none; }
      nav ul ul li a.gh_page_redirect:after, nav ul ul li a.gh_page_redirect:link:after, nav ul ul li a.gh_page_redirect:visited:after, nav ul ul li a:link.gh_page_redirect:after, nav ul ul li a:link.gh_page_redirect:link:after, nav ul ul li a:link.gh_page_redirect:visited:after, nav ul ul li a:visited.gh_page_redirect:after, nav ul ul li a:visited.gh_page_redirect:link:after, nav ul ul li a:visited.gh_page_redirect:visited:after {
        display: block;
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        right: 15px;
        top: 12px;
        background: url(../images/outbound.png) no-repeat 0 0; }

/* ----------------------------------------------------------------------------
= Home Content
----------------------------------------------------------------------------- */
.home .full {
  background: none;
  border-bottom: none; }
.home .full:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -5px;
  width: 998px;
  height: 33px;
  background: transparent url(../images/home_full_content_bg.jpg) no-repeat -10px 0; }
.home .full_column {
  width: 970px;
  margin: 0 auto; }
.home #branding {
  display: block;
  float: left;
  width: 480px;
  height: 424px;
  margin: 0 0 0 10px; }
.home .home_banners {
  width: 980px;
  height: 122px;
  float: left;
  margin: 15px auto 0; }

.ie7 .header-before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 998px;
  height: 33px;
  background: transparent url(../images/home_full_content_bg.jpg) no-repeat -10px 0;
  z-index: -1; }

.social-module {
  display: block;
  float: left;
  width: 240px;
  height: 400px;
  margin: 0 0 0 10px;
  padding: 0; }
  .social-module .social-tabs {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 39px;
    width: 240px;
    margin: 0;
    padding: 0;
    z-index: 10; }
    .social-module .social-tabs li {
      display: block;
      float: left;
      width: 40px;
      margin: 0 2px 0 0;
      padding: 0;
      list-style-type: none; }
      .social-module .social-tabs li a, .social-module .social-tabs li a:link, .social-module .social-tabs li a:visited {
        display: block;
        width: 40px;
        height: 45px;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 20px;
        line-height: 34px;
        text-align: center;
        text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.8);
        background: url(../images/social-tabs.png) no-repeat 0 0; }
        .social-module .social-tabs li a.nw, .social-module .social-tabs li a:link.nw, .social-module .social-tabs li a:visited.nw {
          background: url(../images/social-tabs.png) no-repeat 0 0;
          text-indent: -5000px;
          background-position: 0px -6px; }
          .social-module .social-tabs li a.nw:hover, .social-module .social-tabs li a:link.nw:hover, .social-module .social-tabs li a:visited.nw:hover {
            background-position: 0 -51px; }
          .social-module .social-tabs li a.nw.current, .social-module .social-tabs li a:link.nw.current, .social-module .social-tabs li a:visited.nw.current {
            background-position: 0 -51px; }
        .social-module .social-tabs li a.tw, .social-module .social-tabs li a:link.tw, .social-module .social-tabs li a:visited.tw {
          background-position: -40px -6px; }
          .social-module .social-tabs li a.tw:hover, .social-module .social-tabs li a:link.tw:hover, .social-module .social-tabs li a:visited.tw:hover {
            background-position: -40px -51px; }
          .social-module .social-tabs li a.tw.current, .social-module .social-tabs li a:link.tw.current, .social-module .social-tabs li a:visited.tw.current {
            background-position: -40px -51px; }
        .social-module .social-tabs li a.fb, .social-module .social-tabs li a:link.fb, .social-module .social-tabs li a:visited.fb {
          background-position: -80px -6px; }
          .social-module .social-tabs li a.fb:hover, .social-module .social-tabs li a:link.fb:hover, .social-module .social-tabs li a:visited.fb:hover {
            background-position: -80px -51px; }
          .social-module .social-tabs li a.fb.current, .social-module .social-tabs li a:link.fb.current, .social-module .social-tabs li a:visited.fb.current {
            background-position: -80px -51px; }
        .social-module .social-tabs li a.fl, .social-module .social-tabs li a:link.fl, .social-module .social-tabs li a:visited.fl {
          background-position: -120px -6px; }
          .social-module .social-tabs li a.fl:hover, .social-module .social-tabs li a:link.fl:hover, .social-module .social-tabs li a:visited.fl:hover {
            background-position: -120px -51px; }
          .social-module .social-tabs li a.fl.current, .social-module .social-tabs li a:link.fl.current, .social-module .social-tabs li a:visited.fl.current {
            background-position: -120px -51px; }
  .social-module .social-pages {
    position: relative;
    display: block;
    height: 357px;
    width: 236px;
    margin: 37px 0 0;
    padding: 0;
    background: url(../images/social_bg.jpg) repeat 0 0;
    border: 2px solid #E0DDD4;
    z-index: 9; }
    .social-module .social-pages .fb, .social-module .social-pages .tw, .social-module .social-pages .fl, .social-module .social-pages .nw {
      display: block;
      width: 228px;
      height: 347px;
      margin: 0;
      padding: 5px;
      overflow: hidden; }
    .social-module .social-pages .fb #fb-holder {
      position: relative;
      z-index: 10;
      overflow: hidden;
      position: relative;
      top: -1px;
      left: -1px; }
      .social-module .social-pages .fb #fb-holder iframe {
        position: relative;
        left: -2px;
        top: -2px;
        overflow: hidden; }
    .social-module .social-pages .tw h3 {
      display: block;
      position: relative;
      padding: 0;
      margin: 0; }
      .social-module .social-pages .tw h3 a, .social-module .social-pages .tw h3 a:link, .social-module .social-pages .tw h3 a:visited {
        color: #B7502C;
        font: bold 12px/130% Arial, Helvetica, sans-serif;
        text-decoration: none;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        .social-module .social-pages .tw h3 a:hover, .social-module .social-pages .tw h3 a:link:hover, .social-module .social-pages .tw h3 a:visited:hover {
          color: #2F93C0;
          text-decoration: none; }
    .social-module .social-pages .tw .tweetList {
      display: block;
      height: 300px;
      margin: 0 auto;
      padding: 0;
      height: 304px;
      width: 217px;
      overflow: hidden; }
      .social-module .social-pages .tw .tweetList li {
        display: block;
        list-style-type: none;
        margin: 4px 0;
        padding: 6px 0 10px;
        color: #666;
        border-bottom: 1px solid #ccc;
        line-height: 120%; }
        .social-module .social-pages .tw .tweetList li span {
          display: block;
          position: relative;
          padding: 0;
          margin: 0;
          color: normal 12px/130% Arial, Helvetica, sans-serif;
          color: #666; }
          .social-module .social-pages .tw .tweetList li span span {
            display: inline; }
        .social-module .social-pages .tw .tweetList li a {
          color: #B7502C;
          text-decoration: none; }
          .social-module .social-pages .tw .tweetList li a:hover {
            color: #2B87B2; }
    .social-module .social-pages .fl {
      margin: 0;
      padding: 7px 0 0 5px;
      width: 228px; }
      .social-module .social-pages .fl .fl-holder {
        display: block;
        margin: 0;
        padding: 0;
        overflow-y: auto;
        overflow: hidden;
        height: 354px; }
        .social-module .social-pages .fl .fl-holder h3 {
          display: block;
          position: relative;
          padding: 0 0 5px;
          margin: 0;
          color: #B7502C;
          font: bold 12px/130% Arial, Helvetica, sans-serif; }
          .social-module .social-pages .fl .fl-holder h3 a, .social-module .social-pages .fl .fl-holder h3 a:link, .social-module .social-pages .fl .fl-holder h3 a:visited {
            color: #B7502C;
            font: bold 12px/130% Arial, Helvetica, sans-serif;
            text-decoration: none;
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear; }
            .social-module .social-pages .fl .fl-holder h3 a:hover, .social-module .social-pages .fl .fl-holder h3 a:link:hover, .social-module .social-pages .fl .fl-holder h3 a:visited:hover {
              color: #2F93C0;
              text-decoration: none; }
        .social-module .social-pages .fl .fl-holder ul {
          display: block;
          margin: 0;
          padding: 0; }
          .social-module .social-pages .fl .fl-holder ul li {
            display: block;
            float: left;
            width: 66px;
            height: 66px;
            list-style-type: none;
            margin: 0px 3px 6px 0;
            padding: 0px 0;
            border: 2px solid #222; }
            .social-module .social-pages .fl .fl-holder ul li a {
              display: block;
              width: 66px;
              height: 66px; }
              .social-module .social-pages .fl .fl-holder ul li a img {
                width: 66px;
                height: 66px; }
    .social-module .social-pages .nw .news_list_holder {
      width: 217px;
      height: 346px;
      overflow: hidden;
      margin: 0 auto; }
      .social-module .social-pages .nw .news_list_holder ul {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none; }
        .social-module .social-pages .nw .news_list_holder ul li {
          display: block;
          padding: 10px 0;
          margin: 0;
          border-top: 1px solid #ccc; }
          .social-module .social-pages .nw .news_list_holder ul li:first-child {
            border-top: none; }
          .social-module .social-pages .nw .news_list_holder ul li a, .social-module .social-pages .nw .news_list_holder ul li a:link, .social-module .social-pages .nw .news_list_holder ul li a:visited {
            display: block;
            position: relative;
            padding: 0;
            margin: 0;
            color: #B7502C;
            font: bold 12px/130% Arial, Helvetica, sans-serif;
            text-decoration: none;
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear; }
            .social-module .social-pages .nw .news_list_holder ul li a:hover, .social-module .social-pages .nw .news_list_holder ul li a:link:hover, .social-module .social-pages .nw .news_list_holder ul li a:visited:hover {
              color: #2F93C0;
              text-decoration: none; }
          .social-module .social-pages .nw .news_list_holder ul li span {
            display: block;
            position: relative;
            padding: 0;
            margin: 0;
            color: normal 12px/130% Arial, Helvetica, sans-serif;
            color: #666; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
#content {
  clear: both; }

.textarea {
  width: 620px;
  margin: 0 auto; }
  .textarea .content {
    clear: both; }
    .textarea .content label {
      font-weight: bold; }

.form {
  width: 620px;
  margin: 0 auto; }

.content {
  margin: 0 0 10px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content img[align=left], .content img[align=left].gh-image {
    float: left;
    margin: 0 15px 15px 0;
    padding: 6px; }
  .content img[align=right], .content img[align=right].gh-image {
    float: right;
    margin: 0 0 15px 15px;
    padding: 6px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content .image-left {
    clear: both; }
    .content .image-left h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-left img {
      width: 175px;
      height: 130px;
      padding: 6px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both; }
    .content .image-right h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px; }
    .content .image-right p {
      line-height: 140%; }
  .content .image-three {
    text-align: left;
    float: left;
    width: 140px;
    padding: 0 24px 30px;
    margin: 0; }
    .content .image-three a, .content .image-three a:link, .content .image-three a:visited {
      display: block;
      width: 132px;
      height: 106px; }
      .content .image-three a img, .content .image-three a img.image, .content .image-three a img.gh-image, .content .image-three a:link img, .content .image-three a:link img.image, .content .image-three a:link img.gh-image, .content .image-three a:visited img, .content .image-three a:visited img.image, .content .image-three a:visited img.gh-image {
        padding: 2px;
        margin: 0;
        width: 132px;
        height: 106px; }
      .content .image-three a:hover, .content .image-three a:focus, .content .image-three a:link:hover, .content .image-three a:link:focus, .content .image-three a:visited:hover, .content .image-three a:visited:focus {
        text-decoration: none; }
    .content .image-three p {
      color: black;
      width: 132px;
      text-align: center;
      padding: 5px 0 0;
      font-weight: bold; }
  .content .image-four {
    text-align: center;
    float: left;
    width: 130px;
    padding: 0 10px;
    margin: 0; }
    .content .image-four a, .content .image-four a:link, .content .image-four a:visited {
      display: block;
      margin: 0;
      padding: 0;
      width: auto;
      height: auto; }
    .content .image-four img, .content .image-four img.image, .content .image-four img.gh-image {
      padding: 0;
      background: none;
      margin: 0 0 10px; }
  .content .overview {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/overview_rule.png) repeat-x center bottom; }
    .content .overview h1 {
      font-size: 24px; }
    .content .overview p {
      font-size: 14px;
      padding: 0;
      line-height: 140%;
      color: #666; }
    .content .overview a, .content .overview a:link, .content .overview a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus, .content .overview a:link:hover, .content .overview a:link:focus, .content .overview a:visited:hover, .content .overview a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: #666; }
      .content table tr td {
        padding: 5px;
        border: none; }

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

#column_1 .paging.final {
  background: url(../images/med_blue_swatch.jpg) repeat-x left top; }

.paging {
  position: relative;
  margin: 0 0 8px;
  color: #333;
  position: relative;
  padding: 8px 0 12px;
  background: url(../images/overview_rule.png) no-repeat center bottom;
  height: 18px; }
  .paging .nav {
    float: left;
    zoom: 1; }
    .paging .nav:before, .paging .nav:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .paging .nav:after {
      clear: both; }
  .paging .record {
    width: 70px;
    float: left;
    color: #333;
    font: normal 11px/180% Arial, Helvetica, sans-serif; }
  .paging .pages {
    margin: 0;
    float: left;
    width: auto;
    text-align: left; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      height: 18px;
      width: auto;
      float: left;
      margin: 0 6px 0 0;
      padding: 0 6px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-align: center;
      color: white;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        background-position: 0 0;
        text-decoration: none; }
    .paging .pages strong {
      color: white;
      background-position: 0 0;
      text-decoration: none; }
  .paging .links {
    width: auto;
    float: right;
    margin: 0;
    padding: 0;
    height: 18px; }
    .paging .links a, .paging .links a:link, .paging .links a:visited {
      position: relative;
      display: block;
      float: left;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      margin: 0 0 0 12px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      .paging .links a:hover, .paging .links a:focus, .paging .links a:link:hover, .paging .links a:link:focus, .paging .links a:visited:hover, .paging .links a:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }
    .paging .links a.rss, .paging .links a:link.rss, .paging .links a:visited.rss {
      width: auto;
      padding: 0 10px 0 20px;
      text-transform: none; }
      .paging .links a.rss:before, .paging .links a:link.rss:before, .paging .links a:visited.rss:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 0; }
    .paging .links .rss_before {
      content: "";
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 18px;
      background: url(../images/icons.png) no-repeat 0 0; }
    .paging .links a.print, .paging .links a.print:link, .paging .links a.print:visited {
      width: auto;
      padding: 0 10px 0 20px;
      text-transform: none; }
      .paging .links a.print:before, .paging .links a.print:link:before, .paging .links a.print:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 17px;
        background: url(../images/icons.png) no-repeat 0 -105px; }
    .paging .links .print_before {
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 17px;
      background: url(../images/icons.png) no-repeat 0 -105px; }
    .paging .links a.full_list, .paging .links a.full_list:link, .paging .links a.full_list:visited {
      padding: 0 10px 0 20px;
      text-transform: none;
      margin: 0; }
      .paging .links a.full_list:before, .paging .links a.full_list:link:before, .paging .links a.full_list:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 -18px; }
    .paging .links .full_list_before {
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 18px;
      background: url(../images/icons.png) no-repeat 0 -18px; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 15px;
  position: relative; }
  .link ul.list {
    width: 620px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font-size: 14px;
    border-top: 1px solid #ccc; }
    .link ul.list li {
      height: 28px;
      padding: 2px 0;
      margin: 0;
      border-bottom: 1px solid #ccc; }
      .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: #164962;
        background-position: 0 -16px; }
    .link ul.list p {
      padding: 0 0 0 25px;
      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 {
      display: block;
      padding: 0 0 0 25px;
      margin: 0 0 0 2px;
      text-decoration: none;
      color: #2F93C0;
      line-height: 26px; }
      .link ul.list a:hover, .link ul.list a:link:hover, .link ul.list a:visited:hover {
        color: #164962;
        background-position: 0 -16px; }
      .link ul.list a.external, .link ul.list a:link.external, .link ul.list a:visited.external {
        background: url(../images/icon_link.png) no-repeat 0 4px; }
        .link ul.list a.external:hover, .link ul.list a:link.external:hover, .link ul.list a:visited.external:hover {
          background-position: 0 -16px; }
      .link ul.list a.image, .link ul.list a:link.image, .link ul.list a:visited.image {
        background: url(../images/icon_img.png) no-repeat 0 4px; }
        .link ul.list a.image:hover, .link ul.list a:link.image:hover, .link ul.list a:visited.image:hover {
          background-position: 0 -16px; }
      .link ul.list a.pdf, .link ul.list a:link.pdf, .link ul.list a:visited.pdf {
        background: url(../images/icon_doc.png) no-repeat 0 4px; }
        .link ul.list a.pdf:hover, .link ul.list a:link.pdf:hover, .link ul.list a:visited.pdf:hover {
          background-position: 0 -16px; }
    .link ul.list a.email, .link ul.list a.email:link, .link ul.list a.email:visited {
      background: url(../images/icon_email.png) no-repeat 0 4px; }
      .link ul.list a.email:hover, .link ul.list a.email:link:hover, .link ul.list a.email:visited:hover {
        background-position: 0 -16px; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap .column {
    float: left;
    width: 270px;
    padding: 0;
    position: relative; }
  .sitemap #sitemap_column_1 {
    margin: 0 20px 0 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, .sitemap ul li ul li a:link, .sitemap ul li ul li a:visited {
          color: #2A8EBB;
          padding: 0 0 0 20px;
          background: url(../images/subnav_arrows.png) no-repeat 5px 1px; }
          .sitemap ul li ul li a:hover, .sitemap ul li ul li a:focus, .sitemap ul li ul li a:link:hover, .sitemap ul li ul li a:link:focus, .sitemap ul li ul li a:visited:hover, .sitemap ul li ul li a:visited:focus {
            color: #333;
            text-decoration: underline; }
        .sitemap ul li ul li ul {
          display: none; }
  .sitemap a, .sitemap a:link, .sitemap a:visited {
    text-decoration: none;
    color: #2F93C0; }
    .sitemap a:hover, .sitemap a:focus, .sitemap a:link:hover, .sitemap a:link:focus, .sitemap a:visited:hover, .sitemap a:visited:focus {
      color: #333; }

/* ----------------------------------------------------------------------------
=Seating Charts
----------------------------------------------------------------------------- */
.seating_charts {
  clear: both;
  margin: 0;
  padding: 0; }
  .seating_charts .entry {
    margin: 0 20px 20px 0px;
    padding: 4px;
    height: 182px;
    display: block;
    float: left;
    position: relative;
    width: 282px;
    overflow: hidden;
    background: #3195C2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; }
    .seating_charts .entry.alt {
      margin-right: 0; }
    .seating_charts .entry .thumb {
      display: block;
      margin: 0 0px 0 0;
      padding: 0;
      width: 282px;
      height: 216px; }
      .seating_charts .entry .thumb img {
        margin: 0;
        padding: 0;
        border: none;
        display: block; }
      .seating_charts .entry .thumb a, .seating_charts .entry .thumb a:link, .seating_charts .entry .thumb a:visited {
        margin: 0;
        padding: 0;
        display: block;
        width: 282px;
        height: 216px; }
        .seating_charts .entry .thumb a img, .seating_charts .entry .thumb a:link img, .seating_charts .entry .thumb a:visited img {
          width: 282px;
          height: 216px; }
  .seating_charts .info {
    display: block;
    width: 262px;
    margin: 0;
    padding: 5px 10px;
    position: absolute;
    bottom: 0px;
    left: 4px;
    background: #3195C2;
    overflow: hidden;
    opacity: 0.9; }
  .seating_charts h3 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background: transparent;
    opacity: 1.0; }
    .seating_charts h3 a, .seating_charts h3 a:link, .seating_charts h3 a:visited {
      margin: 0;
      padding: 0;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
      opacity: 1.0; }
  .seating_charts .info-buttons {
    padding: 0;
    text-align: left;
    float: left; }
    .seating_charts .info-buttons a, .seating_charts .info-buttons a:link, .seating_charts .info-buttons a:visited {
      display: block;
      text-transform: uppercase;
      font-size: 10px;
      float: left;
      padding: 0px 6px 0 0;
      text-decoration: underline;
      line-height: 25px;
      opacity: 1;
      color: white; }
      .seating_charts .info-buttons a:hover, .seating_charts .info-buttons a:focus, .seating_charts .info-buttons a:link:hover, .seating_charts .info-buttons a:link:focus, .seating_charts .info-buttons a:visited:hover, .seating_charts .info-buttons a:visited:focus {
        text-decoration: none; }

/* ----------------------------------------------------------------------------
=Group Events Listing
----------------------------------------------------------------------------- */
.group-sales .event_list .entry .info h3 {
  line-height: 13px; }
  .group-sales .event_list .entry .info h3 a {
    line-height: 13px;
    font-size: 12px; }
.group-sales .event_list .entry .info .date {
  font-size: 10px; }
.group-sales .event_list .entry .info .group_text {
  display: block; }

/* ----------------------------------------------------------------------------
=Custom page content
----------------------------------------------------------------------------- */
a.tw_link, a.facebook_link, a.flickr_link {
  display: block;
  padding: 5px 0 0 29px;
  text-decoration: none;
  background: url(../images/social_link_icons.png) no-repeat 0 0;
  font-size: 14px; }
  a.tw_link:hover, a.facebook_link:hover, a.flickr_link:hover {
    text-decoration: none;
    background-position: 0 0;
    color: #333; }

a.tw_link {
  background-position: 0 0; }
  a.tw_link:hover {
    background-position: 0 -25px; }

a.facebook_link {
  background-position: 0 -50px; }
  a.facebook_link:hover {
    background-position: 0 -75px; }

a.flickr_link {
  background-position: 0 -100px; }
  a.flickr_link:hover {
    background-position: 0 -125px; }

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

.contact-us .baseline {
  width: 45%;
  float: left;
  height: 125px; }

.subnav {
  width: 294px;
  background: url(../images/white_noise.jpg) repeat 0 0;
  border-left: solid 1px #CCC;
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
  border-top: solid 4px #2B87B2;
  margin: 0 0 25px;
  padding: 15px 8px 20px;
  position: relative; }
  .subnav ul {
    list-style: none;
    list-style-image: none;
    padding: 0;
    margin: 0; }
    .subnav ul li {
      margin: 0;
      padding: 0; }
      .subnav ul li:first-child {
        border-top: none; }
      .subnav ul li.active ul {
        display: none; }
      .subnav ul li.active a, .subnav ul li.active a:link, .subnav ul li.active a:visited {
        background: #A1CEE2 url(../images/subnav_arrows.png) no-repeat 5px -19px; }
      .subnav ul li a, .subnav ul li a:link, .subnav ul li a:visited {
        display: block;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        padding: 8px 0 8px 20px;
        background: transparent url(../images/subnav_arrows.png) no-repeat 5px 10px;
        width: 273px; }
        .subnav ul li a.section, .subnav ul li a.section.active, .subnav ul li a.section:hover, .subnav ul li a:link.section, .subnav ul li a:link.section.active, .subnav ul li a:link.section:hover, .subnav ul li a:visited.section, .subnav ul li a:visited.section.active, .subnav ul li a:visited.section:hover {
          color: #3399C5;
          font-size: 19px;
          text-transform: uppercase;
          font: 700 17px/130% "news-gothic-std";
          letter-spacing: 1px;
          padding: 0 0 7px;
          border-bottom: 1px solid #efefef;
          background: none; }
        .subnav ul li a:hover, .subnav ul li a:link:hover, .subnav ul li a:visited:hover {
          background: #A1CEE2 url(../images/subnav_arrows.png) no-repeat 5px -19px; }
    .subnav ul ul {
      display: none; }
      .subnav ul ul li {
        border-bottom: none; }
        .subnav ul ul li:first-child a {
          line-height: 24px; }

/* ----------------------------------------------------------------------------
=branding
----------------------------------------------------------------------------- */
#branding {
  display: none; }
  #branding.active {
    display: block; }

#pages #branding.active {
  margin: 0 0 15px; }

/* ----------------------------------------------------------------------------
=Content and Venue Detail Slideshows
----------------------------------------------------------------------------- */
.slideshow {
  position: relative;
  border: none;
  width: 620px;
  height: 390px;
  background: url(../images/slideshow_static_bg.png) no-repeat 0 0;
  margin: -10px auto 0;
  padding: 0; }
  .slideshow:hover .controls, .slideshow:focus .controls {
    display: block; }
  .slideshow .controls {
    display: none;
    position: absolute;
    width: 620px;
    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: 34px;
        width: 30px;
        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: 14px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat 0 0; }
          .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 -34px; }
        .slideshow .controls .nav-controls a.next, .slideshow .controls .nav-controls a:link.next, .slideshow .controls .nav-controls a:visited.next {
          right: 14px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat -30px 0; }
          .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: -30px -34px; }
  .slideshow .slide {
    position: absolute;
    width: 600px;
    height: 325px;
    overflow: hidden;
    left: 10px;
    top: 10px;
    border-bottom: 2px solid #5DADD1; }
    .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow .slide span, .slideshow .slide span img {
      display: block;
      width: 600px;
      height: 325px; }
  .slideshow .caption_holder {
    position: absolute;
    bottom: 22px;
    left: 17px;
    width: 585px;
    height: 20px;
    background: transparent;
    overflow: hidden; }
    .slideshow .caption_holder span {
      display: block;
      width: auto;
      height: 20px; }
    .slideshow .caption_holder .image-caption .caption a {
      display: none; }
    .slideshow .caption_holder .caption p {
      display: block;
      margin: 0;
      color: #C4DDE4;
      padding: 0;
      text-shadow: none;
      font-weight: bold; }
    .slideshow .caption_holder .caption a {
      color: #C4DDE4;
      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;
    position: absolute;
    top: 340px;
    left: 0px; }
    .slideshow .thumbs_holder .thumbs {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0; }
      .slideshow .thumbs_holder .thumbs li {
        float: left;
        width: 80px;
        height: 43px;
        margin: 0 10px 0 0;
        opacity: 0.5;
        padding: 0;
        position: relative; }
        .slideshow .thumbs_holder .thumbs li.selected, .slideshow .thumbs_holder .thumbs li:hover, .slideshow .thumbs_holder .thumbs li:focus {
          opacity: 1; }
          .slideshow .thumbs_holder .thumbs li.selected .caption, .slideshow .thumbs_holder .thumbs li:hover .caption, .slideshow .thumbs_holder .thumbs li:focus .caption {
            display: block;
            opacity: 1; }
            .slideshow .thumbs_holder .thumbs li.selected .caption a, .slideshow .thumbs_holder .thumbs li:hover .caption a, .slideshow .thumbs_holder .thumbs li:focus .caption a {
              display: none; }
      .slideshow .thumbs_holder .thumbs a.thumb {
        display: block;
        width: 80px;
        height: 43px;
        float: left;
        z-index: 10; }
        .slideshow .thumbs_holder .thumbs a.thumb img {
          width: 80px;
          height: 43px; }
        .slideshow .thumbs_holder .thumbs a.thumb span.overlay {
          display: block;
          width: 80px;
          height: 43px;
          background: url(../images/thumb_image_icon.png) no-repeat 0 0;
          position: absolute;
          top: 0px;
          left: 0px; }
      .slideshow .thumbs_holder .thumbs a.thumb_video span.overlay {
        background: url(../images/thumb_video_icon.png) no-repeat 0 0; }
      .slideshow .thumbs_holder .thumbs .caption {
        display: none;
        background: url(../images/thumb_caption_bg.png) no-repeat 0 0;
        width: 214px;
        height: 46px;
        position: absolute;
        top: -35px;
        left: -60px;
        padding: 5px 10px;
        z-index: 20; }
        .slideshow .thumbs_holder .thumbs .caption p {
          color: black;
          font-size: 12px;
          height: 30px;
          overflow: hidden; }
  .slideshow .video {
    width: 600px;
    height: 325px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }
    .slideshow .video #video_player, .slideshow .video #video_holder {
      display: block;
      width: 600px;
      height: 325px; }
  .slideshow .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .imglink #imglink, .slideshow .imglink a {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
= Homepage Slideshow
----------------------------------------------------------------------------- */
.slideshow.home {
  position: relative;
  border: none;
  width: 480px;
  height: 424px;
  margin: -10px auto 0;
  padding: 0;
  background: url(../images/slideshow_home_bg.jpg) no-repeat 0 0;
  -webkit-box-shadow: -2px -2px 11px -2px #000, 2px 0px 11px -2px #000;
  box-shadow: -2px -2px 11px -2px #000, 2px 0px 11px -2px #000; }
  .slideshow.home:hover .controls, .slideshow.home:focus .controls {
    display: block; }
  .slideshow.home .controls {
    display: none;
    position: absolute;
    width: 460px;
    margin: 0 auto;
    height: 34px;
    top: 0;
    left: 10px; }
    .slideshow.home .controls .nav-controls {
      position: relative; }
      .slideshow.home .controls .nav-controls a, .slideshow.home .controls .nav-controls a:link, .slideshow.home .controls .nav-controls a:visited {
        display: block;
        height: 34px;
        width: 30px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px; }
        .slideshow.home .controls .nav-controls a:hover, .slideshow.home .controls .nav-controls a:focus, .slideshow.home .controls .nav-controls a:link:hover, .slideshow.home .controls .nav-controls a:link:focus, .slideshow.home .controls .nav-controls a:visited:hover, .slideshow.home .controls .nav-controls a:visited:focus {
          text-decoration: none; }
        .slideshow.home .controls .nav-controls a.prev, .slideshow.home .controls .nav-controls a:link.prev, .slideshow.home .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat 0 0; }
          .slideshow.home .controls .nav-controls a.prev:hover, .slideshow.home .controls .nav-controls a:link.prev:hover, .slideshow.home .controls .nav-controls a:visited.prev:hover {
            background-position: 0 -34px; }
        .slideshow.home .controls .nav-controls a.next, .slideshow.home .controls .nav-controls a:link.next, .slideshow.home .controls .nav-controls a:visited.next {
          right: 8px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat -30px 0; }
          .slideshow.home .controls .nav-controls a.next:hover, .slideshow.home .controls .nav-controls a:link.next:hover, .slideshow.home .controls .nav-controls a:visited.next:hover {
            background-position: -30px -34px; }
  .slideshow.home .slide {
    width: 460px;
    height: 330px;
    overflow: hidden;
    position: absolute;
    margin: 0 auto;
    padding: 0;
    left: 10px;
    top: 10px;
    background: black;
    border-bottom: none; }
    .slideshow.home .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow.home .slide span, .slideshow.home .slide span img {
      display: block;
      width: 460px;
      height: 330px; }
  .slideshow.home .caption_holder {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 460px;
    height: 74px;
    background: url(../images/slideshow_home_caption.png) repeat-x left top; }
    .slideshow.home .caption_holder span {
      display: block;
      width: auto;
      height: 67px; }
    .slideshow.home .caption_holder .image-caption .caption a {
      display: none; }
    .slideshow.home .caption_holder .caption p {
      display: block;
      margin: 0 auto;
      padding: 6px 0 12px;
      width: 460px;
      height: 18px;
      overflow: hidden;
      text-align: center;
      color: white;
      font: normal 16px/160% "superclarendon";
      letter-spacing: 0.3px; }
      .slideshow.home .caption_holder .caption p a {
        color: white;
        font: normal 18px/100% "superclarendon";
        letter-spacing: 0.3px;
        text-decoration: none; }
        .slideshow.home .caption_holder .caption p a:hover, .slideshow.home .caption_holder .caption p a:visited {
          text-decoration: none;
          color: #333; }
    .slideshow.home .caption_holder .caption .date {
      display: block;
      margin: 0 auto;
      padding: 0 0 6px;
      color: #C4DDE4;
      font: 700 14px/120% "myriad-pro";
      text-align: center;
      width: 460px;
      height: auto; }
      .slideshow.home .caption_holder .caption .date span {
        display: inline;
        width: auto;
        height: auto; }
        .slideshow.home .caption_holder .caption .date span.m {
          text-transform: uppercase; }
      .slideshow.home .caption_holder .caption .date a {
        display: inline;
        color: #C4DDE4;
        font: 700 14px/120% "myriad-pro";
        text-decoration: none; }
        .slideshow.home .caption_holder .caption .date a:hover {
          text-decoration: underline; }
    .slideshow.home .caption_holder .caption .buttons {
      position: absolute;
      display: block;
      bottom: -5px;
      top: auto;
      left: 145px;
      width: 200px;
      height: 22px;
      zoom: 1; }
      .slideshow.home .caption_holder .caption .buttons:before, .slideshow.home .caption_holder .caption .buttons:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .slideshow.home .caption_holder .caption .buttons:after {
        clear: both; }
      .slideshow.home .caption_holder .caption .buttons a, .slideshow.home .caption_holder .caption .buttons a:link, .slideshow.home .caption_holder .caption .buttons a:visited {
        display: block;
        width: 65px;
        height: 22px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: white;
        text-transform: uppercase;
        font: 400 14px/190% "league-gothic";
        float: left; }
        .slideshow.home .caption_holder .caption .buttons a.more, .slideshow.home .caption_holder .caption .buttons a:link.more, .slideshow.home .caption_holder .caption .buttons a:visited.more {
          background-position: 0 -165px;
          border-right: 1px solid #C4DDE4;
          width: 55px; }
          .slideshow.home .caption_holder .caption .buttons a.more:hover, .slideshow.home .caption_holder .caption .buttons a:link.more:hover, .slideshow.home .caption_holder .caption .buttons a:visited.more:hover {
            background-position: 0 -206px;
            color: #333; }
        .slideshow.home .caption_holder .caption .buttons a.tickets, .slideshow.home .caption_holder .caption .buttons a:link.tickets, .slideshow.home .caption_holder .caption .buttons a:visited.tickets {
          background-position: 0 -247px; }
          .slideshow.home .caption_holder .caption .buttons a.tickets:hover, .slideshow.home .caption_holder .caption .buttons a:link.tickets:hover, .slideshow.home .caption_holder .caption .buttons a:visited.tickets:hover {
            background-position: 0 -287px;
            color: #333; }
      .slideshow.home .caption_holder .caption .buttons span {
        display: block;
        width: 65px;
        height: 22px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: white;
        text-transform: uppercase;
        font: 400 14px/190% "league-gothic";
        cursor: default;
        float: left; }
        .slideshow.home .caption_holder .caption .buttons span.tickets {
          background-position: 0 -287px;
          margin: 0 0 0 4px;
          color: #333; }
          .slideshow.home .caption_holder .caption .buttons span.tickets:hover {
            background-position: 0 -287px; }
        .slideshow.home .caption_holder .caption .buttons span.soon {
          background-position: 0 -287px;
          margin: 0 0 0 4px;
          color: #333; }
          .slideshow.home .caption_holder .caption .buttons span.soon:hover {
            background-position: 0 -287px; }
  .slideshow.home .thumbs_holder {
    display: none;
    position: absolute;
    top: 340px;
    left: 0px; }
    .slideshow.home .thumbs_holder .bottom.pagination {
      display: none; }
    .slideshow.home .thumbs_holder .thumbs {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0; }
      .slideshow.home .thumbs_holder .thumbs li {
        float: left;
        width: 80px;
        height: 43px;
        margin: 0 10px 0 0;
        opacity: 0.5;
        padding: 0;
        position: relative; }
        .slideshow.home .thumbs_holder .thumbs li.selected, .slideshow.home .thumbs_holder .thumbs li:hover, .slideshow.home .thumbs_holder .thumbs li:focus {
          opacity: 1; }
          .slideshow.home .thumbs_holder .thumbs li.selected .caption, .slideshow.home .thumbs_holder .thumbs li:hover .caption, .slideshow.home .thumbs_holder .thumbs li:focus .caption {
            display: block;
            opacity: 1; }
            .slideshow.home .thumbs_holder .thumbs li.selected .caption a, .slideshow.home .thumbs_holder .thumbs li:hover .caption a, .slideshow.home .thumbs_holder .thumbs li:focus .caption a {
              display: none; }
      .slideshow.home .thumbs_holder .thumbs a.thumb {
        display: block;
        width: 80px;
        height: 43px;
        float: left;
        z-index: 10; }
        .slideshow.home .thumbs_holder .thumbs a.thumb img {
          width: 80px;
          height: 43px; }
        .slideshow.home .thumbs_holder .thumbs a.thumb span.overlay {
          display: block;
          width: 80px;
          height: 43px;
          background: url(../images/thumb_image_icon.png) no-repeat 0 0;
          position: absolute;
          top: 0px;
          left: 0px; }
      .slideshow.home .thumbs_holder .thumbs a.thumb_video span.overlay {
        background: url(../images/thumb_video_icon.png) no-repeat 0 0; }
      .slideshow.home .thumbs_holder .thumbs .caption {
        display: none;
        background: url(../images/thumb_caption_bg.png) no-repeat 0 0;
        width: 214px;
        height: 46px;
        position: absolute;
        top: -35px;
        left: -60px;
        padding: 5px 10px;
        z-index: 20; }
        .slideshow.home .thumbs_holder .thumbs .caption p {
          color: black;
          font-size: 12px;
          height: 30px;
          overflow: hidden; }
  .slideshow.home .video {
    width: 460px;
    height: 330px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }
    .slideshow.home .video #video_player, .slideshow.home .video #video_holder {
      display: block;
      width: 460px;
      height: 330px; }
  .slideshow.home .imglink {
    width: 460px;
    height: 330px;
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }
    .slideshow.home .imglink #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
= Event Detail Slideshow
----------------------------------------------------------------------------- */
#events #column_2 .slideshow {
  position: relative;
  border: none;
  width: 480px;
  height: 405px;
  margin: -14px auto 0;
  padding: 0;
  background: url(../images/slideshow_event_bg.jpg) no-repeat 0 -20px; }
  #events #column_2 .slideshow:hover .controls, #events #column_2 .slideshow:focus .controls {
    display: block; }
  #events #column_2 .slideshow .controls {
    display: none;
    position: absolute;
    width: 460px;
    margin: 0 auto;
    height: 34px;
    top: 0;
    left: 10px; }
    #events #column_2 .slideshow .controls .nav-controls {
      position: relative; }
      #events #column_2 .slideshow .controls .nav-controls a, #events #column_2 .slideshow .controls .nav-controls a:link, #events #column_2 .slideshow .controls .nav-controls a:visited {
        display: block;
        height: 34px;
        width: 30px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px; }
        #events #column_2 .slideshow .controls .nav-controls a:hover, #events #column_2 .slideshow .controls .nav-controls a:focus, #events #column_2 .slideshow .controls .nav-controls a:link:hover, #events #column_2 .slideshow .controls .nav-controls a:link:focus, #events #column_2 .slideshow .controls .nav-controls a:visited:hover, #events #column_2 .slideshow .controls .nav-controls a:visited:focus {
          text-decoration: none; }
        #events #column_2 .slideshow .controls .nav-controls a.prev, #events #column_2 .slideshow .controls .nav-controls a:link.prev, #events #column_2 .slideshow .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat 0 0; }
          #events #column_2 .slideshow .controls .nav-controls a.prev:hover, #events #column_2 .slideshow .controls .nav-controls a:link.prev:hover, #events #column_2 .slideshow .controls .nav-controls a:visited.prev:hover {
            background-position: 0 -34px; }
        #events #column_2 .slideshow .controls .nav-controls a.next, #events #column_2 .slideshow .controls .nav-controls a:link.next, #events #column_2 .slideshow .controls .nav-controls a:visited.next {
          right: 8px;
          top: 160px;
          background: url(../images/slideshow_controls.png) no-repeat -30px 0; }
          #events #column_2 .slideshow .controls .nav-controls a.next:hover, #events #column_2 .slideshow .controls .nav-controls a:link.next:hover, #events #column_2 .slideshow .controls .nav-controls a:visited.next:hover {
            background-position: -30px -34px; }
  #events #column_2 .slideshow .slide {
    width: 460px;
    height: 330px;
    overflow: hidden;
    position: absolute;
    margin: 0 auto;
    padding: 0;
    left: 10px;
    top: 10px;
    background: black;
    border-bottom: none; }
    #events #column_2 .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    #events #column_2 .slideshow .slide span, #events #column_2 .slideshow .slide span img {
      display: block;
      width: 460px;
      height: 330px; }
  #events #column_2 .slideshow .caption_holder {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 460px;
    height: 35px;
    background: url(../images/slideshow_home_caption.png) repeat-x left top;
    padding: 20px 0 0; }
    #events #column_2 .slideshow .caption_holder span {
      display: block;
      width: auto;
      height: 67px; }
    #events #column_2 .slideshow .caption_holder .image-caption .caption a {
      display: none; }
    #events #column_2 .slideshow .caption_holder .caption p {
      display: block;
      margin: 0 auto;
      padding: 0 0 6px 10px;
      color: #C4DDE4;
      font: 700 14px/120% "myriad-pro";
      text-align: left;
      width: 460px;
      height: auto; }
    #events #column_2 .slideshow .caption_holder .caption .date {
      display: none; }
    #events #column_2 .slideshow .caption_holder .caption .buttons {
      display: none; }
  #events #column_2 .slideshow .thumbs_holder {
    display: none;
    position: absolute;
    top: 340px;
    left: 0px; }
    #events #column_2 .slideshow .thumbs_holder .thumbs {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0; }
      #events #column_2 .slideshow .thumbs_holder .thumbs li {
        float: left;
        width: 80px;
        height: 43px;
        margin: 0 10px 0 0;
        opacity: 0.5;
        padding: 0;
        position: relative; }
        #events #column_2 .slideshow .thumbs_holder .thumbs li.selected, #events #column_2 .slideshow .thumbs_holder .thumbs li:hover, #events #column_2 .slideshow .thumbs_holder .thumbs li:focus {
          opacity: 1; }
          #events #column_2 .slideshow .thumbs_holder .thumbs li.selected .caption, #events #column_2 .slideshow .thumbs_holder .thumbs li:hover .caption, #events #column_2 .slideshow .thumbs_holder .thumbs li:focus .caption {
            display: block;
            opacity: 1; }
            #events #column_2 .slideshow .thumbs_holder .thumbs li.selected .caption a, #events #column_2 .slideshow .thumbs_holder .thumbs li:hover .caption a, #events #column_2 .slideshow .thumbs_holder .thumbs li:focus .caption a {
              display: none; }
      #events #column_2 .slideshow .thumbs_holder .thumbs a.thumb {
        display: block;
        width: 80px;
        height: 43px;
        float: left;
        z-index: 10; }
        #events #column_2 .slideshow .thumbs_holder .thumbs a.thumb img {
          width: 80px;
          height: 43px; }
        #events #column_2 .slideshow .thumbs_holder .thumbs a.thumb span.overlay {
          display: block;
          width: 80px;
          height: 43px;
          background: url(../images/thumb_image_icon.png) no-repeat 0 0;
          position: absolute;
          top: 0px;
          left: 0px; }
      #events #column_2 .slideshow .thumbs_holder .thumbs a.thumb_video span.overlay {
        background: url(../images/thumb_video_icon.png) no-repeat 0 0; }
      #events #column_2 .slideshow .thumbs_holder .thumbs .caption {
        display: none;
        background: url(../images/thumb_caption_bg.png) no-repeat 0 0;
        width: 214px;
        height: 46px;
        position: absolute;
        top: -35px;
        left: -60px;
        padding: 5px 10px;
        z-index: 20; }
        #events #column_2 .slideshow .thumbs_holder .thumbs .caption p {
          color: black;
          font-size: 12px;
          height: 30px;
          overflow: hidden; }
  #events #column_2 .slideshow .video {
    width: 460px;
    height: 330px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }
    #events #column_2 .slideshow .video #video_player, #events #column_2 .slideshow .video #video_holder {
      display: block;
      width: 460px;
      height: 330px; }
  #events #column_2 .slideshow .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }
    #events #column_2 .slideshow .imglink #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  position: relative; }
  .event_list .overview {
    padding: 0 0 10px;
    margin: 0;
    border-bottom: 1px solid #2F93C0; }
    .event_list .overview h1 {
      display: block;
      width: 620px;
      padding: 0;
      margin: 0;
      color: #2F93C0;
      font: normal 22px/130% "superclarendon";
      text-transform: uppercase; }
    .event_list .overview p {
      display: block;
      padding: 5px 0 0;
      margin: 0;
      width: 610px;
      color: #666;
      font: normal 12px/140% Arial, Helvetica, sans-serif; }
  .event_list .list {
    padding: 0;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: black;
      font: normal 16px/20px "superclarendon";
      text-align: left; }
  .event_list .entry {
    border-top: 1px solid #E6E6E6;
    padding: 15px 4px;
    width: 612px; }
    .event_list .entry:first-child {
      border-top: none; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 5px 0 0;
      width: 323px;
      margin: 0 15px 0 0; }
      .event_list .entry .info .date {
        display: block;
        position: relative;
        margin: 0 0 10px;
        padding: 0;
        width: 323px;
        font: bold 12px/120% "superclarendon";
        color: #3195C2; }
      .event_list .entry .info h3 {
        position: relative;
        margin: 0 0 10px;
        text-transform: none; }
        .event_list .entry .info h3 a {
          position: relative;
          text-decoration: none;
          color: #12417B;
          font: normal 16px/110% "superclarendon";
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .entry .info h3 a:hover {
            color: #333;
            text-decoration: none; }
      .event_list .entry .info .venue {
        position: relative;
        margin: 0;
        text-transform: none;
        color: #3195C2;
        font: normal 11px/120% Arial, Helvetica, sans-serif;
        font-style: italic; }
        .event_list .entry .info .venue a {
          display: inline;
          color: #2B87B2;
          text-decoration: none;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .entry .info .venue a:hover {
            text-decoration: none;
            color: #333; }
      .event_list .entry .info .group_text {
        display: none; }
    .event_list .entry .thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .event_list .entry .thumb a {
        display: block;
        width: 175px;
        height: 95px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 175px;
        height: 95px; }
      .event_list .entry .thumb:hover {
        border-color: #2B87B2; }
    .event_list .entry .buttons {
      position: relative;
      float: right;
      width: 75px;
      display: block;
      margin: 13px 0 0; }
      .event_list .entry .buttons a, .event_list .entry .buttons a:link, .event_list .entry .buttons a:visited {
        display: block;
        width: 65px;
        height: 30px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: #3195C2;
        text-transform: uppercase;
        font: 400 14px/270% "league-gothic"; }
        .event_list .entry .buttons a.more, .event_list .entry .buttons a:link.more, .event_list .entry .buttons a:visited.more {
          background-position: 0 0px;
          width: 55px;
          height: 36px;
          border-bottom: 2px solid #E8EAEB; }
          .event_list .entry .buttons a.more:hover, .event_list .entry .buttons a:link.more:hover, .event_list .entry .buttons a:visited.more:hover {
            background-position: 0 -40px;
            color: #333;
            text-decoration: none; }
        .event_list .entry .buttons a.tickets, .event_list .entry .buttons a:link.tickets, .event_list .entry .buttons a:visited.tickets {
          background-position: 0 -84px; }
          .event_list .entry .buttons a.tickets:hover, .event_list .entry .buttons a:link.tickets:hover, .event_list .entry .buttons a:visited.tickets:hover {
            background-position: 0 -124px;
            color: #333;
            text-decoration: none; }
      .event_list .entry .buttons span {
        display: block;
        width: 65px;
        height: 22px;
        padding: 0 0 0 26px;
        margin: 0;
        position: relative;
        background: url(../images/event_buttons.png) no-repeat 0 0;
        color: white;
        text-transform: uppercase;
        font: 400 14px/190% "league-gothic";
        cursor: default; }
        .event_list .entry .buttons span.tickets {
          display: none;
          background-position: 0 -287px;
          color: #333; }
          .event_list .entry .buttons span.tickets:hover {
            background-position: 0 -287px; }
        .event_list .entry .buttons span.soon {
          background-position: 0 -287px;
          color: #333; }
          .event_list .entry .buttons span.soon:hover {
            background-position: 0 -287px; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail #column_1 {
  width: 228px;
  margin: 25px 0 25px 10px;
  background: url(../images/white_noise.jpg) repeat 0 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }
.event_detail #column_2 {
  width: 480px;
  margin: 0 auto;
  padding: 5px 10px 20px; }
.event_detail #column_3 {
  width: 230px;
  margin: 0 auto; }
.event_detail .header {
  margin: 0 0 0 -1px;
  width: 230px;
  height: auto;
  background: url(../images/event_detail_header.jpg) no-repeat center top;
  padding: 0 0 10px; }
  .event_detail .header h1 {
    display: block;
    width: 210px;
    margin: 0 auto;
    padding: 20px 0 0;
    text-transform: uppercase;
    color: #3399C5;
    font: normal 16px/130% "superclarendon"; }
  .event_detail .header h2 {
    display: block;
    width: 210px;
    margin: 0 auto;
    padding: 4px 0 0;
    text-transform: uppercase;
    color: #333;
    font: bold 12px/160% Arial, Helvetica, sans-serif; }
.event_detail .date_tickets {
  padding: 0 0 10px;
  margin: 0 auto;
  width: 210px;
  border-bottom: 1px solid #ccc; }
  .event_detail .date_tickets .date {
    display: block;
    position: relative;
    text-align: center;
    width: 208px;
    height: 30px;
    background: url(../images/event_tickets.png) no-repeat 0 0;
    color: white;
    text-transform: uppercase;
    font: normal 22px/150% "league-gothic";
    text-shadow: 0px -2px 2px #1D5C77;
    padding: 0;
    margin: 0 auto; }
    .event_detail .date_tickets .date span {
      display: inline; }
  .event_detail .date_tickets .ticket {
    display: block;
    position: relative;
    text-align: center;
    width: 208px;
    height: 30px;
    margin: 10px auto 0;
    padding: 0; }
    .event_detail .date_tickets .ticket span, .event_detail .date_tickets .ticket a, .event_detail .date_tickets .ticket a:link, .event_detail .date_tickets .ticket a:visited {
      display: block;
      position: relative;
      text-align: center;
      width: 208px;
      height: 30px;
      background: url(../images/event_tickets.png) no-repeat 0 -30px;
      color: white;
      text-transform: uppercase;
      font: normal 22px/150% "league-gothic";
      text-shadow: 0px -2px 2px #1D5C77;
      padding: 0;
      margin: 0 auto; }
      .event_detail .date_tickets .ticket span:hover, .event_detail .date_tickets .ticket a:hover, .event_detail .date_tickets .ticket a:link:hover, .event_detail .date_tickets .ticket a:visited:hover {
        text-decoration: none;
        background-position: 0 0; }
    .event_detail .date_tickets .ticket span:hover {
      background-position: 0 -30px;
      cursor: default; }
.event_detail .details {
  display: block;
  width: 212px;
  margin: 0 auto;
  position: relative;
  padding: 15px 0 5px;
  list-style: none; }
  .event_detail .details li {
    display: block;
    margin: 0;
    padding: 0 0 10px; }
    .event_detail .details li label {
      cursor: default;
      text-transform: uppercase;
      padding: 0;
      margin: 0;
      display: block;
      color: #2D91BE;
      font: normal 14px/140% "superclarendon";
      background: #E8E8E8;
      width: 212px;
      height: 20px;
      text-indent: 5px; }
    .event_detail .details li span, .event_detail .details li p {
      display: block;
      width: 208px;
      margin: 0 auto;
      padding: 3px 0 0 4px;
      color: #333;
      font: normal 12px/140% Arial, Helvetica, sans-serif; }
      .event_detail .details li span a, .event_detail .details li span a:visited, .event_detail .details li p a, .event_detail .details li p a:visited {
        display: inline; }
    .event_detail .details li a, .event_detail .details li a:visited {
      display: block;
      width: 208px;
      margin: 0 auto;
      padding: 5px 0 0 4px;
      color: #3599C6;
      font: normal 12px/140% Arial, Helvetica, sans-serif;
      text-decoration: underline; }
      .event_detail .details li a:hover, .event_detail .details li a:visited:hover {
        text-decoration: underline;
        color: #333; }
.event_detail .description {
  width: 463px;
  margin: 35px auto 0; }
  .event_detail .description h3 {
    display: block;
    width: 463px;
    padding: 0 0 10px;
    margin: 0 0 10px;
    background: url(../images/event_descrip.jpg) no-repeat center bottom;
    color: #3296C3;
    font: normal 16px/130% "superclarendon";
    text-transform: uppercase; }
  .event_detail .description p {
    display: block;
    width: 456px;
    color: #666;
    font: normal 12px/140% Arial, Helvetica, sans-serif;
    padding: 0 0 5px; }
    .event_detail .description p a, .event_detail .description p a:visited {
      color: #379AC7;
      text-decoration: none; }
      .event_detail .description p a:hover, .event_detail .description p a:visited:hover {
        text-decoration: underline; }
.event_detail .showings {
  width: 463px;
  margin: 35px auto; }
  .event_detail .showings h3 {
    display: block;
    width: 463px;
    padding: 0 0 10px;
    margin: 0;
    background: url(../images/event_descrip.jpg) no-repeat center bottom;
    color: #3296C3;
    font: normal 16px/130% "superclarendon";
    text-transform: uppercase; }
  .event_detail .showings ul {
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      position: relative;
      width: 463px;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
      margin: 0;
      background: url(../images/showings_bullet.png) no-repeat 0 9px; }
      .event_detail .showings ul li span.date {
        display: block;
        line-height: 24px;
        padding: 0 0 0 15px;
        color: #333;
        font: bold 12px/130% Arial, Helvetica, sans-serif; }
        .event_detail .showings ul li span.date span {
          display: inline; }
      .event_detail .showings ul li a.ical {
        position: absolute;
        right: -3px;
        top: 6px;
        display: block;
        width: 30px;
        height: 22px;
        background: url(../images/cal_sprite.png) no-repeat 31px 0;
        padding: 0 20px 0 0;
        margin: 0;
        color: #429AC2;
        text-transform: uppercase;
        font: bold 12px/190% Arial, Helvetica, sans-serif; }
        .event_detail .showings ul li a.ical:hover {
          background-position: 31px -23px;
          color: #333;
          text-decoration: none; }
.event_detail a.print {
  display: block;
  height: 20px;
  background: url(../images/print_icon.png) no-repeat 0 1px;
  padding: 0 0 0 26px;
  margin: 0 20px 0 10px;
  text-decoration: none;
  float: left;
  text-transform: uppercase;
  color: #429AC2;
  font: bold 12px/190% Arial, Helvetica, sans-serif; }
  .event_detail a.print:hover {
    background-position: 0 -20px;
    color: #333;
    text-decoration: none; }
.event_detail .share_bar {
  padding: 15px 0;
  margin: 0 0 15px;
  float: left;
  width: 400px; }
.event_detail .dsq-global-toolbar-dropdown-container {
  display: none !important; }

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

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

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

.featured_holder {
  background: transparent;
  margin: 0;
  position: relative;
  width: 230px;
  padding: 0;
  float: left;
  height: 414px; }
  .featured_holder p {
    position: relative;
    display: block;
    height: 33px;
    width: 230px;
    margin: 0 0 20px;
    text-align: center;
    font: normal 16px/200% "superclarendon";
    color: white;
    text-transform: uppercase;
    text-shadow: 0 -1px 0 #111; }
  .featured_holder .prev, .featured_holder .next {
    position: absolute;
    height: 18px;
    width: 42px;
    left: 100px;
    display: block;
    text-indent: -9999px;
    background: url(../images/arrows_carousel.png) no-repeat 0 0;
    cursor: pointer; }
  .featured_holder .prev {
    top: -18px; }
    .featured_holder .prev:hover {
      background-position: 0 -18px; }
  .featured_holder .next {
    background-position: 0 -36px;
    bottom: -18px; }
    .featured_holder .next:hover {
      background-position: 0 -54px; }
  .featured_holder #featured.event_list {
    width: 230px;
    margin: 0;
    padding: 0;
    height: 344px;
    z-index: 500;
    background: none; }
    .featured_holder #featured.event_list .list {
      background: none;
      padding: 0;
      margin: 0; }
    .featured_holder #featured.event_list .entry {
      padding: 0;
      margin: 0 0 10px;
      width: 226px;
      height: 104px;
      padding: 0;
      background: #fff;
      clear: none;
      position: relative;
      border: 2px solid #E0DDD4;
      overflow: hidden; }
      .featured_holder #featured.event_list .entry .info {
        display: block;
        position: absolute;
        top: 2px;
        right: 4px;
        margin: 0;
        width: 177px;
        padding: 0px;
        height: 98px;
        border: 1px solid #CCC; }
        .featured_holder #featured.event_list .entry .info.active {
          z-index: 21;
          background: url(../images/slideshow_home_bg.jpg) repeat 0 0; }
        .featured_holder #featured.event_list .entry .info h3 {
          display: block;
          padding: 10px;
          margin: 0;
          text-indent: 0;
          line-height: 18px;
          font-size: 14px;
          height: auto;
          font-weight: 700;
          max-height: 177px;
          overflow: hidden; }
          .featured_holder #featured.event_list .entry .info h3 a {
            display: block;
            color: white;
            font: normal 14px/120% "superclarendon";
            letter-spacing: 0.3px;
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear; }
            .featured_holder #featured.event_list .entry .info h3 a:hover {
              color: #333; }
        .featured_holder #featured.event_list .entry .info h4 {
          display: none; }
        .featured_holder #featured.event_list .entry .info .date {
          padding: 0 10px;
          margin: 0;
          color: #C4DDE4;
          font: 700 11px/120% "myriad-pro"; }
          .featured_holder #featured.event_list .entry .info .date a {
            color: #C4DDE4;
            font: 700 11px/120% "myriad-pro";
            text-decoration: none; }
            .featured_holder #featured.event_list .entry .info .date a:hover {
              text-decoration: underline; }
      .featured_holder #featured.event_list .entry .thumb {
        display: block;
        width: 177px;
        height: 98px;
        position: absolute;
        top: 2px;
        right: 4px;
        z-index: 20;
        background: none;
        border: none;
        float: none;
        margin: 0;
        border: 1px solid #CCC; }
        .featured_holder #featured.event_list .entry .thumb img {
          width: 177px;
          height: 98px;
          padding: 0;
          margin: 0; }
      .featured_holder #featured.event_list .entry .buttons {
        position: absolute;
        top: 12px;
        bottom: auto;
        left: 7px;
        width: 30px;
        height: 86px;
        float: none;
        margin: 0; }
        .featured_holder #featured.event_list .entry .buttons a, .featured_holder #featured.event_list .entry .buttons a:link, .featured_holder #featured.event_list .entry .buttons a:visited {
          display: block;
          width: 30px;
          height: 40px;
          text-indent: -5000px;
          padding: 0;
          margin: 0;
          position: relative;
          background: url(../images/event_buttons.png) no-repeat 0 0; }
          .featured_holder #featured.event_list .entry .buttons a.more, .featured_holder #featured.event_list .entry .buttons a:link.more, .featured_holder #featured.event_list .entry .buttons a:visited.more {
            background-position: 0 -0px;
            border-bottom: 2px solid #E8EAEB; }
            .featured_holder #featured.event_list .entry .buttons a.more:hover, .featured_holder #featured.event_list .entry .buttons a:link.more:hover, .featured_holder #featured.event_list .entry .buttons a:visited.more:hover {
              background-position: 0 -40px; }
          .featured_holder #featured.event_list .entry .buttons a.tickets, .featured_holder #featured.event_list .entry .buttons a:link.tickets, .featured_holder #featured.event_list .entry .buttons a:visited.tickets {
            background-position: 0 -80px; }
            .featured_holder #featured.event_list .entry .buttons a.tickets:hover, .featured_holder #featured.event_list .entry .buttons a:link.tickets:hover, .featured_holder #featured.event_list .entry .buttons a:visited.tickets:hover {
              background-position: 0 -120px; }
        .featured_holder #featured.event_list .entry .buttons span {
          display: block;
          width: 30px;
          height: 40px;
          text-indent: -5000px;
          padding: 0;
          margin: 0;
          position: relative;
          background: url(../images/event_buttons.png) no-repeat 0 0;
          cursor: default; }
          .featured_holder #featured.event_list .entry .buttons span.tickets {
            display: none;
            background-position: 0 -120px; }
            .featured_holder #featured.event_list .entry .buttons span.tickets:hover {
              background-position: 0 -120px; }
          .featured_holder #featured.event_list .entry .buttons span.soon {
            background-position: 0 -120px; }
            .featured_holder #featured.event_list .entry .buttons span.soon:hover {
              background-position: 0 -120px; }
  .featured_holder h3 {
    text-indent: -9999px;
    margin: 0;
    height: 0px; }
  .featured_holder .list_holder {
    position: relative;
    z-index: 10;
    margin: 0;
    overflow: hidden;
    width: 230px;
    height: 344px; }
  .featured_holder .group {
    float: left;
    padding: 0; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .content .overview {
    border: none;
    margin: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    border-bottom: 1px solid #AAA;
    padding: 15px 10px;
    position: relative;
    margin: 0; }
    .news_list .entry .news_thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .news_list .entry .news_thumb a {
        display: block;
        width: 175px;
        height: 95px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
      .news_list .entry .news_thumb img {
        padding: 0;
        width: 175px;
        height: 95px; }
      .news_list .entry .news_thumb:hover {
        border-color: #2B87B2; }
    .news_list .entry .info {
      width: auto;
      position: relative; }
      .news_list .entry .info h3 {
        margin: 0 0 10px;
        font-size: 14px;
        text-transform: none;
        color: #2F93C0;
        text-decoration: none;
        font-weight: bold;
        font-style: italic;
        width: 480px; }
        .news_list .entry .info h3 a {
          font-size: 16px;
          text-transform: none;
          color: #2F93C0;
          text-decoration: none;
          font-weight: bold;
          font-style: normal; }
          .news_list .entry .info h3 a:hover {
            color: #333; }
      .news_list .entry .info h4 {
        font-size: 14px;
        margin: 0 0 5px;
        width: 480px; }
      .news_list .entry .info p {
        color: #222;
        width: 480px; }
      .news_list .entry .info .date {
        display: block;
        margin: 0 0 10px;
        font-size: 11px;
        text-transform: none;
        color: #164962;
        text-decoration: none;
        font-weight: normal;
        font-style: italic; }
    .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
      position: absolute;
      right: 0;
      top: 0;
      display: block;
      width: 55px;
      height: 36px;
      padding: 0 0 0 26px;
      margin: 0;
      background: url(../images/event_buttons.png) no-repeat 0 0;
      color: #3195C2;
      text-transform: uppercase;
      font: 400 14px/270% "league-gothic"; }
      .news_list .entry a.more:hover, .news_list .entry a.more:link:hover, .news_list .entry a.more:visited:hover {
        background-position: 0 -40px;
        color: #333;
        text-decoration: none; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail .overview {
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/overview_rule.png) repeat-x center bottom; }
    .news_detail .overview h1 {
      font-size: 24px; }
    .news_detail .overview span.date {
      color: black;
      font-weight: 500;
      font-style: italic; }
    .news_detail .overview a.viewall, .news_detail .overview a.viewall:visited {
      position: absolute;
      display: block;
      right: 0px;
      bottom: 16px;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      padding: 0 10px 0 20px;
      text-transform: none;
      margin: 0;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      .news_detail .overview a.viewall:hover, .news_detail .overview a.viewall:focus, .news_detail .overview a.viewall:visited:hover, .news_detail .overview a.viewall:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }
      .news_detail .overview a.viewall:before, .news_detail .overview a.viewall:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 18px;
        background: url(../images/icons.png) no-repeat 0 -18px; }
  .news_detail .slideshow {
    margin: 0 0 15px; }
    .news_detail .slideshow img {
      position: absolute;
      width: 600px;
      height: 325px;
      overflow: hidden;
      left: 10px;
      top: 10px;
      border-bottom: 2px solid #5DADD1; }
  .news_detail .description {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
    .news_detail .description .news_thumb {
      width: 175px;
      height: 95px;
      margin: 0 20px 0 0;
      float: left;
      border: 1px solid #E6E6E6; }
      .news_detail .description .news_thumb img {
        padding: 0;
        margin: 0;
        width: 175px;
        height: 95px; }
  .news_detail .event_list {
    margin: 0 0 15px;
    padding: 0 0 15px;
    background: url(../images/baseline_rule.jpg) repeat-x center bottom; }
    .news_detail .event_list .list {
      padding: 0; }
  .news_detail .link {
    float: left; }
  .news_detail a.print, .news_detail a.print:link, .news_detail a.print:visited {
    position: absolute;
    display: block;
    bottom: 10px;
    right: 0px;
    color: white;
    text-decoration: none;
    height: 18px;
    background: url(../images/blue_buttons.png) repeat-x 0 -18px;
    margin: 0 0 0 12px;
    font: bold 9px/200% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    width: auto;
    padding: 0 10px 0 20px;
    text-transform: none; }
    .news_detail a.print:hover, .news_detail a.print:focus, .news_detail a.print:link:hover, .news_detail a.print:link:focus, .news_detail a.print:visited:hover, .news_detail a.print:visited:focus {
      color: white;
      text-decoration: none;
      background-position: 0 0; }
    .news_detail a.print:before, .news_detail a.print:link:before, .news_detail a.print:visited:before {
      content: "";
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 17px;
      background: url(../images/icons.png) no-repeat 0 -105px; }
  .news_detail .share_bar {
    border-top: 1px solid black;
    padding: 15px 0 0; }
    .news_detail .share_bar .addthis_toolbox {
      float: left;
      width: 305px; }

/* @group FAQ */
.faq {
  margin: 0 0 25px;
  padding: 0;
  position: relative; }
  .faq dl {
    background: url(../images/baseline_rule.jpg) no-repeat center bottom; }
  .faq dt {
    cursor: pointer;
    padding: 10px 20px 10px 8px;
    margin: 0;
    border-top: 1px solid #2C90BD;
    overflow: auto;
    background: url(../images/bullet_faq.png) no-repeat 590px 14px; }
    .faq dt:hover p {
      color: #164962; }
    .faq dt p {
      font-size: 14px;
      color: #2F93C0;
      text-transform: none;
      padding: 0;
      margin: 0;
      font: bold 14px/120% Arial, Helvetica, sans-serif; }
    .faq dt.active {
      background: #F4F4F4 url(../images/bullet_faq_over.png) no-repeat 590px 14px; }
      .faq dt.active p {
        color: #164962; }
  .faq dd {
    height: 0px;
    overflow: hidden;
    padding: 0 20px 10px 8px;
    background: #F4F4F4; }
    .faq dd p {
      font: normal 12px/140% Arial, Helvetica, sans-serif;
      color: #666;
      font-style: italic; }
  .faq ul {
    margin: 0 0 16px;
    padding: 0 15px;
    font: 12px/160% Arial, Helvetica, sans-serif;
    list-style-image: url(../images/bullet.png);
    list-style-position: outside;
    list-style-type: square; }
    .faq ul ul {
      padding-top: 5px;
      margin-bottom: 0;
      border: none; }
    .faq ul li {
      padding: 0 0 8px;
      font-size: 13px;
      font-style: normal;
      line-height: 140%; }
      .faq ul li li {
        border-bottom: none; }

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

#teams .event_list .entry {
  border-top: 1px solid #E6E6E6;
  padding: 15px 4px;
  width: 612px; }
  #teams .event_list .entry:first-child {
    border-top: none; }
  #teams .event_list .entry .info {
    position: relative;
    float: left;
    padding: 5px 0 0;
    width: 323px;
    margin: 0 15px 0 0; }
    #teams .event_list .entry .info .date {
      display: block;
      position: relative;
      margin: 0 0 10px;
      padding: 0;
      width: 323px;
      font: bold 12px/120% "superclarendon";
      color: #3195C2; }
    #teams .event_list .entry .info h3 {
      position: relative;
      margin: 0 0 10px;
      text-transform: none; }
      #teams .event_list .entry .info h3 a {
        position: relative;
        text-decoration: none;
        color: #12417B;
        font: normal 16px/110% "superclarendon";
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        #teams .event_list .entry .info h3 a:hover {
          color: #333;
          text-decoration: none; }
    #teams .event_list .entry .info .venue {
      position: relative;
      margin: 0;
      text-transform: none;
      color: #3195C2;
      font: normal 11px/120% Arial, Helvetica, sans-serif;
      font-style: italic; }
      #teams .event_list .entry .info .venue a {
        display: inline;
        color: #2B87B2;
        text-decoration: none;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        #teams .event_list .entry .info .venue a:hover {
          text-decoration: none;
          color: #333; }
    #teams .event_list .entry .info .group_text {
      display: none; }
  #teams .event_list .entry .thumb {
    width: 175px;
    height: 95px;
    margin: 0 20px 0 0;
    float: left;
    border: 1px solid #E6E6E6; }
    #teams .event_list .entry .thumb a {
      display: block;
      width: 175px;
      height: 95px;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
    #teams .event_list .entry .thumb img {
      padding: 0;
      width: 175px;
      height: 95px; }
    #teams .event_list .entry .thumb:hover {
      border-color: #2B87B2; }
  #teams .event_list .entry .buttons {
    position: relative;
    float: right;
    width: 75px;
    display: block;
    margin: 13px 0 0; }
    #teams .event_list .entry .buttons a, #teams .event_list .entry .buttons a:link, #teams .event_list .entry .buttons a:visited {
      display: block;
      width: 65px;
      height: 30px;
      padding: 0 0 0 26px;
      margin: 0;
      position: relative;
      background: url(../images/event_buttons.png) no-repeat 0 0;
      color: #3195C2;
      text-transform: uppercase;
      font: 400 14px/270% "league-gothic"; }
      #teams .event_list .entry .buttons a.more, #teams .event_list .entry .buttons a:link.more, #teams .event_list .entry .buttons a:visited.more {
        background-position: 0 0px;
        width: 55px;
        height: 36px;
        border-bottom: 2px solid #E8EAEB; }
        #teams .event_list .entry .buttons a.more:hover, #teams .event_list .entry .buttons a:link.more:hover, #teams .event_list .entry .buttons a:visited.more:hover {
          background-position: 0 -40px;
          color: #333;
          text-decoration: none; }
      #teams .event_list .entry .buttons a.tickets, #teams .event_list .entry .buttons a:link.tickets, #teams .event_list .entry .buttons a:visited.tickets {
        background-position: 0 -84px; }
        #teams .event_list .entry .buttons a.tickets:hover, #teams .event_list .entry .buttons a:link.tickets:hover, #teams .event_list .entry .buttons a:visited.tickets:hover {
          background-position: 0 -124px;
          color: #333;
          text-decoration: none; }
    #teams .event_list .entry .buttons span {
      display: block;
      width: 65px;
      height: 22px;
      padding: 0 0 0 26px;
      margin: 0;
      position: relative;
      background: url(../images/event_buttons.png) no-repeat 0 0;
      color: white;
      text-transform: uppercase;
      font: 400 14px/190% "league-gothic";
      cursor: default; }
      #teams .event_list .entry .buttons span.tickets {
        background-position: 0 -287px;
        color: #333; }
        #teams .event_list .entry .buttons span.tickets:hover {
          background-position: 0 -287px; }
      #teams .event_list .entry .buttons span.soon {
        background-position: 0 -287px;
        color: #333; }
        #teams .event_list .entry .buttons span.soon:hover {
          background-position: 0 -287px; }

#teams.detail .event_list {
  float: left; }
#teams.detail .overview {
  margin: 0 0 15px;
  padding: 0 0 15px;
  background: url(../images/overview_rule.png) repeat-x center bottom; }
  #teams.detail .overview h1 {
    font-size: 24px; }
#teams.detail .slideshow {
  margin: -10px auto 15px; }
#teams.detail .description {
  margin: 0 0 15px;
  padding: 0 0 15px; }
  #teams.detail .description .team_thumb {
    float: left;
    margin: 0 25px 4px 0;
    padding: 0;
    width: 175px;
    height: 115px; }
    #teams.detail .description .team_thumb img {
      padding: 0;
      margin: 0;
      width: 175px;
      height: 95px;
      border: 2px solid #AAA; }
    #teams.detail .description .team_thumb a.team_link, #teams.detail .description .team_thumb a.team_link:link, #teams.detail .description .team_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; }
      #teams.detail .description .team_thumb a.team_link:hover, #teams.detail .description .team_thumb a.team_link:link:hover, #teams.detail .description .team_thumb a.team_link:visited:hover {
        color: black; }
    #teams.detail .description .team_thumb .team_link {
      position: relative;
      text-align: center;
      padding: 4px 0;
      margin: 0 auto; }
#teams.detail h2 {
  display: block;
  margin: 0 0 15px;
  padding: 0 0 15px;
  background: url(../images/baseline_rule.jpg) repeat-x center bottom;
  color: #2F93C0;
  font: 500 18px/130% "superclarendon"; }

/* @group Default Banner */
.banner {
  width: 314px;
  height: 118px;
  padding: 0;
  margin: 0 0 0 10px;
  border: 2px solid #DEDBD2;
  position: relative;
  float: left; }
  .banner:first-child {
    margin: 0; }
  .banner:hover {
    border: 2px solid #2A8EBB; }

.banner .slideshow {
  width: 314px;
  height: 118px;
  background: none;
  margin: 0;
  padding: 0; }

.banner .slideshow .slide, .banner .slideshow .slide span {
  width: 314px;
  height: 118px;
  background: none;
  margin: 0;
  padding: 0;
  border-bottom: none;
  left: 0;
  top: 0; }

.banner .slideshow .slide img {
  padding: 0;
  border: none;
  background: none;
  width: 314px;
  height: 118px;
  top: 0;
  left: 0; }

.banner .slideshow a {
  display: block;
  width: 100%;
  height: 100%; }

.banner .slideshow .imglink {
  display: block;
  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; }

/* @end */
/* @group Footer Sponsor Banners */
.footer_banners .banner {
  width: 80px;
  height: 60px;
  padding: 0;
  margin: 10px 0 0 20px;
  border: none;
  position: relative;
  float: left; }
  .footer_banners .banner:first-child {
    margin: 10px 0 0 0; }
.footer_banners .banner .slideshow {
  width: 80px;
  height: 60px;
  background: none;
  margin: 0;
  padding: 0; }
.footer_banners .banner .slideshow .slide, .footer_banners .banner .slideshow .slide span {
  width: 80px;
  height: 60px;
  background: none;
  margin: 0;
  padding: 0; }
.footer_banners .banner .slideshow .slide img {
  padding: 0;
  border: none;
  background: none;
  width: 80px;
  height: 60px;
  top: 0;
  left: 0; }
.footer_banners .banner .slideshow a {
  display: block;
  width: 100%;
  height: 100%; }
.footer_banners .banner .slideshow .imglink {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer; }
  .footer_banners .banner .slideshow .imglink a {
    position: relative;
    background: url(../images/blank.png) 0 0 repeat;
    display: block;
    width: 100%;
    height: 100%; }
.footer_banners .banner .slideshow .thumbs_holder, .footer_banners .banner .slideshow .thumbs_holder ul.thumbs, .footer_banners .banner .slideshow .controls, .footer_banners .banner .slideshow .controls .nav-controls {
  display: none; }

/* @end */
/* ----------------------------------------------------------------------------
= Venue Listing
----------------------------------------------------------------------------- */
#venues .venue_list .overview {
  padding: 0 0 5px;
  margin: 0 0 10px;
  border-bottom: 1px solid #2F93C0;
  background: none;
  zoom: 1; }
  #venues .venue_list .overview:before, #venues .venue_list .overview:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #venues .venue_list .overview:after {
    clear: both; }
  #venues .venue_list .overview h1 {
    display: block;
    width: 250px;
    float: left; }
  #venues .venue_list .overview .links {
    width: auto;
    float: right;
    margin: 5px 0 0;
    padding: 0;
    height: 18px; }
    #venues .venue_list .overview .links a, #venues .venue_list .overview .links a:link, #venues .venue_list .overview .links a:visited {
      position: relative;
      display: block;
      float: left;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      margin: 0 0 0 12px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      #venues .venue_list .overview .links a:hover, #venues .venue_list .overview .links a:focus, #venues .venue_list .overview .links a:link:hover, #venues .venue_list .overview .links a:link:focus, #venues .venue_list .overview .links a:visited:hover, #venues .venue_list .overview .links a:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }
    #venues .venue_list .overview .links a.print, #venues .venue_list .overview .links a.print:link, #venues .venue_list .overview .links a.print:visited {
      width: auto;
      padding: 0 10px 0 20px;
      text-transform: none; }
      #venues .venue_list .overview .links a.print:before, #venues .venue_list .overview .links a.print:link:before, #venues .venue_list .overview .links a.print:visited:before {
        content: "";
        display: block;
        position: absolute;
        left: 5px;
        top: 0px;
        width: 12px;
        height: 17px;
        background: url(../images/icons.png) no-repeat 0 -105px; }
    #venues .venue_list .overview .links .print_before {
      display: block;
      position: absolute;
      left: 5px;
      top: 0px;
      width: 12px;
      height: 17px;
      background: url(../images/icons.png) no-repeat 0 -105px; }
#venues .venue_list .list {
  margin: 0 0 25px;
  padding: 0 0 10px;
  border-bottom: 1px solid #2F93C0; }
  #venues .venue_list .list .entry {
    padding: 8px 0 8px 5px;
    border-top: 1px solid #ccc;
    zoom: 1; }
    #venues .venue_list .list .entry:before, #venues .venue_list .list .entry:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    #venues .venue_list .list .entry:after {
      clear: both; }
    #venues .venue_list .list .entry:first-child {
      border-top: none; }
    #venues .venue_list .list .entry .thumb {
      float: left;
      margin: 0 20px 0 0;
      width: 100px;
      height: 100px;
      background: white;
      border-left: 1px solid #CCC;
      border-right: 1px solid #CCC;
      border-bottom: 1px solid #CCC;
      border-top: solid 4px #2B87B2;
      padding: 8px; }
      #venues .venue_list .list .entry .thumb img {
        width: 100px;
        height: 100px; }
    #venues .venue_list .list .entry .info {
      float: left; }
      #venues .venue_list .list .entry .info a {
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        #venues .venue_list .list .entry .info a:hover {
          color: #164962;
          text-decoration: none; }
      #venues .venue_list .list .entry .info .address {
        display: block;
        width: 200px;
        margin: 8px 0;
        color: #666;
        font: normal 11px/160% Arial, Helvetica, sans-serif; }
        #venues .venue_list .list .entry .info .address .italic {
          font-style: italic;
          font-weight: bold; }

/* ----------------------------------------------------------------------------
= Venue Detail
----------------------------------------------------------------------------- */
#venues .venue_branding {
  position: relative;
  z-index: 2; }
#venues #venue_map {
  z-index: 1;
  top: 0; }
#venues #venue_tabs {
  position: absolute;
  top: 335px;
  right: 6px;
  z-index: 100;
  width: 290px;
  zoom: 1; }
  #venues #venue_tabs:before, #venues #venue_tabs:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #venues #venue_tabs:after {
    clear: both; }
  #venues #venue_tabs .button {
    display: block;
    width: 140px;
    height: 26px;
    float: left;
    margin: 0 0 0 5px;
    background: #C4DDE4;
    color: #164962;
    text-transform: uppercase;
    font: bold 12px/230% "news-gothic-std";
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center; }
    #venues #venue_tabs .button.active {
      background: white;
      cursor: default; }
    #venues #venue_tabs .button:first-child {
      margin: 0; }
#venues .media_content {
  position: absolute;
  border: none;
  width: 620px;
  height: 390px;
  background: url(../images/slideshow_static_bg.png) no-repeat 0 0;
  margin: -10px auto 0;
  padding: 0; }
  #venues .media_content .venue_map {
    position: relative;
    height: 325px;
    width: 600px; }
    #venues .media_content .venue_map .map_holder {
      position: absolute;
      width: 600px;
      height: 325px;
      left: 10px;
      top: 10px;
      border-bottom: 2px solid #5DADD1; }
      #venues .media_content .venue_map .map_holder .map {
        position: relative;
        width: 600px;
        height: 325px; }
#venues .overview {
  margin: 15px 0 15px;
  padding: 0 0 15px;
  background: url(../images/overview_rule.png) repeat-x center bottom; }
  #venues .overview h1 {
    font-size: 24px;
    font-weight: normal; }
  #venues .overview p {
    font-size: 14px;
    padding: 0;
    line-height: 140%;
    color: #666; }
  #venues .overview a, #venues .overview a:link, #venues .overview a:visited {
    text-decoration: underline; }
    #venues .overview a:hover, #venues .overview a:focus, #venues .overview a:link:hover, #venues .overview a:link:focus, #venues .overview a:visited:hover, #venues .overview a:visited:focus {
      text-decoration: none; }
#venues .description {
  position: relative;
  zoom: 1; }
  #venues .description:before, #venues .description:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #venues .description:after {
    clear: both; }
  #venues .description .thumb {
    width: 220px;
    float: left;
    background: white;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-top: solid 4px #2B87B2;
    margin: 0 15px 10px 0; }
    #venues .description .thumb img {
      display: block;
      width: 200px;
      height: 200px;
      margin: 10px;
      border-bottom: 1px solid #efefef; }
    #venues .description .thumb .address {
      display: block;
      width: 200px;
      margin: 10px auto;
      color: #666;
      font: normal 10px/140% Arial, Helvetica, sans-serif; }
      #venues .description .thumb .address .italic {
        font-style: italic;
        font-weight: bold; }
  #venues .description .text {
    float: left;
    width: 380px; }
#venues .listing h2 {
  display: block;
  margin: 0 0 15px;
  padding: 0 0 15px;
  background: url(../images/baseline_rule.jpg) repeat-x center bottom;
  color: #2F93C0;
  font: 500 18px/130% "superclarendon"; }

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

.contest_list {
  position: relative; }

.contest_list .entry:first-child {
  background: url(../images/event_list_bg.png) no-repeat center -13px;
  padding-top: 20px; }

.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 .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, .contest_list .buttons a:link, .contest_list .buttons a:visited, .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; }

.contest_list .buttons span {
  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, .map {
  width: 612px;
  height: 326px;
  color: #222;
  font-size: 11px;
  margin: 0 0 20px;
  border: 2px solid #CCC;
  background: #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }
  #map_canvas .map_form, .map .map_form {
    color: #222;
    font-size: 11px; }
    #map_canvas .map_form label, .map .map_form label {
      width: auto;
      font-style: italic;
      font-weight: normal;
      font-size: 10px;
      padding-top: 5px;
      color: #222;
      margin: 0 0 4px; }
    #map_canvas .map_form input, .map .map_form input {
      border: 1px solid #ccc;
      height: 14px;
      line-height: 14px;
      padding: 3px;
      float: left;
      color: #222; }
    #map_canvas .map_form .submit, .map .map_form .submit {
      height: 22px;
      line-height: 14px;
      padding: 3px;
      color: #222; }

#fb_connect_status {
  display: none; }

.fbtabs {
  position: relative;
  width: 228px;
  margin: 25px 0;
  background: url(../images/white_noise.jpg) repeat 0 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }
  .fbtabs h4 {
    margin: -5px 0 0 -11px;
    width: 210px;
    height: auto;
    background: url(../images/event_detail_header.jpg) no-repeat center top;
    padding: 20px 10px 10px;
    display: block;
    text-transform: uppercase;
    color: #3399C5;
    font: normal 16px/130% "superclarendon";
    text-indent: 24px; }
  .fbtabs a.seeall {
    position: absolute;
    top: 50px;
    right: 8px;
    width: 54px;
    height: 19px;
    z-index: 25;
    cursor: pointer;
    display: block;
    text-align: center;
    color: #999;
    font: normal 9px/220% "superclarendon";
    text-transform: uppercase;
    text-decoration: none;
    padding: 0;
    margin: 0; }
    .fbtabs a.seeall:hover {
      color: #111; }
  .fbtabs .css-tabs {
    display: block;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    zoom: 1; }
    .fbtabs .css-tabs:before, .fbtabs .css-tabs:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .fbtabs .css-tabs:after {
      clear: both; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0; }
    .fbtabs .css-tabs a {
      background: url(../images/fb_tabs.jpg) no-repeat 0 -19px;
      color: #111;
      display: block;
      width: 76px;
      height: 19px;
      margin: 0 2px 0 0;
      padding: 0;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      font: normal 9px/220% "superclarendon"; }
      .fbtabs .css-tabs a.current {
        background-position: 0 0;
        color: #111; }
  .fbtabs .css-panes {
    clear: both;
    padding: 0;
    margin: 0 auto;
    width: 210px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    height: 210px;
    border-top: 1px solid #ccc; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 210px;
      padding: 10px 0; }
    .fbtabs .css-panes .attendee {
      float: left;
      height: 100px;
      width: 70px;
      padding: 0;
      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: 60px;
        width: 60px; }

.fbtabs_holder {
  padding: 5px 10px 10px;
  margin: 0;
  position: relative;
  background: url(../images/fb_badge.jpg) no-repeat 10px 22px; }

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

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

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

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

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

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

#fb_rsvp, #fb_rsvp_status {
  position: relative;
  z-index: 15;
  width: 210px;
  margin: 0 auto;
  text-align: center;
  display: none;
  zoom: 1; }
  #fb_rsvp:before, #fb_rsvp:after, #fb_rsvp_status:before, #fb_rsvp_status:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #fb_rsvp:after, #fb_rsvp_status:after {
    clear: both; }

#fb_rsvp button, #fb_rsvp_status button {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  text-align: center;
  background: url(../images/event_tickets.png) no-repeat -4px -30px;
  padding: 0;
  margin: 0;
  width: 100px;
  height: 30px;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  font: normal 22px/150% "league-gothic";
  text-shadow: 0px -2px 2px #1D5C77;
  border: 0; }

#fb_rsvp_status span {
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  float: left;
  width: 100px;
  height: 30px;
  text-align: center;
  background: url(../images/event_tickets.png) no-repeat -4px -30px;
  padding: 0px;
  margin: 0 3px 0 0;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  font: normal 22px/150% "league-gothic";
  text-shadow: 0px -2px 2px #1D5C77;
  border: 0; }

#fb_rsvp #button_fb_rsvp_going {
  color: #fff;
  margin-right: 3px; }

#fb_rsvp_status span, #fb_rsvp button:hover, #fb_rsvp_status button:hover {
  color: #fff;
  background: url(../images/event_tickets.png) no-repeat -4px 0px; }

/* @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 10px; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      position: relative;
      border-bottom: 1px solid #AAA; }
      .concierge_listing .list .entry .thumb {
        width: 110px;
        height: 85px;
        margin: 0 20px 5px 0;
        padding: 5px;
        float: left;
        border: 1px solid #AAA; }
        .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: #2F93C0;
        text-decoration: none; }
        .concierge_listing .list .info h3 a:hover {
          color: #333; }
      .concierge_listing .list .info address {
        color: black;
        font-size: 12px;
        font-style: italic;
        line-height: 130%;
        padding: 0; }
  .concierge_listing .booking {
    width: auto;
    position: relative; }
    .concierge_listing .booking a, .concierge_listing .booking a:link, .concierge_listing .booking a:visited {
      position: relative;
      display: block;
      float: left;
      color: white;
      text-decoration: none;
      height: 18px;
      background: url(../images/blue_buttons.png) repeat-x 0 -18px;
      margin: 0;
      padding: 0 5px;
      font: bold 9px/200% Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
      .concierge_listing .booking a:hover, .concierge_listing .booking a:focus, .concierge_listing .booking a:link:hover, .concierge_listing .booking a:link:focus, .concierge_listing .booking a:visited:hover, .concierge_listing .booking a:visited:focus {
        color: white;
        text-decoration: none;
        background-position: 0 0; }

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

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

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

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

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

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

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

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

#lightbox-nav a {
  outline: none; }

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

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

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

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

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

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

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

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

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

/* @group Seating Charts */
.photo_gallery {
  margin: 0 16px 20px;
  padding: 0;
  position: relative;
  border: 1px solid #C5C7C4;
  float: left; }

.photo_gallery .thumb {
  display: block;
  margin: 0 0px 0 0;
  padding: 0;
  width: 234px;
  height: 144px; }

.photo_gallery .thumb img {
  margin: 0;
  padding: 0;
  border: none;
  display: block;
  width: 234px;
  height: 144px; }

.photo_gallery strong {
  display: block;
  width: 214px;
  margin: 0;
  padding: 5px 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #111;
  opacity: 0.85;
  overflow: hidden;
  border-bottom: 1px solid #222;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  color: black; }

.photo_gallery a {
  text-decoration: none; }

/* @end */
.apple_overlay {
  display: none;
  width: 600px;
  padding: 15px 15px 10px;
  height: 570px;
  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: auto;
  height: 545px;
  background: #fff; }

.apple_overlay .slideshow .caption_holder {
  display: block; }

.apple_overlay .slideshow .controls {
  display: block;
  width: 100%;
  height: 53px;
  padding: 0;
  color: #fff;
  position: absolute;
  z-index: 600;
  top: 180px;
  left: 0; }

.apple_overlay .slideshow .controls .nav-controls {
  position: relative; }

.apple_overlay .slideshow .controls .nav-controls a.prev {
  display: block;
  width: 63px;
  height: 32px;
  background: url(../images/lightbox-btn-prev.gif) no-repeat 0 0;
  position: absolute;
  top: 0;
  left: 0px;
  text-indent: -4000px;
  cursor: pointer;
  border: none; }

.apple_overlay .slideshow .controls .nav-controls a.next {
  display: block;
  width: 53px;
  height: 53px;
  background: url(../images/lightbox-btn-next.gif) no-repeat 0 0;
  position: absolute;
  top: 0;
  right: 0px;
  text-indent: -4000px;
  cursor: pointer;
  border: none; }

.apple_overlay .slideshow .slide {
  width: 100%;
  height: 465px;
  overflow: hidden; }

.apple_overlay .slideshow .slide span {
  display: block;
  width: 600px;
  height: 465px; }

.apple_overlay .slideshow .caption_holder {
  display: none;
  position: absolute;
  bottom: 7px;
  left: -12px;
  width: 640px;
  padding: 10px 0 0;
  height: 40px;
  z-index: 15; }

.apple_overlay .slideshow .caption_holder span {
  display: block;
  width: auto;
  height: 35px; }

.apple_overlay .slideshow .caption {
  position: relative; }

.apple_overlay .slideshow .caption p {
  color: #333;
  font-size: 14px;
  line-height: 100%;
  padding: 10px 0 0 20px;
  font-weight: bold;
  float: left;
  width: 600px;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif; }

.apple_overlay .slideshow .caption .date {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 100%;
  margin: 0;
  padding: 0;
  float: left;
  font-weight: normal;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #c38c1d; }

.apple_overlay .slideshow .caption .buttons {
  float: right; }

.apple_overlay .slideshow .caption .buttons a {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  color: #811211;
  padding: 6px 10px;
  letter-spacing: 0.5px;
  width: auto;
  float: left;
  background: url(../images/slideshow_btn_rule.png) no-repeat 0 0; }

.apple_overlay .slideshow .caption .buttons a.more {
  margin: 0 2px 0 0; }

.apple_overlay .slideshow .caption .buttons a:hover {
  color: #333; }

.apple_overlay .slideshow .caption a {
  display: none; }

.apple_overlay .slideshow .thumbs_holder {
  display: block;
  width: 600px;
  height: 80px;
  position: absolute;
  top: 473px;
  left: 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 li {
  float: left;
  width: 65px;
  margin-right: 5px;
  height: 43px; }

.apple_overlay .slideshow .thumbs_holder li a.thumb, .apple_overlay .slideshow .thumbs_holder li a.thumb img {
  display: block;
  width: 65px;
  height: 43px;
  border: none;
  background: transparent; }

.apple_overlay .slideshow .thumbs_holder li a.thumb {
  border: 2px solid #fff; }

.apple_overlay .slideshow .thumbs_holder li.selected a.thumb {
  border: 2px solid #B0BAC9; }

.apple_overlay .slideshow .thumbs_holder .caption {
  display: none; }

.apple_overlay .slideshow .thumbs .caption {
  display: none; }

.apple_overlay .slideshow .thumbs .caption p {
  color: #333;
  font-size: 12px;
  height: 30px;
  overflow: hidden; }

.apple_overlay .slideshow .thumbs li:hover .caption {
  display: none;
  opacity: 1; }

.apple_overlay .slideshow .video {
  width: 100%;
  height: 100%;
  background: url(../images/play.png) no-repeat center 160px;
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  z-index: 601; }

.apple_overlay .slideshow .video #video_player, .apple_overlay .slideshow .video #video_holder {
  display: block;
  width: 100%;
  height: 100%;
  margin: 8% auto 0;
  text-align: center; }

.apple_overlay .slideshow .imglink {
  width: 100%;
  height: 100%;
  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 .contentWrap {
  height: 375px;
  overflow: hidden;
  border: 1px solid #FF9100; }

.apple_overlay .map_overlay.apple_overlay {
  display: none;
  width: 620px;
  padding: 35px;
  height: 370px; }

/* Typekit inactive and loading style fallbacks */
/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.ie7 header, .ie7 .header {
  z-index: 1000;
  position: relative; }
.ie7 #content {
  z-index: 500; }
.ie7 .home #branding {
  z-index: 600; }
.ie7 .home .full {
  zoom: expression( this.runtimeStyle.zoom="1", this.appendChild( document.createElement("i") ).className="header-before" ); }
.ie7 .paging .links a.rss {
  zoom: expression( this.runtimeStyle.zoom="1", this.appendChild( document.createElement("i") ).className="rss_before" ); }
.ie7 .paging .links a.print {
  zoom: expression( this.runtimeStyle.zoom="1", this.appendChild( document.createElement("i") ).className="print_before" ); }
.ie7 .paging .links a.full_list {
  zoom: expression( this.runtimeStyle.zoom="1", this.appendChild( document.createElement("i") ).className="full_list_before" ); }
.ie7 .social-module .social-pages {
  position: absolute;
  top: 0px; }
