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

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

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

del {
  text-decoration: line-through; }

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

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

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

input, select {
  vertical-align: middle; }

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

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

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

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

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

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll; }

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

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

a:hover {
  color: #fff; }

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

ol {
  list-style-type: decimal; }

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

small {
  font-size: 85%; }

strong, th {
  font-weight: bold; }

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

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

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

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

textarea {
  overflow: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix:after {
  clear: both; }

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

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */ }
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */ }
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ }
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'typekit name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Compass
=reference default mixin calls at http://compass-style.org/reference/compass/css3/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Compass support variables
=Determine what css3 support levels are generated from mixins
=Reference at http://compass-style.org/reference/compass/support/
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Mobile Variables
----------------------------------------------------------------------------- */
/* Base Layout Colors */
/* Text Colors */
/* added 07/10/12 */
/* #FFC342 added 07/10/12 */
/* Dividers and Element Colors */
/* added 07/10/12 ****/
/* Base Backgrounds */
/* Event Item Size Variables */
h1 {
  margin: 0 0 1px;
  padding: 0;
  color: white;
  font: 500 36px/120% "myriad-pro"; }
  h1 a, h1 a:link, h1 a:visited {
    text-decoration: none; }

h2 {
  margin: 0 0 1px;
  padding: 0;
  color: #0EE4EB;
  font-weight: 700;
  font: 500 30px/130% "myriad-pro"; }
  h2 a, h2 a:link, h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 1px;
  padding: 0;
  color: #0EE4EB;
  text-transform: uppercase;
  font: 500 26px/130% "myriad-pro"; }
  h3 a, h3 a:link, h3 a:visited {
    text-decoration: none; }

h4 {
  margin: 0;
  padding: 0;
  color: #0EE4EB;
  font: 500 22px/150% "myriad-pro";
  text-transform: uppercase; }
  h4 a, h4 a:link, h4 a:visited {
    text-decoration: none; }

h5 {
  margin: 0;
  padding: 0 0 2px 0;
  color: #0EE4EB;
  font: 500 18px/140% "myriad-pro"; }
  h5 a, h5 a:link, h5 a:visited {
    text-decoration: none; }

h6 {
  margin: 0;
  padding: 0 0 4px;
  color: white;
  font: 500 14px/140% "myriad-pro"; }

p, address {
  margin: 0 0 20px;
  padding: 0;
  color: white;
  font: 300 18px/25px "myriad-pro"; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 15px;
  padding: 5px 0 8px 16px;
  color: white;
  font: 300 18px/20px "myriad-pro";
  list-style-type: none;
  list-style-position: outside;
  list-style-image: none; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 8px 5px;
    list-style-type: inherit;
    line-height: 20px;
    text-transform: normal; }
  ul ul, ol ul {
    margin: 0; }

ol {
  list-style: decimal; }

a, a:link, a:visited {
  color: #0EE4EB;
  text-decoration: none;
  border: none;
  outline: none; }
  a:hover, a:focus, a:link:hover, a:link:focus, a:visited:hover, a:visited:focus {
    color: white;
    text-decoration: underline; }

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

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

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: "myriad-pro";
  font-size: 11px;
  color: black;
  background: white;
  width: 100%;
  height: 100%; }

#bodyBg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-width: 1200px;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 0;
  background: #000a30; }
  #bodyBg img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0; }

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

#layout {
  width: 1090px;
  margin: 0 auto;
  padding: 163px 0 0 0;
  position: relative; }
  .home #layout {
    opacity: 0; }
  .ie8 #layout {
    opacity: 1; }

header,
.header {
  margin: -163px auto 0;
  width: 1100px;
  height: 163px;
  position: relative;
  z-index: 501; }
  header .logo,
  .header .logo {
    position: relative;
    width: 295px;
    height: 125px;
    float: left;
    margin-top: 22px; }
    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: 295px;
      height: 125px;
      background: url(../images/logo.png) no-repeat 0 0;
      background-size: contain; }
    header .logo span,
    .header .logo span {
      cursor: default; }

/* ----------------------------------------------------------------------------
= Columns and Holders
----------------------------------------------------------------------------- */
.column {
  margin: 0;
  padding: 0;
  position: relative;
  float: left; }

#column_1 .holder {
  margin: 0 0 0 20px;
  padding: 32px 26px 26px 26px;
  background: #0c52aa;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  min-height: 400px; }
  .ie8 #column_1 .holder {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ee0c52aa, endColorstr=#ee0c52aa)"; }

#column_1 {
  width: 749px;
  margin: 0 21px 0 0;
  z-index: 10; }

#column_2,
#column_3 {
  width: 320px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 20; }

.full_column {
  width: 1038px;
  padding: 32px 26px 26px 26px;
  background: #0c52aa;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  margin-bottom: 23px; }
  .ie8 .full_column {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ee0c52aa, endColorstr=#ee0c52aa)"; }
  .home .full_column {
    width: 1090px;
    padding: 0;
    background: none; }
    .ie8 .home .full_column {
      filter: none; }
  .full_column.searchresults > h1 {
    margin: 0 0 15px;
    padding: 0 0 13px;
    border-bottom: 1px solid #346eb7; }

.categories_holder {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: #00C3D7;
  background: rgba(0, 195, 215, 0.5);
  margin: 0 0 23px 0;
  padding: 20px 0 20px 0; }
  .ie8 .categories_holder {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8800C3D7, endColorstr=#8800C3D7)"; }

.one_sidebar_right {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: #00C3D7;
  background: rgba(0, 195, 215, 0.5);
  margin: 0 0 23px 0;
  padding: 20px 0 20px 0; }
  .ie8 .one_sidebar_right {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8800C3D7, endColorstr=#8800C3D7)"; }

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

#socialBar {
  position: absolute;
  top: 163px;
  left: -117px;
  display: block;
  margin: 0;
  z-index: 900; }
  #socialBar .toolbar_container {
    display: block;
    margin: 0; }
  #socialBar .sociallinks {
    float: right;
    width: 97px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    text-align: center;
    padding: 23px 0 23px 0;
    background: #00C3D7;
    background: rgba(0, 195, 215, 0.5);
    display: block;
    margin: 0 auto; }
    .ie8 #socialBar .sociallinks {
      background: none;
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8800C3D7, endColorstr=#8800C3D7)"; }
    #socialBar .sociallinks.sticky {
      position: fixed;
      top: 10px; }
    #socialBar .sociallinks span {
      display: none;
      width: 100px;
      position: absolute;
      background: #21ab88;
      background: rgba(33, 171, 136, 0.9);
      top: 10px;
      left: 75px;
      padding: 10px;
      text-decoration: none;
      color: #fff;
      text-transform: uppercase;
      line-height: 120%;
      font-size: 14px;
      font-weight: 400;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0; }
      #socialBar .sociallinks span:before {
        position: absolute;
        top: 10px;
        left: -10px;
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-right: 10px solid rgba(33, 171, 136, 0.9);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        z-index: 9000; }
        .ie8 #socialBar .sociallinks span:before {
          border-left: 10px solid #21ab88; }
    #socialBar .sociallinks li {
      position: relative;
      margin: 0 auto;
      padding: 0 0 8px 0;
      list-style-type: none;
      width: 60px;
      height: 60px;
      background: url(../images/socialicons.png) -3px -1px; }
      #socialBar .sociallinks li:hover span {
        display: block; }
    #socialBar .sociallinks a,
    #socialBar .sociallinks a:link,
    #socialBar .sociallinks a:visited {
      display: block;
      height: 60px;
      width: 60px;
      text-indent: -9999px;
      background: url(../images/socialicons.png) -3px -70px;
      line-height: 20px;
      text-transform: uppercase;
      color: #fff;
      font-size: 11px;
      font-weight: bold;
      text-decoration: none;
      font-family: Arial; }
      #socialBar .sociallinks a:hover,
      #socialBar .sociallinks a:link:hover,
      #socialBar .sociallinks a:visited:hover {
        color: #fff;
        background: url(../images/socialicons.png) -83px -70px; }
    #socialBar .sociallinks a.fblink {
      background: url(../images/socialicons.png) -3px -135px; }
      #socialBar .sociallinks a.fblink:hover {
        background: url(../images/socialicons.png) -83px -135px; }
    #socialBar .sociallinks a.twlink {
      background: url(../images/socialicons.png) -3px -201px; }
      #socialBar .sociallinks a.twlink:hover {
        background: url(../images/socialicons.png) -83px -201px; }
    #socialBar .sociallinks a.instagram {
      background: url(../images/socialicons.png) -3px -267px; }
      #socialBar .sociallinks a.instagram:hover {
        background: url(../images/socialicons.png) -83px -267px; }
    #socialBar .sociallinks a.pinterestlink {
      background: url(../images/socialicons.png) -3px -332px; }
      #socialBar .sociallinks a.pinterestlink:hover {
        background: url(../images/socialicons.png) -83px -332px; }
    #socialBar .sociallinks a.myspace {
      background: url(../images/socialicons.png) -3px -398px; }
      #socialBar .sociallinks a.myspace:hover {
        background: url(../images/socialicons.png) -83px -398px; }
    #socialBar .sociallinks a.tumblr {
      background: url(../images/socialicons.png) -3px -529px; }
      #socialBar .sociallinks a.tumblr:hover {
        background: url(../images/socialicons.png) -83px -529px; }
    #socialBar .sociallinks a.toTop {
      background: url(../images/socialicons.png) -3px -462px; }
      #socialBar .sociallinks a.toTop:hover {
        background: url(../images/socialicons.png) -83px -462px; }

#instagramStream {
  clear: both;
  width: 1090px;
  height: 429px;
  background: #62d0f2;
  background: url(../images/instagram_bg.png) repeat-x;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1); }
  #instagramStream h1 {
    margin: 21px 0 0 22px;
    background: url(../images/instagramLogo.png) no-repeat;
    display: inline-block;
    width: 329px;
    height: 89px;
    text-indent: -9999px; }
  #instagramStream > span {
    font-size: 42px;
    font-family: "myriad-pro-condensed";
    color: white;
    float: right;
    margin: 34px 22px 0 0;
    font-weight: 300; }
    #instagramStream > span a {
      color: white;
      text-decoration: none; }
      #instagramStream > span a:hover {
        color: #0A58A5; }
  #instagramStream ul {
    display: block;
    padding: 7px;
    margin: 5px 0 0 21px;
    clear: both;
    width: 1035px;
    height: 283px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: #fff;
    list-style-type: none; }
    #instagramStream ul li {
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background: #333;
      width: 170px;
      height: 140px;
      display: inline-block;
      float: left;
      padding: 0;
      margin: 0 3px 3px 0;
      overflow: hidden;
      position: relative; }
      #instagramStream ul li:hover {
        -moz-box-shadow: 0px 0px 1px 1px #0A58A5;
        -webkit-box-shadow: 0px 0px 1px 1px #0A58A5;
        box-shadow: 0px 0px 1px 1px #0A58A5; }
        #instagramStream ul li:hover img {
          opacity: 0.8; }
      #instagramStream ul li.last {
        margin-right: 0;
        padding-right: 0; }
      #instagramStream ul li a {
        position: relative;
        z-index: 11; }
      #instagramStream ul li img {
        width: 100%;
        position: relative;
        z-index: 2; }

p#pageTagline {
  width: 250px;
  line-height: 120%;
  padding: 13px;
  margin: 46px auto 0;
  background: #00C3D7;
  background: rgba(0, 195, 215, 0.5);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  color: white; }
  .ie8 p#pageTagline {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8800C3D7, endColorstr=#8800C3D7)"; }
  p#pageTagline a {
    color: white;
    text-decoration: none; }

#toolbar {
  display: block;
  position: relative;
  margin: 5px 10px 0 0;
  padding: 0;
  width: 207px;
  height: 31px;
  float: right;
  color: white; }
  #toolbar label {
    display: none;
    color: white; }
  #toolbar input,
  #toolbar input[type='text'] {
    font-family: "myriad-pro";
    margin: 0;
    padding: 3px 5px;
    position: relative;
    background: url(../images/searchBg.png);
    width: 160px;
    height: 25px;
    font-size: 12px;
    text-transform: lowercase;
    border: none; }
    #toolbar input::-webkit-input-placeholder,
    #toolbar input[type='text']::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #eee; }
    #toolbar input:-moz-placeholder,
    #toolbar input[type='text']:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #eee; }
    #toolbar input::-moz-placeholder,
    #toolbar input[type='text']::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #eee; }
    #toolbar input:-ms-input-placeholder,
    #toolbar input[type='text']:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #eee; }
  #toolbar button {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0px;
    width: 37px;
    height: 31px;
    text-indent: -5000px;
    background: url(../images/searchBtn.png) no-repeat;
    border: none; }
    #toolbar button:hover {
      opacity: 0.7; }

/* ----------------------------------------------------------------------------
= Footer
----------------------------------------------------------------------------- */
footer,
.footer {
  margin: 44px 0px 0px;
  padding-top: 15px;
  position: relative;
  background: #004987;
  border-top: 4px solid #003969; }
  footer h5,
  .footer h5 {
    color: white;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600; }
    footer h5:hover,
    .footer h5:hover {
      text-decoration: underline; }
  footer a,
  footer a:link,
  footer a:visited,
  .footer a,
  .footer a:link,
  .footer a:visited {
    margin: 0;
    padding: 2px 0;
    color: white;
    text-decoration: none;
    font-size: 11px; }
    footer a:hover,
    footer a:link:hover,
    footer a:visited:hover,
    .footer a:hover,
    .footer a:link:hover,
    .footer a:visited:hover {
      text-decoration: underline; }
  footer .openFooter,
  .footer .openFooter {
    display: block !important; }
  footer .global_footer_container,
  .footer .global_footer_container {
    width: 100%;
    height: 50px;
    background: #011e60; }
    footer .global_footer_container .global_footer,
    .footer .global_footer_container .global_footer {
      width: 1090px;
      clear: both;
      padding: 15px 0 0 0;
      margin: 0px auto;
      font-size: 11px;
      position: relative; }
      footer .global_footer_container .global_footer p,
      .footer .global_footer_container .global_footer p {
        color: #ececec;
        font-size: 12px;
        text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 0;
        text-transform: uppercase;
        margin: 0;
        padding: 0; }
        footer .global_footer_container .global_footer p a,
        .footer .global_footer_container .global_footer p a {
          margin-left: 8px; }
      footer .global_footer_container .global_footer span.delimiter,
      .footer .global_footer_container .global_footer span.delimiter {
        display: inline;
        padding: 0 8px; }
  footer .footer_holder,
  .footer .footer_holder {
    width: 1090px;
    margin: 0 auto; }
  footer .logo,
  .footer .logo {
    width: 64px;
    height: 64px;
    padding: 1px;
    position: relative;
    clear: both;
    margin: 0 10px 20px 0; }
    footer .logo span,
    footer .logo a,
    footer .logo a:link,
    footer .logo a:visited,
    .footer .logo span,
    .footer .logo a,
    .footer .logo a:link,
    .footer .logo a:visited {
      display: block;
      width: 64px;
      height: 64px;
      background: url(../images/footer_logo.jpg) no-repeat 0 0;
      text-indent: -5000px;
      cursor: pointer; }
    footer .logo span,
    .footer .logo span {
      cursor: default; }
  footer .venueinfo,
  .footer .venueinfo {
    position: relative;
    width: 169px;
    float: right;
    margin: 0px 0 0 30px;
    background: none;
    border-right: 1px solid #011e60;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 1px; }
    footer .venueinfo ul,
    .footer .venueinfo ul {
      color: white;
      line-height: 21px;
      width: auto;
      margin: 0;
      padding: 0; }
      footer .venueinfo ul li,
      .footer .venueinfo ul li {
        margin: 0;
        font-size: 12px;
        padding: 0;
        line-height: 120%; }
    footer .venueinfo h4,
    .footer .venueinfo h4 {
      text-transform: uppercase;
      margin: 0 0 8px;
      padding: 0; }
    footer .venueinfo .toggleEl,
    .footer .venueinfo .toggleEl {
      display: none; }
    footer .venueinfo address,
    .footer .venueinfo address {
      display: none;
      font-size: 12px;
      color: white;
      text-transform: uppercase;
      line-height: 25px;
      padding: 4px 0 4px;
      margin: 0;
      font-weight: 300; }
  footer .footerSelected,
  .footer .footerSelected {
    text-decoration: underline; }
  footer .delimiter,
  .footer .delimiter {
    color: white;
    padding: 0 7px; }
  footer .nav,
  .footer .nav {
    float: right;
    width: 120px;
    padding: 0 0 0 30px;
    border-right: 1px solid #011e60;
    border-left: 1px solid #011e60;
    text-shadow: rgba(0, 0, 0, 0.6) 1px 1px 0; }
    footer .nav ul,
    .footer .nav ul {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0;
      line-height: 100%;
      float: left;
      margin-right: 15px; }
      footer .nav ul.last,
      .footer .nav ul.last {
        margin-right: 0; }
      footer .nav ul li,
      .footer .nav ul li {
        display: block;
        float: none;
        padding: 6px 0;
        line-height: 100%; }
        footer .nav ul li:first-child,
        .footer .nav ul li:first-child {
          border-left: none;
          display: none; }
        footer .nav ul li a,
        .footer .nav ul li a {
          text-transform: uppercase;
          color: white;
          font-size: 12px;
          padding: 0;
          margin: 0; }
          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: white;
            text-decoration: underline; }
          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: white;
            cursor: default; }
          footer .nav ul li a span, footer .nav ul li a.page_1,
          .footer .nav ul li a span,
          .footer .nav ul li a.page_1 {
            font-size: 16px;
            clear: both;
            display: block;
            margin: 0; }
  footer a#asm_global,
  footer a#asm_global:link,
  footer a#asm_global:visited,
  .footer a#asm_global,
  .footer a#asm_global:link,
  .footer a#asm_global:visited {
    display: block;
    position: absolute;
    background: url(../images/logo-asm_global.png) no-repeat 0 0;
    text-indent: 0;
    padding-left: 70px;
    top: 13px;
    left: 642px;
    padding-right: 9px; }
  footer a#carbonhouse,
  footer a#carbonhouse:link,
  footer a#carbonhouse:visited,
  .footer a#carbonhouse,
  .footer a#carbonhouse:link,
  .footer a#carbonhouse:visited {
    display: block;
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: bold;
    font-family: 'helvetica';
    color: #b2b2b2;
    cursor: pointer;
    text-decoration: none;
    text-transform: none;
    position: absolute;
    top: 13px;
    right: 20px; }
    footer a#carbonhouse span,
    footer a#carbonhouse:link span,
    footer a#carbonhouse:visited span,
    .footer a#carbonhouse span,
    .footer a#carbonhouse:link span,
    .footer a#carbonhouse:visited span {
      font-size: 12px; }
      footer a#carbonhouse span.carbon,
      footer a#carbonhouse:link span.carbon,
      footer a#carbonhouse:visited span.carbon,
      .footer a#carbonhouse span.carbon,
      .footer a#carbonhouse:link span.carbon,
      .footer a#carbonhouse:visited span.carbon {
        color: #9f9f9f; }
      footer a#carbonhouse span.house,
      footer a#carbonhouse:link span.house,
      footer a#carbonhouse:visited span.house,
      .footer a#carbonhouse span.house,
      .footer a#carbonhouse:link span.house,
      .footer a#carbonhouse:visited span.house {
        color: #d2d2d2; }
    footer a#carbonhouse:hover,
    footer a#carbonhouse:link:hover,
    footer a#carbonhouse:visited:hover,
    .footer a#carbonhouse:hover,
    .footer a#carbonhouse:link:hover,
    .footer a#carbonhouse:visited:hover {
      text-decoration: none;
      color: #fff; }
      footer a#carbonhouse:hover span,
      footer a#carbonhouse:link:hover span,
      footer a#carbonhouse:visited:hover span,
      .footer a#carbonhouse:hover span,
      .footer a#carbonhouse:link:hover span,
      .footer a#carbonhouse:visited:hover span {
        color: #fff; }
  footer h5.partners_heading,
  .footer h5.partners_heading {
    float: left;
    color: white;
    margin-left: 10px;
    cursor: default; }
    footer h5.partners_heading:hover,
    .footer h5.partners_heading:hover {
      text-decoration: none; }

.partner_list {
  display: block;
  clear: both;
  position: relative;
  list-style: none;
  zoom: 1;
  width: 1090px;
  height: 90px;
  line-height: 90px;
  margin: 0px auto 20px auto;
  padding: 20px 0 0 0; }
  .partner_list:before, .partner_list:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  .partner_list:after {
    clear: both; }
  .partner_list li {
    display: block;
    float: left;
    width: auto;
    height: 90px;
    line-height: 90px;
    margin-right: 30px; }
    .partner_list li img {
      vertical-align: middle;
      max-width: 100px; }
    .partner_list li a,
    .partner_list li a:visited {
      display: block; }
      .partner_list li a:hover,
      .partner_list li a:visited:hover {
        opacity: 0.8; }

/* ----------------------------------------------------------------------------
= 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_logo {
  margin: 10px auto 0 auto; }

.suite-holder-area .login_header,
.lounge-member-area .login_header {
  margin-top: 0px; }

.login_column {
  width: 500px;
  min-height: 400px;
  margin: 0 auto;
  padding: 5px;
  text-align: center; }
  .login_column input[type='password'] {
    clear: both;
    display: block;
    width: 175px;
    height: 20px;
    margin: 0 auto;
    border: 1px solid #cecece; }
  .login_column p {
    width: 80%;
    margin: 0 auto;
    padding: 10px 15px;
    background: #f3f3f3;
    border: 1px solid #e3e3e3;
    margin-bottom: 20px; }
    .login_column p span {
      text-align: center;
      display: block;
      margin-top: 10px; }
  .login_column input[type='submit'] {
    display: block;
    width: 202px;
    height: 46px;
    line-height: 48px;
    padding: 0;
    margin: 20px auto;
    border: none;
    position: relative;
    text-decoration: none;
    background: url(../images/icon_sprite.png) 0 -366px no-repeat;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
    color: #333333;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase; }
    .login_column input[type='submit']:hover {
      color: white;
      text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }

.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;
  float: left;
  margin: 58px 0 0;
  padding: 0;
  width: 795px;
  height: 27px;
  z-index: 500; }
  nav ul {
    display: block;
    text-align: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: 795px; }
    nav ul li {
      display: block;
      padding: 0;
      margin: 0;
      height: 80px;
      float: left;
      position: relative;
      line-height: 120%; }
      nav ul li:first-child, nav ul li.page_1 {
        display: none; }
      nav ul li.page_8 a {
        margin-right: 0; }
      nav ul li.page_8 {
        border-right: 0px; }
        nav ul li.page_8 a {
          border-right: 0px; }
  nav a, nav a:link, nav a:visited {
    display: block;
    text-decoration: none;
    color: #0A58A5;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    padding: 3px 13px 3px;
    border-right: 1px solid #75DFEA;
    text-transform: uppercase; }
    nav a span, nav a:link span, nav a:visited span {
      font-size: 24px;
      color: #0A58A5;
      font-weight: 400;
      letter-spacing: 1.5px;
      display: block;
      margin: 0 0 10px;
      clear: both;
      text-transform: uppercase; }
    nav a:hover, nav a.active, nav a:link:hover, nav a:link.active, nav a:visited:hover, nav a:visited.active {
      color: #21AB88;
      text-decoration: none; }
      nav a:hover span, nav a.active span, nav a:link:hover span, nav a:link.active span, nav a:visited:hover span, nav a:visited.active span {
        color: #21AB88;
        text-decoration: none; }
  nav .hover a {
    color: #0A58A5; }
    nav .hover a span {
      color: #0A58A5; }

nav ul .sub {
  left: 0;
  top: 50px;
  position: absolute;
  display: none;
  width: 600px;
  line-height: 26px;
  z-index: 9000;
  margin: 0; }
  .ie8 nav ul .sub {
    padding-top: 0px; }
  nav ul .sub:after {
    position: absolute;
    top: -20px;
    left: 50px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid rgba(33, 171, 136, 0.9);
    z-index: 9000; }
    .ie8 nav ul .sub:after {
      border-bottom: 20px solid #21AB88; }
  nav ul .sub.sub_banner {
    left: -250px; }
    nav ul .sub.sub_banner:after {
      left: 280px; }
  nav ul .sub .sub_holder {
    padding: 18px;
    background: #21AB88;
    background: rgba(33, 171, 136, 0.9);
    position: relative;
    width: 200px;
    z-index: 9000; }
    nav ul .sub .sub_holder.hasbanner {
      width: auto; }

.hasbanner .nav_banner {
  float: left;
  display: inline; }
  .hasbanner .nav_banner a {
    border-right: none; }
  .hasbanner .nav_banner img {
    width: 300px;
    height: 180px;
    border: 2px solid #1B6855; }
  .hasbanner .nav_banner:hover img {
    border: 2px solid #a3a3a3; }

nav ul ul {
  float: left;
  background: none;
  width: 155px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 0;
  display: inline; }
  nav ul ul li {
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    padding: 1px 0;
    cursor: pointer;
    float: none;
    text-align: left;
    height: auto;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #217C65;
    width: 200px; }
    nav ul ul li:first-child {
      display: block;
      border-top: none; }
    nav ul ul li:last-child {
      border-bottom: none; }
    nav ul ul li a, nav ul ul li a:link, nav ul ul li a:visited {
      display: block;
      margin: 0px;
      padding: 4px 0;
      text-decoration: none;
      height: auto;
      cursor: pointer;
      text-indent: 0;
      color: #fff;
      text-transform: uppercase;
      background: none;
      text-align: left;
      line-height: 120%;
      font-size: 14px;
      font-weight: 400;
      border-right: none;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0; }
      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: #011F61;
        text-shadow: rgba(255, 255, 255, 0.1) 1px 1px 0; }

nav li.page_8 .sub.sub_banner {
  left: -350px; }
  nav li.page_8 .sub.sub_banner:after {
    left: 370px; }

/**Override for white text on wysiwig necessary so use can see lighter text**/
.cke_show_borders {
  background: #444; }

.cke_ltr.cke_panel_frame .cke_panel_block {
  background: #444444; }

.overview {
  position: relative; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content ul li {
    position: relative;
    line-height: 25px; }
  .content ul li:after {
    position: absolute;
    content: '';
    display: block;
    top: 4px;
    left: -23px;
    width: 13px;
    height: 16px;
    background: url(../images/icon_sprite.png) no-repeat -12px -146px; }
  .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: auto;
      height: auto;
      padding: 5px 12px 5px 0;
      margin: 0; }
    .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: 5px 0 5px 12px;
      margin: 0px; }
    .content .image-right p {
      line-height: 140%; }
  .content .image-three {
    text-align: left;
    float: left;
    padding: 0;
    margin: 10px 0 10px 2%;
    max-width: 32%; }
    .content .image-three:first-child {
      margin-left: 0; }
    .content .image-three img, .content .image-three img.image, .content .image-three img.gh-image {
      padding: 2px;
      margin: 0;
      max-width: 100%;
      height: auto !important; }
    .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 {
      width: 100%;
      padding: 0px 0 10px 0;
      text-align: center; }
  .content .image-four {
    text-align: center;
    float: left;
    max-width: 23%;
    margin: 10px 0 10px 2.5%; }
    .content .image-four:first-child {
      margin-left: 0; }
    .content .image-four a, .content .image-four a:link, .content .image-four a:visited {
      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;
      max-width: 100%;
      height: auto !important; }
    .content .image-four p {
      width: 100%;
      padding: 0px 0 10px 0;
      text-align: center; }
  .content .overview {
    margin: 0 0 15px;
    padding: 0 0 13px;
    border-bottom: 1px solid #346Eb7; }
    .content .overview h1 {
      font-size: 36px;
      text-transform: uppercase;
      line-height: 120%; }
    .content .overview p {
      font-size: 24px;
      margin: 15px 0 0;
      line-height: 34px;
      color: white;
      font-weight: 300; }
    .content .overview a, .content .overview a:link, .content .overview a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus, .content .overview a:link:hover, .content .overview a:link:focus, .content .overview a:visited:hover, .content .overview a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #346Eb7; }
    .content .baseline p {
      font-size: 18px;
      margin: 10px 0 0 0;
      color: white; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: black; }
      .content table tr td {
        padding: 5px;
        border: none; }

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

.paging {
  margin: 0;
  color: white;
  top: 0;
  right: 0;
  position: absolute;
  padding: 0px;
  height: 38px;
  font-size: 18px;
  line-height: 38px; }
  .paging.final {
    position: relative; }
  .paging .nav {
    zoom: 1;
    float: right; }
    .paging .nav:before, .paging .nav:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .paging .nav:after {
      clear: both; }
  .paging .record {
    display: inline-block;
    height: 35px;
    margin-right: 5px;
    background: #00C3D7;
    float: left;
    color: white;
    line-height: 35px;
    padding: 0 9px;
    font-weight: 300;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px; }
    #news .paging .record {
      display: none; }
  .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 {
      color: white;
      display: inline-block;
      height: 35px;
      width: 35px;
      margin-right: 5px;
      background: #00C3D7;
      float: left;
      line-height: 35px;
      text-align: center;
      text-decoration: none;
      -moz-border-radius: 1px;
      -webkit-border-radius: 1px;
      border-radius: 1px; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        color: white;
        background: #0b8cc2;
        text-decoration: none; }
      .paging .pages strong.last, .paging .pages a.last, .paging .pages a:link.last, .paging .pages a:visited.last {
        width: 50px; }
    .paging .pages strong {
      color: white;
      background-color: #0b8cc2;
      text-decoration: none; }
  .paging .links {
    float: right;
    padding: 0; }
    .paging .links a, .paging .links a:link, .paging .links a:visited {
      display: inline-block;
      height: 35px;
      width: 35px;
      margin-right: 5px;
      background: #00C3D7;
      color: white;
      text-decoration: none;
      text-indent: -9999px;
      -moz-border-radius: 1px;
      -webkit-border-radius: 1px;
      border-radius: 1px; }
      .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 {
        background: #0b8cc2; }
      .paging .links a.full_list, .paging .links a:link.full_list, .paging .links a:visited.full_list {
        text-indent: 0;
        width: auto;
        padding: 0 8px;
        display: block;
        float: left; }
        #news .paging .links a.full_list, #news .paging .links a:link.full_list, #news .paging .links a:visited.full_list {
          display: none; }
    .paging .links a.rss, .paging .links a:link.rss, .paging .links a:visited.rss {
      display: block;
      padding: 0;
      float: left;
      background: #00C3D7 url(../images/icon_sprite.png) 2px -426px no-repeat;
      padding: 0;
      text-transform: none;
      line-height: 35px; }
      .paging .links a.rss:hover, .paging .links a.rss:focus, .paging .links a:link.rss:hover, .paging .links a:link.rss:focus, .paging .links a:visited.rss:hover, .paging .links a:visited.rss:focus {
        background-color: #0b8cc2; }
    .paging .links a.print, .paging .links a.print:link, .paging .links a.print:visited {
      display: block;
      padding: 0;
      float: left;
      background: #00C3D7 url(../images/icon_sprite.png) -55px -426px no-repeat;
      line-height: 19px;
      padding: 0;
      text-transform: none; }
      .paging .links a.print:hover, .paging .links a.print:focus, .paging .links a.print:link:hover, .paging .links a.print:link:focus, .paging .links a.print:visited:hover, .paging .links a.print:visited:focus {
        background-color: #0b8cc2; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 20px 0px;
  position: relative; }
  .link ul.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font-size: 18px; }
    .link ul.list li {
      padding: 16px 0;
      margin: 0;
      border-top: 1px solid #346Eb7; }
      .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: #0EE4EB; }
      .link ul.list li:last-child {
        border-bottom: 1px solid #346Eb7; }
    .link ul.list p {
      padding: 0 0 0 36px;
      margin: 0;
      font-style: italic;
      font-weight: 300; }
    .link ul.list .description {
      font-size: 18px; }
    .link ul.list a, .link ul.list a:link, .link ul.list a:visited {
      display: block;
      padding: 0 0 0 36px;
      margin: 0 0 0 0px;
      text-decoration: none;
      color: white;
      font-size: 18px;
      font-weight: 500;
      line-height: 26px;
      background: url(../images/icon_sprite.png) no-repeat -8px -170px; }
      .link ul.list a:hover, .link ul.list a:focus, .link ul.list a:link:hover, .link ul.list a:link:focus, .link ul.list a:visited:hover, .link ul.list a:visited:focus {
        color: #0EE4EB; }
      .link ul.list a.external, .link ul.list a:link.external, .link ul.list a:visited.external {
        background: url(../images/icon_sprite.png) no-repeat -8px -170px; }
      .link ul.list a.image, .link ul.list a:link.image, .link ul.list a:visited.image {
        background: url(../images/icon_sprite.png) no-repeat -8px -232px; }
      .link ul.list a.pdf, .link ul.list a:link.pdf, .link ul.list a:visited.pdf {
        background: url(../images/icon_sprite.png) no-repeat -8px -202px; }
    .link ul.list a.email, .link ul.list a.email:link, .link ul.list a.email:visited {
      background: url(../images/icon_sprite.png) no-repeat -8px -260px; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  padding: 0;
  margin: 0;
  clear: both; }
  .sitemap .column {
    float: left;
    width: 250px;
    padding: 0;
    position: relative; }
  .sitemap #sitemap_column_1 {
    margin: 0 20px 0 0; }
  .sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .sitemap ul li {
      margin: 0 0 10px 0;
      padding: 0;
      font-size: 20px;
      font-weight: normal;
      line-height: 25px; }
      .sitemap ul li ul li {
        margin: 0;
        font-size: 14px; }
        .sitemap ul li ul li a, .sitemap ul li ul li a:link, .sitemap ul li ul li a:visited {
          color: white;
          padding: 2px 0; }
          .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: #0EE4EB;
            text-decoration: none; }
        .sitemap ul li ul li ul {
          display: none; }
  .sitemap a, .sitemap a:link, .sitemap a:visited {
    text-decoration: none;
    color: #0EE4EB;
    border-bottom: 1px solid #346Eb7;
    display: block;
    font-weight: 26px; }
    .sitemap a:hover, .sitemap a:focus, .sitemap a:link:hover, .sitemap a:link:focus, .sitemap a:visited:hover, .sitemap a:visited:focus {
      color: #21AB88; }

/* @group Seating Charts */
.seating_charts {
  clear: both;
  margin: 0;
  padding: 0; }
  .seating_charts .entry {
    margin: 0 15px 20px 15px;
    padding: 0;
    position: relative;
    background: white;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    float: left;
    -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    display: block;
    float: left;
    width: 180px;
    padding: 5px;
    overflow: hidden; }
    .seating_charts .entry.alt {
      margin-right: 0; }
    .seating_charts .entry .thumb {
      display: block;
      margin: 0 0px 0 0;
      width: 180px;
      height: 150px;
      overflow: hidden; }
      .seating_charts .entry .thumb img {
        width: 180px;
        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: 251px;
        height: 176px; }
        .seating_charts .entry .thumb a img, .seating_charts .entry .thumb a:link img, .seating_charts .entry .thumb a:visited img {
          width: 180px; }
  .seating_charts .info {
    display: block;
    margin: 0;
    padding: 0px 10px 3px;
    position: relative;
    overflow: hidden; }
  .seating_charts h3 {
    color: #0A58A5;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center; }
    .seating_charts h3 a, .seating_charts h3 a:link, .seating_charts h3 a:visited {
      margin: 0;
      padding: 0;
      text-decoration: none;
      font-size: 12px;
      font-weight: bold;
      color: #0A58A5; }
  .seating_charts .info-buttons {
    padding: 0;
    text-align: center;
    float: left;
    width: 120px;
    margin-left: 33px; }
    .seating_charts .info-buttons a, .seating_charts .info-buttons a:link, .seating_charts .info-buttons a:visited {
      display: block;
      font-size: 13px;
      float: left;
      padding: 0px 6px 0 0;
      line-height: 25px;
      opacity: 1;
      color: #0A58A5;
      margin-top: 5px;
      text-align: center;
      color: #0A58A5;
      font-weight: 600; }
      .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; }

.buttons {
  position: absolute;
  top: 23px;
  right: 0px;
  width: 202px;
  height: 46px; }
  .buttons a, .buttons a:link, .buttons a:visited {
    display: block;
    width: 202px;
    height: 46px;
    line-height: 48px;
    padding: 0;
    margin: 0;
    position: relative;
    text-decoration: none;
    float: left;
    background: url(../images/icon_sprite.png) 0 -366px no-repeat;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
    color: #333333;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase; }
    .buttons a:hover, .buttons a:link:hover, .buttons a:visited:hover {
      color: white;
      text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
    .buttons a.more, .buttons a:link.more, .buttons a:visited.more {
      margin-bottom: 21px; }
  .buttons span {
    display: block;
    width: 202px;
    height: 46px;
    line-height: 48px;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    cursor: default;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase; }
    .buttons span.tickets {
      display: none; }

.column .subnav {
  width: 300px;
  padding: 0;
  margin: 0 0 20px 0;
  background: #0c52aa;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px; }
  .ie8 .column .subnav {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ee0c52aa, endColorstr=#ee0c52aa)"; }
  .column .subnav ul {
    width: 260px;
    list-style: none;
    list-style-image: none;
    padding: 11px 20px 10px 20px;
    margin: 0; }
    .column .subnav ul li {
      margin: 16px 0 0 0;
      padding: 0 0 0  20px;
      background: url(../images/bulletList.png) 0 6px no-repeat; }
      .column .subnav ul li:first-child {
        display: none; }
        .column .subnav ul li:first-child a, .column .subnav ul li:first-child a:link, .column .subnav ul li:first-child a:visited {
          line-height: 18px; }
      .column .subnav ul li:last-child a {
        border-bottom: none; }
      .column .subnav ul li.active.hasSub a {
        border-bottom: none; }
      .column .subnav ul li.active .sub {
        border-bottom: 1px solid #4575BC; }
      .column .subnav ul li.active ul {
        display: block;
        list-style: none;
        list-style-image: none;
        list-style-type: none;
        padding: 2px 0 2px 0px;
        margin: 0;
        background: none;
        width: auto; }
        .column .subnav ul li.active ul li {
          margin-top: 0;
          padding-top: 0; }
          .column .subnav ul li.active ul li a {
            padding-top: 0;
            border-bottom: none;
            text-transform: none; }
        .column .subnav ul li.active ul li:first-child {
          display: block; }
      .column .subnav ul li.active a:active {
        color: white; }
      .column .subnav ul li a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        padding: 0 0 15px;
        line-height: 120%;
        display: block;
        font-weight: 500;
        text-transform: uppercase;
        border-bottom: 1px solid #4575BC; }
        .column .subnav ul li a:hover, .column .subnav ul li a.active, .column .subnav ul li a:active {
          color: #0EE4EB; }
        .column .subnav ul li a.section {
          color: white;
          font-size: 18px;
          padding-bottom: 10px; }
          .column .subnav ul li a.section:hover, .column .subnav ul li a.section.active:hover, .column .subnav ul li a.section:active {
            color: white; }
      .column .subnav ul li.active.onparent a.active {
        color: blue; }
    .column .subnav ul ul {
      display: none; }
      .column .subnav ul ul li {
        border-bottom: none; }
        .column .subnav ul ul li:first-child a {
          line-height: 24px; }

/* ----------------------------------------------------------------------------
=branding
----------------------------------------------------------------------------- */
.event_branding {
  position: relative;
  width: 746px;
  height: 490px;
  margin-bottom: 15px; }

#branding {
  position: relative;
  width: 725px;
  height: 420px;
  position: relative;
  padding: 0;
  display: none;
  margin: 0 0 20px 20px;
  border: 2px solid #01319B; }
  .home #branding {
    display: block;
    width: 1050px;
    height: 613px;
    padding: 20px;
    margin: 0 0 30px 0;
    background: #00C3D7;
    background: rgba(0, 195, 215, 0.5);
    border-radius: 5px;
    -moz-border-radius: 5px;
    border: none;
    z-index: 2; }
    .ie8 .home #branding {
      background: none;
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8800C3D7, endColorstr=#8800C3D7)"; }
  #branding .spotifyContainer {
    width: 640px;
    height: 360px;
    background: #000; }
  #branding.active {
    display: block; }

.branding_holder {
  width: 750px;
  height: 420px; }
  .branding_holder.spotlight_image img {
    width: 720px;
    height: 420px; }

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow {
  position: relative;
  border: none;
  width: 725px;
  height: 420px; }
  .slideshow:hover .controls, .slideshow:focus .controls {
    display: block; }
  .slideshow .controls {
    display: none;
    position: absolute;
    width: 725px;
    margin: 0 auto;
    height: 85px;
    top: 0;
    left: 0; }
    .slideshow .controls .nav-controls {
      position: relative; }
      .slideshow .controls .nav-controls a, .slideshow .controls .nav-controls a:link, .slideshow .controls .nav-controls a:visited {
        display: block;
        height: 70px;
        width: 54px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px;
        background: url(../images/carouselNav.png) no-repeat 0 0; }
        .slideshow .controls .nav-controls a:hover, .slideshow .controls .nav-controls a:focus, .slideshow .controls .nav-controls a:link:hover, .slideshow .controls .nav-controls a:link:focus, .slideshow .controls .nav-controls a:visited:hover, .slideshow .controls .nav-controls a:visited:focus {
          text-decoration: none; }
        .slideshow .controls .nav-controls a.prev, .slideshow .controls .nav-controls a:link.prev, .slideshow .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 160px; }
          .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: 0px -67px; }
        .slideshow .controls .nav-controls a.next, .slideshow .controls .nav-controls a:link.next, .slideshow .controls .nav-controls a:visited.next {
          right: -10px;
          top: 160px;
          background-position: -947px 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: -947px -67px; }
  .slideshow .slide {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: black; }
    .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow .slide span {
      display: block;
      width: 725px;
      height: 420px; }
  .slideshow .caption_holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 725px;
    height: 35px;
    background: none; }
    .slideshow .caption_holder span {
      display: block;
      width: auto;
      height: 35px; }
    .slideshow .caption_holder .image-caption .caption a {
      display: none; }
    .slideshow .caption_holder .caption p {
      display: block;
      margin: 0;
      color: black;
      padding: 7px 50px 0 36px;
      text-shadow: none;
      font-weight: bold; }
    .slideshow .caption_holder .caption a {
      color: black;
      text-decoration: none;
      font-size: 14px;
      line-height: 120%;
      font-weight: bold; }
      .slideshow .caption_holder .caption a:hover, .slideshow .caption_holder .caption a:visited {
        text-decoration: none; }
    .slideshow .caption_holder .caption .date {
      display: none; }
    .slideshow .caption_holder .caption .buttons {
      display: none; }
  .slideshow .thumbs_holder {
    display: none;
    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, .slideshow .audio {
    width: 725px;
    height: 420px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .video #video_player, .slideshow .video #video_holder, .slideshow .audio #video_player, .slideshow .audio #video_holder {
      display: block;
      width: 725px;
      height: 420px; }
  .slideshow .audio #audio_holder {
    height: 21px;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 2px; }
  .slideshow .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .imglink #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow.home {
  position: relative;
  border: none;
  width: 640px;
  height: 360px;
  margin: 2px; }
  .slideshow.home:hover .controls, .slideshow.home:focus .controls {
    display: block; }
  .slideshow.home .controls {
    display: none;
    position: absolute;
    width: 640px;
    margin: 0 auto;
    height: 85px;
    top: 0;
    left: 0; }
    .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: 70px;
        width: 54px;
        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: 130px;
          background: url(../images/content_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 -70px; }
        .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: 130px;
          background: url(../images/content_slideshow_controls.png) no-repeat -54px 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: -54px -70px; }
  .slideshow.home .slide {
    width: 100%;
    height: 360px;
    overflow: hidden; }
    .slideshow.home .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow.home .slide span {
      display: block;
      width: 640px;
      height: 360px; }
  .slideshow.home .caption_holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 640px;
    height: 35px;
    background: gray; }
    .slideshow.home .caption_holder span {
      display: block;
      width: auto;
      height: 35px; }
    .slideshow.home .caption_holder .image-caption .caption a {
      display: none; }
    .slideshow.home .caption_holder .caption p {
      display: block;
      margin: 0;
      color: black;
      padding: 7px 50px 0 36px;
      text-shadow: none;
      font-weight: bold; }
    .slideshow.home .caption_holder .caption a {
      color: black;
      text-decoration: none;
      font-size: 14px;
      line-height: 120%;
      font-weight: bold; }
      .slideshow.home .caption_holder .caption a:hover, .slideshow.home .caption_holder .caption a:visited {
        text-decoration: none; }
    .slideshow.home .caption_holder .caption .date {
      display: none; }
    .slideshow.home .caption_holder .caption .buttons {
      display: none; }
  .slideshow.home .thumbs_holder {
    display: block;
    position: absolute;
    top: 340px;
    left: 0px; }
    .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: 640px;
    height: 360px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow.home .video #video_player, .slideshow.home .video #video_holder {
      display: block;
      width: 640px;
      height: 360px; }
  .slideshow.home .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow.home .imglink #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* @subgroup Site Specific tabs for event detail pages with video/branding/etc. */
/* event branding tab content for links and affiliate music */
.media_content {
  position: absolute;
  width: 725px;
  height: 420px;
  top: 2px;
  left: 22px;
  margin: 0 auto;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  z-index: 950; }

/* @group event detail tabs */
#event_tabs {
  display: block;
  position: absolute;
  left: 20px;
  bottom: 0px;
  float: none;
  width: 725px;
  height: 64px;
  margin-top: 0;
  padding: 0;
  background: none;
  z-index: 900; }

#event_tabs .button {
  position: relative;
  margin: 10px 40px 0 13px;
  padding: 0 0 0 52px;
  line-height: 45px;
  cursor: pointer;
  float: left;
  background: url(../images/icon_sprite.png) 0 -615px no-repeat;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.3) 2px 2px 0;
  text-transform: uppercase;
  font-size: 22px; }
  #event_tabs .button:last-child {
    margin-right: 0; }
  #event_tabs .button#branding_tab_links {
    margin-right: 0; }
  #event_tabs .button[rel="videos"] {
    background: url(../images/icon_sprite.png) 0 -664px no-repeat; }
  #event_tabs .button[rel="music"] {
    background: url(../images/icon_sprite.png) 0 -713px no-repeat; }
  #event_tabs .button[rel="links"] {
    background: url(../images/icon_sprite.png) 0 -763px no-repeat; }

#event_tabs .active {
  opacity: 1 !important;
  cursor: default; }

#event_tabs .active, #event_tabs .button:hover {
  color: #0A58A5;
  text-shadow: rgba(255, 255, 255, 0.7) 2px 2px 1px; }
  #event_tabs .active.inactive, #event_tabs .button:hover.inactive {
    cursor: default;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: rgba(0, 0, 0, 0.3) 2px 2px 0; }

#event_tabs .inactive {
  cursor: default;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.5; }

#event_links {
  width: 705px;
  padding: 10px;
  height: 400px;
  position: absolute; }

#event_links .event_links_wrapper {
  position: absolute; }

#event_links h2 {
  padding: 15px 0 5px 3px;
  width: 516px;
  display: block;
  margin: 0 0 0 15px; }

#event_links ul {
  display: block;
  margin: 10px 0 0 10px; }

#event_links ul li {
  position: relative;
  padding: 0 0 5px 0px; }
  #event_links ul li:after {
    position: absolute;
    content: '';
    display: block;
    top: 4px;
    left: -23px;
    width: 13px;
    height: 13px;
    background: url(../images/icon_sprite.png) no-repeat -12px -149px; }

#event_links ul li a, #event_links ul li a:visited {
  padding: 2px 0 0 0px;
  margin: 0;
  text-decoration: underline;
  color: #0A58A5;
  text-transform: none; }
  #event_links ul li a:hover, #event_links ul li a:visited:hover {
    text-decoration: none;
    background-position: 0 -63px;
    color: #0A58A5; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
#events .overview {
  position: relative;
  margin: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #346Eb7; }
  #events .overview h1 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 120%;
    margin-bottom: 0;
    padding: 0; }
  #events .overview h2 {
    text-transform: capitalize; }

.event_list {
  position: relative; }
  .event_list .list {
    padding: 0;
    background: none;
    margin: 0 0 20px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: white; }
  .event_list .entry {
    padding: 15px 0 19px;
    border-bottom: 1px solid #346Eb7; }
    .event_list .entry:last-child {
      border-bottom: 1px solid #346Eb7; }
    .event_list .entry .info {
      position: relative;
      float: left;
      padding: 0;
      width: 405px; }
      .event_list .entry .info h3 {
        line-height: 36px;
        width: 405px;
        margin: 0; }
        .event_list .entry .info h3 a {
          font-size: 28px;
          text-transform: none;
          color: white;
          text-decoration: none;
          font-weight: 400; }
          .event_list .entry .info h3 a:hover {
            color: #0EE4EB; }
      .event_list .entry .info h4 {
        color: white;
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 5px;
        text-transform: none; }
      .event_list .entry .info .date {
        font-size: 16px;
        color: white;
        font-weight: 300;
        font-style: normal;
        margin: 4px 0 3px; }
        .event_list .entry .info .date .y {
          display: none; }
      .event_list .entry .info .buttons {
        position: absolute;
        top: 23px;
        right: 0px;
        width: 202px;
        height: 46px; }
        .event_list .entry .info .buttons a, .event_list .entry .info .buttons a:link, .event_list .entry .info .buttons a:visited {
          display: block;
          width: 202px;
          height: 46px;
          line-height: 48px;
          padding: 0;
          margin: 0;
          position: relative;
          text-decoration: none;
          float: left;
          background: url(../images/icon_sprite.png) 0 -366px no-repeat;
          text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
          color: #333333;
          font-size: 16px;
          text-align: center;
          text-transform: uppercase; }
          .event_list .entry .info .buttons a:hover, .event_list .entry .info .buttons a:link:hover, .event_list .entry .info .buttons a:visited:hover {
            color: white;
            text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
          .event_list .entry .info .buttons a.more, .event_list .entry .info .buttons a:link.more, .event_list .entry .info .buttons a:visited.more {
            margin-bottom: 21px; }
        .event_list .entry .info .buttons span {
          display: block;
          width: 202px;
          height: 46px;
          line-height: 48px;
          padding: 0;
          margin: 0;
          position: relative;
          float: left;
          cursor: default;
          text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
          color: #fff;
          font-size: 16px;
          text-align: center;
          text-transform: uppercase; }
          .event_list .entry .info .buttons span.tickets {
            display: none; }
      .event_list .entry .info .buttons {
        display: none; }
    .event_list .entry .thumb {
      width: 250px;
      height: 150px;
      margin: 4px 17px 0 0;
      float: left; }
      .event_list .entry .thumb a {
        display: block;
        width: 250px;
        height: 150px; }
      .event_list .entry .thumb img {
        padding: 0;
        width: 250px;
        height: 150px; }
    .group-sales .event_list .entry .entry {
      border-bottom: 1px solid #346Eb7; }
    .group-sales .event_list .entry:first-child {
      padding-top: 0px; }
    .group-sales .event_list .entry .buttons {
      left: 0;
      top: auto;
      margin-top: 10px;
      width: auto;
      height: auto;
      display: block;
      position: relative; }
      .group-sales .event_list .entry .buttons a, .group-sales .event_list .entry .buttons a:link, .group-sales .event_list .entry .buttons a:visited {
        text-transform: uppercase;
        width: 130px;
        height: 40px;
        letter-spacing: 0px;
        display: block;
        margin-bottom: 0px;
        margin-right: 0px;
        text-align: center;
        line-height: 38px;
        background: url(../images/icon_sprite.png) 0 -841px;
        text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
        color: #333333;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        float: left; }
        .group-sales .event_list .entry .buttons a.more, .group-sales .event_list .entry .buttons a:link.more, .group-sales .event_list .entry .buttons a:visited.more {
          margin-right: 10px;
          margin-bottom: 0; }
        .group-sales .event_list .entry .buttons a:hover, .group-sales .event_list .entry .buttons a:link:hover, .group-sales .event_list .entry .buttons a:visited:hover {
          color: white; }
  .event_list.main_event_list .info {
    width: 771px; }
    .event_list.main_event_list .info h3 {
      width: 539px; }
    .event_list.main_event_list .info .buttons {
      display: block; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
#events .detail_holder {
  width: 300px;
  padding: 20px 0 20px 0;
  margin: 0 0 20px 0;
  background: #01319B;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px; }
  #events .detail_holder .ticket_link, #events .detail_holder .seating_link {
    margin: 0 20px 12px 20px;
    background: url(../images/icon_sprite.png) 0px -535px no-repeat;
    height: 42px;
    padding: 7px 0 0 50px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    text-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0; }
    #events .detail_holder .ticket_link a, #events .detail_holder .seating_link a {
      color: white; }
      #events .detail_holder .ticket_link a:hover, #events .detail_holder .seating_link a:hover {
        color: #0EE4EB; }
  #events .detail_holder .seating_link {
    margin-top: 0;
    background-position: 0 -471px; }
  #events .detail_holder ul {
    margin: 0;
    padding: 0; }
    #events .detail_holder ul li {
      position: relative;
      margin: 0 20px 0 41px;
      border-top: 1px solid #346Eb7;
      padding: 10px 0; }
      #events .detail_holder ul li:before {
        content: ' ';
        display: block;
        top: 13px;
        left: -20px;
        width: 12px;
        height: 12px;
        position: absolute;
        background: url(../images/bulletList.png) 0 1px no-repeat; }
      #events .detail_holder ul li label {
        display: block;
        text-transform: uppercase;
        color: white;
        font-size: 18px;
        font-weight: 400; }
      #events .detail_holder ul li span, #events .detail_holder ul li a, #events .detail_holder ul li p {
        font-size: 14px;
        line-height: 20px;
        font-weight: 300;
        color: white;
        width: 225px;
        margin: 0;
        padding: 0; }
      #events .detail_holder ul li a {
        color: #0EE4EB;
        text-decoration: none; }
        #events .detail_holder ul li a:hover {
          color: white;
          text-decoration: underline; }
  #events .detail_holder .buttons {
    position: relative;
    color: white; }
    #events .detail_holder .buttons a, #events .detail_holder .buttons a:link, #events .detail_holder .buttons a:visited {
      background: none;
      color: white; }

.event_detail {
  margin: 0 0 0 20px;
  padding: 32px 26px 26px 26px;
  background: #0c52aa;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  border-radius: 9px; }
  .event_detail .header {
    position: relative;
    margin: 0 0 10px;
    float: left;
    width: 100%;
    height: auto;
    padding: 0 0 7px 0;
    background: none;
    border-bottom: 1px solid #346Eb7; }
    .event_detail .header .summary {
      text-transform: uppercase;
      font-weight: 500; }
    .event_detail .header h2 {
      font-size: 18px;
      font-weight: 300; }
  .event_detail .thumb {
    width: 250px;
    height: 150px;
    float: left;
    padding: 10px 0 0 0;
    margin: 0 20px 10px 0; }
    .event_detail .thumb a {
      display: block;
      width: 250px;
      height: 150px; }
    .event_detail .thumb img {
      padding: 0;
      width: 250px;
      height: 150px; }
  .event_detail .event_body {
    padding: 0 10px; }
  .event_detail .showings {
    margin: 0 0 20px;
    float: left;
    width: 100%; }
    .event_detail .showings h3 {
      text-align: left;
      width: 100%;
      padding: 4px 0;
      margin: 0 0 5px;
      font-size: 14px;
      text-transform: uppercase; }
    .event_detail .showings ul {
      border-top: 1px solid #346Eb7;
      list-style-image: none;
      list-style: none;
      margin: 0;
      padding: 0;
      list-style-position: inside; }
      .event_detail .showings ul li {
        border-bottom: 1px solid #346Eb7;
        padding: 10px 0;
        margin: 0;
        color: white;
        font-size: 18px;
        position: relative;
        font-weight: 300;
        width: 50%;
        float: left; }
        .event_detail .showings ul li.entry.alt {
          margin-right: 0; }
        .event_detail .showings ul li span.date {
          line-height: 24px;
          float: left; }
        .event_detail .showings ul li span.time {
          color: white;
          position: absolute;
          right: 40px; }
        .event_detail .showings ul li .buttons {
          float: right;
          margin: 0; }
        .event_detail .showings ul li a.ical {
          text-indent: -5000px;
          display: block;
          float: right;
          width: 20px;
          height: 22px;
          padding: 0;
          margin: 1px 10px 0 0;
          background: url(../images/ical.png); }
          .event_detail .showings ul li a.ical:hover {
            background-position: 0 -22px; }
  .event_detail .addthis_toolbox .addthis_buttons {
    float: right;
    padding-top: 8px; }
  .event_detail .addthis_toolbox a.viewall, .event_detail .addthis_toolbox a.print {
    display: inline-block;
    height: 35px;
    width: 35px;
    margin-right: 5px;
    background: #00C3D7;
    color: white;
    text-decoration: none;
    text-indent: -9999px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px; }
    .event_detail .addthis_toolbox a.viewall:hover, .event_detail .addthis_toolbox a.viewall:focus, .event_detail .addthis_toolbox a.print:hover, .event_detail .addthis_toolbox a.print:focus {
      background-color: #0b8cc2; }
  .event_detail .addthis_toolbox a.viewall {
    text-indent: 0;
    width: auto;
    padding: 0 8px;
    display: block;
    float: left;
    clear: left;
    line-height: 35px;
    font-size: 13px; }
  .event_detail .addthis_toolbox a.print {
    display: block;
    padding: 0;
    float: left;
    background: #00C3D7 url(../images/icon_sprite.png) -55px -426px no-repeat;
    line-height: 19px;
    padding: 0;
    text-transform: none; }
    .event_detail .addthis_toolbox a.print:hover, .event_detail .addthis_toolbox a.print:focus {
      background-color: #0b8cc2; }
  .event_detail .dsq-global-toolbar-dropdown-container {
    display: none !important; }
  .event_detail .group_sales {
    padding: 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #346Eb7;
    float: left;
    width: 100%; }
    .event_detail .group_sales h2 {
      padding-bottom: 3px;
      color: white;
      border-bottom: 1px solid #346Eb7; }

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

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

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

.carouselCategories {
  position: relative;
  text-align: left;
  left: -50%;
  float: right;
  margin: 0px 0 0 0;
  clear: both; }
  #events .carouselCategories, #teams .carouselCategories {
    margin: 0; }

.carouselNavBg {
  position: absolute;
  z-index: 0; }
  .carouselNavBg:after {
    content: '';
    display: block;
    background: url(../images/arrowBokehBg.png) no-repeat;
    position: absolute;
    width: 69px;
    height: 68px;
    z-index: 5;
    left: -22px;
    top: 292px; }
  .carouselNavBg:before {
    content: '';
    display: block;
    background: url(../images/arrowBokehBg.png) no-repeat;
    position: absolute;
    width: 69px;
    height: 68px;
    z-index: 5;
    left: 1050px;
    top: 292px; }

#carouselChanger {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  left: 50%; }
  #carouselChanger:before, #carouselChanger:after {
    content: '';
    display: block;
    background: url(../images/carouselNav.png) -186px -2px no-repeat;
    width: 28px;
    height: 7px;
    position: absolute;
    top: 0px; }
  #carouselChanger:before {
    left: -28px; }
  #carouselChanger:after {
    right: -28px;
    background: url(../images/carouselNav.png) -770px -2px no-repeat; }
  #carouselChanger li {
    position: relative;
    float: left;
    display: inline-block;
    width: 111px;
    height: 140px;
    margin: 0px;
    padding: 0;
    font-family: "myriad-pro";
    color: #fff;
    font-size: 16px;
    line-height: 146%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400; }
    #carouselChanger li.all-events {
      background: url(../images/carouselNav.png) -215px -2px no-repeat;
      width: 110px; }
      #carouselChanger li.all-events:hover, #carouselChanger li.all-events.active {
        background: url(../images/carouselNav.png) -215px -152px no-repeat; }
    #carouselChanger li.concerts {
      background: url(../images/carouselNav.png) -325px -2px no-repeat; }
      #carouselChanger li.concerts:hover, #carouselChanger li.concerts.active {
        background: url(../images/carouselNav.png) -325px -152px no-repeat; }
    #carouselChanger li.family {
      background: url(../images/carouselNav.png) -436px -2px no-repeat; }
      #carouselChanger li.family:hover, #carouselChanger li.family.active {
        background: url(../images/carouselNav.png) -436px -152px no-repeat; }
    #carouselChanger li.sports {
      background: url(../images/carouselNav.png) -547px -2px no-repeat; }
      #carouselChanger li.sports:hover, #carouselChanger li.sports.active {
        background: url(../images/carouselNav.png) -547px -152px no-repeat; }
    #carouselChanger li.other {
      background: url(../images/carouselNav.png) -658px -2px no-repeat; }
      #carouselChanger li.other:hover, #carouselChanger li.other.active {
        background: url(../images/carouselNav.png) -658px -152px no-repeat; }
    #carouselChanger li:hover a, #carouselChanger li.active a {
      color: #00319A; }
    #carouselChanger li a {
      display: table-cell;
      color: #fff;
      vertical-align: bottom;
      text-align: center;
      text-decoration: none;
      width: 111px;
      height: 140px; }

.featured_holder {
  margin: 0;
  position: relative;
  width: 1050px;
  padding: 0;
  float: left;
  height: 614px; }
  .featured_holder .prev, .featured_holder .next {
    background: url(../images/carouselNav.png) no-repeat 0 -67px;
    cursor: pointer;
    height: 71px;
    bottom: 297px;
    position: absolute;
    text-indent: -9999px;
    width: 39px;
    z-index: 20;
    display: block; }
  .featured_holder .prev {
    left: -37px; }
    .featured_holder .prev:hover {
      background-position: 0px 0; }
  .featured_holder .next {
    right: -41px;
    background-position: -947px -67px; }
    .featured_holder .next:hover {
      background-position: -947px 0; }
  .featured_holder #featured.event_list {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 640px;
    z-index: 300;
    background: none; }
    .featured_holder #featured.event_list .list {
      background: none;
      padding: 0;
      margin: 0; }
    .featured_holder #featured.event_list .entry {
      display: inline-block;
      padding: 20px 0 0;
      margin-right: 14px;
      margin-bottom: 13px;
      width: 518px;
      height: 300px;
      padding: 0;
      background: #eee;
      clear: none;
      position: relative;
      border: none;
      overflow: hidden; }
      .featured_holder #featured.event_list .entry.alt {
        margin-right: 0px; }
      .featured_holder #featured.event_list .entry .info.active {
        display: block !important;
        background: url(../images/dark_diag_transp.png);
        opacity: 1;
        top: 0px; }
      .featured_holder #featured.event_list .entry .info {
        background: url(../images/dark_diag_transp.png);
        position: absolute;
        top: 80px;
        left: 0px;
        margin: 0;
        width: 518px;
        padding: 0px;
        z-index: 6;
        height: 300px;
        opacity: 0;
        -webkit-transition: all 140ms ease-out;
        -moz-transition: all 140ms ease-out;
        -o-transition: all 140ms ease-out;
        transition: all 140ms ease-out; }
        .ie8 .featured_holder #featured.event_list .entry .info {
          opacity: 1;
          display: none; }
        .featured_holder #featured.event_list .entry .info h3 {
          width: 350px;
          padding: 0px;
          margin: 62px 0 0 21px;
          text-indent: 0;
          line-height: 120%;
          font-size: 24px;
          height: auto;
          font-weight: 600;
          text-transform: uppercase; }
          .featured_holder #featured.event_list .entry .info h3 a {
            color: white;
            font-weight: 600;
            font-size: 24px;
            display: block;
            text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0; }
            .featured_holder #featured.event_list .entry .info h3 a:hover {
              color: #0EE4EB;
              text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 0; }
        .featured_holder #featured.event_list .entry .info h4 {
          display: none;
          padding: 0 10px;
          font-size: 11px;
          font-weight: bold;
          margin: 0; }
        .featured_holder #featured.event_list .entry .info .date {
          position: absolute;
          top: 30px;
          left: 19px;
          margin: 0;
          padding: 0;
          color: white;
          text-transform: none;
          font-size: 20px;
          line-height: 20px;
          font-weight: 400; }
        .featured_holder #featured.event_list .entry .info .buttons {
          position: absolute;
          top: 23px;
          right: 0px;
          width: 202px;
          height: 46px; }
          .featured_holder #featured.event_list .entry .info .buttons a, .featured_holder #featured.event_list .entry .info .buttons a:link, .featured_holder #featured.event_list .entry .info .buttons a:visited {
            display: block;
            width: 202px;
            height: 46px;
            line-height: 48px;
            padding: 0;
            margin: 0;
            position: relative;
            text-decoration: none;
            float: left;
            background: url(../images/icon_sprite.png) 0 -366px no-repeat;
            text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
            color: #333333;
            font-size: 16px;
            text-align: center;
            text-transform: uppercase; }
            .featured_holder #featured.event_list .entry .info .buttons a:hover, .featured_holder #featured.event_list .entry .info .buttons a:link:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited:hover {
              color: white;
              text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
            .featured_holder #featured.event_list .entry .info .buttons a.more, .featured_holder #featured.event_list .entry .info .buttons a:link.more, .featured_holder #featured.event_list .entry .info .buttons a:visited.more {
              margin-bottom: 21px; }
          .featured_holder #featured.event_list .entry .info .buttons span {
            display: block;
            width: 202px;
            height: 46px;
            line-height: 48px;
            padding: 0;
            margin: 0;
            position: relative;
            float: left;
            cursor: default;
            text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
            color: #fff;
            font-size: 16px;
            text-align: center;
            text-transform: uppercase; }
            .featured_holder #featured.event_list .entry .info .buttons span.tickets {
              display: none; }
        .featured_holder #featured.event_list .entry .info .buttons {
          display: block;
          position: absolute;
          top: auto;
          bottom: 42px;
          left: 20px;
          width: auto;
          height: 22px; }
          .featured_holder #featured.event_list .entry .info .buttons span {
            background: none;
            display: inline-block;
            position: relative;
            width: auto;
            color: white;
            font-weight: 400;
            line-height: 120%;
            font-size: 20px;
            padding-left: 60px;
            text-transform: uppercase;
            text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
            margin-left: 70px; }
            .featured_holder #featured.event_list .entry .info .buttons span:before {
              content: '';
              display: block;
              background: url(../images/icon_sprite.png) no-repeat 0 -70px;
              width: 50px;
              height: 50px;
              left: 0;
              top: -10px;
              position: absolute;
              background: url(../images/icon_sprite.png); }
          .featured_holder #featured.event_list .entry .info .buttons a, .featured_holder #featured.event_list .entry .info .buttons a:link, .featured_holder #featured.event_list .entry .info .buttons a:visited {
            background: none;
            display: inline-block;
            position: relative;
            width: auto;
            color: white;
            font-weight: 400;
            line-height: 120%;
            font-size: 20px;
            padding-left: 60px;
            text-transform: uppercase;
            text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0; }
            .featured_holder #featured.event_list .entry .info .buttons a:hover, .featured_holder #featured.event_list .entry .info .buttons a:link:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited:hover {
              color: #0EE4EB;
              text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 0; }
            .featured_holder #featured.event_list .entry .info .buttons a.more:before, .featured_holder #featured.event_list .entry .info .buttons a.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:link.more:before, .featured_holder #featured.event_list .entry .info .buttons a:link.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.more:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets:before {
              content: '';
              display: block;
              background: url(../images/icon_sprite.png) no-repeat 0 -70px;
              width: 50px;
              height: 50px;
              left: 0;
              top: -10px;
              position: absolute; }
            .featured_holder #featured.event_list .entry .info .buttons a.tickets, .featured_holder #featured.event_list .entry .info .buttons a:link.tickets, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets {
              margin-left: 70px; }
              .featured_holder #featured.event_list .entry .info .buttons a.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:link.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets:before {
                background: url(../images/icon_sprite.png); }
      .featured_holder #featured.event_list .entry .thumb {
        display: block;
        width: 518px;
        height: 300px;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 5;
        background: none;
        border: none;
        float: none;
        margin: 0; }
        .featured_holder #featured.event_list .entry .thumb img {
          width: 518px;
          height: 300px;
          padding: 0;
          margin: 0; }
  .featured_holder h3 {
    text-indent: -9999px;
    margin: 0;
    height: 0px; }
  .featured_holder .list_holder {
    position: relative;
    z-index: 10;
    margin: 0;
    overflow: hidden;
    width: 1050px;
    height: 640px; }
  .featured_holder .group {
    float: left;
    height: 640px;
    width: 1060px;
    padding: 0; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_feed {
  width: 1090px;
  height: 90px;
  margin-bottom: 30px;
  -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1); }
  .news_feed h2.lead {
    position: relative;
    display: block;
    float: left;
    width: 334px;
    height: 90px;
    margin: 0;
    background: #52C1E1;
    line-height: 90px;
    font-family: arial;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 0;
    -moz-box-shadow: inset 0 0 1px 2px rgba(71, 167, 195, 0.8);
    -webkit-box-shadow: inset 0 0 1px 2px rgba(71, 167, 195, 0.8);
    box-shadow: inset 0 0 1px 2px rgba(71, 167, 195, 0.8); }
    .news_feed h2.lead a {
      text-decoration: none;
      color: #398196; }
      .news_feed h2.lead a:hover {
        color: #0A58A5;
        text-decoration: none; }
    .news_feed h2.lead:after {
      content: '';
      background: url(../images/announcement_side.png);
      width: 36px;
      height: 90px;
      display: block;
      position: absolute;
      top: 0;
      right: -33px; }
  .news_feed .news_list_holder {
    width: 756px;
    height: 90px;
    overflow: hidden;
    float: left;
    background: #E9E9E9; }
    .news_feed .news_list_holder ul {
      padding: 0;
      margin: 0; }
      .news_feed .news_list_holder ul li {
        padding: 0;
        margin: 0;
        height: 90px;
        overflow: hidden; }
    .news_feed .news_list_holder #news_item {
      display: table-cell;
      vertical-align: middle;
      height: 85px; }
    .news_feed .news_list_holder p {
      font-size: 16px;
      margin: 0 0 0 40px;
      color: #777777;
      line-height: 26px;
      font-weight: 400;
      text-shadow: rgba(255, 255, 255, 0.65) 2px 2px 0; }
      .news_feed .news_list_holder p a {
        text-decoration: none;
        color: #777777; }
        .news_feed .news_list_holder p a:hover {
          text-decoration: none;
          color: #0A58A5; }

.news_list {
  position: relative; }
  .news_list .overview {
    position: relative;
    padding: 0 0 8px;
    border-bottom: 1px solid #346Eb7; }
    .news_list .overview h1 {
      font-size: 36px;
      text-transform: uppercase;
      line-height: 120%;
      margin-bottom: 0;
      padding: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    padding: 15px 0;
    border-bottom: 1px solid #346Eb7; }
    .news_list .entry:last-child {
      border-bottom: 1px solid #346Eb7; }
    .news_list .entry .info {
      position: relative;
      float: left;
      padding: 0;
      width: 100%; }
      .news_list .entry .info h3 {
        line-height: 36px;
        margin: 0; }
        .news_list .entry .info h3 a {
          font-size: 28px;
          text-transform: none;
          color: white;
          text-decoration: none;
          font-weight: 400; }
          .news_list .entry .info h3 a:hover {
            color: #0EE4EB; }
      .news_list .entry .info h4 {
        color: white;
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 5px;
        text-transform: none; }
      .news_list .entry .info .date {
        font-size: 16px;
        color: white;
        font-weight: 300;
        font-style: normal;
        margin: 4px 0 3px; }
      .news_list .entry .info .buttons {
        position: absolute;
        top: 23px;
        right: 0px;
        width: 202px;
        height: 46px; }
        .news_list .entry .info .buttons a, .news_list .entry .info .buttons a:link, .news_list .entry .info .buttons a:visited {
          display: block;
          width: 202px;
          height: 46px;
          line-height: 48px;
          padding: 0;
          margin: 0;
          position: relative;
          text-decoration: none;
          float: left;
          background: url(../images/icon_sprite.png) 0 -366px no-repeat;
          text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
          color: #333333;
          font-size: 16px;
          text-align: center;
          text-transform: uppercase; }
          .news_list .entry .info .buttons a:hover, .news_list .entry .info .buttons a:link:hover, .news_list .entry .info .buttons a:visited:hover {
            color: white;
            text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
          .news_list .entry .info .buttons a.more, .news_list .entry .info .buttons a:link.more, .news_list .entry .info .buttons a:visited.more {
            margin-bottom: 21px; }
        .news_list .entry .info .buttons span {
          display: block;
          width: 202px;
          height: 46px;
          line-height: 48px;
          padding: 0;
          margin: 0;
          position: relative;
          float: left;
          cursor: default;
          text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
          color: #fff;
          font-size: 16px;
          text-align: center;
          text-transform: uppercase; }
          .news_list .entry .info .buttons span.tickets {
            display: none; }
      .news_list .entry .info .buttons {
        position: relative;
        left: 0;
        top: auto; }
        .news_list .entry .info .buttons a.more {
          margin-bottom: 0px !important; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail .overview {
    margin: 0 0 15px;
    padding: 0 0 13px;
    border-bottom: 1px solid #346Eb7; }
    .news_detail .overview h1 {
      font-size: 36px;
      text-transform: uppercase;
      line-height: 120%; }
    .news_detail .overview span.date {
      color: white;
      font-weight: 300;
      font-size: 16px;
      display: block;
      margin-bottom: 10px; }
  .news_detail .body {
    margin: 0 0 5px; }
  .news_detail .thumb {
    height: 130px;
    width: 170px;
    margin: 0 15px 10px 0;
    float: left;
    border: 1px solid #AAA; }
    .news_detail .thumb img {
      padding: 0px;
      height: 130px;
      width: 170px; }
  .news_detail .link {
    display: block;
    width: 100%;
    float: left;
    margin-top: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #346Eb7;
    border-top: 1px solid #346Eb7; }
    .news_detail .link a.pdf, .news_detail .link a:link.pdf, .news_detail .link a:visited.pdf {
      display: block;
      padding: 0 0 0 36px;
      margin: 0 0 0 0px;
      text-decoration: none;
      color: white;
      font-size: 18px;
      font-weight: 500;
      line-height: 26px;
      background: url(../images/icon_sprite.png) no-repeat -8px -202px; }
  .news_detail .addthis_toolbox .addthis_buttons {
    float: right;
    padding-top: 8px; }
  .news_detail .addthis_toolbox a.viewall, .news_detail .addthis_toolbox a.print {
    display: inline-block;
    height: 35px;
    width: 35px;
    margin-right: 5px;
    background: #00C3D7;
    color: white;
    text-decoration: none;
    text-indent: -9999px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px; }
    .news_detail .addthis_toolbox a.viewall:hover, .news_detail .addthis_toolbox a.viewall:focus, .news_detail .addthis_toolbox a.print:hover, .news_detail .addthis_toolbox a.print:focus {
      background-color: #0b8cc2; }
  .news_detail .addthis_toolbox a.viewall {
    text-indent: 0;
    width: auto;
    padding: 0 8px;
    display: block;
    float: left;
    clear: left;
    line-height: 35px;
    font-size: 13px; }
  .news_detail .addthis_toolbox a.print {
    display: block;
    padding: 0;
    float: left;
    background: #00C3D7 url(../images/icon_sprite.png) -55px -426px no-repeat;
    line-height: 19px;
    padding: 0;
    text-transform: none; }
    .news_detail .addthis_toolbox a.print:hover, .news_detail .addthis_toolbox a.print:focus {
      background-color: #0b8cc2; }
  .news_detail .event_list {
    clear: both; }
    .news_detail .event_list .entry {
      padding: 15px 0 19px 0;
      border-bottom: 1px solid #346Eb7; }
      .news_detail .event_list .entry .thumb {
        margin-right: 14px; }
      .news_detail .event_list .entry:last-child {
        border-top: 1px solid #346Eb7; }
      .news_detail .event_list .entry .info {
        width: 405px; }
      .news_detail .event_list .entry h3 {
        width: 405px; }
      .news_detail .event_list .entry .buttons {
        left: 0;
        top: auto;
        margin-top: 10px;
        width: auto;
        height: auto;
        display: block;
        position: relative; }
        .news_detail .event_list .entry .buttons a, .news_detail .event_list .entry .buttons a:link, .news_detail .event_list .entry .buttons a:visited {
          text-transform: uppercase;
          width: 130px;
          height: 40px;
          letter-spacing: 0px;
          display: block;
          margin-bottom: 0px;
          margin-right: 0px;
          text-align: center;
          line-height: 38px;
          background: url(../images/icon_sprite.png) 0 -841px;
          text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
          color: #333333;
          font-size: 14px;
          font-weight: 500;
          cursor: pointer;
          border: none;
          float: left; }
          .news_detail .event_list .entry .buttons a.more, .news_detail .event_list .entry .buttons a:link.more, .news_detail .event_list .entry .buttons a:visited.more {
            margin-right: 10px;
            margin-bottom: 0; }
          .news_detail .event_list .entry .buttons a:hover, .news_detail .event_list .entry .buttons a:link:hover, .news_detail .event_list .entry .buttons a:visited:hover {
            color: white; }

/* @group FAQ */
.faq {
  margin: 0 0 20px 0;
  padding: 0px;
  position: relative; }
  .faq dl {
    border-bottom: 1px solid #346Eb7;
    font-size: 18px; }
  .faq dt {
    cursor: pointer;
    padding: 16px 0 16px 36px;
    margin: 0;
    border-top: 1px solid #346Eb7;
    overflow: auto;
    position: relative; }
    .faq dt:after {
      content: '';
      display: block;
      background: url(../images/icon_sprite.png) no-repeat -8px -286px;
      position: absolute;
      left: 0;
      top: 10px;
      width: 25px;
      height: 29px; }
    .faq dt:hover p {
      color: #0EE4EB; }
    .faq dt p {
      font-size: 18px;
      color: white;
      padding: 0;
      font-weight: 500;
      margin: 0; }
    .faq dt.active p {
      color: #0EE4EB; }
    .faq dt.active:after {
      background: url(../images/icon_sprite.png) no-repeat -8px -316px; }
  .faq dd {
    height: 0px;
    overflow: hidden;
    padding: 0 20px 10px 36px; }
    .faq dd p {
      font-size: 18px;
      color: white; }
  .faq ul li {
    position: relative; }
  .faq ul li:after {
    position: absolute;
    content: '';
    display: block;
    top: 4px;
    left: -23px;
    width: 13px;
    height: 13px;
    background: url(../images/icon_sprite.png) no-repeat -12px -149px; }

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

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

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

.calendar .full_column {
  height: 800px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.MonthlyCalendar .MonthNavPrev {
  left: 12px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#calendar .tooltip label {
  display: none; }

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

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

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

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

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

#calendar .tooltip .content .calendar_detail {
  height: 200px;
  overflow: hidden;
  padding: 10px 0;
  position: relative; }
  #calendar .tooltip .content .calendar_detail:nth-child(2) {
    border-top: 1px solid #011930; }
  #calendar .tooltip .content .calendar_detail .buttons {
    position: absolute;
    top: 23px;
    right: 0px;
    width: 202px;
    height: 46px; }
    #calendar .tooltip .content .calendar_detail .buttons a, #calendar .tooltip .content .calendar_detail .buttons a:link, #calendar .tooltip .content .calendar_detail .buttons a:visited {
      display: block;
      width: 202px;
      height: 46px;
      line-height: 48px;
      padding: 0;
      margin: 0;
      position: relative;
      text-decoration: none;
      float: left;
      background: url(../images/icon_sprite.png) 0 -366px no-repeat;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
      color: #333333;
      font-size: 16px;
      text-align: center;
      text-transform: uppercase; }
      #calendar .tooltip .content .calendar_detail .buttons a:hover, #calendar .tooltip .content .calendar_detail .buttons a:link:hover, #calendar .tooltip .content .calendar_detail .buttons a:visited:hover {
        color: white;
        text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
      #calendar .tooltip .content .calendar_detail .buttons a.more, #calendar .tooltip .content .calendar_detail .buttons a:link.more, #calendar .tooltip .content .calendar_detail .buttons a:visited.more {
        margin-bottom: 21px; }
    #calendar .tooltip .content .calendar_detail .buttons span {
      display: block;
      width: 202px;
      height: 46px;
      line-height: 48px;
      padding: 0;
      margin: 0;
      position: relative;
      float: left;
      cursor: default;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
      color: #fff;
      font-size: 16px;
      text-align: center;
      text-transform: uppercase; }
      #calendar .tooltip .content .calendar_detail .buttons span.tickets {
        display: none; }
  #calendar .tooltip .content .calendar_detail .buttons {
    top: auto;
    bottom: 15px;
    width: auto; }

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

.event_list#teams .thumb {
  width: 250px;
  height: 150px;
  margin: 4px 17px 0 0;
  float: left; }
  .event_list#teams .thumb a {
    display: block;
    width: 250px;
    height: 150px; }
  .event_list#teams .thumb img {
    padding: 0;
    width: 250px;
    height: 150px; }
.event_list#teams .entry {
  padding: 15px 0; }
  .event_list#teams .entry:last-child {
    border-bottom: 1px solid #346Eb7;
    padding-bottom: 30px; }
  .event_list#teams .entry .info {
    position: relative;
    float: left;
    padding: 0;
    width: 771px; }
    .event_list#teams .entry .info h3 {
      line-height: 36px;
      width: 539px;
      margin: 0; }
      .event_list#teams .entry .info h3 a {
        font-size: 28px;
        text-transform: none;
        color: white;
        text-decoration: none;
        font-weight: 400; }
        .event_list#teams .entry .info h3 a:hover {
          color: #0EE4EB; }
    .event_list#teams .entry .info h4 {
      color: white;
      font-size: 16px;
      font-weight: 400;
      margin: 0 0 5px;
      text-transform: none; }
    .event_list#teams .entry .info .date {
      font-size: 16px;
      color: white;
      font-weight: 300;
      font-style: normal;
      margin: 4px 0 3px; }
    .event_list#teams .entry .info .buttons {
      position: absolute;
      top: 23px;
      right: 0px;
      width: 202px;
      height: 46px; }
      .event_list#teams .entry .info .buttons a, .event_list#teams .entry .info .buttons a:link, .event_list#teams .entry .info .buttons a:visited {
        display: block;
        width: 202px;
        height: 46px;
        line-height: 48px;
        padding: 0;
        margin: 0;
        position: relative;
        text-decoration: none;
        float: left;
        background: url(../images/icon_sprite.png) 0 -366px no-repeat;
        text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
        color: #333333;
        font-size: 16px;
        text-align: center;
        text-transform: uppercase; }
        .event_list#teams .entry .info .buttons a:hover, .event_list#teams .entry .info .buttons a:link:hover, .event_list#teams .entry .info .buttons a:visited:hover {
          color: white;
          text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
        .event_list#teams .entry .info .buttons a.more, .event_list#teams .entry .info .buttons a:link.more, .event_list#teams .entry .info .buttons a:visited.more {
          margin-bottom: 21px; }
      .event_list#teams .entry .info .buttons span {
        display: block;
        width: 202px;
        height: 46px;
        line-height: 48px;
        padding: 0;
        margin: 0;
        position: relative;
        float: left;
        cursor: default;
        text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
        color: #fff;
        font-size: 16px;
        text-align: center;
        text-transform: uppercase; }
        .event_list#teams .entry .info .buttons span.tickets {
          display: none; }

.team_detail .event_list {
  clear: both;
  margin-top: 40px; }
.team_detail .event_list h2 {
  padding: 0 0 4px 0px;
  border-bottom: 1px solid #346Eb7; }
.team_detail .event_list .entry {
  clear: both;
  border-bottom: 1px solid #346Eb7; }
  .team_detail .event_list .entry .info {
    width: 405px; }
  .team_detail .event_list .entry h3 {
    width: 405px; }
  .team_detail .event_list .entry .buttons {
    left: 0;
    top: auto;
    margin-top: 10px;
    width: auto;
    height: auto;
    display: block;
    position: relative; }
    .team_detail .event_list .entry .buttons a, .team_detail .event_list .entry .buttons a:link, .team_detail .event_list .entry .buttons a:visited {
      text-transform: uppercase;
      width: 130px;
      height: 40px;
      letter-spacing: 0px;
      display: block;
      margin-bottom: 0px;
      margin-right: 0px;
      text-align: center;
      line-height: 38px;
      background: url(../images/icon_sprite.png) 0 -841px;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
      color: #333333;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      float: left; }
      .team_detail .event_list .entry .buttons a.more, .team_detail .event_list .entry .buttons a:link.more, .team_detail .event_list .entry .buttons a:visited.more {
        margin-right: 10px;
        margin-bottom: 0; }
      .team_detail .event_list .entry .buttons a:hover, .team_detail .event_list .entry .buttons a:link:hover, .team_detail .event_list .entry .buttons a:visited:hover {
        color: white; }
.team_detail .overview {
  position: relative;
  margin: 0 0 7px 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #346Eb7; }
  .team_detail .overview h1 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 120%;
    margin-bottom: 0;
    padding: 0; }
.team_detail .description {
  margin: 0 0 15px; }
.team_detail .thumb_ticket {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 200px;
  padding: 10px 0 0  0;
  margin: 4px 20px 15px 0;
  float: left; }
  .team_detail .thumb_ticket:before, .team_detail .thumb_ticket:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  .team_detail .thumb_ticket:after {
    clear: both; }
.team_detail .thumb a {
  display: block;
  width: 250px;
  height: 150px; }
.team_detail .thumb img {
  padding: 0;
  width: 250px;
  height: 150px; }
.team_detail .buttons {
  left: 25px;
  top: 170px; }

/* @group Default Banner */
.banner {
  width: 300px;
  height: 100px;
  padding: 0;
  margin: 0 0 10px;
  position: relative; }
  .banner .slideshow {
    width: 300px;
    height: 100px;
    background: none;
    margin: 0;
    padding: 0; }
    .banner .slideshow:before {
      display: none;
      content: '';
      position: relative;
      top: auto;
      left: auto;
      width: auto;
      height: auto;
      padding: 0;
      margin: 0;
      border: none;
      z-index: 3;
      opacity: 1; }
    .banner .slideshow:hover .slide:before {
      display: block; }
    .banner .slideshow .slide {
      width: 300px;
      height: 100px;
      background: none;
      margin: 0;
      padding: 0; }
      .banner .slideshow .slide img {
        padding: 0;
        border: none;
        background: none;
        width: 300px;
        height: 100px;
        top: 0;
        left: 0; }
    .banner .slideshow a {
      display: block;
      width: 100%;
      height: 100%; }
    .banner .slideshow .imglink {
      display: none;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }
      .banner .slideshow .imglink a {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }

#banner_left {
  display: inline-block;
  margin-bottom: 30px;
  width: 625px;
  height: 350px;
  -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px; }
  #banner_left:hover {
    -moz-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    opacity: 0.9; }
  #banner_left .banner {
    padding: 0;
    margin: 0;
    position: relative; }
    #banner_left .banner .slideshow {
      width: 625px;
      height: 350px;
      background: none;
      margin: 0;
      padding: 0;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      border-radius: 8px; }
      #banner_left .banner .slideshow:before {
        display: none;
        content: '';
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        border: none;
        z-index: 3;
        opacity: 1; }
      #banner_left .banner .slideshow:hover .slide:before {
        display: block; }
      #banner_left .banner .slideshow .slide {
        width: 625px;
        height: 350px;
        background: none;
        margin: 0;
        padding: 0; }
        #banner_left .banner .slideshow .slide img {
          padding: 0;
          border: none;
          background: none;
          width: 625px;
          height: auto;
          top: 0;
          left: 0;
          -moz-border-radius: 8px;
          -webkit-border-radius: 8px;
          border-radius: 8px; }
      #banner_left .banner .slideshow a {
        display: block;
        width: 100%;
        height: 100%; }
      #banner_left .banner .slideshow .imglink {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer; }
        #banner_left .banner .slideshow .imglink a {
          position: relative;
          background: url(../images/blank.png) 0 0 repeat;
          display: block;
          width: 100%;
          height: 100%; }

#banner_right {
  display: inline-block;
  margin: 0 0 30px 20px;
  width: 440px;
  height: 350px;
  -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px; }
  #banner_right:hover {
    -moz-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.3);
    opacity: 0.9; }
  #banner_right .banner {
    width: 440px;
    height: 350px;
    padding: 0;
    margin: 0;
    position: relative; }
    #banner_right .banner .slideshow {
      width: 440px;
      height: 350px;
      background: none;
      margin: 0;
      padding: 0; }
      #banner_right .banner .slideshow:before {
        display: none;
        content: '';
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        border: none;
        z-index: 3;
        opacity: 1; }
      #banner_right .banner .slideshow:hover .slide:before {
        display: block; }
      #banner_right .banner .slideshow .slide {
        width: 440px;
        height: 350px;
        background: none;
        margin: 0;
        padding: 0; }
        #banner_right .banner .slideshow .slide img {
          padding: 0;
          border: none;
          background: none;
          width: 440px;
          height: auto;
          top: 0;
          left: 0;
          -moz-border-radius: 8px;
          -webkit-border-radius: 8px;
          border-radius: 8px; }
      #banner_right .banner .slideshow a {
        display: block;
        width: 100%;
        height: 100%; }
      #banner_right .banner .slideshow .imglink {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer; }
        #banner_right .banner .slideshow .imglink a {
          position: relative;
          display: block;
          width: 100%;
          height: 100%; }

#newsletterMsg {
  width: 977px;
  height: 124px;
  border: 1px solid #006DF5;
  background: #FFFFFF;
  margin: 60px auto 0;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 7px 8px 4px 1px, rgba(0, 0, 0, 0.7) 0 0 13px 1px inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 7px 8px 4px 1px, rgba(0, 0, 0, 0.7) 0 0 13px 1px inset;
  box-shadow: rgba(0, 0, 0, 0.1) 7px 8px 4px 1px, rgba(0, 0, 0, 0.7) 0 0 13px 1px inset; }
  #newsletterMsg .banner {
    width: 940px;
    height: 90px;
    margin: 0;
    padding: 16px 0 0 16px;
    position: relative; }
    #newsletterMsg .banner .slideshow {
      width: 940px;
      height: 90px;
      background: none;
      margin: 0;
      padding: 0; }
      #newsletterMsg .banner .slideshow:before {
        display: none;
        content: '';
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        border: none;
        z-index: 3;
        opacity: 1; }
      #newsletterMsg .banner .slideshow:hover .slide:before {
        display: block; }
      #newsletterMsg .banner .slideshow .slide {
        width: 940px;
        height: 90px;
        background: none;
        margin: 0;
        padding: 0; }
        #newsletterMsg .banner .slideshow .slide img {
          padding: 0;
          border: none;
          background: none;
          width: 940px;
          height: 90px;
          top: 0;
          left: 0; }
      #newsletterMsg .banner .slideshow a {
        display: block;
        width: 940px;
        height: 90px;
        border: 1px solid transparent; }
        #newsletterMsg .banner .slideshow a:hover img {
          opacity: 0.8; }
      #newsletterMsg .banner .slideshow .imglink {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer; }
        #newsletterMsg .banner .slideshow .imglink a {
          position: relative;
          background: url(../images/blank.png) 0 0 repeat;
          display: block;
          width: 100%;
          height: 100%; }

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

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

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

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

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

/**************** Map.scss ****************/
.map_holder {
  display: block;
  width: 725px;
  height: 420px;
  margin-top: 0px;
  margin-bottom: 0px;
  background: white; }
  .map_holder .map {
    width: 100%;
    height: 100%; }
  .map_holder .map_control {
    display: none; }

.map_window .info {
  border-bottom: 1px dotted #999;
  padding: 0 0 4px;
  margin: 0 0 8px; }
  .map_window .info address {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 140%;
    color: #111; }
.map_window .desc {
  float: left;
  width: 120px; }
  .map_window .desc img {
    float: left;
    margin: 0 15px 0 0;
    width: 120px;
    height: auto; }
  .map_window .desc p {
    padding: 0;
    margin: 0; }
.map_window .directions {
  display: none;
  padding: 4px 0 0; }
  .map_window .directions label {
    display: block;
    font-size: 12px;
    margin: 0 0 8px; }
  .map_window .directions input {
    border: 1px solid #999;
    padding: 3px 5px;
    margin: 0 0 8px;
    width: 70%;
    font-size: 12px;
    color: #000; }
  .map_window .directions form button {
    float: right;
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 5px;
    color: #fff;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
    .map_window .directions form button:hover {
      background: #000; }

#fb_connect_status {
  display: none; }

.fbtabs {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: #01319B;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  padding: 0 0 15px;
  width: 300px;
  height: 331px;
  margin: 0 0 15px;
  position: relative; }
  .fbtabs h4 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
    padding: 0 0 8px 20px;
    text-align: left;
    text-transform: uppercase;
    background: url(../images/fb_icon.png) no-repeat 0px 2px; }
  .fbtabs a.seeall {
    color: #fff;
    display: block;
    font-size: 14px;
    margin: 0 1px 0;
    padding: 3px 10px 0px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    position: absolute;
    top: 60px;
    right: 38px;
    z-index: 25;
    cursor: pointer; }
    .fbtabs a.seeall:hover {
      background: #5FD3E5;
      color: #0150A9; }
  .fbtabs .css-tabs {
    margin: 0 0 0 -1px;
    padding: 0; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0; }
    .fbtabs .css-tabs a {
      color: #fff;
      display: block;
      font-size: 14px;
      padding: 3px 15px 0px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      border-right: 1px solid #3471B9; }
      .fbtabs .css-tabs a.current, .fbtabs .css-tabs a:hover {
        background: #5FD3E5;
        color: #0150A9; }
  .fbtabs .css-panes {
    clear: both;
    width: 266px;
    z-index: 5;
    position: relative;
    display: block;
    overflow: hidden;
    height: 202px;
    left: -7px; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 200px;
      padding: 0px; }
    .fbtabs .css-panes .attendee {
      float: left;
      height: 85px;
      padding: 16px 3px 0 3px;
      margin-left: 10px;
      width: 50px;
      text-align: center;
      font-weight: bold;
      line-height: 110%; }
      .fbtabs .css-panes .attendee a {
        display: block;
        clear: both;
        text-align: left;
        line-height: 120%;
        font-size: 11px;
        color: #fff;
        text-decoration: none; }
        .fbtabs .css-panes .attendee a div {
          font-weight: normal;
          font-size: 10px; }
      .fbtabs .css-panes .attendee img {
        display: block;
        height: 50px;
        width: 50px;
        border: 1px solid #DDDDDD; }

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

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

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

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

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

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

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

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

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

#fb_rsvp button, #fb_rsvp_status button {
  text-transform: uppercase;
  width: 130px;
  height: 40px;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 0px;
  text-align: center;
  line-height: 11px;
  background: url(../images/icon_sprite.png) 0 -841px;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
  color: #333333;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 10px;
  cursor: pointer;
  border: none; }
  #fb_rsvp button:hover, #fb_rsvp_status button:hover {
    color: white; }

#fb_rsvp_status span {
  text-transform: uppercase;
  width: 110px;
  height: 40px;
  letter-spacing: 0px;
  display: block;
  float: left;
  margin-right: 0px;
  text-align: center;
  line-height: 40px;
  background: none;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
  color: #333333;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  border: none; }

#fb_rsvp #button_fb_rsvp_going {
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 0;
  color: #333333; }
  #fb_rsvp #button_fb_rsvp_going:hover {
    color: white; }

#fb_rsvp_status span, #fb_rsvp button:hover, #fb_rsvp_status button:hover {
  color: #fff; }

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

.twitter_container {
  width: 286px;
  padding: 7px;
  margin: 0 0 20px 0;
  background: #0c52aa;
  background: rgba(1, 49, 155, 0.8);
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px; }
  .ie8 .twitter_container {
    background: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ee0c52aa, endColorstr=#ee0c52aa)"; }

#twitter_update_list {
  width: 286px;
  height: auto;
  padding: 0;
  margin: 0;
  background: white;
  color: #333;
  position: relative;
  zoom: 1;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px; }
  #twitter_update_list:before, #twitter_update_list:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #twitter_update_list:after {
    clear: both; }
  #twitter_update_list h1 {
    font-size: 16px;
    color: #333;
    font-weight: 600; }
  #twitter_update_list .tweet_to {
    background: #fff;
    -moz-border-radius: 0 0 7px 7px;
    -webkit-border-radius: 0;
    border-radius: 0 0 7px 7px;
    padding: 8px 6px 7px;
    text-align: center;
    border-top: 1px solid #E8E8E8; }
  #twitter_update_list .twitter-follow-button {
    position: absolute;
    right: 8px;
    top: 8px; }
  #twitter_update_list .twitter_header {
    height: 18px;
    padding: 8px; }
  #twitter_update_list #tweets {
    width: 20px; }
    #twitter_update_list #tweets ul {
      margin: 0;
      padding: 0;
      min-height: 196px;
      width: 268px;
      padding: 0 12px 0 10px; }
    #twitter_update_list #tweets .viewport {
      height: 250px;
      width: 286px;
      overflow: hidden;
      position: relative; }
    #twitter_update_list #tweets .scrollbar {
      display: block;
      height: 250px;
      position: absolute;
      right: 0;
      top: 5px; }
    #twitter_update_list #tweets .overview {
      width: 286px;
      height: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden;
      position: absolute;
      left: 0;
      top: 0;
      list-style: none; }
    #twitter_update_list #tweets .scrollbar .track {
      width: 1px;
      background: white;
      height: 240px;
      position: relative;
      border-left: 1px #CCCCCC solid;
      margin-top: 35px;
      margin-left: -10px; }
    #twitter_update_list #tweets .scrollbar .track .thumb {
      width: 8px;
      height: 18px;
      background: #666;
      border-right: white;
      border-bottom: white;
      position: absolute;
      left: -5px;
      top: 25px;
      cursor: pointer; }
    #twitter_update_list #tweets li {
      border-top: 1px solid #E8E8E8;
      font-size: 13px;
      list-style-type: none;
      padding: 15px 12px;
      color: #333;
      line-height: 140%; }
    #twitter_update_list #tweets .tweet_meta {
      color: #999;
      margin-top: 5px;
      font-size: 13px; }
      #twitter_update_list #tweets .tweet_meta span {
        font-weight: 300;
        margin-right: 40px; }
      #twitter_update_list #tweets .tweet_meta a {
        color: #999;
        margin-right: 3px;
        text-decoration: none;
        font-weight: 300;
        margin-right: 50px; }
        #twitter_update_list #tweets .tweet_meta a:last-child {
          margin-right: none; }
    #twitter_update_list #tweets a {
      color: #999;
      text-decoration: none; }
      #twitter_update_list #tweets a:hover {
        text-decoration: underline; }

.concierge_listing {
  position: relative; }
  .concierge_listing .entry {
    border-bottom: 1px solid #346Eb7;
    padding: 15px 0; }
    .concierge_listing .entry:last-child {
      border-bottom: 1px solid #346Eb7;
      padding-bottom: 30px; }
    .concierge_listing .entry .thumb {
      width: 250px;
      height: 150px;
      margin: 4px 17px 0 0;
      float: left; }
      .concierge_listing .entry .thumb a {
        display: block;
        width: 250px;
        height: 150px; }
      .concierge_listing .entry .thumb img {
        padding: 0;
        width: 250px;
        height: 150px; }
    .concierge_listing .entry .info {
      position: relative;
      float: left;
      padding: 0;
      width: 405px; }
      .concierge_listing .entry .info h3 {
        line-height: 36px;
        width: 405px;
        margin: 0; }
        .concierge_listing .entry .info h3 a {
          font-size: 28px;
          text-transform: none;
          color: white;
          text-decoration: none;
          font-weight: 400; }
          .concierge_listing .entry .info h3 a:hover {
            color: #0EE4EB; }
      .concierge_listing .entry .info h4 {
        color: white;
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 5px;
        text-transform: none; }
      .concierge_listing .entry .info .tel {
        line-height: 25px;
        margin: 0 5px; }
      .concierge_listing .entry .info .address {
        margin: 5px 5px 0 5px;
        line-height: 25px; }
        .concierge_listing .entry .info .address span.street-address {
          display: block; }
      .concierge_listing .entry .info .description {
        margin-top: 10px; }
      .concierge_listing .entry .info .date {
        font-size: 16px;
        color: white;
        font-weight: 300;
        font-style: normal;
        margin: 4px 0 3px; }
  .concierge_listing .buttons {
    position: absolute;
    top: 23px;
    right: 0px;
    width: 202px;
    height: 46px; }
    .concierge_listing .buttons a, .concierge_listing .buttons a:link, .concierge_listing .buttons a:visited {
      display: block;
      width: 202px;
      height: 46px;
      line-height: 48px;
      padding: 0;
      margin: 0;
      position: relative;
      text-decoration: none;
      float: left;
      background: url(../images/icon_sprite.png) 0 -366px no-repeat;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
      color: #333333;
      font-size: 16px;
      text-align: center;
      text-transform: uppercase; }
      .concierge_listing .buttons a:hover, .concierge_listing .buttons a:link:hover, .concierge_listing .buttons a:visited:hover {
        color: white;
        text-shadow: rgba(0, 0, 0, 0.5) -1px 1px 6px; }
      .concierge_listing .buttons a.more, .concierge_listing .buttons a:link.more, .concierge_listing .buttons a:visited.more {
        margin-bottom: 21px; }
    .concierge_listing .buttons span {
      display: block;
      width: 202px;
      height: 46px;
      line-height: 48px;
      padding: 0;
      margin: 0;
      position: relative;
      float: left;
      cursor: default;
      text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 0;
      color: #fff;
      font-size: 16px;
      text-align: center;
      text-transform: uppercase; }
      .concierge_listing .buttons span.tickets {
        display: none; }
  .concierge_listing .buttons.booking {
    width: auto;
    position: relative;
    top: 10px;
    left: 25px; }

/**
 * 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 {
  width: 190px;
  height: 213px;
  margin: 0 15px 20px 15px;
  padding: 0;
  position: relative;
  background: white;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  float: left;
  -moz-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 8px 4px 1px rgba(0, 0, 0, 0.1);
  font-size: 13px; }
  .photo_gallery .set {
    padding: 5px; }
  .photo_gallery .thumb {
    display: block;
    margin: 0 0px 0 0;
    padding: 0;
    width: 180px;
    height: 150px; }
    .photo_gallery .thumb img {
      margin: 0;
      padding: 0;
      border: none;
      display: block;
      width: 180px;
      height: 150px; }
      .photo_gallery .thumb img:hover {
        opacity: 0.8; }
  .photo_gallery strong {
    display: block;
    width: 198px;
    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-weight: bold; }
  .photo_gallery .view-gallery {
    margin-top: 5px;
    text-align: center;
    color: #0A58A5;
    font-weight: 600; }
    .photo_gallery .view-gallery:hover {
      text-decoration: underline; }
  .photo_gallery a:hover {
    color: #0EE4EB; }
  .photo_gallery a.photo-name {
    display: block;
    color: #0A58A5;
    text-align: center;
    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 {
          display: block;
          width: 65px;
          height: 43px;
          border: none;
          background: transparent;
          border: 2px solid #fff; }
          .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.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 */
/* ----------------------------------------------------------------------------
= Showtime Homepage Overlay
----------------------------------------------------------------------------- */
#overlay_container {
  display: none;
  padding: 100px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  height: 100%; }
  #overlay_container .close-overlay {
    position: absolute;
    display: block;
    z-index: 50;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: url(../images/button_close.png) no-repeat center center;
    cursor: pointer; }
  #overlay_container a, #overlay_container a:link, #overlay_container a:visited {
    position: relative;
    display: block;
    z-index: 10;
    max-width: 1000px;
    height: auto;
    width: 100%; }
    #overlay_container a img, #overlay_container a:link img, #overlay_container a:visited img {
      width: 100%;
      height: auto;
      display: block; }

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

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

.dontshow-overlay {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  background: #000;
  font: 500 15px/140% "myriad-pro";
  line-height: 25px;
  cursor: pointer;
  text-align: center;
  position: relative;
  bottom: auto; }
  .dontshow-overlay:hover {
    color: #fff;
    background: #0EE4EB; }
