@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 8px;
  padding: 0;
  color: #000;
  font: 26px/100% "garamond-premier-pro-display", Georgia, serif;
  font-weight: 500;
  text-transform: uppercase; }
  h1 a, h1 a:link, h1 a:visited {
    text-decoration: none; }
  .ie8 h1 {
    font-family: Georgia, serif; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  color: #000;
  font: 500 24px/130% "garamond-premier-pro-display", Georgia, serif; }
  .ie8 h2 {
    font-family: Georgia, serif; }
  h2 a, h2 a:link, h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  color: #000;
  font: 500 20px/130% "garamond-premier-pro-display", Georgia, serif; }
  .ie8 h3 {
    font-family: Georgia, serif; }
  h3 a, h3 a:link, h3 a:visited {
    text-decoration: none; }

h4 {
  margin: 0 0 6px;
  padding: 0;
  color: #000;
  font: 300 16px/130% "garamond-premier-pro-display", Georgia, serif;
  text-transform: uppercase; }
  .ie8 h4 {
    font-family: Georgia, serif; }
  h4 a, h4 a:link, h4 a:visited {
    text-decoration: none; }

h5 {
  margin: 0;
  padding: 0 0 2px 0;
  color: #000;
  font: bold 14px/140% "garamond-premier-pro-display", Georgia, serif; }
  .ie8 h5 {
    font-family: Georgia, serif; }
  h5 a, h5 a:link, h5 a:visited {
    text-decoration: none; }

h6 {
  margin: 0;
  padding: 0 0 4px;
  color: #000;
  font: bold 12px/140% "garamond-premier-pro-display", Georgia, serif; }
  .ie8 h6 {
    font-family: Georgia, serif; }

p, address {
  margin: 0 0 10px;
  padding: 0;
  color: black;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 135%; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 25px;
  padding: 5px 0 8px 15px;
  color: black;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;
  list-style-type: square;
  list-style-position: outside;
  list-style-image: none; }
  ul li, ol li {
    margin: 0;
    padding: 0 0 6px 0;
    list-style-type: inherit;
    line-height: 130%; }
  ul ul, ol ul {
    margin: 0; }

ol {
  list-style: decimal; }

a, a:link, a:visited {
  color: #445d7b;
  text-decoration: underline;
  border: none;
  outline: none; }
  a:hover, a:focus, a:link:hover, a:link:focus, a:visited:hover, a:visited:focus {
    text-decoration: none; }

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

blockquote {
  border: 4px double #ddd;
  border-style: double;
  margin: 0 0 20px 0; }
  blockquote p {
    position: relative;
    background: white;
    text-align: center;
    margin: 0 1px;
    padding: 15px 10px; }

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

.rcBtn {
  display: inline-block;
  margin: 5px 0 0 0px;
  padding: 10px 15px;
  position: relative;
  background: #363638;
  color: white !important;
  font-size: 20px;
  text-align: center;
  text-decoration: none !important;
  line-height: 25px;
  text-indent: 0px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px; }
  .rcBtn:hover {
    background: #445d7b; }

a.button, .button a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
  display: inline-block;
  height: 100%;
  margin: 0 0 10px;
  padding: 8px 20px;
  background: #445d7b;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
  -webkit-transition: all,0.5s,ease-in-out;
  -moz-transition: all,0.5s,ease-in-out;
  -o-transition: all,0.5s,ease-in-out;
  transition: all,0.5s,ease-in-out;
  cursor: pointer; }
  a.button:hover, .button a:hover {
    background: #61829A; }

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: black;
  background: #363638;
  width: 100%;
  height: 100%; }

#container {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff url(../images/body_content_bg.jpg) no-repeat top center; }

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

#content {
  background: white;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px; }

.one_sidebar_right {
  padding: 20px;
  min-height: 610px; }

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

#column_1 {
  width: 700px;
  z-index: 10;
  float: right; }

#column_2, #column_3 {
  width: 240px;
  position: relative;
  z-index: 20;
  float: left; }

.full_column {
  padding: 20px;
  margin: 0 10px;
  min-height: 610px; }
  .home .full_column {
    padding: 0; }
  .full_column #column_1 {
    width: 960px;
    padding: 20px; }
    .full_column #column_1.search_results {
      background: #fff;
      margin: 0; }

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

header, .header {
  margin: 25px auto 0;
  padding: 0px;
  width: 100%;
  height: 138px;
  position: relative; }
  header .logo, .header .logo {
    position: relative;
    height: 121px;
    width: 322px;
    float: left;
    margin: 0; }
    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;
      height: 121px;
      width: 322px;
      background: url(../images/logo.jpg) no-repeat 0 0; }
    header .logo span, .header .logo span {
      cursor: default; }

#toolbar {
  position: absolute;
  top: 0px;
  right: 0;
  display: block;
  padding: 0;
  margin: 0;
  z-index: 900;
  width: 440px; }
  #toolbar .toolbar_container {
    display: block;
    margin: 0; }
  #toolbar .sociallinks {
    display: block;
    margin: 0 10px 0 0;
    padding: 0;
    float: right;
    visibility: none; }
    #toolbar .sociallinks li {
      position: relative;
      list-style-type: none;
      display: block;
      height: 32px;
      margin: 0 5px 0 0;
      padding: 0px;
      float: left; }
      #toolbar .sociallinks li span {
        position: absolute;
        bottom: -25px;
        left: -31px;
        background: #F8F8ED;
        display: none;
        font-size: 10px;
        line-height: 15px;
        color: #242415;
        padding: 3px 7px 3px 7px;
        margin: 0px; }
        .ie9 #toolbar .sociallinks li span {
          filter: none; }
        #toolbar .sociallinks li span:before {
          content: '';
          position: absolute;
          top: -5px;
          left: 40%;
          width: 0;
          height: 0;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          border-bottom: 5px solid #F8F8ED; }
        #toolbar .sociallinks li span.instagram {
          left: -12px;
          width: 50px; }
        #toolbar .sociallinks li span.pinterest {
          left: -8px; }
        #toolbar .sociallinks li span.foursquare {
          left: -15px; }
        #toolbar .sociallinks li span.twitter {
          left: -8px; }
        #toolbar .sociallinks li span.facebook {
          left: -15px; }
      #toolbar .sociallinks li:hover span {
        display: inline; }
    #toolbar .sociallinks a, #toolbar .sociallinks a:link, #toolbar .sociallinks a:visited {
      height: 33px;
      width: 33px;
      display: block;
      background: url(../images/social_icons.png) no-repeat 0 0;
      line-height: 20px;
      text-transform: uppercase;
      text-indent: -9999px;
      color: #fff;
      font-size: 11px;
      text-decoration: none; }
      #toolbar .sociallinks a:hover, #toolbar .sociallinks a:link:hover, #toolbar .sociallinks a:visited:hover {
        color: #fff; }
    #toolbar .sociallinks a.fblink {
      background-position: 0 0; }
      #toolbar .sociallinks a.fblink:hover {
        background-position: 0 -30px; }
    #toolbar .sociallinks a.twlink {
      background-position: -38px 0; }
      #toolbar .sociallinks a.twlink:hover {
        background-position: -38px -30px; }
    #toolbar .sociallinks a.instagramlink {
      background-position: -76px 0; }
      #toolbar .sociallinks a.instagramlink:hover {
        background-position: -76px -30px; }
    #toolbar .sociallinks a.pinterestlink {
      background-position: -114px 0; }
      #toolbar .sociallinks a.pinterestlink:hover {
        background-position: -114px -30px; }
    #toolbar .sociallinks a.foursquare {
      background-position: -152px 0; }
      #toolbar .sociallinks a.foursquare:hover {
        background-position: -152px -30px; }
  #toolbar .search {
    float: left;
    position: relative;
    margin: 1px 0 0 7px; }
    #toolbar .search input, #toolbar .search input[type="text"] {
      background: white;
      width: 167px;
      height: 25px;
      padding: 1px 5px;
      font-size: 10px;
      color: #242415;
      border: 0;
      outline: none;
      float: left; }
    #toolbar .search button {
      background: url(../images/searchbutton.png);
      color: #ababab;
      position: relative;
      display: block;
      float: left;
      top: 0px;
      right: 0px;
      width: 50px;
      height: 27px;
      text-indent: -9999px;
      border: 0;
      outline: none;
      cursor: pointer;
      font-size: 12px; }
      #toolbar .search button:hover {
        opacity: 0.8; }

#search_holder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100px;
  height: 24px;
  float: left; }
  #search_holder input, #search_holder input[type="text"] {
    margin: 0;
    padding: 3px 5px;
    position: relative;
    background: #FFF;
    width: 90px;
    text-transform: uppercase;
    font-size: 11px;
    color: #000;
    border: 1px solid black;
    font-weight: bold;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
  #search_holder button {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    text-indent: -5000px;
    background: url(../images/toolbar_icons.png) no-repeat 0 -160px;
    border: none; }
    #search_holder button:hover {
      opacity: 0.7; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  background: url("../images/footer_bg.jpg") repeat-x #363638;
  height: 200px;
  position: relative; }
  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 .footer_holder, .footer .footer_holder {
    width: 960px;
    margin: 0 auto;
    padding: 30px 30px 0 30px; }
  footer .global_footer, .footer .global_footer {
    float: right;
    padding: 0;
    margin: 0;
    line-height: 175%;
    width: 630px;
    font-size: 11px;
    position: relative;
    text-align: right; }
    footer .global_footer p, .footer .global_footer p {
      display: inline-block;
      color: black;
      font-size: 11px;
      margin: 0;
      padding: 0; }
      footer .global_footer p a, .footer .global_footer p a {
        font-family: "din-condensed-web";
        font-size: 16px;
        color: #61829A; }
        footer .global_footer p a:hover, .footer .global_footer p a:hover {
          color: #F6E7B9;
          text-decoration: none; }
    footer .global_footer p + p, .footer .global_footer p + p {
      font-size: 11px;
      margin: 25px 162px 0 50px;
      display: block;
      float: right;
      text-align: left;
      color: white; }
      footer .global_footer p + p a, .footer .global_footer p + p a {
        font-family: Verdana, Helvetica, Arial, sans-serif;
        font-size: 11px; }
    footer .global_footer span.delimiter, .footer .global_footer span.delimiter {
      display: inline;
      padding: 0 8px; }
    footer .global_footer .sociallinks, .footer .global_footer .sociallinks {
      display: block;
      margin: 0;
      padding: 0;
      position: absolute;
      top: 0;
      right: 10px;
      width: 104px; }
      footer .global_footer .sociallinks a, footer .global_footer .sociallinks a:link, footer .global_footer .sociallinks a:visited, .footer .global_footer .sociallinks a, .footer .global_footer .sociallinks a:link, .footer .global_footer .sociallinks a:visited {
        display: block;
        height: 20px;
        margin: 0 15px 0 0;
        padding: 0 0 0 30px;
        background: url(../images/toolbar_icons.png) no-repeat 0 0;
        float: left;
        text-indent: -50000px;
        width: 20px;
        padding: 0;
        margin: 0 8px 0 0; }
        footer .global_footer .sociallinks a.fblink, footer .global_footer .sociallinks a:link.fblink, footer .global_footer .sociallinks a:visited.fblink, .footer .global_footer .sociallinks a.fblink, .footer .global_footer .sociallinks a:link.fblink, .footer .global_footer .sociallinks a:visited.fblink {
          background-position: 0 0; }
          footer .global_footer .sociallinks a.fblink:hover, footer .global_footer .sociallinks a:link.fblink:hover, footer .global_footer .sociallinks a:visited.fblink:hover, .footer .global_footer .sociallinks a.fblink:hover, .footer .global_footer .sociallinks a:link.fblink:hover, .footer .global_footer .sociallinks a:visited.fblink:hover {
            background-position: 0 -20px; }
        footer .global_footer .sociallinks a.twlink, footer .global_footer .sociallinks a:link.twlink, footer .global_footer .sociallinks a:visited.twlink, .footer .global_footer .sociallinks a.twlink, .footer .global_footer .sociallinks a:link.twlink, .footer .global_footer .sociallinks a:visited.twlink {
          background-position: 0 -40px; }
          footer .global_footer .sociallinks a.twlink:hover, footer .global_footer .sociallinks a:link.twlink:hover, footer .global_footer .sociallinks a:visited.twlink:hover, .footer .global_footer .sociallinks a.twlink:hover, .footer .global_footer .sociallinks a:link.twlink:hover, .footer .global_footer .sociallinks a:visited.twlink:hover {
            background-position: 0 -60px; }
        footer .global_footer .sociallinks a.emaillink, footer .global_footer .sociallinks a:link.emaillink, footer .global_footer .sociallinks a:visited.emaillink, .footer .global_footer .sociallinks a.emaillink, .footer .global_footer .sociallinks a:link.emaillink, .footer .global_footer .sociallinks a:visited.emaillink {
          background-position: 0 -80px; }
          footer .global_footer .sociallinks a.emaillink:hover, footer .global_footer .sociallinks a:link.emaillink:hover, footer .global_footer .sociallinks a:visited.emaillink:hover, .footer .global_footer .sociallinks a.emaillink:hover, .footer .global_footer .sociallinks a:link.emaillink:hover, .footer .global_footer .sociallinks a:visited.emaillink:hover {
            background-position: 0 -100px; }
        footer .global_footer .sociallinks a.contactlink, footer .global_footer .sociallinks a:link.contactlink, footer .global_footer .sociallinks a:visited.contactlink, .footer .global_footer .sociallinks a.contactlink, .footer .global_footer .sociallinks a:link.contactlink, .footer .global_footer .sociallinks a:visited.contactlink {
          background-position: 0 -120px;
          margin: 0; }
          footer .global_footer .sociallinks a.contactlink:hover, footer .global_footer .sociallinks a:link.contactlink:hover, footer .global_footer .sociallinks a:visited.contactlink:hover, .footer .global_footer .sociallinks a.contactlink:hover, .footer .global_footer .sociallinks a:link.contactlink:hover, .footer .global_footer .sociallinks a:visited.contactlink:hover {
            background-position: 0 -140px; }
  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;
    float: left;
    margin-right: 15px;
    background: none;
    font-weight: bold; }
    footer .venueinfo ul, .footer .venueinfo ul {
      color: white;
      line-height: 120%;
      float: left;
      width: auto;
      margin: 0; }
      footer .venueinfo ul li, .footer .venueinfo ul li {
        font-size: 11px;
        padding: 0;
        line-height: 120%; }
    footer .venueinfo h4, .footer .venueinfo h4 {
      text-transform: uppercase;
      margin: 0 0 8px;
      padding: 0; }
    footer .venueinfo address, .footer .venueinfo address {
      font-size: 11px;
      color: white;
      line-height: 175%;
      margin: 0;
      float: left;
      font-weight: normal;
      font-style: normal; }
  footer .footerSelected, .footer .footerSelected {
    text-decoration: underline; }
  footer .delimiter, .footer .delimiter {
    color: #61829A;
    padding: 0 7px; }
  footer .nav, .footer .nav {
    float: right; }
    footer .nav ul, .footer .nav ul {
      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 {
        float: left;
        height: 22px;
        padding: 4px 12px;
        line-height: 100%; }
        footer .nav ul li:first-child, .footer .nav ul li:first-child {
          border-left: none; }
        footer .nav ul li a, .footer .nav ul li a {
          color: white;
          font-size: 11px;
          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: none; }
          footer .nav ul li a.active, footer .nav ul li a.active:hover, .footer .nav ul li a.active, .footer .nav ul li a.active:hover {
            color: black;
            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#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;
    position: absolute;
    top: 42px;
    right: 0px; }
    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; }

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

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

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

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

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

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

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

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

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

nav {
  position: relative;
  float: right;
  margin: 108px 0 0;
  padding: 0;
  width: 560px;
  height: 25px;
  z-index: 500; }
  nav ul {
    display: block;
    text-align: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: 560px;
    zoom: 1; }
    nav ul:before, nav ul:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    nav ul:after {
      clear: both; }
    .ie8 nav ul {
      width: 660px; }
    nav ul li {
      display: block;
      float: left;
      margin-right: 90px;
      text-align: right;
      font-size: 13px;
      height: 30px;
      position: relative; }
      nav ul li.page_7 {
        margin-right: 0px; }
      nav ul li:first-child, nav ul li.page_1 {
        display: none; }
      nav ul li:last-child {
        margin-right: 0px; }
  nav a, nav a:link, nav a:visited {
    display: block;
    text-decoration: none;
    color: #fff;
    text-align: left;
    font-size: 20px;
    margin: 0;
    font-family: "din-condensed-web";
    font-weight: 300; }
    nav a span, nav a:link span, nav a:visited span {
      font-size: 24px;
      color: #fff;
      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: #F6E7B9;
      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: #F6E7B9; }
  nav .hover a {
    color: #F6E7B9;
    text-decoration: none; }
    nav .hover a span {
      color: #F6E7B9; }

nav ul .sub {
  position: absolute;
  left: -55px;
  top: 30px;
  display: none;
  width: auto;
  padding: 0px;
  line-height: 26px;
  z-index: 9000;
  margin: 0;
  background: white; }
  nav ul .sub .sub_holder {
    padding: 5px 10px;
    position: relative;
    background: white;
    width: 155px; }

nav ul ul {
  float: left;
  background: none;
  width: 155px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 0;
  border: 1px solid #c8c8c8; }
  .ie8 nav ul ul {
    width: 155px; }
  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-bottom: 1px solid #c8c8c8; }
    nav ul ul li:first-child {
      display: block;
      border-top: none; }
    nav ul ul li a, nav ul ul li a:link, nav ul ul li a:visited {
      font-family: Verdana, Helvetica, Arial, sans-serif;
      display: block;
      margin: 0px;
      padding: 6px 0;
      text-decoration: none;
      height: auto;
      cursor: pointer;
      text-indent: 0;
      color: #445d7b;
      text-transform: none;
      background: none;
      text-align: left;
      line-height: 120%;
      font-size: 11px;
      text-shadow: none;
      text-align: center; }
      nav ul ul li a.active, nav ul ul li a:link.active, nav ul ul li a:visited.active {
        color: #000; }
      nav ul ul li a:hover, nav ul ul li a:focus, nav ul ul li a:link:hover, nav ul ul li a:link:focus, nav ul ul li a:visited:hover, nav ul ul li a:visited:focus {
        text-decoration: none;
        cursor: pointer;
        color: #222; }

.spotlight {
  overflow: hidden;
  margin: 30px 0 10px 15px; }

.spot_item {
  float: left;
  width: 30%;
  margin: 0 10px 30px 5px;
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 150px;
  border: 1px solid #dedede; }
  .spot_item .thumb {
    height: 150px;
    text-align: center;
    overflow: hidden; }
    .spot_item .thumb img {
      max-height: 150px; }
  .spot_item:hover h2 a {
    top: 80px; }
  .spot_item h2 {
    margin: 0;
    padding: 0;
    -moz-transition: all, 0.5s, ease-in-out;
    -o-transition: all, 0.5s, ease-in-out;
    -webkit-transition: all, 0.5s, ease-in-out;
    transition: all, 0.5s, ease-in-out; }
    .spot_item h2 a {
      display: block;
      position: absolute;
      top: 90px;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      text-align: center;
      color: #fff;
      padding: 5px 0 0 0;
      margin: 0;
      font-size: 19px;
      line-height: 24px;
      -moz-transition: all, 0.5s, ease-in-out;
      -o-transition: all, 0.5s, ease-in-out;
      -webkit-transition: all, 0.5s, ease-in-out;
      transition: all, 0.5s, ease-in-out; }

.testimonials_block {
  padding-right: 20px;
  margin-bottom: 20px; }
  .testimonials_block h1 {
    color: #445d7b;
    font-size: 30px;
    line-height: 100%;
    padding-bottom: 10px;
    font-family: "garamond-premier-pro-display",Georgia,serif;
    font-weight: 300;
    text-transform: none;
    text-align: right;
    padding-right: 0px !important;
    border-right: none !important; }
  .testimonials_block p {
    padding: 0px 0px 0 0;
    margin: 0 0 20px 0;
    font-style: italic;
    text-align: right;
    color: #666; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
.content {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content img[align=left], .content img[align=left].gh-image {
    float: left;
    margin: 0 15px 15px 0;
    padding: 6px; }
  .content img[align=right], .content img[align=right].gh-image {
    float: right;
    margin: 0 0 15px 15px;
    padding: 6px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content .image-left {
    clear: both;
    margin-bottom: 20px; }
    .content .image-left img {
      width: auto;
      height: auto;
      padding: 6px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both;
    margin-bottom: 20px; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px; }
    .content .image-right p {
      line-height: 140%; }
  .content .image-three {
    text-align: left;
    float: left;
    padding: 0;
    margin: 10px 0 10px 2%;
    max-width: 32%; }
    .ie8 .content .image-three {
      width: 30%; }
    .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; }
      .ie8 .content .image-three img, .ie8 .content .image-three img.image, .ie8 .content .image-three img.gh-image {
        width: 100% !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; }
    .content .overview p {
      padding: 5px 0 0px 0;
      margin: 0;
      line-height: 130%;
      color: black; }
    .content .overview a, .content .overview a:link, .content .overview a:visited {
      text-decoration: underline; }
      .content .overview a:hover, .content .overview a:focus, .content .overview a:link:hover, .content .overview a:link:focus, .content .overview a:visited:hover, .content .overview a:visited:focus {
        text-decoration: none; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #ddd; }
    .content .baseline p {
      padding: 0;
      margin: 0;
      color: black; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table .headerRow {
      background: #363638 !important;
      color: #ccc;
      font-size: 85%; }
      .content table .headerRow p {
        font-size: 95%;
        color: #ccc; }
      .content table .headerRow td {
        border: 1px solid #555;
        text-transform: capitalize; }
    .content table tr {
      font-size: 11px;
      color: #000; }
      .content table tr p {
        font-size: 11px; }
      .content table tr td {
        padding: 5px;
        border: none;
        border: 1px solid #ddd; }
    .content table tr:nth-child(even) {
      background-color: white; }
    .content table tr:nth-child(odd) {
      background-color: #f5f5f5; }

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

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

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0px;
  position: relative; }
  .link ul.list {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    font-size: 13px;
    border-top: 1px solid #ddd; }
    .link ul.list li {
      padding: 0px;
      margin: 0px;
      line-height: 35px;
      border-bottom: 1px solid #ddd; }
    .link ul.list a, .link ul.list a:link, .link ul.list a:visited {
      position: relative;
      display: block;
      padding: 0 0 0 38px;
      margin: 0 0 0 2px;
      text-decoration: none;
      text-transform: normal;
      color: #445d7b;
      font-size: 13px; }
      .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: #61829A;
        background-position: 0 -28px; }
      .link ul.list a:after, .link ul.list a:link:after, .link ul.list a:visited:after {
        display: block;
        content: " ";
        position: absolute;
        left: 10px;
        top: 7px;
        background: url("../images/link-icon-sprite.png") no-repeat -11px -8px;
        width: 22px;
        height: 19px; }
      .link ul.list a:hover:after, .link ul.list a:link:hover:after, .link ul.list a:visited:hover:after {
        background-position: -11px -183px; }
      .link ul.list a.external:hover:after, .link ul.list a:link.external:hover:after, .link ul.list a:visited.external:hover:after {
        background-position: -11px -183px; }
      .link ul.list a.image:hover:after, .link ul.list a:link.image:hover:after, .link ul.list a:visited.image:hover:after {
        background-position: -13px -234px; }
      .link ul.list a.pdf:hover:after, .link ul.list a:link.pdf:hover:after, .link ul.list a:visited.pdf:hover:after {
        background-position: -15px -275px; }
      .link ul.list a.email:hover:after, .link ul.list a:link.email:hover:after, .link ul.list a:visited.email:hover:after {
        background-position: -13px -323px; }
      .link ul.list a.external:after, .link ul.list a:link.external:after, .link ul.list a:visited.external:after {
        background: url("../images/link-icon-sprite.png") no-repeat -11px -8px;
        width: 22px;
        height: 22px; }
      .link ul.list a.image:after, .link ul.list a:link.image:after, .link ul.list a:visited.image:after {
        background: url("../images/link-icon-sprite.png") no-repeat -11px -57px;
        width: 20px;
        height: 14px;
        top: 11px; }
      .link ul.list a.pdf:after, .link ul.list a:link.pdf:after, .link ul.list a:visited.pdf:after {
        background: url("../images/link-icon-sprite.png") no-repeat -13px -98px;
        width: 14px;
        height: 19px;
        left: 13px; }
      .link ul.list a.email:after, .link ul.list a:link.email:after, .link ul.list a:visited.email:after {
        background: url("../images/link-icon-sprite.png") no-repeat -11px -146px;
        width: 19px;
        height: 13px;
        top: 11px;
        left: 12px; }
    .link ul.list p {
      padding: 0 0 8px 39px;
      margin: 0;
      font-style: italic; }
    .link ul.list .description {
      font-style: italic;
      font-size: 12px; }

/* ----------------------------------------------------------------------------
=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: 18px;
      font-weight: normal;
      line-height: 25px; }
      .sitemap ul li ul li {
        margin: 0;
        font-size: 12px; }
        .sitemap ul li ul li a, .sitemap ul li ul li a:link, .sitemap ul li ul li a:visited {
          color: #000;
          padding: 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: #445d7b;
            text-decoration: none; }
        .sitemap ul li ul li ul {
          display: none; }
  .sitemap a, .sitemap a:link, .sitemap a:visited {
    text-decoration: none;
    color: #445d7b;
    border-bottom: 1px solid #555;
    display: block; }
    .sitemap a:hover, .sitemap a:focus, .sitemap a:link:hover, .sitemap a:link:focus, .sitemap a:visited:hover, .sitemap a:visited:focus {
      color: #000; }

.buttons {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 22px; }
  .buttons a, .buttons a:link, .buttons a:visited {
    display: block;
    height: 22px;
    padding: 0;
    margin: 0 5px 0 0;
    position: relative;
    float: left; }
  .buttons span {
    display: block;
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    cursor: default; }

.column {
  padding: 0px;
  width: 200px;
  background: none;
  margin: 0 0 15px;
  position: relative; }
  .column .subnav {
    padding: 0 20px 0 0;
    margin: 0 0 20px 0;
    text-align: right; }
    .column .subnav ul {
      list-style: none;
      list-style-image: none;
      padding: 0px;
      margin: 0; }
      .column .subnav ul li {
        margin: 0;
        padding: 0; }
        .column .subnav ul li:first-child {
          background: none; }
        .column .subnav ul li:last-child {
          background: none; }
        .column .subnav ul li.active ul {
          display: block;
          list-style: none;
          list-style-image: none;
          list-style-type: none;
          padding: 2px 0 2px 12px;
          margin: 2px 0 2px 0;
          background: none;
          width: auto; }
        .column .subnav ul li.active a:active {
          color: #445d7b; }
        .column .subnav ul li a {
          text-decoration: none;
          color: #445d7b;
          font-size: 13px;
          padding: 0;
          line-height: 16px;
          display: block; }
          .column .subnav ul li a.active, .column .subnav ul li a:active {
            color: #61829A; }
          .column .subnav ul li a.active {
            position: relative; }
            .column .subnav ul li a.active:after {
              content: '';
              display: inline-block;
              position: absolute;
              right: -10px;
              bottom: 2px;
              width: 0;
              height: 0;
              border-top: 5px solid transparent;
              border-bottom: 5px solid transparent;
              border-left: 5px solid #61829A;
              margin: -10px 0 0 5px; }
          .column .subnav ul li a:hover {
            color: #61829A;
            text-decoration: underline; }
          .column .subnav ul li a.section {
            color: #445d7b;
            font-size: 30px;
            line-height: 100%;
            padding-bottom: 10px;
            font-family: "garamond-premier-pro-display", Georgia, serif;
            font-weight: 300;
            padding-right: 0px !important;
            border-right: none !important; }
            .ie8 .column .subnav ul li a.section {
              font-family: Georgia, serif; }
            .column .subnav ul li a.section:after {
              display: none; }
            .column .subnav ul li a.section:hover, .column .subnav ul li a.section.active:hover, .column .subnav ul li a.section:active {
              color: #445d7b; }
        .column .subnav ul li.active.onparent a.active {
          color: #445d7b; }
      .column .subnav ul ul {
        display: none; }
        .column .subnav ul ul li {
          border-bottom: none; }
          .column .subnav ul ul li a {
            font-size: 11px; }

/* ----------------------------------------------------------------------------
=branding
----------------------------------------------------------------------------- */
#branding {
  display: none;
  position: relative;
  width: 700px;
  height: 285px;
  position: relative;
  padding: 0;
  margin: 0 0 20px 0; }
  #branding.active {
    display: block; }

.home #branding {
  width: 980px;
  height: 400px;
  display: block;
  margin: 0; }

.branding_holder {
  width: 700px;
  height: 285px; }
  .branding_holder.spotlight_image img {
    width: 700px;
    height: 285px;
    margin: 2px; }

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow {
  position: relative;
  border: none;
  width: 700px;
  height: 285px;
  background: black; }
  .slideshow:hover .controls, .slideshow:focus .controls {
    display: block; }
  .slideshow .controls {
    display: none;
    position: absolute;
    width: 700px;
    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: 48px;
        width: 35px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px; }
        .slideshow .controls .nav-controls a:hover, .slideshow .controls .nav-controls a:focus, .slideshow .controls .nav-controls a:link:hover, .slideshow .controls .nav-controls a:link:focus, .slideshow .controls .nav-controls a:visited:hover, .slideshow .controls .nav-controls a:visited:focus {
          text-decoration: none; }
        .slideshow .controls .nav-controls a.prev, .slideshow .controls .nav-controls a:link.prev, .slideshow .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 110px;
          background: url(../images/content_slideshow_controls.png) no-repeat 0 0; }
          .slideshow .controls .nav-controls a.prev:hover, .slideshow .controls .nav-controls a:link.prev:hover, .slideshow .controls .nav-controls a:visited.prev:hover {
            background-position: -49px 0; }
        .slideshow .controls .nav-controls a.next, .slideshow .controls .nav-controls a:link.next, .slideshow .controls .nav-controls a:visited.next {
          right: 8px;
          top: 110px;
          background: url(../images/content_slideshow_controls.png) no-repeat top right; }
          .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: -112px 0; }
  .slideshow .slide {
    width: 100%;
    height: 285px;
    overflow: hidden; }
    .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow .slide img {
      width: 700px;
      height: auto; }
    .slideshow .slide span {
      display: block;
      width: 700px;
      height: 285px; }
  .slideshow .caption_holder {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 700px;
    height: 35px; }
    .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: white;
      padding: 9px 11px 9px 10px;
      text-shadow: none;
      background: #363636;
      background: rgba(54, 54, 56, 0.5); }
    .slideshow .caption_holder .caption p:empty {
      display: none; }
    .slideshow .caption_holder .caption a {
      color: black;
      text-decoration: none;
      font-size: 13px;
      line-height: 120%; }
      .slideshow .caption_holder .caption a:hover, .slideshow .caption_holder .caption a:visited {
        text-decoration: none; }
    .slideshow .caption_holder .caption .date {
      display: none; }
    .slideshow .caption_holder .caption .buttons {
      display: none; }
  .slideshow .thumbs_holder {
    display: none;
    position: absolute;
    top: 340px;
    left: 0px; }
    .slideshow .thumbs_holder .thumbs {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0; }
      .slideshow .thumbs_holder .thumbs li {
        float: left;
        width: 80px;
        height: 43px;
        margin: 0 10px 0 0;
        opacity: 0.5;
        padding: 0;
        position: relative; }
        .slideshow .thumbs_holder .thumbs li.selected, .slideshow .thumbs_holder .thumbs li:hover, .slideshow .thumbs_holder .thumbs li:focus {
          opacity: 1; }
          .slideshow .thumbs_holder .thumbs li.selected .caption, .slideshow .thumbs_holder .thumbs li:hover .caption, .slideshow .thumbs_holder .thumbs li:focus .caption {
            display: block;
            opacity: 1; }
            .slideshow .thumbs_holder .thumbs li.selected .caption a, .slideshow .thumbs_holder .thumbs li:hover .caption a, .slideshow .thumbs_holder .thumbs li:focus .caption a {
              display: none; }
      .slideshow .thumbs_holder .thumbs a.thumb {
        display: block;
        width: 80px;
        height: 43px;
        float: left;
        z-index: 10; }
        .slideshow .thumbs_holder .thumbs a.thumb img {
          width: 80px;
          height: 43px; }
        .slideshow .thumbs_holder .thumbs a.thumb span.overlay {
          display: block;
          width: 80px;
          height: 43px;
          background: url(../images/thumb_image_icon.png) no-repeat 0 0;
          position: absolute;
          top: 0px;
          left: 0px; }
      .slideshow .thumbs_holder .thumbs a.thumb_video span.overlay {
        background: url(../images/thumb_video_icon.png) no-repeat 0 0; }
      .slideshow .thumbs_holder .thumbs .caption {
        display: none;
        background: url(../images/thumb_caption_bg.png) no-repeat 0 0;
        width: 214px;
        height: 46px;
        position: absolute;
        top: -35px;
        left: -60px;
        padding: 5px 10px;
        z-index: 20; }
        .slideshow .thumbs_holder .thumbs .caption p {
          color: black;
          font-size: 12px;
          height: 30px;
          overflow: hidden; }
  .slideshow .video {
    width: 700px;
    height: 285px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .video #video_player, .slideshow .video #video_holder {
      display: block;
      width: 700px;
      height: 285px; }
  .slideshow .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .imglink a {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow.home {
  position: relative;
  border: none;
  width: 980px;
  height: 400px; }
  .slideshow.home:hover .controls, .slideshow.home:focus .controls {
    display: block; }
  .slideshow.home .controls {
    display: none;
    position: absolute;
    width: 980px;
    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: 48px;
        width: 35px;
        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: 170px;
          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: -49px 0; }
        .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: 170px;
          background: url(../images/content_slideshow_controls.png) no-repeat top right; }
          .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: -112px 0; }
  .slideshow.home .slide {
    width: 100%;
    height: 400px;
    overflow: hidden; }
    .slideshow.home .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
    .slideshow.home .slide span {
      display: block;
      width: 980px;
      height: 285px; }
    .slideshow.home .slide img {
      width: 980px;
      height: auto; }
  .slideshow.home .caption_holder {
    display: none;
    position: absolute;
    bottom: 0px;
    overflow: hidden;
    left: 0;
    width: 980px;
    height: 72px;
    z-index: 2; }
    .slideshow.home .caption_holder span {
      display: inline-block;
      width: auto;
      height: 35px; }
      .slideshow.home .caption_holder span.y {
        display: none; }
    .slideshow.home .caption_holder .image-caption .caption a {
      display: block; }
    .slideshow.home .caption_holder .image-caption .caption .thumb {
      display: none; }
    .slideshow.home .caption_holder .caption p {
      width: 940px;
      height: 59px;
      display: block;
      margin: 0;
      color: white;
      padding: 13px 20px 0px 20px;
      font-size: 16px;
      text-shadow: none;
      background: rgba(54, 54, 56, 0.7); }
    .slideshow.home .caption_holder .caption p:empty {
      display: none; }
    .slideshow.home .caption_holder .caption a {
      color: #F6E7B9;
      text-decoration: none;
      line-height: 120%; }
      .slideshow.home .caption_holder .caption a:hover, .slideshow.home .caption_holder .caption a:visited {
        text-decoration: underline; }
    .slideshow.home .caption_holder .caption .date {
      color: white;
      position: absolute;
      display: inline-block;
      top: 40px;
      left: 21px; }
    .slideshow.home .caption_holder .caption .buttons {
      display: block;
      left: 100px;
      top: 41px; }
      .slideshow.home .caption_holder .caption .buttons span {
        display: block;
        float: left;
        top: -1px;
        color: white;
        margin-right: 5px; }
  .slideshow.home .thumbs_holder {
    display: none;
    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: 980px;
    height: 400px;
    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: 980px;
      height: 400px; }
  .slideshow.home .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow.home .imglink a {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

.video-gallery-1 #column_1 {
  z-index: 30; }

.video_lightbox {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 200;
  display: none; }
  .video_lightbox .close {
    position: absolute;
    top: 210px;
    left: 50%;
    margin-left: -350px;
    width: 700px;
    z-index: 100;
    text-align: right; }
    .video_lightbox .close img {
      float: right;
      cursor: pointer; }
  .video_lightbox .slideshow {
    position: relative;
    border: none;
    width: 700px;
    height: 285px;
    background: black;
    border: 10px solid white;
    border-top: 40px solid white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    z-index: 50;
    margin: 200px auto; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  margin: 0;
  width: 100%;
  clear: both;
  padding: 0; }
  .event_list .event_list_border {
    position: relative;
    width: 618px;
    height: 4px;
    margin: 1px auto; }
  .event_list .list {
    position: relative; }
    .event_list .list .entry {
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 90;
      border-top: 1px solid #ddd; }
      .event_list .list .entry .info {
        margin: 0 auto;
        padding: 15px 10px 1px;
        cursor: pointer;
        position: relative;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        .event_list .list .entry .info h3 {
          font-family: Verdana, Helvetica, Arial, sans-serif;
          font-size: 16px;
          margin-bottom: 0;
          float: left;
          width: 600px;
          color: #445d7b;
          line-height: 120%; }
          .event_list .list .entry .info h3:hover {
            color: #61829A; }
        .event_list .list .entry .info .date {
          display: block;
          font-size: 13px;
          line-height: 171%;
          width: 120px;
          color: #61829A; }
          .event_list .list .entry .info .date span {
            color: #61829A; }
          .event_list .list .entry .info .date .y {
            display: none; }
        .event_list .list .entry .info.active a.event_more_flag {
          display: block; }
      .event_list .list .entry .details {
        height: auto;
        float: left;
        position: relative;
        padding: 0 0 0 20px;
        width: 450px;
        zoom: 1; }
        .event_list .list .entry .details:before, .event_list .list .entry .details:after {
          content: "\0020";
          display: block;
          height: 0;
          visibility: hidden; }
        .event_list .list .entry .details:after {
          clear: both; }
      .event_list .list .entry .thumb {
        width: 115px;
        float: left;
        left: 0;
        top: 10px;
        border: none; }
        .event_list .list .entry .thumb a {
          display: block;
          width: 115px;
          height: 63px;
          border: 1px solid #ddd;
          text-decoration: none;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .list .entry .thumb a:hover, .event_list .list .entry .thumb a:focus {
            border: 1px solid #61829A; }
        .event_list .list .entry .thumb img {
          width: 115px;
          height: 63px;
          border: none;
          outline: none; }
      .event_list .list .entry h4 {
        font-family: Verdana, Helvetica, Arial, sans-serif;
        width: 460px;
        font-size: 13px;
        text-transform: none;
        padding: 0 0 0px;
        font-weight: normal;
        color: #4A9498;
        font-size: normal;
        line-height: 170%; }
      .event_list .list .entry p {
        width: 460px;
        margin: 0 0 5px 130px;
        font-size: 13px;
        line-height: 135%;
        padding-bottom: 8px;
        color: #000; }
        .event_list .list .entry p:first-child {
          padding: 10px 0 0px; }
        .event_list .list .entry p a, .event_list .list .entry p a:link, .event_list .list .entry p a:visited {
          color: #445d7b;
          text-decoration: none;
          -webkit-transition: all 100ms linear;
          -moz-transition: all 100ms linear;
          -o-transition: all 100ms linear;
          transition: all 100ms linear; }
          .event_list .list .entry p a:hover, .event_list .list .entry p a:focus, .event_list .list .entry p a:link:hover, .event_list .list .entry p a:link:focus, .event_list .list .entry p a:visited:hover, .event_list .list .entry p a:visited:focus {
            color: #61829A;
            text-decoration: underline; }
      .event_list .list .entry .event_details_listing {
        width: 460px;
        margin: 0 0 0 130px;
        padding: 0; }
        .event_list .list .entry .event_details_listing ul {
          margin: 0;
          padding: 0;
          list-style: none;
          list-style-image: none; }
          .event_list .list .entry .event_details_listing ul li {
            padding: 0;
            font-size: 13px; }
            .event_list .list .entry .event_details_listing ul li label {
              display: inline;
              width: auto;
              font-weight: normal;
              padding: 0;
              color: #4A9498;
              line-height: 170%; }
            .event_list .list .entry .event_details_listing ul li p {
              display: inline;
              width: auto;
              text-align: left;
              font-weight: normal;
              margin: 0;
              padding: 0 0 0 4px;
              line-height: 170%;
              color: #666; }
              .event_list .list .entry .event_details_listing ul li p a, .event_list .list .entry .event_details_listing ul li p a:visited, .event_list .list .entry .event_details_listing ul li p a:active {
                color: #445d7b;
                text-decoration: none; }
                .event_list .list .entry .event_details_listing ul li p a:hover, .event_list .list .entry .event_details_listing ul li p a:focus, .event_list .list .entry .event_details_listing ul li p a:visited:hover, .event_list .list .entry .event_details_listing ul li p a:visited:focus, .event_list .list .entry .event_details_listing ul li p a:active:hover, .event_list .list .entry .event_details_listing ul li p a:active:focus {
                  text-decoration: underline; }
      .event_list .list .entry a.event_more_flag {
        display: block;
        top: 80px;
        width: 115px;
        height: 25px;
        margin: 18px 0 0 0px;
        position: relative;
        background: #363638;
        color: white;
        font-size: 11px;
        text-align: center;
        text-decoration: none;
        line-height: 25px;
        text-indent: 0px; }
        .event_list .list .entry a.event_more_flag:hover, .event_list .list .entry a.event_more_flag:focus {
          text-decoration: none;
          background: #445d7b; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail .detail_header {
  margin: 5px 0 10px;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #ddd; }
  .event_detail .detail_header h1 {
    margin: 0;
    padding: 0 0 5px; }
  .event_detail .detail_header h2 {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #61829A;
    margin-left: 4px; }
.event_detail .thumb_description {
  display: inline-block;
  margin: 10px 5px;
  width: 690px; }
  .event_detail .thumb_description p {
    text-align: left;
    line-height: 140%; }
  .event_detail .thumb_description img {
    width: 365px;
    height: 200px; }
  .event_detail .thumb_description .thumb_ticket {
    float: right;
    margin-left: 20px; }
.event_detail .details {
  margin: 5px 20px 15px 20px;
  position: relative;
  padding: 0 0 10px;
  text-align: right; }
  .event_detail .details h2 {
    color: #445d7b;
    padding: 0;
    margin: 0; }
  .event_detail .details ul {
    list-style: none;
    list-style-image: none;
    padding: 0;
    margin: 0 0 5px; }
    .event_detail .details ul li {
      margin: 0;
      padding: 10px 0 10px 0;
      font-size: 12px;
      color: black;
      border-bottom: 1px solid #ddd; }
      .event_detail .details ul li label {
        cursor: default;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        color: #445d7b;
        line-height: 100%;
        padding: 0 0 0px 0;
        margin: 0 0 5px;
        display: block;
        clear: both; }
      .event_detail .details ul li.date {
        border-top: none; }
      .event_detail .details ul li.availability {
        border-bottom: none; }
      .event_detail .details ul li .buttons {
        position: relative;
        top: 0;
        left: 0; }
        .event_detail .details ul li .buttons a {
          float: right;
          width: auto;
          height: auto;
          text-indent: 0px; }
  .event_detail .details .ticket {
    width: 165px;
    height: 40px;
    padding: 0;
    margin: 0 auto 10px; }
    .event_detail .details .ticket span, .event_detail .details .ticket a, .event_detail .details .ticket a:link, .event_detail .details .ticket a:visited {
      color: red;
      font-size: 22px;
      display: block;
      width: 115px;
      height: 40px;
      text-align: left;
      text-decoration: none;
      line-height: 44px;
      padding: 0 0 0 50px;
      position: relative;
      font-weight: 400; }
      .event_detail .details .ticket span:hover, .event_detail .details .ticket a:hover, .event_detail .details .ticket a:link:hover, .event_detail .details .ticket a:visited:hover {
        text-decoration: underline; }
.event_detail .event_body {
  padding: 0 10px; }
.event_detail .showings {
  margin: 0 0 20px;
  float: left; }
  .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 #ddd;
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      border-bottom: 1px solid #ddd;
      padding: 8px 0 6px;
      margin: 0 20px 0 0;
      color: black;
      font-size: 12px;
      position: relative;
      line-height: 24px;
      width: 285px;
      float: left; }
      .event_detail .showings ul li.entry.alt {
        margin-right: 0; }
      .event_detail .showings ul li span.date {
        line-height: 24px; }
      .event_detail .showings ul li span.time {
        color: black;
        position: absolute;
        right: 29px; }
      .event_detail .showings ul li .buttons {
        float: right;
        margin: 0; }
      .event_detail .showings ul li a.ical {
        text-indent: -5000px;
        display: inline-block;
        width: 20px;
        float: right;
        height: 23px;
        background: url(../images/ical.png) no-repeat 0 0;
        padding: 0;
        margin: 0; }
        .event_detail .showings ul li a.ical:hover {
          opacity: 0.8; }
.event_detail a.print {
  display: block;
  height: 22px;
  background: url(../images/icons.png) no-repeat 0 -44px;
  padding: 0 0 0 26px;
  margin: 0 20px 0 0;
  line-height: 22px;
  text-decoration: none;
  float: left;
  color: black;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase; }
  .event_detail a.print:hover {
    background-position: 0 -66px; }
.event_detail .share_bar {
  padding: 15px 0;
  margin: 0 0 15px;
  float: left;
  width: 400px; }
.event_detail .dsq-global-toolbar-dropdown-container {
  display: none !important; }
.event_detail .group_sales {
  padding: 0;
  margin: 0 0 15px 0;
  float: left;
  width: 530px; }
  .event_detail .group_sales h3 {
    text-align: left;
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black; }
.event_detail .details li.addthis {
  border-bottom: none; }
.event_detail .addthis_toolbox {
  margin-left: 80px; }

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

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

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

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

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.news_list {
  position: relative; }
  .news_list .content .overview {
    border: none;
    margin: 0; }
  .news_list a.entry_link {
    display: block;
    width: 100px;
    height: 100%; }
  .news_list .entry {
    border-top: 1px solid #ddd;
    padding: 15px 10px;
    position: relative; }
    .news_list .entry .date {
      display: block;
      float: left;
      font-size: 13px;
      line-height: 171%;
      width: 120px;
      color: #61829A; }
      .news_list .entry .date span {
        color: #61829A; }
      .news_list .entry .date .y {
        display: none; }
    .news_list .entry .info h3 {
      font-family: Verdana, Helvetica, Arial, sans-serif;
      font-size: 16px;
      margin-bottom: 5px;
      float: left;
      width: 535px;
      color: #445d7b;
      line-height: 120%; }
      .news_list .entry .info h3 a:hover {
        color: #61829A; }
    .news_list .entry .info h4 {
      width: 535px;
      margin: 0 0 5px 120px;
      font-size: 13px;
      font-family: Verdana, Helvetica, Arial, sans-serif;
      color: #61829A;
      text-transform: none; }
    .news_list .entry .info p {
      width: 535px;
      margin: 0 0 5px 120px;
      font-size: 13px;
      line-height: 135%;
      padding-bottom: 8px;
      color: #000; }
    .news_list .entry a.more, .news_list .entry a.more:link, .news_list .entry a.more:visited {
      clear: both;
      display: block;
      width: 90px;
      height: 25px;
      margin: 0px 0 0 120px;
      position: relative;
      background: #363638;
      color: white;
      font-size: 11px;
      text-align: center;
      text-decoration: none;
      line-height: 25px;
      text-indent: 0px; }
      .news_list .entry a.more:hover, .news_list .entry a.more:focus, .news_list .entry a.more:link:hover, .news_list .entry a.more:link:focus, .news_list .entry a.more:visited:hover, .news_list .entry a.more:visited:focus {
        text-decoration: none;
        background: #445d7b; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail .overview {
    width: 100%;
    border: none; }
    .news_detail .overview span.date {
      color: #61829A;
      margin: 0 0 0 1px; }
    .news_detail .overview h1 {
      margin-top: 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 {
    float: left; }
  .news_detail .share_bar {
    border-top: 1px solid black;
    padding: 15px 0 0; }
    .news_detail .share_bar .addthis_toolbox {
      float: left;
      width: 305px; }
    .news_detail .share_bar a.print {
      float: left;
      display: block;
      height: 22px;
      background: url(../images/icons.png) no-repeat 0 -44px;
      padding: 0 0 0 26px;
      margin: 0 20px 0 0;
      line-height: 22px;
      text-decoration: none;
      float: left;
      color: #222;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase; }
      .news_detail .share_bar a.print:hover {
        background-position: 0 -66px; }
    .news_detail .share_bar a.full_list, .news_detail .share_bar a.full_list:link, .news_detail .share_bar a.full_list:visited {
      float: left;
      display: block;
      padding: 0 0 0 26px;
      text-decoration: none;
      border: none;
      color: #222;
      margin: 0 15px 0 0;
      line-height: 22px;
      font-weight: 700;
      font-size: 11px;
      height: 22px;
      text-transform: uppercase;
      background: url(../images/icons.png) no-repeat 0 -220px; }
      .news_detail .share_bar a.full_list:hover, .news_detail .share_bar a.full_list:link:hover, .news_detail .share_bar a.full_list:visited:hover {
        background-position: 0 -242px; }
  .news_detail .event_list {
    margin: 0 0 15px; }
    .news_detail .event_list .list {
      padding: 0; }
    .news_detail .event_list .entry {
      padding-bottom: 15px;
      border-bottom: 1px solid #ddd; }

/* @group FAQ */
.faq {
  margin: 0 0 20px;
  padding: 0;
  position: relative; }
  .faq dl {
    border-bottom: 1px solid #ddd;
    font-size: 11px; }
  .faq dt {
    position: relative;
    cursor: pointer;
    padding: 10px 0 10px 40px;
    margin: 0;
    border-top: 1px solid #ddd;
    overflow: auto;
    background: none; }
    .faq dt:after {
      content: '';
      display: block;
      position: absolute;
      top: 12px;
      left: 15px;
      width: 17px;
      height: 17px;
      background: url(../images/link-icon-sprite.png) no-repeat -14px -352px; }
    .faq dt:hover p {
      color: #61829A; }
    .faq dt:hover:after {
      background: url(../images/link-icon-sprite.png) no-repeat -14px -378px; }
    .faq dt p {
      font-size: 13px;
      text-transform: none;
      color: #445d7b;
      padding: 0;
      margin: 0; }
    .faq dt.active p {
      color: #61829A; }
    .faq dt.active:after {
      background: url(../images/link-icon-sprite.png) no-repeat -14px -378px; }
  .faq dd {
    height: 0px;
    overflow: hidden;
    padding: 0 40px 10px; }
    .faq dd p {
      font-size: 13px;
      color: #222; }
  .faq ul {
    margin: 0 0 16px 25px;
    padding: 0 15px;
    list-style-position: outside;
    list-style-type: square; }
    .faq ul ul {
      padding-top: 5px;
      margin-bottom: 0;
      border: none; }
    .faq ul li {
      padding: 0 0 8px;
      font-size: 13px;
      font-style: normal;
      line-height: 140%; }
      .faq ul li li {
        border-bottom: none; }

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

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

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

.calendar .full_column {
  height: 800px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.MonthlyCalendar .MonthNavPrev {
  left: 12px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#calendar .tooltip label {
  display: none; }

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

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

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

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

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

#calendar .tooltip .content .calendar_detail {
  height: 200px;
  overflow: hidden;
  padding: 10px 0;
  position: relative; }
  #calendar .tooltip .content .calendar_detail:nth-child(2) {
    border-top: 1px solid #011930; }
  #calendar .tooltip .content .calendar_detail .buttons {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 22px; }
    #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;
      height: 22px;
      padding: 0;
      margin: 0 5px 0 0;
      position: relative;
      float: left; }
    #calendar .tooltip .content .calendar_detail .buttons span {
      display: block;
      width: 22px;
      height: 22px;
      padding: 0;
      margin: 0;
      position: relative;
      float: left;
      cursor: default; }
  #calendar .tooltip .content .calendar_detail .buttons {
    top: auto;
    bottom: 15px;
    width: auto; }

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

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

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

/* @group Default Banner */
.banner {
  width: 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%; }

.promo_message {
  padding: 10px 0 10px; }
  .promo_message .banner {
    width: 980px;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative; }
    .promo_message .banner .slideshow {
      width: 980px;
      height: auto;
      background: none;
      margin: 0;
      padding: 0; }
      .promo_message .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; }
      .promo_message .banner .slideshow:hover .slide:before {
        display: block; }
      .promo_message .banner .slideshow .slide {
        width: 980px;
        height: auto;
        background: none;
        margin: 0;
        padding: 0; }
        .promo_message .banner .slideshow .slide img {
          padding: 0;
          border: none;
          background: none;
          width: 980px;
          height: auto;
          top: 0;
          left: 0; }
        .promo_message .banner .slideshow .slide span {
          width: 980px;
          height: auto; }
      .promo_message .banner .slideshow a {
        display: block;
        width: 100%;
        height: 100%; }
      .promo_message .banner .slideshow .imglink {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer; }
        .promo_message .banner .slideshow .imglink a {
          position: relative;
          background: url(../images/blank.png) 0 0 repeat;
          display: block;
          width: 100%;
          height: 100%; }

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

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

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

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

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

#map_canvas {
  width: 674px;
  height: 326px;
  color: #222;
  font-size: 11px;
  margin: 0 0 20px;
  border: 2px solid #CCC;
  background: #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }
  #map_canvas .map_form {
    color: #222;
    font-size: 11px; }
    #map_canvas .map_form label {
      width: auto;
      font-style: italic;
      font-weight: normal;
      font-size: 10px;
      padding-top: 5px;
      color: #222;
      margin: 0 0 4px; }
    #map_canvas .map_form input {
      border: 1px solid #ccc;
      height: 14px;
      line-height: 14px;
      padding: 3px;
      float: left;
      color: #222; }
    #map_canvas .map_form .submit {
      height: 22px;
      line-height: 14px;
      padding: 3px;
      color: #222; }

#fb_connect_status {
  display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#fb_window_content .warning {
  background: #FFEBE8; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0 10px; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      width: 520px;
      position: relative;
      border-bottom: 1px solid #AAA; }
      .concierge_listing .list .entry .thumb {
        width: 110px;
        height: 85px;
        margin: 0 20px 5px 0;
        padding: 5px;
        float: left;
        border: 1px solid #AAA; }
        .concierge_listing .list .entry .thumb a {
          display: block;
          width: 110px;
          height: 85px; }
        .concierge_listing .list .entry .thumb img {
          width: 110px;
          height: 85px; }
    .concierge_listing .list .info {
      float: left;
      width: 370px;
      margin: 0; }
      .concierge_listing .list .info h3 a {
        color: red;
        text-decoration: none; }
        .concierge_listing .list .info h3 a:hover {
          color: #222; }
      .concierge_listing .list .info address {
        color: black;
        font-size: 12px;
        font-style: italic;
        line-height: 130%;
        padding: 0; }
  .concierge_listing .booking {
    width: auto;
    position: relative; }
    .concierge_listing .booking a, .concierge_listing .booking a:link, .concierge_listing .booking a:visited {
      display: block;
      float: left;
      line-height: 25px;
      padding: 0 5px;
      text-decoration: none;
      text-align: center;
      color: #fff;
      background: black;
      border: 1px solid black;
      width: auto;
      font-size: 12px;
      height: auto;
      margin: 0;
      height: 25px;
      text-transform: uppercase; }
      .concierge_listing .booking a:hover, .concierge_listing .booking a:link:hover, .concierge_listing .booking a:visited:hover {
        background: #333;
        border: 1px solid #333; }

/**
 * 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 {
  float: left;
  width: 30%;
  margin: 0 10px 30px 5px;
  padding: 0;
  position: relative; }
  .photo_gallery > a {
    text-decoration: none; }
  .photo_gallery .set {
    overflow: hidden; }
    .photo_gallery .set a {
      text-decoration: none; }
    .photo_gallery .set .thumb {
      height: 125px;
      text-align: center;
      overflow: hidden; }
      .photo_gallery .set .thumb img {
        width: 100%; }
    .photo_gallery .set .view-gallery {
      background: #445d7b;
      margin: 5px 0;
      color: #fff;
      text-align: center;
      font-size: 11px;
      padding: 5px 0 8px;
      text-decoration: none !important; }
      .photo_gallery .set .view-gallery span.arrows {
        font-size: 14px; }
      .photo_gallery .set .view-gallery:hover {
        background: #61829A; }
    .photo_gallery .set .photo-name {
      cursor: pointer;
      display: block;
      text-align: center;
      text-decoration: none !important;
      float: none;
      width: 100%;
      height: 28px;
      margin: 0 0 5px 0;
      font-size: 12px;
      font-family: Verdana, Helvetica, Arial, sans-serif;
      color: #333;
      overflow: hidden; }
    .photo_gallery .set p {
      height: 1.5em;
      width: 100%;
      text-align: left;
      overflow: hidden;
      margin: 0;
      color: #000;
      font-size: 12px;
      line-height: 125%; }
  .photo_gallery a:hover {
    text-decoration: none; }
  .photo_gallery:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9; }

/* @end */
/* Typekit inactive and loading style fallbacks */
.home_spot_container {
  width: 100%;
  position: relative;
  height: 100px;
  margin-top: 30px; }
  .home_spot_container .home_links {
    position: relative;
    text-align: left;
    left: -50%;
    float: right; }
  .home_spot_container .home_links ul {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
    left: 50%; }
    .home_spot_container .home_links ul li {
      position: relative;
      float: left;
      display: inline-block;
      max-width: 165px;
      height: 60px;
      margin-right: 25px;
      font-family: "garamond-premier-pro-display", Georgia, serif;
      font-size: 22px;
      line-height: 120%;
      text-align: center;
      vertical-align: midldle;
      text-transform: uppercase; }
      .ie8 .home_spot_container .home_links ul li {
        font-family: Georgia, serif; }
      .home_spot_container .home_links ul li.wideMargin {
        margin-right: 100px; }
      .home_spot_container .home_links ul li.noMargin {
        margin-right: 0px; }
      .home_spot_container .home_links ul li a {
        display: table-cell;
        color: #373737;
        vertical-align: middle;
        text-decoration: none;
        height: 60px; }
        .home_spot_container .home_links ul li a:hover {
          color: #61829A; }

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