@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 */
/* Dividers and Element Colors */
/* Base Backgrounds */
/* Event Item Size Variables */
.sprites-sprite, .sprites-book, .sprites-dot, .sprites-email, .sprites-fb, .sprites-file, .sprites-floinslider, .sprites-image, .sprites-outbound, .sprites-outbound_h, .sprites-post, .sprites-search, .sprites-triangle-bottom, .sprites-triangle-right, .sprites-twitter, .content .main-content .bottom-content ul.list1 li:before, .content .main-content .bottom-content ul.link-list a.outbound-link:before, .content .main-content .bottom-content ul.link-list a.image-link:before, .content .main-content .bottom-content ul.link-list a.file-link:before, .content .main-content .bottom-content ul.link-list a.email-link:before, .content .main-content .bottom-content ul.link-list a.outbound-link:hover:before, .content .main-content .bottom-content ul.link-list a.image-link:hover:before, .content .main-content .bottom-content ul.link-list a.file-link:hover:before, .content .main-content .bottom-content ul.link-list a.email-link:hover:before, .content .main-content .bottom-content .faq ul li:after, .content .main-content .bottom-content .faq ul li:hover:after, .content .main-content .bottom-content .faq ul li.selected:after {
  background: url(../images/sprites-s0caee4d0c7.png) no-repeat; }

.sprites-book {
  background-position: 0 -77px;
  height: 49px;
  width: 56px; }

.sprites-dot {
  background-position: 0 -741px;
  height: 10px;
  width: 10px; }

.sprites-email {
  background-position: 0 -171px;
  height: 30px;
  width: 31px; }

.sprites-fb {
  background-position: 0 -136px;
  height: 25px;
  width: 26px; }

.sprites-fb:hover, .sprites-fb.fb_hover, .sprites-fb.fb-hover {
  background-position: 0 -485px; }

.sprites-file {
  background-position: 0 -251px;
  height: 30px;
  width: 31px; }

.sprites-floinslider {
  background-position: 0 0;
  height: 27px;
  width: 121px; }

.sprites-image {
  background-position: 0 -291px;
  height: 30px;
  width: 31px; }

.sprites-outbound {
  background-position: 0 -37px;
  height: 30px;
  width: 31px; }

.sprites-outbound_h {
  background-position: 0 -520px;
  height: 30px;
  width: 31px; }

.sprites-post {
  background-position: 0 -560px;
  height: 24px;
  width: 25px; }

.sprites-search {
  background-position: 0 -658px;
  height: 18px;
  width: 19px; }

.sprites-triangle-bottom {
  background-position: 0 -716px;
  height: 15px;
  width: 16px; }

.sprites-triangle-right {
  background-position: 0 -686px;
  height: 20px;
  width: 20px; }

.sprites-twitter {
  background-position: 0 -371px;
  height: 24px;
  width: 25px; }

.sprites-twitter:hover, .sprites-twitter.twitter_hover, .sprites-twitter.twitter-hover {
  background-position: 0 -594px; }

h1 {
  margin: 0 0 8px;
  padding: 0;
  font: 500 24px/100% "museo-sans";
  letter-spacing: 0.5px; }
  h1 a,
  h1 a:link,
  h1 a:visited {
    text-decoration: none; }

h2 {
  margin: 0 0 8px;
  padding: 0;
  font: 500 18px/130% "museo-sans"; }
  h2 a,
  h2 a:link,
  h2 a:visited {
    text-decoration: none; }

h3 {
  margin: 0 0 8px;
  padding: 0;
  font: 500 16px/130% "museo-sans"; }
  h3 a,
  h3 a:link,
  h3 a:visited {
    text-decoration: none; }

h4 {
  margin: 0 0 4px;
  padding: 0;
  font: 700 14px/150% "museo-sans"; }
  h4 a,
  h4 a:link,
  h4 a:visited {
    text-decoration: none; }

h5 {
  margin: 0 0 2px;
  padding: 0;
  font: 500 12px/140% "museo-sans"; }
  h5 a,
  h5 a:link,
  h5 a:visited {
    text-decoration: none; }

h6 {
  margin: 0 0 2px;
  padding: 0;
  font: bold 11px/140% "museo-sans"; }

p, address {
  margin: 0 0 12px;
  padding: 0;
  font: 500 13px/150% "museo-sans";
  color: #4C4C4C; }

b, strong {
  font-weight: bold; }

ul, ol {
  margin: 0 0 0 5px;
  padding: 5px 0 12px 10px;
  font: 14px/140% "museo-sans";
  color: #4C4C4C;
  list-style-type: disc;
  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-type: decimal; }

a,
a:link,
a:visited {
  border: none;
  color: #003872;
  text-decoration: none;
  outline: none; }
  a:hover, a:focus,
  a:link:hover,
  a:link:focus,
  a:visited:hover,
  a:visited:focus {
    color: #0155AF; }

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

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

blockquote {
  position: relative;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  font-weight: 300;
  font-style: italic;
  padding: 0 28px 0 0;
  margin: 41px 0 32px 37px;
  z-index: 2; }
  blockquote p {
    font-family: "museo-sans", sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    font-weight: 300;
    margin: 0; }
  blockquote:before {
    content: '';
    position: absolute;
    top: -21px;
    left: -5px;
    background: url(../images/blockquote.png) 0 0 no-repeat;
    width: 48px;
    height: 43px;
    z-index: -1; }

/* ----------------------------------------------------------------------------
= Body and Containers
----------------------------------------------------------------------------- */
html {
  background: #2C2C2C; }

body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: "museo-sans";
  font-size: 11px;
  color: black;
  background: #e4e4e4 url("../images/main-bg.png") repeat;
  width: 100%;
  height: 100%; }

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

#layout {
  width: 1024px;
  margin: 0 auto; }
  #layout #content {
    position: relative;
    margin: 0 auto;
    padding: 0 43px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

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

.full_column {
  width: 960px;
  padding: 62px 0 30px; }
  .full_column #column_1 {
    width: 940px;
    padding: 20px; }
    .full_column #column_1.searchresults {
      background: #fff;
      margin: 20px 0; }

.one_sidebar_right {
  padding: 65px 0 30px; }
  .one_sidebar_right #column_1 {
    float: left;
    display: block;
    z-index: 1;
    position: relative; }
    .one_sidebar_right #column_1 .holder {
      display: block;
      position: relative;
      width: 600px;
      margin: 0 0 15px;
      padding: 8px;
      height: auto;
      background-color: #FFFFFF;
      border-color: #eeeeee;
      border-width: 2px;
      border-style: solid;
      -webkit-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
      box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
      -pie-box-shadow: 1px 8px 121px #cccccc;
      behavior: url("http://www.florenceciviccenter.com/PIE.htc"); }
      .one_sidebar_right #column_1 .holder:after {
        background-color: #FFFFFF;
        z-index: -1;
        position: absolute;
        display: block;
        width: 578px;
        height: 99%;
        top: 6px;
        left: 8px;
        padding-right: 21px;
        margin-bottom: -5px;
        padding-bottom: 0; }
      .one_sidebar_right #column_1 .holder .container {
        position: relative;
        border-color: #EEEEEE;
        width: 550px;
        height: auto;
        border-width: 1px;
        border-style: solid;
        -webkit-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
        padding: 24px 24px 30px; }
  .one_sidebar_right #column_2 {
    float: right;
    width: 300px;
    margin: 0; }

/* ----------------------------------------------------------------------------
= 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;
  padding: 0; }
  .login_form h1 {
    margin-bottom: 15px;
    color: #003872; }
  .login_form input {
    display: block;
    position: relative; }

.login_form input[type="password"] {
  float: left;
  width: 150px;
  height: 24px;
  background: #fff;
  border: 2px solid #e1e1e1;
  margin: 0 15px 0 0;
  padding: 1px 6px;
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  color: #242;
  text-transform: uppercase;
  -moz-border-radius: 5px 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px;
  -moz-box-shadow: inset 2px 2px 2px #eee;
  -webkit-box-shadow: inset 2px 2px 2px #eee;
  box-shadow: inset 2px 2px 2px #eee; }

.login_form input[type="submit"] {
  top: 0px;
  width: 65px;
  height: 29px;
  margin: 0;
  padding: 0;
  font: 500 13px "museo-sans";
  line-height: 25px;
  color: #656565;
  border: 1px solid #AEAEAE;
  text-decoration: none;
  text-align: center;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFEEEEEE', endColorstr='#FFD8D8D8');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q4ZDhkOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #d8d8d8));
  background-image: -moz-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
  background-image: -webkit-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
  background-image: linear-gradient(to bottom, #eeeeee 0%, #d8d8d8 100%);
  -moz-border-radius: 5px 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px; }
  .login_form input[type="submit"]:hover {
    background: #efefef; }
  .login_form input[type="submit"]:active {
    top: 2px; }

header, .header {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 250px;
  background: url(../images/top-banner-bg.jpg) repeat-x center -19px;
  z-index: 100; }
  header:before, .header:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 250px;
    background: url(../images/top-banner.png) no-repeat center top; }
  header .header_wrapper, .header .header_wrapper {
    position: relative;
    width: 940px;
    height: 250px;
    padding: 0 43px;
    margin: 0 auto; }
  header #toolbar, .header #toolbar {
    position: absolute;
    top: 10px;
    right: 26px;
    display: block;
    padding: 0;
    margin: 0;
    z-index: 900;
    min-width: 407px;
    line-height: 24px; }
    header #toolbar .sociallinks, .header #toolbar .sociallinks {
      display: inline-block;
      margin: 0;
      padding: 0;
      list-style: none; }
      header #toolbar .sociallinks li, .header #toolbar .sociallinks li {
        cursor: pointer;
        text-indent: -99999px;
        display: inline-block;
        margin: 0;
        padding: 0; }
        header #toolbar .sociallinks li:hover, .header #toolbar .sociallinks li:hover {
          margin: 0;
          padding: 0; }
        header #toolbar .sociallinks li a, header #toolbar .sociallinks li a:visited, .header #toolbar .sociallinks li a, .header #toolbar .sociallinks li a:visited {
          display: block;
          text-indent: -9000px;
          padding: 0;
          margin: 0; }
          header #toolbar .sociallinks li a.sprites-post, header #toolbar .sociallinks li a:visited.sprites-post, .header #toolbar .sociallinks li a.sprites-post, .header #toolbar .sociallinks li a:visited.sprites-post {
            background-position: 0 -560px;
            height: 24px;
            width: 25px; }
          header #toolbar .sociallinks li a.sprites-post, header #toolbar .sociallinks li a:visited.sprites-post, .header #toolbar .sociallinks li a.sprites-post, .header #toolbar .sociallinks li a:visited.sprites-post {
            height: 22px; }
          header #toolbar .sociallinks li a.sprites-floinslider, header #toolbar .sociallinks li a:visited.sprites-floinslider, .header #toolbar .sociallinks li a.sprites-floinslider, .header #toolbar .sociallinks li a:visited.sprites-floinslider {
            position: relative;
            top: 2px; }
          header #toolbar .sociallinks li a.sprites-fb, header #toolbar .sociallinks li a:visited.sprites-fb, .header #toolbar .sociallinks li a.sprites-fb, .header #toolbar .sociallinks li a:visited.sprites-fb {
            margin-left: 6px; }
        header #toolbar .sociallinks li .insta, .header #toolbar .sociallinks li .insta {
          width: 25px;
          height: 25px;
          background: transparent url(../images/social_sprite.png) no-repeat 0 -157px;
          margin-left: 4px; }
          header #toolbar .sociallinks li .insta:hover, .header #toolbar .sociallinks li .insta:hover {
            background: transparent url(../images/social_sprite.png) no-repeat 0 -191px; }
  header .logo, .header .logo {
    position: absolute;
    top: 36px;
    left: -28px;
    margin: 0;
    padding: 0;
    display: block; }
    header .logo span, header .logo a, header .logo a:link, header .logo a:visited, .header .logo span, .header .logo a, .header .logo a:link, .header .logo a:visited {
      text-indent: -5000px;
      display: block;
      width: 265px;
      height: 267px;
      background: url(../images/logo.png) no-repeat 0 0; }
    header .logo a:hover, .header .logo a:hover {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
      -moz-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      -webkit-transition: opacity 0.3s ease; }
      header .logo a:hover:hover, .header .logo a:hover:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=92);
        opacity: 0.92; }
    header .logo span, .header .logo span {
      cursor: default; }

.search {
  position: relative;
  margin: 0;
  padding: 4px 0 0;
  display: inline-block; }
  .search input, .search input[type="text"] {
    font-style: italic;
    margin: 3px 0 0 13px;
    padding: 0 0 0 10px;
    border: none;
    background-color: #ffffff;
    width: 141px;
    height: 23px;
    border-color: #7d7d7d;
    border-width: 1px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border-style: solid;
    behavior: url("http://www.florenceciviccenter.com/PIE.htc");
    position: relative;
    color: #333;
    font: 500 12px/140% "museo-sans";
    font-style: italic; }
  .search button {
    position: relative;
    height: 18px;
    width: 19px;
    border: 0 none;
    text-indent: -99999px;
    left: -30px;
    top: 2px;
    cursor: pointer;
    background: url(../images/sprites-s0caee4d0c7.png) no-repeat 0 -658px; }

::-webkit-input-placeholder {
  color: #333;
  font: 500 12px/140% "museo-sans";
  font-style: italic; }

:-moz-placeholder {
  color: #333;
  font: 500 12px/140% "museo-sans";
  font-style: italic; }

/* ----------------------------------------------------------------------------
=footer
----------------------------------------------------------------------------- */
footer, .footer {
  position: relative;
  width: 100%;
  min-height: 128px;
  background: url(../images/footer-bg.jpg) repeat 0 0; }
  footer:before, .footer:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    background: #82D3AE;
    top: -7px;
    -moz-box-shadow: 0px -1px 1px rgba(102, 102, 102, 0.65), inset 0px 4px 3px rgba(187, 187, 187, 0.1);
    -webkit-box-shadow: 0px -1px 1px rgba(102, 102, 102, 0.65), inset 0px 4px 3px rgba(187, 187, 187, 0.1);
    box-shadow: 0px -1px 1px rgba(102, 102, 102, 0.65), inset 0px 4px 3px rgba(187, 187, 187, 0.1);
    -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=-1,Color=#a5666666,Positive=true)";
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=-1,Color=#a5666666,Positive=true); }
  footer .footer_holder, .footer .footer_holder {
    position: relative;
    margin: 0 auto;
    width: 1024px;
    height: 128px;
    zoom: 1; }
    footer .footer_holder:before, footer .footer_holder:after, .footer .footer_holder:before, .footer .footer_holder:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .footer_holder:after, .footer .footer_holder:after {
      clear: both; }
  footer .sponsor, .footer .sponsor {
    position: relative;
    display: block;
    float: left;
    margin: 0 30px 0 0;
    padding: 27px 0 0 50px;
    zoom: 1; }
    footer .sponsor:before, footer .sponsor:after, .footer .sponsor:before, .footer .sponsor:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .sponsor:after, .footer .sponsor:after {
      clear: both; }
    footer .sponsor a, footer .sponsor a:visited, .footer .sponsor a, .footer .sponsor a:visited {
      display: block;
      float: left;
      text-indent: -9000px;
      height: 78px; }
      footer .sponsor a.sponsor_left, footer .sponsor a:visited.sponsor_left, .footer .sponsor a.sponsor_left, .footer .sponsor a:visited.sponsor_left {
        width: 108px;
        background: url(../images/facilities.png) no-repeat;
        margin: 0 0 0 30px; }
        footer .sponsor a.sponsor_left:hover, footer .sponsor a:visited.sponsor_left:hover, .footer .sponsor a.sponsor_left:hover, .footer .sponsor a:visited.sponsor_left:hover {
          background: url(../images/facilities_hover.png) no-repeat; }
      footer .sponsor a.sponsor_right, footer .sponsor a:visited.sponsor_right, .footer .sponsor a.sponsor_right, .footer .sponsor a:visited.sponsor_right {
        width: 154px;
        background: url(../images/SMG.png) no-repeat 10px 15px; }
        footer .sponsor a.sponsor_right:hover, footer .sponsor a:visited.sponsor_right:hover, .footer .sponsor a.sponsor_right:hover, .footer .sponsor a:visited.sponsor_right:hover {
          background: url(../images/SMG_hover.png) no-repeat 10px 15px; }
  footer .info, .footer .info {
    display: block;
    float: left;
    margin: 27px 0 0;
    padding: 7px 37px 6px 53px;
    border-left: 2px solid #7D7D7D;
    border-right: 2px solid #7D7D7D;
    zoom: 1; }
    footer .info:before, footer .info:after, .footer .info:before, .footer .info:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    footer .info:after, .footer .info:after {
      clear: both; }
    footer .info .right, .footer .info .right {
      float: right;
      padding: 6px 0 0; }
      footer .info .right p, .footer .info .right p {
        font-size: 10px;
        color: #ededed;
        line-height: 146%; }
      footer .info .right a, footer .info .right a:visited, .footer .info .right a, .footer .info .right a:visited {
        font-size: 10px;
        color: #ededed;
        text-align: left;
        text-decoration: none; }
        footer .info .right a:hover, footer .info .right a:visited:hover, .footer .info .right a:hover, .footer .info .right a:visited:hover {
          text-decoration: underline; }
  footer address, .footer address {
    font-size: 10px;
    color: #EDEDED;
    line-height: 146%;
    padding: 6px 0 0;
    width: 112px;
    margin: 0 50px 0 0;
    float: left; }
  footer .slogan, .footer .slogan {
    position: relative;
    width: 145px;
    float: right;
    margin-right: 50px;
    margin-top: 36px; }
  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: 0;
    right: 0; }
    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;
      display: inline; }
      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; }

nav {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 5px 0 0 0;
  height: 66px; }
  nav > ul {
    position: relative;
    display: block;
    width: 820px;
    margin: 0;
    padding: 6px 0 0;
    text-align: left;
    zoom: 1; }
    nav > ul:before, nav > ul:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    nav > ul:after {
      clear: both; }
    nav > ul li {
      position: relative;
      display: block;
      float: left;
      padding-bottom: 3px; }
      nav > ul li:first-child, nav > ul li.page_1 {
        display: none; }
  nav a, nav a:link, nav a:visited {
    text-align: center;
    display: block;
    font-family: "museo-sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: white;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0, 128, 131, 0.65), 1px 1px 0px rgba(77, 77, 77, 0.65);
    zoom: 1;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1,OffY=1,Color=#a54d4d4d,Positive=true);
    padding: 20px 10px;
    text-decoration: none;
    color: #FFFFFF; }
    nav a span, nav a:link span, nav a:visited span {
      color: #0155AF; }
    nav a:hover, nav a.active, nav a:link:hover, nav a:link.active, nav a:visited:hover, nav a:visited.active {
      color: #0155AF;
      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: #0155AF; }
  nav .hover a {
    color: #0155AF;
    text-decoration: none; }
    nav .hover a span {
      color: #0155AF; }

nav ul li .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  margin: 0;
  padding: 7px 0 2px;
  background: #036f80;
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #299690), color-stop(100%, #036f80));
  background: -webkit-radial-gradient(#299690 0%, #036f80 100%);
  background: -moz-radial-gradient(#299690 0%, #036f80 100%);
  background: -o-radial-gradient(#299690 0%, #036f80 100%);
  background: radial-gradient(#299690 0%, #036f80 100%);
  -moz-box-shadow: #036f80 0 0 5px;
  -webkit-box-shadow: #036f80 0 0 5px;
  box-shadow: #036f80 0 0 5px; }

nav ul ul {
  background: none;
  width: 208px;
  height: auto;
  border: none;
  border-top: none;
  margin: 0;
  padding: 0; }
  nav ul ul li {
    display: block;
    height: 25px;
    width: 198px;
    margin: 0 5px 3px;
    font: 500 14px "museo-sans";
    line-height: 25px;
    text-align: left;
    border: 1px solid transparent;
    behavior: url("http://www.florenceciviccenter.com/PIE.htc");
    position: relative; }
    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 {
      position: relative;
      display: block;
      height: 100%;
      z-index: 1;
      color: #fff;
      padding: 0 0 0 8px;
      margin: 0;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 25px; }
      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;
        background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #eeeeee), color-stop(50%, #ffffff), color-stop(100%, #eeeeee));
        background: -webkit-linear-gradient(left, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
        background: -moz-linear-gradient(left, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
        background: -o-linear-gradient(left, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
        -pie-background: linear-gradient(to right, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
        background: linear-gradient(to right, #eeeeee 0%, #ffffff 50%, #eeeeee 100%);
        -webkit-box-shadow: 0 0 3px rgba(238, 238, 238, 0.35);
        -moz-box-shadow: 0 0 3px rgba(238, 238, 238, 0.35);
        box-shadow: 0 0 3px rgba(238, 238, 238, 0.35);
        border: 1px solid #EEEEEE;
        color: #0155AF;
        text-shadow: none;
        filter: none; }

/**
 * - Home Layout -
 */
.home {
  /**
   * - Tabbed Content for Calendar and Featured
   * - Includes styles for tabs and scrolled 
   * - content in featured events list
   */
  /**
   * - Social Status Tabs
   */ }
  .home #layout {
    background: url(../images/home-content-shadow.png) center 50px no-repeat;
    padding-bottom: 5px; }
  .home #sponsors {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  .home .full_column {
    clear: both; }
  .home .home_left {
    width: 620px;
    margin: 0 19px 0 0;
    float: left; }
  .home .home_right {
    width: 300px;
    float: left;
    margin: 0 0 20px; }
  .home .club_banner {
    position: relative;
    width: 301px;
    height: 115px;
    float: left;
    background: #fff;
    border: 1px solid #eee;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    background: url(../images/text-club-banner.jpg) no-repeat center center; }
    .home .club_banner:hover {
      border-color: #0155AF; }
    .home .club_banner form {
      display: block;
      position: absolute;
      bottom: 16px;
      right: 25px;
      width: 180px;
      zoom: 1; }
      .home .club_banner form:before, .home .club_banner form:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .home .club_banner form:after {
        clear: both; }
      .home .club_banner form:hover input[type="text"] {
        border-color: #0155AF;
        border-right-color: #EEE; }
      .home .club_banner form:hover input[type="submit"] {
        background-color: #0155AF;
        color: white;
        border-color: #0155AF; }
      .home .club_banner form input[type="text"] {
        position: relative;
        display: block;
        float: left;
        background-color: #ffffff;
        width: 120px;
        height: 14px;
        padding: 3px 5px;
        border-color: #333;
        border-width: 1px;
        border-style: solid;
        behavior: url("http://www.florenceciviccenter.com/PIE.htc");
        color: #BBB;
        font: 500 12px/120% "museo-sans";
        font-style: italic; }
      .home .club_banner form input[type="submit"] {
        position: relative;
        display: block;
        float: left;
        background-color: #ffffff;
        width: 48px;
        height: 22px;
        padding: 3px 0;
        margin: -13px 0 0;
        border-color: #333;
        border-width: 1px;
        border-style: solid;
        border-left: 0;
        behavior: url("http://www.florenceciviccenter.com/PIE.htc");
        color: #333;
        font: 500 12px/120% "museo-sans";
        font-style: italic;
        text-align: center; }
  .home .cal_events_tab {
    font-family: "museo-sans";
    width: 300px;
    height: 371px;
    overflow: hidden;
    position: relative;
    background: url(../images/cal_tabs_body_bg.png);
    border: 1px solid #d1d1d1;
    float: left; }
    .home .cal_events_tab .content_tab {
      display: none;
      position: absolute;
      top: 0;
      margin: 52px 10px 10px 10px;
      height: 100%;
      width: 280px;
      clear: both;
      z-index: 90; }
      .home .cal_events_tab .content_tab.active {
        display: block;
        overflow: hidden; }
    .home .cal_events_tab ul.tabs {
      font-family: "museo-sans";
      margin: 0px 0;
      padding: 0;
      list-style-type: none;
      height: 52px; }
      .home .cal_events_tab ul.tabs li {
        margin: -1px 0 0 0;
        float: left;
        background: url(../images/cal_tabs_bg.png) repeat-x;
        text-align: center; }
        .home .cal_events_tab ul.tabs li.active {
          background: none; }
        .home .cal_events_tab ul.tabs li.active a {
          background: transparent;
          color: white;
          font-weight: 300;
          text-decoration: none; }
          .home .cal_events_tab ul.tabs li.active a:after {
            display: none; }
          .home .cal_events_tab ul.tabs li.active a:hover {
            color: white; }
        .home .cal_events_tab ul.tabs li a {
          position: relative;
          display: block;
          font-weight: 300;
          font-size: 16px;
          padding-top: 17px;
          padding-left: 0px;
          height: 35px;
          width: 150px;
          color: #4C4C4C;
          text-shadow: 0px 0px 2px #ccc; }
          .home .cal_events_tab ul.tabs li a:hover {
            color: #0155AF;
            text-decoration: none; }
          .home .cal_events_tab ul.tabs li a:after {
            position: absolute;
            content: "";
            display: block;
            width: 3px;
            height: 40px;
            background: url(../images/social_tab_divider.png);
            top: 0;
            right: 0px; }
    .home .cal_events_tab #content_featured .entry {
      position: relative;
      width: 269px;
      height: 61px;
      padding: 12px 0 12px 12px;
      margin-bottom: 8px;
      overflow: hidden;
      background: url(../images/social_content_bg.png) repeat-y; }
      .home .cal_events_tab #content_featured .entry .info {
        margin: 0 25px 0 62px; }
      .home .cal_events_tab #content_featured .entry h3 {
        font-family: "museo-sans";
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        margin: 0 0 7px 0;
        padding: 0;
        line-height: 150%; }
        .home .cal_events_tab #content_featured .entry h3 a {
          color: #003873; }
          .home .cal_events_tab #content_featured .entry h3 a:hover {
            color: #0052AC;
            text-decoration: none; }
      .home .cal_events_tab #content_featured .entry .time {
        position: relative;
        color: #333;
        font: 500 12px/140% "museo-sans";
        text-transform: lowercase; }
      .home .cal_events_tab #content_featured .entry .date {
        font-size: 12px;
        font-weight: 500;
        position: absolute;
        left: 15px;
        top: 15px;
        text-transform: uppercase;
        color: #333333; }
        .home .cal_events_tab #content_featured .entry .date .y {
          display: none; }
    .home .cal_events_tab #content_featured .viewport {
      height: 280px;
      width: 281px;
      overflow: hidden;
      position: relative; }
    .home .cal_events_tab #content_featured .scrollbar {
      display: none;
      width: 10px;
      height: 230px;
      position: absolute;
      right: 0;
      top: 0px; }
    .home .cal_events_tab #content_featured .overview {
      width: 281px;
      height: 100%;
      margin: 0;
      padding: 8px 0 8px;
      overflow: hidden;
      position: absolute;
      left: 0;
      top: 0;
      list-style: none; }
    .home .cal_events_tab #content_featured .scrollbar .track {
      width: 1px;
      background: none;
      height: 200px;
      position: relative;
      border-left: none;
      margin-top: 10px; }
    .home .cal_events_tab #content_featured .scrollbar .track .thumb {
      width: 7px;
      height: 26px;
      background: #666;
      border-right: white;
      border-bottom: white;
      position: absolute;
      left: -2px;
      top: 0px;
      cursor: pointer; }
      .home .cal_events_tab #content_featured .scrollbar .track .thumb:hover, .home .cal_events_tab #content_featured .scrollbar .track .thumb:active {
        background: #003872; }
    .home .cal_events_tab #content_featured .see_all {
      display: block;
      margin-top: 7px;
      width: 283px;
      height: 25px;
      line-height: 25px;
      text-align: center;
      font-style: italic;
      font-size: 14px;
      font-weight: 400;
      color: #003872;
      background: url(../images/social_content_bg.png); }
      .home .cal_events_tab #content_featured .see_all:hover {
        color: #0054AE;
        text-decoration: none; }
  .home .social_status {
    font-family: "museo-sans";
    width: 300px;
    height: 393px;
    overflow: hidden;
    position: relative;
    background: url(../images/florence_social_bg.png) no-repeat;
    border: 1px solid #BCDADC;
    float: left; }
    .home .social_status .module_header {
      position: relative;
      z-index: 91; }
    .home .social_status .status {
      display: none;
      position: absolute;
      top: 0;
      margin: 45px 10px 10px 10px;
      height: 100%;
      width: 280px;
      clear: both;
      z-index: 90; }
      .home .social_status .status.active {
        display: block;
        overflow: hidden; }
    .home .social_status ul.social_tabs {
      font-family: "museo-sans";
      margin: 0px 0;
      padding: 0;
      list-style-type: none;
      height: 45px; }
      .home .social_status ul.social_tabs li {
        margin: 0px 0 0 0;
        float: left;
        background: url(../images/social_tab_bg.png) repeat-x; }
        .home .social_status ul.social_tabs li:first-child {
          padding-left: 10px; }
        .home .social_status ul.social_tabs li.active {
          background: none; }
        .home .social_status ul.social_tabs li.active a {
          background: transparent;
          color: white;
          text-decoration: none; }
          .home .social_status ul.social_tabs li.active a:after {
            display: none; }
          .home .social_status ul.social_tabs li.active a:hover {
            color: white; }
        .home .social_status ul.social_tabs li a {
          position: relative;
          display: block;
          font-weight: 400;
          font-size: 14px;
          padding-top: 17px;
          padding-left: 31px;
          height: 28px;
          color: #4C4C4C;
          text-shadow: 0px 0px 2px #ccc; }
          .home .social_status ul.social_tabs li a:hover {
            color: #0155AF;
            text-decoration: none; }
          .home .social_status ul.social_tabs li a:after {
            position: absolute;
            content: "";
            display: block;
            width: 3px;
            height: 40px;
            background: url(../images/social_tab_divider.png);
            top: 0;
            right: 0px; }
          .home .social_status ul.social_tabs li a:before {
            position: absolute;
            content: "";
            display: block;
            width: 20px;
            height: 19px;
            background: url(../images/social_sprite.png);
            top: 16px;
            left: 5px; }
        .home .social_status ul.social_tabs li.news a {
          width: 59px; }
        .home .social_status ul.social_tabs li.twitter a {
          width: 59px;
          padding-left: 34px; }
          .home .social_status ul.social_tabs li.twitter a:before {
            background-position: 0px -26px;
            left: 12px; }
        .home .social_status ul.social_tabs li.facebook a {
          width: 73px;
          padding-left: 34px; }
          .home .social_status ul.social_tabs li.facebook a:before {
            background-position: 0px -51px;
            left: 12px; }
        .home .social_status ul.social_tabs li.active.news a:before {
          background-position: 0px -78px;
          top: 18px; }
        .home .social_status ul.social_tabs li.active.twitter a:before {
          background-position: 0px -101px; }
        .home .social_status ul.social_tabs li.active.facebook a:before {
          background-position: 0px -126px; }
    .home .social_status #status_news ul {
      margin: 0;
      padding: 0; }
      .home .social_status #status_news ul li {
        margin: 8px 0 0 0;
        padding: 12px;
        height: 53px;
        width: 256px;
        background: url(../images/social_content_bg.png) repeat-y; }
        .home .social_status #status_news ul li h3 {
          font-family: "museo-sans";
          font-size: 14px;
          text-transform: none;
          margin: 0 0 4px;
          padding: 0; }
          .home .social_status #status_news ul li h3 a {
            font-style: normal;
            color: #003872; }
            .home .social_status #status_news ul li h3 a:hover {
              color: #0052AC;
              text-decoration: none; }
        .home .social_status #status_news ul li p {
          color: #4C4C4C;
          font-size: 12px;
          line-height: 141%;
          font-family: "museo-sans"; }
        .home .social_status #status_news ul li a {
          color: #0053AD;
          font-style: italic; }
    .home .social_status #status_facebook {
      font-family: "museo-sans";
      margin-top: 52px;
      background: url(../images/social_content_bg.png);
      width: 283px;
      height: 333px; }
    .home .social_status #status_twitter {
      font-family: "museo-sans";
      margin-top: 52px;
      background: url(../images/social_twitter_bg.png) no-repeat;
      width: 283px; }
      .home .social_status #status_twitter .viewport {
        height: 300px;
        width: 281px;
        overflow: hidden;
        position: relative; }
      .home .social_status #status_twitter .scrollbar {
        width: 10px;
        height: 230px;
        position: absolute;
        right: 0;
        top: 0px; }
      .home .social_status #status_twitter .overview {
        width: 244px;
        height: 100%;
        margin: 0;
        padding: 0 14px;
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        list-style: none; }
      .home .social_status #status_twitter .scrollbar .track {
        width: 1px;
        background: none;
        height: 200px;
        position: relative;
        border-left: none;
        margin-top: 10px; }
      .home .social_status #status_twitter .scrollbar .track .thumb {
        width: 7px;
        height: 26px;
        background: #666;
        border-right: white;
        border-bottom: white;
        position: absolute;
        left: -2px;
        top: 21px;
        cursor: pointer; }
        .home .social_status #status_twitter .scrollbar .track .thumb:hover, .home .social_status #status_twitter .scrollbar .track .thumb:active {
          background: #003872; }
      .home .social_status #status_twitter ul {
        font-family: "museo-sans";
        margin: 0;
        padding: 0; }
      .home .social_status #status_twitter li {
        font-size: 12px;
        list-style-type: none;
        border-bottom: solid 1px #077281;
        padding: 10px 0 7px 0;
        color: #333333;
        font-weight: 500;
        line-height: 155%; }
      .home .social_status #status_twitter .tweet_meta {
        font-family: "museo-sans";
        color: #003873;
        margin-top: 5px;
        font-weight: 600;
        font-style: italic; }
        .home .social_status #status_twitter .tweet_meta span {
          margin-right: 30px; }
        .home .social_status #status_twitter .tweet_meta a {
          color: #003872;
          margin-right: 30px; }
          .home .social_status #status_twitter .tweet_meta a:hover {
            color: #0052AC;
            text-decoration: none; }
      .home .social_status #status_twitter a {
        color: #007F83;
        text-decoration: none; }
        .home .social_status #status_twitter a:hover {
          color: #0052AC;
          text-decoration: none; }
      .home .social_status #status_twitter .twitter_follow {
        display: block;
        margin-top: 7px;
        width: 283px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        font-style: italic;
        font-size: 14px;
        font-weight: 400;
        color: #003872;
        background: url(../images/social_content_bg.png); }
        .home .social_status #status_twitter .twitter_follow:hover {
          color: #0054AE;
          text-decoration: none; }

/**
 * - Tabbed Content for Calendar and Featured
 * - Includes styles for tabs and scrolled 
 * - content in featured events list
 */
.cal_events_tab {
  font-family: "museo-sans";
  width: 300px;
  height: 371px;
  overflow: hidden;
  position: relative;
  background: url(../images/cal_tabs_body_bg.png);
  border: 1px solid #d1d1d1;
  float: left; }
  .cal_events_tab .content_tab {
    display: none;
    position: absolute;
    top: 0;
    margin: 52px 10px 10px 10px;
    height: 100%;
    width: 280px;
    clear: both;
    z-index: 90; }
    .cal_events_tab .content_tab.active {
      display: block;
      overflow: hidden; }
  .cal_events_tab ul.tabs {
    font-family: "museo-sans";
    margin: 0px 0;
    padding: 0;
    list-style-type: none;
    height: 52px; }
    .cal_events_tab ul.tabs li {
      margin: -1px 0 0 0;
      float: left;
      background: url(../images/cal_tabs_bg.png) repeat-x;
      text-align: center; }
      .cal_events_tab ul.tabs li.active {
        background: none; }
      .cal_events_tab ul.tabs li.active a {
        background: transparent;
        color: white;
        font-weight: 300;
        text-decoration: none; }
        .cal_events_tab ul.tabs li.active a:after {
          display: none; }
        .cal_events_tab ul.tabs li.active a:hover {
          color: white; }
      .cal_events_tab ul.tabs li a {
        position: relative;
        display: block;
        font-weight: 300;
        font-size: 16px;
        padding-top: 17px;
        padding-left: 0px;
        height: 35px;
        width: 150px;
        color: #4C4C4C;
        text-shadow: 0px 0px 2px #ccc; }
        .cal_events_tab ul.tabs li a:hover {
          color: #0155AF;
          text-decoration: none; }
        .cal_events_tab ul.tabs li a:after {
          position: absolute;
          content: "";
          display: block;
          width: 3px;
          height: 40px;
          background: url(../images/social_tab_divider.png);
          top: 0;
          right: 0px; }
  .cal_events_tab #content_featured .entry {
    position: relative;
    width: 269px;
    height: 61px;
    padding: 12px 0 12px 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: url(../images/social_content_bg.png) repeat-y; }
    .cal_events_tab #content_featured .entry .info {
      margin: 0 25px 0 62px; }
    .cal_events_tab #content_featured .entry h3 {
      font-family: "museo-sans";
      font-size: 14px;
      font-weight: 500;
      text-transform: none;
      margin: 0 0 7px 0;
      padding: 0;
      line-height: 150%; }
      .cal_events_tab #content_featured .entry h3 a {
        color: #003873; }
        .cal_events_tab #content_featured .entry h3 a:hover {
          color: #0052AC;
          text-decoration: none; }
    .cal_events_tab #content_featured .entry .time {
      position: relative;
      color: #333;
      font: 500 12px/140% "museo-sans";
      text-transform: lowercase; }
    .cal_events_tab #content_featured .entry .date {
      font-size: 12px;
      font-weight: 500;
      position: absolute;
      left: 15px;
      top: 15px;
      text-transform: uppercase;
      color: #333333; }
      .cal_events_tab #content_featured .entry .date .y {
        display: none; }
  .cal_events_tab #content_featured .viewport {
    height: 280px;
    width: 281px;
    overflow: hidden;
    position: relative; }
  .cal_events_tab #content_featured .scrollbar {
    display: none;
    width: 10px;
    height: 230px;
    position: absolute;
    right: 0;
    top: 0px; }
  .cal_events_tab #content_featured .overview {
    width: 281px;
    height: 100%;
    margin: 0;
    padding: 8px 0 8px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    list-style: none; }
  .cal_events_tab #content_featured .scrollbar .track {
    width: 1px;
    background: none;
    height: 200px;
    position: relative;
    border-left: none;
    margin-top: 10px; }
  .cal_events_tab #content_featured .scrollbar .track .thumb {
    width: 7px;
    height: 26px;
    background: #666;
    border-right: white;
    border-bottom: white;
    position: absolute;
    left: -2px;
    top: 0px;
    cursor: pointer; }
    .cal_events_tab #content_featured .scrollbar .track .thumb:hover, .cal_events_tab #content_featured .scrollbar .track .thumb:active {
      background: #003872; }
  .cal_events_tab #content_featured .see_all {
    display: block;
    margin-top: 7px;
    width: 283px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
    color: #003872;
    background: url(../images/social_content_bg.png); }
    .cal_events_tab #content_featured .see_all:hover {
      color: #0054AE;
      text-decoration: none; }

/* ----------------------------------------------------------------------------
=Page Content
----------------------------------------------------------------------------- */
/**Image templates use container class, kind of hard to override them**/
.one_sidebar_right #column_1 .holder .container .container {
  position: relative;
  height: auto;
  border: none;
  -webkit-box-shadow: 0px 0px 0px;
  -moz-box-shadow: 0px 0px 0px;
  box-shadow: 0px 0px 0px;
  padding: 0; }

.content {
  margin: 0 0 25px;
  padding: 0;
  position: relative;
  /*massively badass bullets*/
  /* ----------------------------------------------------------------------------
  =Image Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Text Templates
  ----------------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------------
  =Tables
  ----------------------------------------------------------------------------- */ }
  .content .container {
    clear: both;
    position: relative; }
  .content ul {
    margin-left: 0;
    padding-left: 0; }
    .content ul li {
      background: transparent url("../images/style-icons.png") no-repeat -12px -172px;
      list-style: none;
      padding-left: 15px; }
  .content ol {
    margin-left: 11px; }
  .content tr {
    border-bottom: 1px solid #999; }
  .content img[align=left], .content img[align=left].gh-image {
    float: left;
    margin: 0 15px 15px 0;
    padding: 6px; }
  .content img[align=right], .content img[align=right].gh-image {
    float: right;
    margin: 0 0 15px 15px;
    padding: 6px; }
  .content img.gh-image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content img.image {
    padding: 0;
    margin: 0 15px 15px 0; }
  .content .image-left {
    clear: both; }
    .content .image-left h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-left img {
      width: auto;
      height: auto;
      padding: 6px;
      max-width: 150px; }
    .content .image-left p {
      line-height: 140%; }
  .content .image-right {
    clear: both; }
    .content .image-right h3 {
      font-size: 20px;
      font-weight: normal; }
    .content .image-right img {
      width: auto;
      height: auto;
      padding: 2px;
      margin: 0 0 15px 15px;
      max-width: 150px; }
    .content .image-right p {
      line-height: 140%; }
  .content .image-three {
    text-align: left;
    float: left;
    width: 30%;
    padding: 0;
    margin: 0 10px 0 0; }
    .content .image-three a, .content .image-three a:link, .content .image-three a:visited {
      display: block;
      width: auto;
      max-width: 100%;
      height: auto; }
      .content .image-three a img, .content .image-three a img.image, .content .image-three a img.gh-image, .content .image-three a:link img, .content .image-three a:link img.image, .content .image-three a:link img.gh-image, .content .image-three a:visited img, .content .image-three a:visited img.image, .content .image-three a:visited img.gh-image {
        padding: 2px;
        margin: 0;
        width: auto;
        max-width: 100%;
        height: auto; }
      .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: 5px 0 0; }
  .content .image-four {
    text-align: left;
    float: left;
    width: 23%;
    padding: 0px;
    margin: 0 10px 0 0; }
    .content .image-four a, .content .image-four a:link, .content .image-four a:visited {
      display: block;
      margin: 0;
      padding: 0;
      width: auto;
      max-width: 100%;
      height: auto; }
    .content .image-four img, .content .image-four img.image, .content .image-four img.gh-image {
      padding: 0;
      background: none;
      margin: 0;
      width: auto;
      max-width: 100%;
      height: auto; }
    .content .image-four p {
      width: 100%;
      padding: 5px 0 0; }
  .content .overview {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
    /*			a, a:link, a:visited {
    				text-decoration: underline;
    				&:hover, &:focus {
    					text-decoration: none;
    				}
    			}*/ }
    .content .overview h1 {
      color: #003872; }
    .content .overview p {
      font-size: 16px;
      margin: 0;
      padding: 10px 0;
      line-height: 130%;
      color: #003872; }
  .content .baseline {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #ddd; }
    .content .baseline p {
      font-size: 16px;
      padding: 10px 0 0;
      line-height: 130%; }
  .content h2 {
    color: #007F83; }
  .content h3 {
    color: #007F83; }
  .content h4, .content h5, .content h6 {
    color: #4C4C4C; }
  .content table {
    margin: 0 0 15px;
    position: relative; }
    .content table tr {
      font-size: 12px;
      color: black; }
      .content table tr td {
        padding: 5px;
        border: none; }

/* ----------------------------------------------------------------------------
=Links and Link Lists
----------------------------------------------------------------------------- */
.link {
  margin: 0 0 20px 0px;
  position: relative; }
  .link ul.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    border-bottom: 1px solid #ddd; }
    .link ul.list li {
      /*height: 28px;*/
      margin: 5px 0;
      padding: 6px 0 0;
      border-top: 1px solid #ddd;
      font-size: 14px;
      /*					&:hover, &:focus {
      						a, a:link, a:visited {
      							background-position:  0 -28px;
      						}
      					}*/ }
    .link ul.list p {
      padding: 0 0 0 28px;
      font-style: italic; }
    .link ul.list .description {
      font-style: italic;
      font-size: 12px; }
    .link ul.list a,
    .link ul.list a:link,
    .link ul.list a:visited {
      display: block;
      margin: 0;
      padding: 0;
      line-height: 26px;
      color: #007F83;
      text-decoration: none;
      /*					&.external {
      						background:url(../images/style-icons.png) no-repeat 0 0;
      						&:hover, &:focus {
      							background-position:0 -28px;
      						}
      					}*/ }
      .link ul.list a:before,
      .link ul.list a:link:before,
      .link ul.list a:visited:before {
        content: "";
        display: block;
        float: left;
        position: relative;
        top: -2px;
        height: 28px;
        width: 29px;
        border: 1px solid #eee;
        margin-right: 10px;
        -moz-border-radius: 4px 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px 4px;
        background: #289990 url("../images/style-icons.png") no-repeat -2px -2px;
        background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI4OTk5MCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwODA4MyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
        background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #289990), color-stop(100%, #008083));
        background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -moz-linear-gradient(top, #289990, #008083);
        background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -webkit-linear-gradient(top, #289990, #008083);
        background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat linear-gradient(to bottom, #289990, #008083); }
      .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: #0155AF; }
        .link ul.list a:hover:before, .link ul.list a:focus:before,
        .link ul.list a:link:hover:before,
        .link ul.list a:link:focus:before,
        .link ul.list a:visited:hover:before,
        .link ul.list a:visited:focus:before {
          background: #003873 url("../images/style-icons.png") no-repeat -2px -2px;
          background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwODA4MyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
          background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #003873), color-stop(100%, #008083));
          background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -moz-linear-gradient(top, #003873, #008083);
          background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat -webkit-linear-gradient(top, #003873, #008083);
          background: url('/images/style-icons.png?1416249342') -2px -2px no-repeat linear-gradient(to bottom, #003873, #008083); }
      .link ul.list a.image:before,
      .link ul.list a:link.image:before,
      .link ul.list a:visited.image:before {
        background-position: -1px -36px; }
      .link ul.list a.image:hover:before, .link ul.list a.image:focus:before,
      .link ul.list a:link.image:hover:before,
      .link ul.list a:link.image:focus:before,
      .link ul.list a:visited.image:hover:before,
      .link ul.list a:visited.image:focus:before {
        background-position: -1px -36px; }
      .link ul.list a.pdf:before,
      .link ul.list a:link.pdf:before,
      .link ul.list a:visited.pdf:before {
        background-position: -1px -72px; }
      .link ul.list a.pdf:hover:before, .link ul.list a.pdf:focus:before,
      .link ul.list a:link.pdf:hover:before,
      .link ul.list a:link.pdf:focus:before,
      .link ul.list a:visited.pdf:hover:before,
      .link ul.list a:visited.pdf:focus:before {
        background-position: -1px -72px; }
    .link ul.list a.email:before,
    .link ul.list a.email:link:before,
    .link ul.list a.email:visited:before {
      background-position: -1px -107px; }
    .link ul.list a.email:hover:before, .link ul.list a.email:focus:before,
    .link ul.list a.email:link:hover:before,
    .link ul.list a.email:link:focus:before,
    .link ul.list a.email:visited:hover:before,
    .link ul.list a.email:visited:focus:before {
      background-position: -1px -107px; }

.buttons {
  position: relative; }
  .buttons a, .buttons a:link, .buttons a:visited {
    display: block;
    width: 56px;
    height: 36px;
    padding: 11px 0 0 34px;
    margin: 0 0 10px;
    position: relative;
    color: white;
    font: 700 12px/120% "museo-sans";
    text-transform: uppercase;
    text-shadow: 0px 1px 1px #666666;
    background: #036f80;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF036F80', endColorstr='#FF299690');
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
    background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
    background-image: radial-gradient(#299690 50%, #036f80 100%);
    -moz-border-radius: 4px 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px 4px; }
    .buttons a.more:before, .buttons a.event_more_flag:before, .buttons a:link.more:before, .buttons a:link.event_more_flag:before, .buttons a:visited.more:before, .buttons a:visited.event_more_flag:before {
      position: absolute;
      content: '';
      display: block;
      left: 8px;
      top: 6px;
      background: url(../images/buttons_sprite.png) no-repeat 0 -4px;
      width: 20px;
      height: 30px;
      z-index: 20; }
    .buttons a.tickets:before, .buttons a:link.tickets:before, .buttons a:visited.tickets:before {
      position: absolute;
      content: '';
      display: block;
      left: 8px;
      top: 6px;
      background: url(../images/buttons_sprite.png) no-repeat 0 -57px;
      width: 20px;
      height: 30px;
      z-index: 20; }
    .buttons a:hover, .buttons a:link:hover, .buttons a:visited:hover {
      text-decoration: none;
      background: #003873;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
      /* IE6-8 */ }
  .buttons span {
    display: block;
    width: 56px;
    height: 36px;
    padding: 11px 0 0 34px;
    margin: 0 0 10px;
    position: relative;
    background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
    background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
    background: -moz-radial-gradient(#299690 50%, #036f80 100%);
    background: -o-radial-gradient(#299690 50%, #036f80 100%);
    -pie-background: #168288;
    background: radial-gradient(#299690 50%, #036f80 100%);
    behavior: url("http://www.florenceciviccenter.com/PIE.htc");
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: default;
    color: white;
    font: 700 12px/120% "museo-sans";
    text-transform: uppercase;
    text-shadow: 0px 1px 1px #666666; }

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

.paging {
  margin: 12px 0;
  color: #4C4C4C;
  position: relative;
  padding: 0px;
  height: 24px;
  font-size: 12px;
  line-height: 120%; }
  .paging .record {
    min-width: 80px;
    float: left;
    height: 24px;
    padding: 6px 0 0 10px;
    font-weight: 500;
    font-family: "museo-sans"; }
  .paging .pages {
    margin: 0;
    float: left;
    width: auto;
    text-align: left; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      position: relative;
      display: block;
      height: 24px;
      width: 24px;
      float: left;
      margin: 0 7px 0 0;
      text-align: center;
      text-decoration: none;
      background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
      background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
      background: -moz-radial-gradient(#299690 50%, #036f80 100%);
      background: -o-radial-gradient(#299690 50%, #036f80 100%);
      -pie-background: #168288;
      background: radial-gradient(#299690 50%, #036f80 100%);
      behavior: url("http://www.florenceciviccenter.com/PIE.htc");
      -webkit-border-radius: 4px;
      border-radius: 4px;
      color: white;
      font: 300 14px/190% "museo-sans";
      text-transform: uppercase; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        text-decoration: none;
        color: white;
        background: #003873;
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
        /* IE10+ */
        background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
        /* IE6-8 */ }
      .paging .pages strong.last, .paging .pages a.last, .paging .pages a:link.last, .paging .pages a:visited.last {
        width: 52px; }
      .paging .pages strong.first, .paging .pages a.first, .paging .pages a:link.first, .paging .pages a:visited.first {
        width: 60px; }
    .paging .pages strong {
      color: white;
      text-decoration: none;
      background: #003873;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
      /* IE6-8 */
      cursor: default; }
  .paging .links {
    /*	min-width:208px;*/
    float: right;
    padding: 0; }
    .paging .links a, .paging .links a:link, .paging .links a:visited {
      position: relative;
      display: block;
      float: left;
      margin: 0 12px 0 0;
      height: 21px;
      color: #656565;
      text-decoration: none;
      background: #eeeeee;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOGQ4ZDgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #d8d8d8));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, #eeeeee 0%, #d8d8d8 100%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#d8d8d8',GradientType=0 );
      /* IE6-8 */
      border: 1px solid #AEAEAE;
      font: 500 12px/190% "museo-sans";
      text-shadow: 0px 1px 1px #fff;
      behavior: url("http://www.florenceciviccenter.com/PIE.htc");
      -webkit-border-radius: 4px;
      border-radius: 4px; }
      .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 {
        text-decoration: none;
        background: #D8D8D8;
        filter: none; }
    .paging .links a.rss,
    .paging .links a:link.rss,
    .paging .links a:visited.rss {
      width: 30px;
      padding: 0 0 0 28px;
      text-transform: none; }
      .paging .links a.rss:before,
      .paging .links a:link.rss:before,
      .paging .links a:visited.rss:before {
        content: '';
        display: block;
        position: absolute;
        width: 15px;
        height: 21px;
        top: 4px;
        left: 8px;
        background: url(../images/events_sprite.png) no-repeat 0 0; }
    .paging .links a.print,
    .paging .links a.print:link,
    .paging .links a.print:visited {
      margin: 0;
      width: 34px;
      padding: 0 0 0 26px; }
      .paging .links a.print:before,
      .paging .links a.print:link:before,
      .paging .links a.print:visited:before {
        content: '';
        display: block;
        position: absolute;
        width: 15px;
        height: 21px;
        top: 0px;
        left: 6px;
        background: url(../images/events_sprite.png) no-repeat 0 -24px; }
    .paging .links a.full_list,
    .paging .links a.full_list:link,
    .paging .links a.full_list:visited {
      padding: 0;
      width: 58px;
      text-align: center;
      text-transform: none; }

.managed_sidebar_banner .banner {
  position: relative;
  width: 285px;
  height: 100px;
  padding: 6px;
  margin: 0 0 20px; }

.adserve_banner {
  width: 300px;
  height: 250px;
  margin: 0 0 20px; }

.sidebar_tabs {
  position: relative;
  width: 300px; }

.subnav {
  position: relative;
  margin: 0 0 20px;
  border-color: #777777;
  border-width: 1px;
  border-style: solid;
  padding-top: 16px;
  padding-left: 10px;
  padding-bottom: 5px;
  -moz-box-shadow: rgba(1, 1, 1, 0.1) 0px 0px 50px 10px;
  -webkit-box-shadow: rgba(1, 1, 1, 0.1) 0px 0px 50px 10px;
  box-shadow: rgba(1, 1, 1, 0.1) 0px 0px 50px 10px;
  background: #299690;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF299690', endColorstr='#FF036F80');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
  background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
  background-image: radial-gradient(#299690 50%, #036f80 100%); }
  .subnav ul {
    position: relative;
    list-style: none;
    z-index: 2;
    padding: 0;
    padding-right: 10px;
    margin: 0; }
    .subnav ul li {
      margin-bottom: 6px;
      padding: 0;
      list-style: none;
      position: relative; }
      .subnav ul li:first-child {
        padding: 2px 0 13px 10px;
        margin: 0;
        height: auto; }
        .subnav ul li:first-child a {
          font-size: 20px;
          font-weight: 300;
          line-height: 100%;
          font-weight: bold;
          color: white;
          padding: 0;
          margin: 0;
          text-shadow: 1px 1px 0px rgba(125, 125, 125, 0.65);
          background: none;
          border: 0;
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
          .subnav ul li:first-child a:hover {
            color: white;
            text-decoration: none;
            background: none;
            border: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none; }
      .subnav ul li.active ul {
        display: block;
        list-style: none;
        list-style-image: none;
        list-style-type: none;
        padding: 2px 0 2px 12px;
        margin: 0;
        background: none;
        width: auto; }
      .subnav ul li.active a:active {
        color: #ffffff; }
      .subnav ul li a,
      .subnav ul li .sub a {
        padding: 15px 14px;
        margin: 0;
        display: block;
        height: inherit;
        width: inherit;
        text-decoration: none;
        font-family: "museo-sans";
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        color: #003872;
        text-align: left;
        border-color: #eeeeee;
        border-width: 1px;
        border-style: solid;
        background-color: white;
        *zoom: 1;
        filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE');
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
        background-size: 100%;
        background-image: -moz-radial-gradient(#ffffff 0%, #eeeeee 100%);
        background-image: -webkit-radial-gradient(#ffffff 0%, #eeeeee 100%);
        background-image: radial-gradient(#ffffff 0%, #eeeeee 100%);
        -moz-box-shadow: rgba(238, 238, 238, 0.35) 0px 0px 4px 1px;
        -webkit-box-shadow: rgba(238, 238, 238, 0.35) 0px 0px 4px 1px;
        box-shadow: rgba(238, 238, 238, 0.35) 0px 0px 4px 1px; }
        .subnav ul li a:hover, .subnav ul li a.active, .subnav ul li a:active,
        .subnav ul li .sub a:hover,
        .subnav ul li .sub a.active,
        .subnav ul li .sub a:active {
          text-decoration: none;
          border-color: #dddddd;
          border-width: 1px;
          border-style: solid;
          background-color: transparent;
          *zoom: 1;
          filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF4CA69C', endColorstr='#FF21858D');
          background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRjYTY5YyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxODU4ZCIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
          background-size: 100%;
          background-image: -moz-radial-gradient(#4ca69c 0%, #21858d 100%);
          background-image: -webkit-radial-gradient(#4ca69c 0%, #21858d 100%);
          background-image: radial-gradient(#4ca69c 0%, #21858d 100%);
          color: white; }
        .subnav ul li a.section,
        .subnav ul li .sub a.section {
          border: 0;
          background: none;
          box-shadow: none;
          filter: none;
          color: #fff; }
          .subnav ul li a.section a.active,
          .subnav ul li a.section a:active,
          .subnav ul li .sub a.section a.active,
          .subnav ul li .sub a.section a:active {
            color: #fff; }
      .subnav ul li.active.onparent {
        border: 0;
        background: none;
        box-shadow: none; }
        .subnav ul li.active.onparent a.active {
          color: white; }
    .subnav ul .sub {
      margin-top: 5px; }
      .subnav ul .sub ul {
        display: none; }
        .subnav ul .sub ul li {
          width: 91%;
          border-bottom: none; }
          .subnav ul .sub ul li:first-child {
            padding-left: 0;
            padding-bottom: 6px; }
            .subnav ul .sub ul li:first-child a {
              text-shadow: none; }
          .subnav ul .sub ul li a {
            margin-left: 8px;
            padding: 10px;
            font-size: 11px; }
            .subnav ul .sub ul li a.active {
              border: 0;
              background: none;
              box-shadow: none;
              color: white;
              filter: none; }

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

/* ----------------------------------------------------------------------------
=Slideshows
----------------------------------------------------------------------------- */
.slideshow {
  display: block;
  position: relative;
  width: 604px;
  height: 381px;
  margin: 0 0 15px;
  padding: 8px 6px;
  background-color: #FFFFFF;
  border-color: #eeeeee;
  border-width: 2px;
  border-style: solid;
  -webkit-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2); }
  .slideshow:after {
    background-color: #FFFFFF;
    z-index: -1;
    position: absolute;
    display: block;
    width: 578px;
    height: 99%;
    top: 6px;
    left: 8px;
    padding-right: 21px;
    margin-bottom: -5px;
    padding-bottom: 0; }
  .slideshow:hover .controls, .slideshow:focus .controls {
    display: block; }
  .slideshow .controls {
    display: none;
    position: absolute;
    width: 612px;
    margin: 0 auto;
    height: 85px;
    top: 10px;
    left: 5px; }
    .slideshow .controls .nav-controls {
      position: relative; }
      .slideshow .controls .nav-controls a, .slideshow .controls .nav-controls a:link, .slideshow .controls .nav-controls a:visited {
        display: block;
        height: 70px;
        width: 64px;
        position: absolute;
        cursor: pointer;
        top: 0;
        z-index: 950;
        text-indent: -5000px;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
        opacity: 0.5;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear; }
        .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;
          filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
          opacity: 1; }
        .slideshow .controls .nav-controls a.prev, .slideshow .controls .nav-controls a:link.prev, .slideshow .controls .nav-controls a:visited.prev {
          left: 8px;
          top: 140px;
          background: url("../images/slideshow-arrows.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: url("../images/slideshow-arrows-overs.png") no-repeat 0 0; }
          .slideshow .controls .nav-controls a.prev:active, .slideshow .controls .nav-controls a:link.prev:active, .slideshow .controls .nav-controls a:visited.prev:active {
            margin: 1px 1px 0 0; }
        .slideshow .controls .nav-controls a.next, .slideshow .controls .nav-controls a:link.next, .slideshow .controls .nav-controls a:visited.next {
          right: 14px;
          top: 140px;
          background: url("../images/slideshow-arrows.png") no-repeat 0 -83px; }
          .slideshow .controls .nav-controls a.next:hover, .slideshow .controls .nav-controls a:link.next:hover, .slideshow .controls .nav-controls a:visited.next:hover {
            background: url("../images/slideshow-arrows-overs.png") no-repeat 0 -83px; }
          .slideshow .controls .nav-controls a.next:active, .slideshow .controls .nav-controls a:link.next:active, .slideshow .controls .nav-controls a:visited.next:active {
            margin: 1px 0 0 1px; }
  .slideshow .slide {
    position: relative;
    background-color: #fff;
    border-color: #EEEEEE;
    width: 602px;
    height: auto;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1); }
    .slideshow .slide a.advance-link {
      display: block;
      width: 100%;
      height: 100%; }
      .slideshow .slide a.advance-link img {
        width: 100%; }
    .slideshow .slide span {
      display: block;
      width: 100%;
      height: 348px; }
  .slideshow .caption_holder {
    position: relative;
    width: 604px;
    height: 32px;
    background: #003873;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF0155AF', endColorstr='#FF003873');
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAxNTVhZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #003873), color-stop(100%, #0155af));
    background: -moz-linear-gradient(bottom, #003873, #0155af);
    background: -webkit-linear-gradient(bottom, #003873, #0155af);
    background: linear-gradient(to top, #003873, #0155af); }
    .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;
      padding: 8px 0 0 15px;
      font-family: "museo-sans";
      font-size: 14px;
      font-weight: 300;
      line-height: 120%;
      color: #fff;
      text-shadow: none; }
    .slideshow .caption_holder .caption a {
      display: block;
      padding: 0 0 0 15px;
      font-family: "museo-sans";
      font-size: 14px;
      font-weight: 300;
      line-height: 120%;
      color: #fff;
      text-shadow: none;
      text-decoration: none; }
      .slideshow .caption_holder .caption a:hover, .slideshow .caption_holder .caption a:visited {
        text-decoration: none; }
    .slideshow .caption_holder .caption a[rel="video"], .slideshow .caption_holder .caption a[rel="imglink"], .slideshow .caption_holder .caption a[rel="audio"] {
      display: none; }
    .slideshow .caption_holder .caption .date {
      display: none; }
    .slideshow .caption_holder .caption .buttons {
      display: none; }
  .slideshow .thumbs_holder {
    display: none;
    position: absolute;
    top: 340px;
    left: 0px; }
    .slideshow .thumbs_holder .thumbs {
      display: none;
      list-style: none;
      list-style-image: none;
      padding: 0;
      margin: 0; }
      .slideshow .thumbs_holder .thumbs li {
        float: left;
        width: 80px;
        height: 43px;
        margin: 0 10px 0 0;
        opacity: 0.5;
        padding: 0;
        position: relative; }
        .slideshow .thumbs_holder .thumbs li.selected, .slideshow .thumbs_holder .thumbs li:hover, .slideshow .thumbs_holder .thumbs li:focus {
          opacity: 1; }
          .slideshow .thumbs_holder .thumbs li.selected .caption, .slideshow .thumbs_holder .thumbs li:hover .caption, .slideshow .thumbs_holder .thumbs li:focus .caption {
            display: block;
            opacity: 1; }
            .slideshow .thumbs_holder .thumbs li.selected .caption a, .slideshow .thumbs_holder .thumbs li:hover .caption a, .slideshow .thumbs_holder .thumbs li:focus .caption a {
              display: none; }
      .slideshow .thumbs_holder .thumbs a.thumb {
        display: block;
        width: 80px;
        height: 43px;
        float: left;
        z-index: 10; }
        .slideshow .thumbs_holder .thumbs a.thumb img {
          width: 80px;
          height: 43px; }
        .slideshow .thumbs_holder .thumbs a.thumb span.overlay {
          display: block;
          width: 80px;
          height: 43px;
          background: url(../images/thumb_image_icon.png) no-repeat 0 0;
          position: absolute;
          top: 0px;
          left: 0px; }
      .slideshow .thumbs_holder .thumbs a.thumb_video span.overlay {
        background: url(../images/thumb_video_icon.png) no-repeat 0 0; }
      .slideshow .thumbs_holder .thumbs .caption {
        display: none;
        background: url(../images/thumb_caption_bg.png) no-repeat 0 0;
        width: 214px;
        height: 46px;
        position: absolute;
        top: -35px;
        left: -60px;
        padding: 5px 10px;
        z-index: 20; }
        .slideshow .thumbs_holder .thumbs .caption p {
          color: black;
          font-size: 12px;
          height: 30px;
          overflow: hidden; }
  .slideshow .video, .slideshow .audio {
    width: 604px;
    height: 350px;
    background: url(../images/play.png) no-repeat center center;
    position: absolute;
    left: 6px;
    top: 10px;
    display: none; }
    .slideshow .video #video_player, .slideshow .video #video_holder, .slideshow .audio #video_player, .slideshow .audio #video_holder {
      display: block;
      width: 604px;
      height: 350px; }
    .slideshow .video .audio #audio_holder, .slideshow .audio .audio #audio_holder {
      height: 21px;
      display: block;
      width: 100%;
      position: absolute;
      bottom: 2px; }
  .slideshow .imglink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    .slideshow .imglink #imglink {
      position: relative;
      background: url(../images/blank.png) 0 0 repeat;
      display: block;
      width: 100%;
      height: 100%; }

/* ----------------------------------------------------------------------------
=Hompage Spotlight
----------------------------------------------------------------------------- */
.home #branding {
  display: block;
  float: left;
  width: 620px;
  height: 393px;
  margin: 0 19px 28px 0;
  clear: both; }
  .home #branding .slideshow {
    width: 604px;
    margin: 0 0 15px;
    padding: 7px;
    background-color: #fff;
    border-color: #eee;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); }
    .home #branding .slideshow .caption_holder {
      height: 30px; }
      .home #branding .slideshow .caption_holder .caption {
        zoom: 1; }
        .home #branding .slideshow .caption_holder .caption:before, .home #branding .slideshow .caption_holder .caption:after {
          content: "\0020";
          display: block;
          height: 0;
          visibility: hidden; }
        .home #branding .slideshow .caption_holder .caption:after {
          clear: both; }
        .home #branding .slideshow .caption_holder .caption p {
          display: block;
          margin-left: 10px;
          padding: 8px 0 0;
          width: 310px;
          height: 16px;
          overflow: hidden;
          float: left;
          font-weight: 500; }
        .home #branding .slideshow .caption_holder .caption .date {
          display: block;
          float: left;
          height: 15px;
          border-right: 2px solid #fff;
          padding-right: 12px;
          padding-bottom: 0;
          margin: 8px 0 0 11px;
          font-size: 14px;
          font-weight: 500;
          line-height: 15px;
          color: #fff; }
          .home #branding .slideshow .caption_holder .caption .date span {
            display: inline-block; }
            .home #branding .slideshow .caption_holder .caption .date span.y {
              display: none; }
        .home #branding .slideshow .caption_holder .caption a,
        .home #branding .slideshow .caption_holder .caption a.thumb img {
          display: none; }
        .home #branding .slideshow .caption_holder .caption .buttons {
          display: block;
          position: absolute;
          top: 0;
          right: 10px; }
          .home #branding .slideshow .caption_holder .caption .buttons a, .home #branding .slideshow .caption_holder .caption .buttons span {
            display: inline-block;
            width: 82px;
            height: 15px;
            background: none;
            margin: 0;
            padding-top: 9px;
            padding-left: 0;
            font-size: 12px;
            font-style: italic;
            font-weight: 500;
            filter: none; }
            .home #branding .slideshow .caption_holder .caption .buttons a.more:before, .home #branding .slideshow .caption_holder .caption .buttons a.tickets:before, .home #branding .slideshow .caption_holder .caption .buttons span.more:before, .home #branding .slideshow .caption_holder .caption .buttons span.tickets:before {
              background: none; }
            .home #branding .slideshow .caption_holder .caption .buttons a:hover, .home #branding .slideshow .caption_holder .caption .buttons span:hover {
              color: #008083;
              filter: none; }
            .home #branding .slideshow .caption_holder .caption .buttons a.soon, .home #branding .slideshow .caption_holder .caption .buttons span.soon {
              font-size: 10px; }
          .home #branding .slideshow .caption_holder .caption .buttons .ie8 a,
          .home #branding .slideshow .caption_holder .caption .buttons .ie8 span {
            padding-top: 6px; }
    .home #branding .slideshow .slide {
      position: relative;
      background-color: #fff;
      border-color: #dfdfdf;
      width: 602px;
      height: auto;
      border-width: 1px;
      border-style: solid;
      -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
      -moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
      box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4); }
    .home #branding .slideshow .imglink {
      height: 350px; }
    .home #branding .slideshow .imglink a {
      display: block;
      position: relative;
      top: 7px;
      left: 9px;
      width: 602px;
      height: 350px; }
    .home #branding .slideshow .thumbs_holder {
      display: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.one_sidebar_right.event_listing #column_1 .holder {
  width: 618px;
  padding: 0; }
  .one_sidebar_right.event_listing #column_1 .holder .container {
    width: 596px;
    padding: 20px 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .one_sidebar_right.event_listing #column_1 .holder .container .overview {
      border-bottom: 1px solid #DDD; }
      .one_sidebar_right.event_listing #column_1 .holder .container .overview h1 {
        color: #003872;
        font-size: 24px;
        font-family: "museo-sans";
        font-weight: 500; }

.container .events {
  margin: 0 0 25px; }

.event_list {
  position: relative; }
  .event_list .list {
    padding: 0;
    background: none;
    margin: 0 0 15px;
    position: relative; }
    .event_list .list p.noevents {
      padding: 10px;
      color: #4C4C4C;
      font-size: 20px;
      font-family: "museo-sans";
      font-weight: 500; }
  .event_list .entry {
    position: relative;
    width: 592px;
    border: 2px solid #eee;
    background-color: #eee;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(238, 238, 238, 0.9)), color-stop(50%, #ffffff), color-stop(100%, rgba(238, 238, 238, 0.9)));
    background-image: -moz-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    background-image: -webkit-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    background-image: linear-gradient(to right, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    margin: 0 auto 10px;
    padding: 0;
    z-index: 90; }
    .event_list .entry .info {
      margin: 5px auto;
      width: 578px;
      cursor: pointer;
      position: relative;
      zoom: 1; }
      .event_list .entry .info:before, .event_list .entry .info:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .event_list .entry .info:after {
        clear: both; }
      .event_list .entry .info .thumb {
        position: relative;
        margin: 0 14px 0 0;
        float: left; }
        .event_list .entry .info .thumb img {
          width: 100px;
          height: 80px;
          border: 1px solid #eee;
          outline: none; }
      .event_list .entry .info h3 {
        display: block;
        margin: 0;
        float: left;
        width: 420px;
        font-size: 16px;
        color: #003872;
        font-weight: 500;
        line-height: 100%;
        text-transform: none;
        font-family: "museo-sans"; }
      .event_list .entry .info h4 {
        display: block;
        margin: 0;
        padding: 6px 0 4px;
        float: left;
        width: 420px;
        font-size: 12px;
        color: #4c4c4c;
        font-weight: 500;
        line-height: 120%;
        text-transform: none;
        font-family: "museo-sans"; }
      .event_list .entry .info .date {
        display: block;
        float: left;
        width: 420px;
        padding: 11px 0 5px;
        font-weight: 500;
        font-size: 12px;
        line-height: 120%;
        color: #007F83; }
        .event_list .entry .info .date .y {
          display: none; }
      .event_list .entry .info .group {
        display: none; }
      .event_list .entry .info .center_club_wrap {
        display: none; }
    .event_list .entry .details {
      display: none;
      position: relative;
      height: auto;
      width: 555px;
      margin: 0 auto 8px;
      background: white;
      padding: 28px 12px 28px 10px;
      border-color: #eeeeee;
      border-width: 1px;
      border-style: solid;
      -webkit-box-shadow: inset 0px 0px 4px 3px rgba(0, 128, 131, 0.65);
      box-shadow: inset 0px 0px 4px 3px rgba(0, 128, 131, 0.65);
      zoom: 1; }
      .event_list .entry .details:before, .event_list .entry .details:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .event_list .entry .details:after {
        clear: both; }
      .event_list .entry .details .details_left {
        position: relative;
        float: left;
        width: 105px;
        min-height: 1px; }
        .event_list .entry .details .details_left .buttons {
          position: relative; }
          .event_list .entry .details .details_left .buttons a, .event_list .entry .details .details_left .buttons a:link, .event_list .entry .details .details_left .buttons a:visited {
            display: block;
            width: 56px;
            height: 36px;
            padding: 11px 0 0 34px;
            margin: 0 0 10px;
            position: relative;
            color: white;
            font: 700 12px/120% "museo-sans";
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #666666;
            background: #036f80;
            *zoom: 1;
            filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF036F80', endColorstr='#FF299690');
            background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
            background-size: 100%;
            background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
            background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
            background-image: radial-gradient(#299690 50%, #036f80 100%);
            -moz-border-radius: 4px 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px 4px; }
            .event_list .entry .details .details_left .buttons a.more:before, .event_list .entry .details .details_left .buttons a.event_more_flag:before, .event_list .entry .details .details_left .buttons a:link.more:before, .event_list .entry .details .details_left .buttons a:link.event_more_flag:before, .event_list .entry .details .details_left .buttons a:visited.more:before, .event_list .entry .details .details_left .buttons a:visited.event_more_flag:before {
              position: absolute;
              content: '';
              display: block;
              left: 8px;
              top: 6px;
              background: url(../images/buttons_sprite.png) no-repeat 0 -4px;
              width: 20px;
              height: 30px;
              z-index: 20; }
            .event_list .entry .details .details_left .buttons a.tickets:before, .event_list .entry .details .details_left .buttons a:link.tickets:before, .event_list .entry .details .details_left .buttons a:visited.tickets:before {
              position: absolute;
              content: '';
              display: block;
              left: 8px;
              top: 6px;
              background: url(../images/buttons_sprite.png) no-repeat 0 -57px;
              width: 20px;
              height: 30px;
              z-index: 20; }
            .event_list .entry .details .details_left .buttons a:hover, .event_list .entry .details .details_left .buttons a:link:hover, .event_list .entry .details .details_left .buttons a:visited:hover {
              text-decoration: none;
              background: #003873;
              background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
              background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
              /* FF3.6+ */
              background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
              /* Chrome,Safari4+ */
              background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
              /* Chrome10+,Safari5.1+ */
              background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
              /* Opera 11.10+ */
              background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
              /* IE10+ */
              background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
              /* W3C */
              filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
              /* IE6-8 */ }
          .event_list .entry .details .details_left .buttons span {
            display: block;
            width: 56px;
            height: 36px;
            padding: 11px 0 0 34px;
            margin: 0 0 10px;
            position: relative;
            background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
            background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
            background: -moz-radial-gradient(#299690 50%, #036f80 100%);
            background: -o-radial-gradient(#299690 50%, #036f80 100%);
            -pie-background: #168288;
            background: radial-gradient(#299690 50%, #036f80 100%);
            behavior: url("http://www.florenceciviccenter.com/PIE.htc");
            -webkit-border-radius: 4px;
            border-radius: 4px;
            cursor: default;
            color: white;
            font: 700 12px/120% "museo-sans";
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #666666; }
        .event_list .entry .details .details_left .buttons {
          width: 105px;
          height: auto; }
      .event_list .entry .details .details_right {
        position: relative;
        float: left;
        width: 450px; }
        .event_list .entry .details .details_right .event_body {
          width: 450px;
          border-bottom: 1px solid #ddd; }
          .event_list .entry .details .details_right .event_body p {
            display: block;
            width: 440px;
            color: #4C4C4C;
            font: 500 14px/140% "museo-sans";
            padding: 0 0 10px;
            margin: 0; }
        .event_list .entry .details .details_right ul {
          list-style: none;
          list-style-image: none;
          padding: 5px 0;
          margin: 0; }
          .event_list .entry .details .details_right ul li {
            padding: 0;
            margin: 0;
            zoom: 1; }
            .event_list .entry .details .details_right ul li:before, .event_list .entry .details .details_right ul li:after {
              content: "\0020";
              display: block;
              height: 0;
              visibility: hidden; }
            .event_list .entry .details .details_right ul li:after {
              clear: both; }
            .event_list .entry .details .details_right ul li label {
              display: block;
              float: left;
              width: 98px;
              padding: 5px 0;
              color: #007F83;
              font: 500 14px/140% "museo-sans"; }
            .event_list .entry .details .details_right ul li p {
              display: block;
              width: 348px;
              float: right;
              text-align: left;
              border-top: 1px solid #ddd;
              margin: 0;
              padding: 5px 0 5px 4px;
              color: #4C4C4C;
              font: 500 14px/140% "museo-sans"; }
              .event_list .entry .details .details_right ul li p a, .event_list .entry .details .details_right ul li p a:visited, .event_list .entry .details .details_right ul li p a:active {
                display: inline;
                color: #4C4C4C;
                text-decoration: none; }
                .event_list .entry .details .details_right ul li p a:hover, .event_list .entry .details .details_right ul li p a:focus, .event_list .entry .details .details_right ul li p a:visited:hover, .event_list .entry .details .details_right ul li p a:visited:focus, .event_list .entry .details .details_right ul li p a:active:hover, .event_list .entry .details .details_right ul li p a:active:focus {
                  text-decoration: underline; }
            .event_list .entry .details .details_right ul li:first-child p {
              border-top: 0; }

/* ----------------------------------------------------------------------------
= Group Events Listing
----------------------------------------------------------------------------- */
.group-sales .group {
  width: 100%; }
  .group-sales .group .info {
    width: 99%;
    margin: 0;
    cursor: auto; }
    .group-sales .group .info .thumb {
      margin: 12px 15px 30px 8px; }
    .group-sales .group .info h3,
    .group-sales .group .info .date,
    .group-sales .group .info .group {
      float: left;
      width: 75%; }
    .group-sales .group .info .group {
      display: block;
      margin: 5px 0 10px; }
      .group-sales .group .info .group h4 {
        font-size: 12px;
        margin: 0;
        padding: 0; }
      .group-sales .group .info .group p {
        margin: 0;
        padding: 0; }
  .group-sales .group .no_detail {
    padding: 0; }
    .group-sales .group .no_detail h3 {
      margin-top: 2px;
      color: #333;
      cursor: auto; }

/* ----------------------------------------------------------------------------
= Center Club Offers Events Listing
----------------------------------------------------------------------------- */
.center-club-current-offers .events .event_list .center_club {
  width: 100%; }
  .center-club-current-offers .events .event_list .center_club .info {
    width: 99%;
    margin: 0;
    cursor: auto; }
    .center-club-current-offers .events .event_list .center_club .info .thumb {
      margin: 12px 15px 30px 8px; }
    .center-club-current-offers .events .event_list .center_club .info h3,
    .center-club-current-offers .events .event_list .center_club .info .date,
    .center-club-current-offers .events .event_list .center_club .info .center_club_wrap {
      float: left;
      width: 75%; }
    .center-club-current-offers .events .event_list .center_club .info .center_club_wrap {
      display: block; }
      .center-club-current-offers .events .event_list .center_club .info .center_club_wrap h4 {
        padding: 5px 0 0; }
    .center-club-current-offers .events .event_list .center_club .info .club_offer_text {
      display: block;
      margin: 2px 0 10px; }
      .center-club-current-offers .events .event_list .center_club .info .club_offer_text h4 {
        font-size: 12px;
        margin: 0;
        padding: 0; }
      .center-club-current-offers .events .event_list .center_club .info .club_offer_text p {
        margin: 0;
        padding: 0; }
  .center-club-current-offers .events .event_list .center_club .no_detail {
    padding: 0; }
    .center-club-current-offers .events .event_list .center_club .no_detail h3 {
      margin-top: 2px;
      color: #333;
      cursor: auto; }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail #branding.active {
  margin: 0 0 22px; }
.event_detail #column_1 .holder .container {
  width: 560px;
  padding: 24px 24px 30px 14px;
  zoom: 1; }
  .event_detail #column_1 .holder .container:before, .event_detail #column_1 .holder .container:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  .event_detail #column_1 .holder .container:after {
    clear: both; }
.event_detail .event_sidebar {
  position: relative;
  float: left;
  width: 110px; }
  .event_detail .event_sidebar .buttons {
    position: relative; }
    .event_detail .event_sidebar .buttons a, .event_detail .event_sidebar .buttons a:link, .event_detail .event_sidebar .buttons a:visited {
      display: block;
      width: 56px;
      height: 36px;
      padding: 11px 0 0 34px;
      margin: 0 0 10px;
      position: relative;
      color: white;
      font: 700 12px/120% "museo-sans";
      text-transform: uppercase;
      text-shadow: 0px 1px 1px #666666;
      background: #036f80;
      *zoom: 1;
      filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF036F80', endColorstr='#FF299690');
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
      background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
      background-image: radial-gradient(#299690 50%, #036f80 100%);
      -moz-border-radius: 4px 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px 4px; }
      .event_detail .event_sidebar .buttons a.more:before, .event_detail .event_sidebar .buttons a.event_more_flag:before, .event_detail .event_sidebar .buttons a:link.more:before, .event_detail .event_sidebar .buttons a:link.event_more_flag:before, .event_detail .event_sidebar .buttons a:visited.more:before, .event_detail .event_sidebar .buttons a:visited.event_more_flag:before {
        position: absolute;
        content: '';
        display: block;
        left: 8px;
        top: 6px;
        background: url(../images/buttons_sprite.png) no-repeat 0 -4px;
        width: 20px;
        height: 30px;
        z-index: 20; }
      .event_detail .event_sidebar .buttons a.tickets:before, .event_detail .event_sidebar .buttons a:link.tickets:before, .event_detail .event_sidebar .buttons a:visited.tickets:before {
        position: absolute;
        content: '';
        display: block;
        left: 8px;
        top: 6px;
        background: url(../images/buttons_sprite.png) no-repeat 0 -57px;
        width: 20px;
        height: 30px;
        z-index: 20; }
      .event_detail .event_sidebar .buttons a:hover, .event_detail .event_sidebar .buttons a:link:hover, .event_detail .event_sidebar .buttons a:visited:hover {
        text-decoration: none;
        background: #003873;
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
        /* IE10+ */
        background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
        /* IE6-8 */ }
    .event_detail .event_sidebar .buttons span {
      display: block;
      width: 56px;
      height: 36px;
      padding: 11px 0 0 34px;
      margin: 0 0 10px;
      position: relative;
      background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
      background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
      background: -moz-radial-gradient(#299690 50%, #036f80 100%);
      background: -o-radial-gradient(#299690 50%, #036f80 100%);
      -pie-background: #168288;
      background: radial-gradient(#299690 50%, #036f80 100%);
      behavior: url("http://www.florenceciviccenter.com/PIE.htc");
      -webkit-border-radius: 4px;
      border-radius: 4px;
      cursor: default;
      color: white;
      font: 700 12px/120% "museo-sans";
      text-transform: uppercase;
      text-shadow: 0px 1px 1px #666666; }
  .event_detail .event_sidebar .social_share {
    width: 100px;
    margin: 15px 0 0 8px; }
    .event_detail .event_sidebar .social_share a.print, .event_detail .event_sidebar .social_share a.print:link, .event_detail .event_sidebar .social_share a.print:visited {
      position: relative;
      display: block;
      float: left;
      margin: 8px 0 0;
      width: 40px;
      padding: 0 0 0 26px;
      color: #656565;
      text-decoration: none;
      text-transform: capitalize;
      background: #eeeeee;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOGQ4ZDgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
      background: -moz-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #d8d8d8));
      /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* Opera 11.10+ */
      background: -ms-linear-gradient(top, #eeeeee 0%, #d8d8d8 100%);
      /* IE10+ */
      background: linear-gradient(to bottom, #eeeeee 0%, #d8d8d8 100%);
      /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#d8d8d8',GradientType=0 );
      /* IE6-8 */
      border: 1px solid #AEAEAE;
      font: 500 12px/190% "museo-sans";
      text-shadow: 0px 1px 1px #fff;
      behavior: url("http://www.florenceciviccenter.com/PIE.htc");
      -webkit-border-radius: 4px;
      border-radius: 4px; }
      .event_detail .event_sidebar .social_share a.print:hover, .event_detail .event_sidebar .social_share a.print:focus, .event_detail .event_sidebar .social_share a.print:link:hover, .event_detail .event_sidebar .social_share a.print:link:focus, .event_detail .event_sidebar .social_share a.print:visited:hover, .event_detail .event_sidebar .social_share a.print:visited:focus {
        text-decoration: none;
        background: #D8D8D8;
        filter: none; }
      .event_detail .event_sidebar .social_share a.print:before, .event_detail .event_sidebar .social_share a.print:link:before, .event_detail .event_sidebar .social_share a.print:visited:before {
        content: '';
        display: block;
        position: absolute;
        width: 15px;
        height: 21px;
        top: 0px;
        left: 6px;
        background: url(../images/events_sprite.png) no-repeat 0 -24px; }
.event_detail .event_info {
  position: relative;
  float: left;
  width: 450px; }
  .event_detail .event_info .overview h1 {
    display: block;
    margin: 0;
    width: 450px;
    font-size: 24px;
    color: #003872;
    font-weight: 500;
    line-height: 100%;
    text-transform: none;
    font-family: "museo-sans"; }
  .event_detail .event_info .overview h2 {
    display: block;
    margin: 0;
    padding: 5px 0 5px;
    width: 450px;
    font-size: 18px;
    color: #003872;
    font-weight: 500;
    line-height: 100%;
    text-transform: none;
    font-family: "museo-sans"; }
  .event_detail .event_info .overview span {
    display: block;
    width: 450px;
    padding: 5px 0 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #007F83; }
    .event_detail .event_info .overview span span {
      display: inline; }
    .event_detail .event_info .overview span .y {
      display: none; }
  .event_detail .event_info .description {
    color: #4C4C4C;
    padding: 15px 0 0; }
    .event_detail .event_info .description p {
      display: block;
      width: 445px;
      font: 500 14px/140% "museo-sans";
      padding: 0 0 10px;
      margin: 0; }
      .event_detail .event_info .description p a, .event_detail .event_info .description p a:visited {
        display: inline;
        color: #003872;
        text-decoration: none; }
        .event_detail .event_info .description p a:hover, .event_detail .event_info .description p a:visited:hover {
          color: #003872; }
  .event_detail .event_info .event_specifics {
    position: relative;
    width: 450px;
    padding: 10px 0;
    margin: 10px 0 0;
    border-top: 1px solid #ddd;
    list-style: none;
    zoom: 1; }
    .event_detail .event_info .event_specifics:before, .event_detail .event_info .event_specifics:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .event_detail .event_info .event_specifics:after {
      clear: both; }
    .event_detail .event_info .event_specifics li {
      padding: 0;
      margin: 0;
      zoom: 1; }
      .event_detail .event_info .event_specifics li:before, .event_detail .event_info .event_specifics li:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .event_detail .event_info .event_specifics li:after {
        clear: both; }
      .event_detail .event_info .event_specifics li label {
        display: block;
        float: left;
        width: 98px;
        padding: 5px 0;
        color: #007F83;
        font: 500 14px/140% "museo-sans"; }
        .event_detail .event_info .event_specifics li label.show_label {
          padding: 15px 0 5px; }
      .event_detail .event_info .event_specifics li p {
        display: block;
        width: 348px;
        float: right;
        text-align: left;
        border-top: 1px solid #ddd;
        margin: 0;
        padding: 5px 0 5px 4px;
        color: #4C4C4C;
        font: 500 14px/140% "museo-sans"; }
        .event_detail .event_info .event_specifics li p a, .event_detail .event_info .event_specifics li p a:visited, .event_detail .event_info .event_specifics li p a:active {
          display: inline;
          color: #4C4C4C;
          text-decoration: none; }
          .event_detail .event_info .event_specifics li p a:hover, .event_detail .event_info .event_specifics li p a:focus, .event_detail .event_info .event_specifics li p a:visited:hover, .event_detail .event_info .event_specifics li p a:visited:focus, .event_detail .event_info .event_specifics li p a:active:hover, .event_detail .event_info .event_specifics li p a:active:focus {
            text-decoration: underline; }
      .event_detail .event_info .event_specifics li .showings_left {
        display: block;
        list-style: none;
        width: 348px;
        float: right;
        text-align: left;
        border-top: 0;
        margin: 0;
        padding: 5px 0 5px 4px;
        color: #4C4C4C;
        font: 500 14px/140% "museo-sans"; }
        .event_detail .event_info .event_specifics li .showings_left li {
          display: block;
          list-style: none;
          width: 348px;
          border-top: 1px solid #ddd;
          padding: 5px 0;
          line-height: 210%;
          zoom: 1; }
          .event_detail .event_info .event_specifics li .showings_left li:before, .event_detail .event_info .event_specifics li .showings_left li:after {
            content: "\0020";
            display: block;
            height: 0;
            visibility: hidden; }
          .event_detail .event_info .event_specifics li .showings_left li:after {
            clear: both; }
          .event_detail .event_info .event_specifics li .showings_left li .ical {
            float: right;
            display: block;
            position: relative;
            height: 28px;
            width: 28px;
            float: right;
            margin: 0;
            text-indent: -9000px;
            -moz-border-radius: 4px / 4px;
            -webkit-border-radius: 4px 4px;
            border-radius: 4px / 4px;
            background-color: #299690;
            *zoom: 1;
            filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF299690', endColorstr='#FF036F80');
            background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
            background-size: 100%;
            background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
            background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
            background-image: radial-gradient(#299690 50%, #036f80 100%); }
            .event_detail .event_info .event_specifics li .showings_left li .ical:before {
              position: absolute;
              content: '';
              display: block;
              left: 0px;
              top: 0px;
              background: url(../images/buttons_sprite.png) no-repeat 4px -105px;
              width: 28px;
              height: 28px;
              z-index: 20; }
      .event_detail .event_info .event_specifics li:first-child p {
        border-top: 0; }
.event_detail .showings {
  margin: 0 0 20px;
  float: left;
  width: 530px; }
  .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 black;
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; }
    .event_detail .showings ul li {
      border-bottom: 1px solid black;
      padding: 8px 0 6px;
      margin: 0 25px 0 0;
      color: black;
      font-size: 12px;
      position: relative;
      font-weight: bold;
      line-height: 24px;
      width: 252px;
      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: 35px; }
      .event_detail .showings ul li .buttons {
        float: right;
        margin: 0; }
      .event_detail .showings ul li a.ical {
        text-indent: -5000px;
        display: block;
        width: 22px;
        height: 22px;
        background: url(../images/icons.png) no-repeat 0 0;
        padding: 0;
        margin: 0; }
        .event_detail .showings ul li a.ical:hover {
          background-position: 0 -22px; }
.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; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap,
.searchresults {
  width: 919px;
  padding: 0;
  margin: 55px 0 0;
  clear: both; }
  .sitemap #column_1,
  .searchresults #column_1 {
    padding: 20px 0; }
  .sitemap .holder,
  .searchresults .holder {
    display: block;
    position: relative;
    width: 100%;
    margin: 25px 0 15px;
    padding: 8px;
    height: auto;
    background-color: #FFFFFF;
    border-color: #eeeeee;
    border-width: 2px;
    border-style: solid;
    -webkit-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
    -pie-box-shadow: 1px 8px 121px #cccccc;
    behavior: url("http://www.florenceciviccenter.com/PIE.htc"); }
    .sitemap .holder:after,
    .searchresults .holder:after {
      background-color: #FFFFFF;
      z-index: -1;
      position: absolute;
      display: block;
      width: 100%;
      height: 99%;
      top: 6px;
      left: 8px;
      padding-right: 21px;
      margin-bottom: -5px;
      padding-bottom: 0; }
    .sitemap .holder .container,
    .searchresults .holder .container {
      position: relative;
      height: auto;
      border-color: #EEEEEE;
      border-width: 1px;
      border-style: solid;
      -webkit-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
      padding: 24px 24px 30px;
      zoom: 1; }
      .sitemap .holder .container:before, .sitemap .holder .container:after,
      .searchresults .holder .container:before,
      .searchresults .holder .container:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .sitemap .holder .container:after,
      .searchresults .holder .container:after {
        clear: both; }
    .sitemap .holder .overview,
    .searchresults .holder .overview {
      margin: 0 0 15px;
      padding: 0 0 5px;
      border-bottom: 1px solid #ddd; }
      .sitemap .holder .overview #sitemap_column_1,
      .searchresults .holder .overview #sitemap_column_1 {
        width: 50%;
        margin: 0 20px 0 60px; }

.sitemap #sitemap_column_1 {
  margin: 0 20px 0 0; }
.sitemap .column {
  float: left;
  width: 46%;
  padding: 0;
  position: relative; }
.sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .sitemap ul li {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px; }
    .sitemap ul li ul li {
      margin: 0;
      font-size: 12px;
      font-weight: bold; }
      .sitemap ul li ul li a {
        /*color:red;*/
        padding: 0 0 0 20px; }
        .sitemap ul li ul li a:hover, .sitemap ul li ul li a:focus {
          /*color:black;*/
          text-decoration: underline; }
      .sitemap ul li ul li ul {
        display: none; }
.sitemap a {
  text-decoration: none;
  /*color:red;*/ }
  .sitemap a:hover, .sitemap a:focus {
    /*color:black;*/ }

#cse-search-results {
  position: relative;
  background-color: #fff; }
  #cse-search-results iframe {
    width: 100%;
    height: 1600px; }

.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: relative; }
          .featured_holder #featured.event_list .entry .info .buttons a, .featured_holder #featured.event_list .entry .info .buttons a:link, .featured_holder #featured.event_list .entry .info .buttons a:visited {
            display: block;
            width: 56px;
            height: 36px;
            padding: 11px 0 0 34px;
            margin: 0 0 10px;
            position: relative;
            color: white;
            font: 700 12px/120% "museo-sans";
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #666666;
            background: #036f80;
            *zoom: 1;
            filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF036F80', endColorstr='#FF299690');
            background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
            background-size: 100%;
            background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
            background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
            background-image: radial-gradient(#299690 50%, #036f80 100%);
            -moz-border-radius: 4px 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px 4px; }
            .featured_holder #featured.event_list .entry .info .buttons a.more:before, .featured_holder #featured.event_list .entry .info .buttons a.event_more_flag:before, .featured_holder #featured.event_list .entry .info .buttons a:link.more:before, .featured_holder #featured.event_list .entry .info .buttons a:link.event_more_flag:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.more:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.event_more_flag:before {
              position: absolute;
              content: '';
              display: block;
              left: 8px;
              top: 6px;
              background: url(../images/buttons_sprite.png) no-repeat 0 -4px;
              width: 20px;
              height: 30px;
              z-index: 20; }
            .featured_holder #featured.event_list .entry .info .buttons a.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:link.tickets:before, .featured_holder #featured.event_list .entry .info .buttons a:visited.tickets:before {
              position: absolute;
              content: '';
              display: block;
              left: 8px;
              top: 6px;
              background: url(../images/buttons_sprite.png) no-repeat 0 -57px;
              width: 20px;
              height: 30px;
              z-index: 20; }
            .featured_holder #featured.event_list .entry .info .buttons a:hover, .featured_holder #featured.event_list .entry .info .buttons a:link:hover, .featured_holder #featured.event_list .entry .info .buttons a:visited:hover {
              text-decoration: none;
              background: #003873;
              background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
              background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
              /* FF3.6+ */
              background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
              /* Chrome,Safari4+ */
              background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
              /* Chrome10+,Safari5.1+ */
              background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
              /* Opera 11.10+ */
              background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
              /* IE10+ */
              background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
              /* W3C */
              filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
              /* IE6-8 */ }
          .featured_holder #featured.event_list .entry .info .buttons span {
            display: block;
            width: 56px;
            height: 36px;
            padding: 11px 0 0 34px;
            margin: 0 0 10px;
            position: relative;
            background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
            background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
            background: -moz-radial-gradient(#299690 50%, #036f80 100%);
            background: -o-radial-gradient(#299690 50%, #036f80 100%);
            -pie-background: #168288;
            background: radial-gradient(#299690 50%, #036f80 100%);
            behavior: url("http://www.florenceciviccenter.com/PIE.htc");
            -webkit-border-radius: 4px;
            border-radius: 4px;
            cursor: default;
            color: white;
            font: 700 12px/120% "museo-sans";
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #666666; }
        .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; }

#sponsors {
  display: block;
  position: relative;
  width: 918px;
  height: 88px;
  margin: 0 auto 75px;
  padding: 8px;
  background-color: #FFFFFF;
  border-color: #eeeeee;
  border-width: 2px;
  border-style: solid;
  -webkit-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  -pie-box-shadow: 1px 8px 121px #cccccc;
  behavior: url("http://www.florenceciviccenter.com/PIE.htc"); }
  #sponsors:after {
    background-color: #FFFFFF;
    z-index: -1;
    position: absolute;
    display: block;
    width: 578px;
    height: 99%;
    top: 6px;
    left: 8px;
    padding-right: 21px;
    margin-bottom: -5px;
    padding-bottom: 0; }
  #sponsors .container {
    position: relative;
    border-color: #EEEEEE;
    width: 867px;
    height: 86px;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
    padding: 0 24px; }
  .ie8 #sponsors, .ie9 #sponsors {
    filter: none !important; }
  #sponsors ul.sponsor_images {
    position: absolute;
    top: 10px;
    display: block;
    list-style: none;
    left: 0;
    margin: 0;
    padding: 0;
    width: 885px;
    padding: 13px 10px 0 25px;
    zoom: 1; }
    #sponsors ul.sponsor_images:before, #sponsors ul.sponsor_images:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    #sponsors ul.sponsor_images:after {
      clear: both; }
    #sponsors ul.sponsor_images li {
      margin-right: 10px;
      list-style-type: none;
      display: block;
      float: left; }
      #sponsors ul.sponsor_images li img {
        max-width: 160px;
        filter: url("http://www.florenceciviccenter.com/filters.svg#grayscale");
        filter: gray;
        /* IE6-9 */
        -webkit-filter: grayscale(100%); }
        #sponsors ul.sponsor_images li img:hover {
          filter: none;
          -webkit-filter: grayscale(0%); }
  #sponsors .featured-nav {
    display: none; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.one_sidebar_right.news_listing #column_1 .holder {
  width: 618px;
  padding: 0; }
  .one_sidebar_right.news_listing #column_1 .holder .container {
    width: 596px;
    padding: 20px 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .one_sidebar_right.news_listing #column_1 .holder .container .overview {
      border-bottom: 1px solid #DDD; }
      .one_sidebar_right.news_listing #column_1 .holder .container .overview h1 {
        color: #003872;
        font-size: 24px;
        font-family: "museo-sans";
        font-weight: 500; }

.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 {
    position: relative;
    width: 592px;
    border: 2px solid #eee;
    background-color: #eee;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(238, 238, 238, 0.9)), color-stop(50%, #ffffff), color-stop(100%, rgba(238, 238, 238, 0.9)));
    background-image: -moz-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    background-image: -webkit-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    background-image: linear-gradient(to right, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    margin: 0 auto 10px;
    padding: 0;
    z-index: 90; }
    .news_list .entry .info {
      position: relative;
      width: 578px;
      margin: 5px auto;
      padding: 10px 15px;
      zoom: 1; }
      .news_list .entry .info:before, .news_list .entry .info:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .news_list .entry .info:after {
        clear: both; }
      .news_list .entry .info h3 {
        display: block;
        margin: 0 0 5px;
        padding-right: 10px;
        font-size: 18px; }
        .news_list .entry .info h3 a {
          font-size: 20px;
          font-weight: 500;
          line-height: 100%;
          text-transform: none;
          font-family: "museo-sans";
          color: #003872; }
      .news_list .entry .info h4 {
        margin: 0 0 5px;
        padding-right: 10px;
        font-size: 14px; }
      .news_list .entry .info p {
        margin: 0 0 5px;
        font-size: 14px; }
    .news_list .entry a.more {
      display: inline-block;
      height: 24px;
      margin: 0 0 5px;
      font-size: 11px;
      line-height: 24px;
      font-weight: 500;
      text-transform: uppercase;
      text-decoration: none; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail {
  position: relative; }
  .news_detail .container {
    padding: 10px 15px;
    position: relative; }
  .news_detail #branding.active {
    width: 550px;
    margin-bottom: 10px; }
    .news_detail #branding.active img {
      width: 100%; }
    .news_detail #branding.active .caption_holder {
      display: none; }
  .news_detail .overview {
    width: 460px;
    border: none; }
    .news_detail .overview h1 {
      color: #003872; }
    .news_detail .overview .date {
      display: block;
      padding: 0 0 5px;
      font-size: 14px;
      font-weight: 500;
      line-height: 120%;
      color: #007F83; }
  .news_detail .body {
    border-bottom: 1px solid #ddd;
    margin: 0 0 10px; }
    .news_detail .body p {
      font-size: 13px; }
  .news_detail .thumb {
    float: left;
    width: 170px;
    height: 130px;
    border: 1px solid #ddd;
    margin: 0 15px 10px 0; }
    .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 0px;
      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 .buttons {
    float: right;
    top: -28px; }
    .news_detail .buttons a {
      float: left;
      width: 118px;
      height: 26px;
      margin-left: 10px;
      padding-left: 0;
      text-align: center; }

/* @group FAQ */
.faq {
  margin: 0 0 25px;
  padding: 0px;
  position: relative; }
  .faq dl {
    font-size: 11px; }
  .faq dt {
    position: relative;
    list-style: none;
    border: 2px solid #eee;
    padding: 10px 0 10px 20px;
    cursor: pointer;
    -moz-box-shadow: 0px 0px 2px rgba(238, 238, 238, 0.35);
    -webkit-box-shadow: 0px 0px 2px rgba(238, 238, 238, 0.35);
    box-shadow: 0px 0px 2px rgba(238, 238, 238, 0.35);
    background-image: -webkit-gradient(radial, 50%, 0, 50%, 100, color-stop(0%, white), color-stop(1%, white), color-stop(100%, rgba(238, 238, 238, 0.9)));
    background-image: -webkit-radial-gradient(center, ellipse cover, white 0%, white 1%, rgba(238, 238, 238, 0.9) 100%);
    background-image: -moz-radial-gradient(center, ellipse cover, white 0%, white 1%, rgba(238, 238, 238, 0.9) 100%);
    background-image: -o-radial-gradient(center, ellipse cover, white 0%, white 1%, rgba(238, 238, 238, 0.9) 100%);
    background-image: radial-gradient(ellipse cover at center, #ffffff 0%, #ffffff 1%, rgba(238, 238, 238, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFE6EEEE'); }
    .faq dt:hover p {
      color: #008083; }
    .faq dt p {
      position: relative;
      display: block;
      width: 470px;
      margin: 0 0 0 38px;
      padding: 0;
      font-family: "museo-sans";
      font-weight: 500;
      font-size: 14px;
      color: #003872;
      text-transform: none; }
      .faq dt p:before {
        content: "";
        display: block;
        position: absolute;
        left: -38px;
        top: 2px;
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 14px solid #003872; }
    .faq dt.active {
      position: relative;
      margin-bottom: 0px;
      border-left: 2px solid #eee;
      border-right: 2px solid #eee;
      border-top: 2px solid #eee;
      border-bottom: 0px;
      background-color: #fff;
      background-image: none; }
      .faq dt.active p {
        color: #008083; }
        .faq dt.active p:before {
          content: "";
          display: block;
          position: absolute;
          left: -38px;
          top: 2px;
          width: 0;
          height: 0;
          border-right: 8px solid transparent;
          border-left: 8px solid transparent;
          border-top: 14px solid #008083; }
  .faq dd {
    height: 0px;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
    padding: 0 20px 10px;
    overflow: hidden; }
    .faq dd p {
      margin-left: 36px;
      font-size: 13px;
      color: #4C4C4C; }
  .faq ul {
    margin: 0 0 16px;
    padding: 0 15px;
    font: 12px/160% Arial, Helvetica, sans-serif;
    list-style-image: url(../images/bullet.png);
    list-style-position: outside;
    list-style-type: square; }
    .faq ul ul {
      padding-top: 5px;
      margin-bottom: 0;
      border: none; }
    .faq ul li {
      padding: 0 0 8px;
      font-size: 13px;
      font-style: normal;
      line-height: 140%; }
      .faq ul li li {
        border-bottom: none; }

/* @end */
/* @group Calendar */
.cal_close_btn {
  display: none; }

.cal_back_btn {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #003872;
  display: block;
  position: absolute;
  bottom: 10px;
  width: 280px;
  text-align: center;
  z-index: 1000;
  cursor: pointer; }
  .cal_back_btn:hover {
    color: #0052AC;
    text-decoration: none; }

.cal_small_see_all {
  display: none; }

#calendar {
  position: relative;
  height: 299px;
  width: 280px;
  font: 11px Arial, Helvetica, sans-serif;
  margin: 10px 0 0;
  background: none;
  padding: 0px;
  float: left;
  background: #ddd;
  border-top: 1px solid #ececec;
  border-left: 2px solid #ececec;
  border-right: 2px solid #ececec;
  border-bottom: 2px solid #ececec; }

#calendar .tooltip {
  display: none;
  position: absolute;
  padding: 40px 0 0 0;
  top: 0px;
  left: -444px;
  width: 279px;
  height: 260px;
  font-weight: bold;
  z-index: 6100;
  background: url(../images/cal_overlay.png); }

#calendar .tooltip label {
  display: none; }

#calendar .tooltip .close {
  position: absolute;
  top: 15px;
  right: 16px;
  width: auto;
  height: 18px;
  background: url(../images/close_btn.png) no-repeat right top;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  color: #CCC;
  padding: 3px 24px 0 0;
  font-weight: normal; }

#calendar .tooltip .close:hover {
  color: #fff; }

#calendar .tooltip .content {
  margin: 10px;
  color: #4C4C4C;
  overflow: auto;
  height: 180px;
  border: 0; }

#calendar .tooltip .info {
  position: relative;
  font-size: 12px;
  line-height: 131%;
  display: block;
  clear: both;
  padding: 0 0 8px 0; }
  #calendar .tooltip .info .cal_image {
    width: 84px;
    height: 67px;
    float: left;
    overflow: hidden;
    margin-right: 10px; }
    #calendar .tooltip .info .cal_image img {
      height: 67px; }
    #calendar .tooltip .info .cal_image a:hover {
      background: black;
      opacity: 0.7; }
  #calendar .tooltip .info .cal_description {
    width: 148px;
    float: left; }

#calendar .tooltip .info h3 {
  font-family: "museo-sans";
  font-size: 12px;
  text-transform: none;
  font-weight: 500;
  height: 31px;
  overflow: hidden; }

#calendar .tooltip .info a {
  padding-bottom: 5px;
  display: block;
  color: #4C4C4C; }
  #calendar .tooltip .info a:hover {
    color: #0052AC;
    text-decoration: none; }

#calendar .tooltip .info .time {
  font-family: "museo-sans";
  color: #4C4C4C;
  display: block;
  line-height: 14px;
  clear: both;
  font-size: 12px;
  margin: 0;
  padding: 0;
  font-weight: 500; }

#calendar .tooltip .info .buttons {
  position: absolute;
  top: 50px;
  left: 95px;
  width: 150px; }

#calendar .tooltip .info .buttons a {
  display: inline;
  text-transform: uppercase;
  font-size: 11px;
  color: #003872;
  font-weight: 600;
  font-style: italic;
  float: left;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
  text-indent: 0;
  text-shadow: none;
  background: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
  filter: none; }
  #calendar .tooltip .info .buttons a:after {
    display: none !important; }
  #calendar .tooltip .info .buttons a:before {
    display: none !important; }
  #calendar .tooltip .info .buttons a:hover {
    color: #0052AC;
    text-decoration: none;
    background: none !important; }

#calendar .tooltip .info .buttons span {
  display: none; }

#calendar .tooltip .info .buttons a.more {
  margin: 0 0px 0 0; }

#calendar .tooltip .info .buttons a.tickets {
  width: 77px; }

#calendar .tooltip .hidden_event_date {
  display: none; }
#calendar .tooltip .overlay_date_header {
  position: absolute;
  top: 10px;
  left: 0;
  width: 281px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  color: #007F83;
  font-family: "museo-sans"; }
#calendar .tooltip .viewport {
  height: 230px;
  width: 281px;
  overflow: hidden;
  position: relative; }
#calendar .tooltip .scrollbar {
  width: 10px;
  height: 230px;
  position: absolute;
  right: 0;
  top: 0px; }
#calendar .tooltip .overview {
  width: 281px;
  height: 100%;
  margin: 0;
  padding: 8px 10px 8px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  list-style: none; }
#calendar .tooltip .scrollbar .track {
  width: 1px;
  background: none;
  height: 200px;
  position: relative;
  border-left: none;
  margin-top: 10px; }
#calendar .tooltip .scrollbar .track .thumb {
  width: 7px;
  height: 26px;
  background: #666;
  border-right: white;
  border-bottom: white;
  position: absolute;
  left: -2px;
  top: 21px;
  cursor: pointer; }
  #calendar .tooltip .scrollbar .track .thumb:hover, #calendar .tooltip .scrollbar .track .thumb:active {
    background: #003872; }

.jMonthCalendar {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0px;
  background: url(../images/cal_bg_bars.png); }
  .jMonthCalendar tr td {
    margin: 0;
    padding: 0; }

.MonthlyCalendar .MonthNavigation {
  border-bottom: solid 2px #eee;
  clear: both;
  padding: 0;
  height: 40px;
  background: url(../images/social_twitter_bg.png) 0 -5px;
  margin-bottom: 2px; }

.MonthlyCalendar .MonthNavPrev,
.MonthlyCalendar .MonthNavNext,
.MonthlyCalendar .TodayLink {
  width: 42px;
  height: 42px;
  background: url(../images/cal_sprite.png) no-repeat 0 0;
  position: absolute;
  top: 2px;
  text-indent: -4000px;
  cursor: pointer;
  z-index: 6050; }

.MonthlyCalendar .MonthNavPrev {
  left: 23px; }

.MonthlyCalendar .MonthNavPrev:hover {
  background-position: -50px 0; }

.MonthlyCalendar .MonthNavNext {
  right: 23px;
  background-position: top right; }

.MonthlyCalendar .MonthNavNext:hover {
  background-position: -129px 0; }

.MonthlyCalendar .MonthName {
  font-family: "museo-sans";
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  width: 280px;
  font-size: 20px;
  font-weight: 300;
  z-index: 6000;
  line-height: 40px;
  padding: 0;
  color: #007F83; }

.MonthlyCalendar {
  height: 100%;
  width: 100%;
  border-collapse: collapse; }

.MonthlyCalendar #CalendarHead {
  width: 100%;
  color: #fff;
  height: 74px; }
  .MonthlyCalendar #CalendarHead tr {
    height: 32px; }
    .MonthlyCalendar #CalendarHead tr:first-child {
      height: 42px; }

.MonthlyCalendar #CalendarHead .DateHeader {
  width: 14.285%;
  text-align: center;
  text-transform: uppercase;
  color: #003873;
  font-weight: 300;
  font-size: 12px;
  line-height: 32px;
  height: 32px;
  text-shadow: 0px -1px 0 rgba(6, 102, 102, 0.5); }

.DateBox {
  vertical-align: top;
  width: 35px;
  height: 28px;
  overflow: hidden;
  margin: 0;
  position: relative;
  padding: 0;
  border: 1px solid transparent; }

.DateBox.Weekend {
  background: none; }

.DateLabel {
  height: 25px;
  width: 35px;
  text-align: center;
  background: none;
  line-height: 25px;
  font-weight: 300;
  font-size: 20px;
  border: none;
  color: #CCCCCC; }

.DateLabel a {
  font-family: "museo-sans";
  cursor: default;
  text-decoration: none;
  color: #4D4D4D;
  padding: 0 0 0 2px;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5); }

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

.Today, #CalendarBody .DateBoxOver {
  /*background:#fff none repeat scroll 0 0;*/ }

.Today .DateLabel {
  position: relative;
  padding: 0px 0 0;
  width: 34px;
  height: 34px;
  border: none;
  margin-top: -4px;
  margin-left: 3px;
  border: none;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: url(../images/cal_sprite.png) -46px -45px;
  color: white;
  text-align: center;
  text-indent: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  cursor: pointer; }

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

#CalendarBody .active a {
  color: #FFC60C;
  cursor: pointer; }

/*#CalendarBody .active .DateLabel:hover {
	background: url(../images/day_hover.png) no-repeat 0 0;
	color:#222;
}*/
#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;
  /*padding:1px 1px 1px 4px;*/
  cursor: pointer;
  display: block;
  position: absolute;
  text-align: center;
  /*height:14px;*/ }

.jMonthCalendar .button {
  font-family: "museo-sans";
  position: relative;
  padding: 5px 0 0;
  width: 34px;
  height: 34px;
  border: none;
  margin-top: -3px;
  margin-left: 3px;
  background: url(../images/cal_sprite.png) -5px -45px;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0), 0px -1px 0px rgba(6, 102, 102, 0.5), 0px 0px 20px rgba(130, 211, 174, 0.8);
  color: white;
  text-align: center;
  text-indent: 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
  cursor: pointer; }
  .jMonthCalendar .button img {
    display: none; }

.jMonthCalendar .button label {
  padding: 0;
  margin: 0;
  cursor: pointer; }

.jMonthCalendar .button:hover {
  background: url(../images/cal_sprite.png) -46px -45px;
  color: white;
  text-indent: 0; }

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

.Event a {
  text-decoration: none;
  color: #000;
  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; }

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

.home_banner {
  background: #fff;
  position: relative;
  z-index: 20; }

.border_banner .banner {
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }

.insider_banner .banner {
  margin: 0 0 17px 0;
  padding: 7px 8px;
  width: 285px;
  height: 100px;
  float: left; }

.adserve_banner {
  width: 300px;
  height: 250px;
  margin-right: 17px;
  float: left; }
  .adserve_banner .banner {
    margin: 0;
    padding: 0;
    width: 300px;
    height: 250px;
    border: 1px solid transparent; }
    .adserve_banner .banner:hover {
      opacity: 1.0;
      border-color: #0155AF; }

.event_banner .banner {
  margin: 0 0 20px 0;
  padding: 8px;
  width: 603px;
  height: 84px; }

/* @group Default Banner */
.banner {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 0 10px;
  position: relative; }
  .banner:hover {
    opacity: 0.9;
    border: 1px solid #0155AF; }
  .banner .slideshow {
    width: 100%;
    height: 100%;
    background: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-width: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .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: 100%;
      height: 100%;
      background: none;
      margin: 0;
      padding: 0;
      border: 0; }
      .banner .slideshow .slide span {
        width: 100%;
        height: 100%; }
      .banner .slideshow .slide img {
        padding: 0;
        border: none;
        background: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0; }
    .banner .slideshow a {
      display: block;
      width: 100%;
      height: 100%; }
    .banner .slideshow .imglink {
      display: none;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }
      .banner .slideshow .imglink a {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }

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

.contest_list {
  position: relative; }
  .contest_list .entry {
    display: block;
    margin: 0 0 10px;
    padding: 5px;
    position: relative;
    clear: both;
    zoom: 1;
    border: 2px solid #eee;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, white 50%, rgba(238, 238, 238, 0.9) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(238, 238, 238, 0.9)), color-stop(50%, white), color-stop(100%, rgba(238, 238, 238, 0.9)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, white 50%, rgba(238, 238, 238, 0.9) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, white 50%, rgba(238, 238, 238, 0.9) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(238, 238, 238, 0.9) 0%, white 50%, rgba(238, 238, 238, 0.9) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(238, 238, 238, 0.9) 0%, #ffffff 50%, rgba(238, 238, 238, 0.9) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6eeeeee', endColorstr='#e6eeeeee',GradientType=1 );
    /* IE6-8 */ }
    .contest_list .entry:before, .contest_list .entry:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .contest_list .entry:after {
      clear: both; }
    .contest_list .entry .thumb {
      float: left;
      width: 100px;
      height: 80px;
      margin: 8px 15px 5px 0;
      padding: 0px; }
      .contest_list .entry .thumb a {
        display: block;
        border: 1px solid #999;
        width: 100px;
        height: 80px; }
        .contest_list .entry .thumb a img {
          width: 100%;
          height: 100%; }
    .contest_list .entry .info {
      float: left;
      width: 77%;
      margin: 5px 0; }
      .contest_list .entry .info h3 {
        font-size: 18px; }
      .contest_list .entry .info .date {
        font-size: 15px;
        line-height: 100%;
        margin: 0 0 10px;
        padding: 0; }
  .contest_list .buttons {
    width: auto;
    position: relative;
    padding: 1px 0 0; }
    .contest_list .buttons a,
    .contest_list .buttons span {
      float: left;
      display: block;
      width: auto;
      height: auto;
      margin-right: 6px;
      padding: 8px 10px;
      font-weight: 600; }
    .contest_list .buttons a.more::before {
      background: none;
      left: 6px;
      top: -2px; }

.contest_detail .date {
  margin: 0 0 5px; }
.contest_detail .overview,
.contest_detail .form,
.contest_detail .disclaimer {
  margin: 0 0 20px; }
.contest_detail .overview {
  border-bottom: 1px solid #DDD; }
  .contest_detail .overview h1 {
    color: #003872;
    font-size: 24px;
    font-family: "museo-sans";
    font-weight: 500; }
  .contest_detail .overview span.date {
    display: block;
    padding: 2px 0 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #007F83; }
    .contest_detail .overview span.date strong {
      margin-right: 4px; }
      .contest_detail .overview span.date strong:after {
        content: ":";
        display: block;
        margin-left: 2px; }
.contest_detail .description {
  margin: 0 0 20px; }
  .contest_detail .description .thumb {
    border: 1px solid #aaa;
    display: block;
    float: left;
    margin-top: 4px;
    margin-right: 15px;
    margin-bottom: 12px; }
.contest_detail .event_list {
  margin: 0 0 32px; }
  .contest_detail .event_list .entry {
    width: 546px; }
  .contest_detail .event_list .entry.group,
  .contest_detail .event_list .info {
    width: 100%; }
    .contest_detail .event_list .entry.group .thumb,
    .contest_detail .event_list .info .thumb {
      margin-top: 8px;
      margin-right: 15px;
      margin-left: 6px;
      margin-bottom: 6px; }
    .contest_detail .event_list .entry.group .group,
    .contest_detail .event_list .info .group {
      display: none; }

.map_holder {
  display: block;
  position: relative;
  width: 604px;
  height: 400px;
  margin: 0 0 15px;
  padding: 8px 6px;
  background-color: #FFFFFF;
  border-color: #eeeeee;
  border-width: 2px;
  border-style: solid;
  -webkit-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 8px 121px rgba(0, 0, 0, 0.2); }
  .map_holder .map {
    width: 100%;
    height: 100%; }
  .map_holder .map_control {
    display: none; }

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

#map_canvas {
  width: 612px;
  height: 326px;
  color: #222;
  font-size: 11px;
  margin: 0 0 20px;
  border: 2px solid #CCC;
  background: #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }
  #map_canvas .map_form {
    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 {
  position: relative;
  height: 350px;
  margin: 0 0 15px;
  padding: 0 0 15px;
  background-color: #FFFFFF;
  border-color: #EEEEEE;
  border-width: 1px;
  border-style: solid;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(204, 204, 204, 0.1), 0 0 14px rgba(0, 0, 0, 0.1); }
  .fbtabs h4 {
    position: relative;
    height: 25px;
    margin: 10px 0;
    padding: 0 0 0 10px;
    font-family: "museo-sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: #003873;
    text-align: left; }
    .fbtabs h4:before {
      content: "";
      display: inline-block;
      position: relative;
      left: 0;
      top: 5px;
      width: 20px;
      height: 20px;
      background: transparent url(../images/fb_icon.png) no-repeat 0 0;
      margin-right: 8px;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
      opacity: 0.4; }
  .fbtabs a.seeall {
    display: block;
    position: absolute;
    height: 22px;
    top: 51px;
    right: 11px;
    background: transparent url(../images/social_tab_bg.png) repeat-x 0 -9px;
    padding: 6px 15px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4c4c4c;
    z-index: 25;
    cursor: pointer;
    text-transform: capitalize;
    text-shadow: 0px 0px 1px #aaa; }
    .fbtabs a.seeall:before {
      content: "";
      display: inline-block;
      position: relative;
      left: 0;
      top: 5px;
      width: 16px;
      height: 16px;
      background: transparent url(../images/icon_seeall.png) no-repeat 0 0;
      margin-right: 8px; }
    .fbtabs a.seeall:hover {
      background: none;
      font-weight: 300;
      color: #fff; }
  .fbtabs .css-tabs {
    height: 38px;
    background: transparent url(../images/florence_social_bg2.png) no-repeat 0 0;
    border: 1px solid #BCDADC;
    border-bottom: 0;
    margin: 0;
    padding: 0;
    zoom: 1; }
    .fbtabs .css-tabs:before, .fbtabs .css-tabs:after {
      content: "\0020";
      display: block;
      height: 0;
      visibility: hidden; }
    .fbtabs .css-tabs:after {
      clear: both; }
    .fbtabs .css-tabs li {
      float: left;
      list-style: none;
      padding: 0; }
      .fbtabs .css-tabs li:first-child a {
        border-right: 0; }
    .fbtabs .css-tabs a {
      display: block;
      height: 20px;
      background: url("../images/social_tab_bg.png") repeat-x 0 -9px;
      border-right: 1px solid #eee;
      margin: 0 1px 0;
      padding: 9px 17px 7px;
      font-size: 14px;
      font-weight: 500;
      color: #4c4c4c;
      text-decoration: none;
      text-shadow: 0px 0px 1px #aaa; }
      .fbtabs .css-tabs a.current, .fbtabs .css-tabs a:hover {
        background: none;
        font-weight: 300;
        color: #fff; }
  .fbtabs .css-panes {
    display: block;
    position: relative;
    top: -1px;
    left: 0;
    /*width: 170px;*/
    height: 188px;
    background: transparent url(../images/florence_social_bg2.png) no-repeat 0 -25px;
    border: 1px solid #BCDADC;
    border-top: 0;
    margin: 0;
    padding: 10px 8px;
    overflow: hidden;
    clear: both;
    z-index: 5; }
    .fbtabs .css-panes .pane {
      display: none;
      border: none;
      min-height: 125px;
      padding: 0 0 5px; }
    .fbtabs .css-panes .attendee {
      float: left;
      width: 65px;
      height: 90px;
      background: #fff;
      margin: 0 0 8px;
      padding: 0 0 0 0;
      /*border:1px solid #999;*/
      font-weight: bold;
      line-height: 110%;
      text-align: center;
      zoom: 1; }
      .fbtabs .css-panes .attendee:before, .fbtabs .css-panes .attendee:after {
        content: "\0020";
        display: block;
        height: 0;
        visibility: hidden; }
      .fbtabs .css-panes .attendee:after {
        clear: both; }
      .fbtabs .css-panes .attendee a {
        display: block;
        margin: 0 0 3px 8px;
        font-size: 11px;
        line-height: 120%;
        color: #003872;
        text-align: left;
        text-decoration: none;
        clear: both; }
        .fbtabs .css-panes .attendee a div {
          font-weight: normal;
          font-size: 10px;
          color: #003872; }
        .fbtabs .css-panes .attendee a img {
          border: 1px solid #ccc;
          margin: 6px 0 0 -2px; }
      .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 {
  display: block;
  float: left;
  height: 20px;
  margin: 0 20px 0 5px;
  padding: 2px 0 0 5px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333; }

#fb_connect_rsvpshare a {
  display: block;
  float: left;
  width: 120px;
  height: 18px;
  background: #0075AC;
  border: 2px solid #333;
  padding: 5px 0 0;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; }
  #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 {
  display: none;
  position: relative;
  width: 249px;
  margin: 10px auto 10px;
  text-align: center;
  z-index: 15;
  zoom: 1; }
  #fb_rsvp:before, #fb_rsvp:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden; }
  #fb_rsvp:after {
    clear: both; }

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

#fb_rsvp button,
#fb_rsvp_status button,
#fb_rsvp_status span {
  display: block;
  float: left;
  position: relative;
  width: 115px;
  border: 0;
  padding: 12px 8px;
  font: 600 13px/120% "museo-sans";
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0px 1px 1px #666666;
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(50%, #299690), color-stop(100%, #036f80));
  background: -webkit-radial-gradient(#299690 50%, #036f80 100%);
  background: -moz-radial-gradient(#299690 50%, #036f80 100%);
  background: -o-radial-gradient(#299690 50%, #036f80 100%);
  -pie-background: #168288;
  background: radial-gradient(#299690 50%, #036f80 100%);
  behavior: url("http://www.florenceciviccenter.com/PIE.htc");
  -moz-border-radius: 4px 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px; }
  #fb_rsvp button:first-child,
  #fb_rsvp_status button:first-child,
  #fb_rsvp_status span:first-child {
    margin-right: 15px; }

#fb_rsvp_status span {
  margin-right: 0;
  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 {
  text-decoration: none;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF003873', endColorstr='#FF0155AF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAxNTVhZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #003873), color-stop(100%, #0155af));
  background-image: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
  background-image: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
  background-image: linear-gradient(to bottom, #003873 0%, #0155af 100%); }

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

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

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

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

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

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

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

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

#fb_window_content .warning {
  background: #FFEBE8; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.concierge_listing {
  position: relative; }
  .concierge_listing .list {
    margin: 0 0 20px;
    position: relative;
    padding: 0; }
    .concierge_listing .list .entry {
      display: block;
      clear: both;
      margin: 0;
      padding: 15px 0;
      width: 550px;
      position: relative;
      border-bottom: 2px solid #eee; }
      .concierge_listing .list .entry .thumb {
        position: relative;
        margin: 0 14px 0 0;
        float: left; }
        .concierge_listing .list .entry .thumb img {
          width: 100px;
          height: 80px;
          border: 1px solid #eee;
          outline: none; }
    .concierge_listing .list .info {
      float: left;
      width: 370px;
      margin: 0; }
      .concierge_listing .list .info h3 {
        font-size: 16px;
        color: #003872;
        font-weight: 500;
        line-height: 100%;
        text-transform: none;
        font-family: "museo-sans"; }
        .concierge_listing .list .info h3 a {
          font-size: 16px;
          color: #003872;
          font-weight: 500;
          line-height: 100%;
          text-transform: none;
          font-family: "museo-sans";
          text-decoration: none; }
          .concierge_listing .list .info h3 a:hover {
            color: #007F83;
            text-decoration: none; }
      .concierge_listing .list .info .address {
        padding: 0 0 10px;
        color: #4C4C4C;
        font-size: 12px;
        font-style: italic;
        line-height: 130%; }
        .concierge_listing .list .info .address span {
          display: block; }
  .concierge_listing .booking {
    width: auto;
    position: relative; }
    .concierge_listing .booking a, .concierge_listing .booking a:link, .concierge_listing .booking a:visited {
      display: block;
      text-align: center;
      width: 100px;
      height: 36px;
      padding: 11px 34px 0;
      margin: 0 0 10px;
      position: relative;
      color: white;
      font: 700 12px/120% "museo-sans";
      text-transform: uppercase;
      text-shadow: 0px 1px 1px #666666;
      background: #036f80;
      *zoom: 1;
      filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF036F80', endColorstr='#FF299690');
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
      background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
      background-image: radial-gradient(#299690 50%, #036f80 100%);
      -moz-border-radius: 4px 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px 4px; }
      .concierge_listing .booking a:hover, .concierge_listing .booking a:link:hover, .concierge_listing .booking a:visited:hover {
        text-decoration: none;
        background: #003873;
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMzg3MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMTU1YWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -moz-linear-gradient(top, #003873 0%, #0155af 100%);
        /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #003873), color-stop(100%, #0155af));
        /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #003873 0%, #0155af 100%);
        /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #003873 0%, #0155af 100%);
        /* IE10+ */
        background: linear-gradient(to bottom, #003873 0%, #0155af 100%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003873', endColorstr='#0155af',GradientType=0 );
        /* IE6-8 */ }

/**
 * 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: 164px;
  height: 154px;
  margin: 0 14px 0 5px;
  padding: 0; }
  .photo_gallery a {
    display: block; }
  .photo_gallery .set .thumb {
    width: 164px;
    height: 124px; }
    .photo_gallery .set .thumb img {
      width: 160px;
      height: 120px;
      border: 2px solid #fff;
      -moz-box-shadow: 0px 0px 5px #333333;
      -webkit-box-shadow: 0px 0px 5px #333333;
      box-shadow: 0px 0px 5px #333333;
      -webkit-transition: all 100ms linear;
      -moz-transition: all 100ms linear;
      -o-transition: all 100ms linear;
      transition: all 100ms linear; }
      .photo_gallery .set .thumb img:hover {
        border: 2px solid #999; }
  .photo_gallery .set h4 {
    margin: 0;
    padding: 5px 0;
    height: 40px;
    font-family: "museo-sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    overflow: hidden; }
  .photo_gallery .set p {
    margin-top: 6px;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 140%;
    color: #666;
    text-align: center; }
  .photo_gallery a:hover {
    text-decoration: none; }
  .photo_gallery + div.textarea {
    clear: both; }

/* @end */
.apple_overlay {
  display: none;
  width: 600px;
  padding: 15px 15px 10px;
  height: 570px;
  background: #fff; }
  .apple_overlay .close {
    background-image: url(../images/lightbox-btn-close.gif);
    position: absolute;
    bottom: 20px;
    right: 16px;
    cursor: pointer;
    width: 66px;
    height: 22px;
    z-index: 9000; }
  .apple_overlay .content {
    background: transparent; }
  .apple_overlay .slideshow {
    width: auto;
    height: 545px;
    background: #fff; }
    .apple_overlay .slideshow .caption_holder {
      display: block; }
    .apple_overlay .slideshow .controls {
      display: block;
      width: 100%;
      height: 53px;
      padding: 0;
      color: #fff;
      position: absolute;
      z-index: 600;
      top: 180px;
      left: 0; }
      .apple_overlay .slideshow .controls .nav-controls {
        position: relative; }
        .apple_overlay .slideshow .controls .nav-controls a.prev {
          display: block;
          width: 63px;
          height: 32px;
          background: url(../images/lightbox-btn-prev.gif) no-repeat 0 0;
          position: absolute;
          top: 0;
          left: 0px;
          text-indent: -4000px;
          cursor: pointer;
          border: none; }
        .apple_overlay .slideshow .controls .nav-controls a.next {
          display: block;
          width: 53px;
          height: 53px;
          background: url(../images/lightbox-btn-next.gif) no-repeat 0 0;
          position: absolute;
          top: 0;
          right: 0px;
          text-indent: -4000px;
          cursor: pointer;
          border: none; }
    .apple_overlay .slideshow .slide {
      width: 100%;
      height: 465px;
      overflow: hidden; }
      .apple_overlay .slideshow .slide span {
        display: block;
        width: 600px;
        height: 465px; }
    .apple_overlay .slideshow .caption_holder {
      display: none;
      position: absolute;
      bottom: 7px;
      left: -12px;
      width: 640px;
      padding: 10px 0 0;
      height: 40px;
      z-index: 15; }
      .apple_overlay .slideshow .caption_holder span {
        display: block;
        width: auto;
        height: 35px; }
    .apple_overlay .slideshow .caption {
      position: relative; }
      .apple_overlay .slideshow .caption p {
        color: #333;
        font-size: 14px;
        line-height: 100%;
        padding: 10px 0 0 20px;
        font-weight: bold;
        float: left;
        width: 600px;
        overflow: hidden;
        font-family: Georgia, "Times New Roman", serif; }
      .apple_overlay .slideshow .caption .date {
        color: #fff;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 100%;
        margin: 0;
        padding: 0;
        float: left;
        font-weight: normal;
        text-transform: uppercase;
        text-shadow: 1px 1px 1px #c38c1d; }
      .apple_overlay .slideshow .caption .buttons {
        float: right; }
        .apple_overlay .slideshow .caption .buttons a {
          display: block;
          text-transform: uppercase;
          font-size: 18px;
          color: #811211;
          padding: 6px 10px;
          letter-spacing: 0.5px;
          width: auto;
          float: left;
          background: url(../images/slideshow_btn_rule.png) no-repeat 0 0; }
          .apple_overlay .slideshow .caption .buttons a.more {
            margin: 0 2px 0 0; }
          .apple_overlay .slideshow .caption .buttons a:hover {
            color: #333; }
      .apple_overlay .slideshow .caption a {
        display: none; }
    .apple_overlay .slideshow .thumbs_holder {
      display: block;
      width: 600px;
      height: 80px;
      position: absolute;
      top: 473px;
      left: 0; }
      .apple_overlay .slideshow .thumbs_holder ul {
        display: block;
        list-style-type: none;
        list-style-image: none;
        padding: 0;
        margin: 0; }
      .apple_overlay .slideshow .thumbs_holder li {
        float: left;
        width: 65px;
        margin-right: 5px;
        height: 43px; }
        .apple_overlay .slideshow .thumbs_holder li a.thumb {
          display: block;
          width: 65px;
          height: 43px;
          border: none;
          background: transparent;
          border: 2px solid #fff; }
          .apple_overlay .slideshow .thumbs_holder li a.thumb img {
            display: block;
            width: 65px;
            height: 43px;
            border: none;
            background: transparent; }
        .apple_overlay .slideshow .thumbs_holder li.selected a.thumb {
          border: 2px solid #B0BAC9; }
      .apple_overlay .slideshow .thumbs_holder .caption {
        display: none; }
    .apple_overlay .slideshow .thumbs .caption {
      display: none; }
      .apple_overlay .slideshow .thumbs .caption p {
        color: #333;
        font-size: 12px;
        height: 30px;
        overflow: hidden; }
    .apple_overlay .slideshow .thumbs li:hover .caption {
      display: none;
      opacity: 1; }
    .apple_overlay .slideshow .video {
      width: 100%;
      height: 100%;
      background: url(../images/play.png) no-repeat center 160px;
      position: absolute;
      left: 0px;
      top: 0px;
      display: none;
      z-index: 601; }
      .apple_overlay .slideshow .video #video_player, .apple_overlay .slideshow .video #video_holder {
        display: block;
        width: 100%;
        height: 100%;
        margin: 8% auto 0;
        text-align: center; }
    .apple_overlay .slideshow .imglink {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      display: none; }
      .apple_overlay .slideshow .imglink #imglink {
        position: relative;
        background: url(../images/blank.png) 0 0 repeat;
        display: block;
        width: 100%;
        height: 100%; }
    .apple_overlay .slideshow img {
      display: block;
      width: 100%;
      height: 100%; }
  .apple_overlay #map_overlay {
    background-image: url(../images/map_transparent.png); }
  .apple_overlay .contentWrap {
    height: 375px;
    overflow: hidden;
    border: 1px solid #FF9100; }
  .apple_overlay .map_overlay.apple_overlay {
    display: none;
    width: 620px;
    padding: 35px;
    height: 370px; }

/* Typekit inactive and loading style fallbacks */
/* Conditional IE Styles. Nest each browser under heading
   classes are generated by Modernizr and appear in HTML tag */
.ie8 nav a, .ie8 nav a:link {
  filter: none; }
.ie8 nav ul li .sub {
  background-color: #036f80;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF299690', endColorstr='#FF036F80');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
  background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
  background-image: radial-gradient(#299690 50%, #036f80 100%); }
.ie8 nav ul ul li a:hover {
  background-color: #fff;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); }
.ie8 .link ul.list a:before {
  background: #289990 url("../images/style-icons.png") no-repeat -2px -2px; }
.ie8 .link ul.list a:hover, .ie8 .link ul.list a:focus {
  color: #0155AF; }
  .ie8 .link ul.list a:hover:before, .ie8 .link ul.list a:focus:before {
    background: #003873 url("../images/style-icons.png") no-repeat -2px -2px; }

.ie9 nav a, .ie9 nav a:link {
  filter: none; }
.ie9 nav ul li .sub {
  background-color: #036f80;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF299690', endColorstr='#FF036F80');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyOTk2OTAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMzZmODAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -moz-radial-gradient(#299690 50%, #036f80 100%);
  background-image: -webkit-radial-gradient(#299690 50%, #036f80 100%);
  background-image: radial-gradient(#299690 50%, #036f80 100%); }
.ie9 nav ul ul li a:hover {
  background-color: #fff;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); }
