/**************************************************
*
*   File: slideshow stylesheet
*   Author: Craig Nelson / Classic Labs Development
*
*/

  .slideshow,
  #slideshow-strip,
  .slideshow-nav {
    margin: 0;
    padding: 0;
  }
  .slideshow,
  #slideshow-strip li { width: 930px; }
  
  /* slideshows */
  .slideshow {
    position: relative;
    margin: 30px auto 10px;
    height: 284px;
    overflow: hidden;
    border: 1px solid #ccc;
  }
    #slideshow-strip {
      width: 9999px;
      height: 284px;
      overflow: hidden;
      visibility: hidden;
    }
      #slideshow-strip li {
        float: left;
        height: 284px;
        overflow: hidden;
      }
        #slideshow-strip li h2 { font-size: 26px; }
        #slideshow-strip li .caption {
          position: absolute;
          top: 32px;
          right: 0px;
          margin: 0;
          padding: 10px 20px 2px;
          width: 600px;
          color: #252525;
          font-size: 35px;
          line-height: 30px;
          text-align: right;
          background: -moz-linear-gradient(right, #e5e5e5, rgba(255,255,255,0) 100%);
          background: -webkit-gradient(linear, right center, left center, color-stop(#e5e5e5), color-stop(100%, rgba(255,255,255,0))); /* Chrome, Safari4+ */
          background: -webkit-linear-gradient(right, #e5e5e5, rgba(255,255,255,0) 100%); /* Chrome10+, Safari5.1+ */
          background: -o-linear-gradient(right, #e5e5e5, rgba(255,255,255,0) 100%);
          background: -ms-linear-gradient(right, #e5e5e5, rgba(255,255,255,0) 100%); /* IE 10+ */
          background: linear-gradient(right, #e5e5e5, rgba(255,255,255,0) 100%); /* W3C */
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#e5e5e5',GradientType=1); /* IE 6-9 */
        }
        #slideshow-strip li .description {
          display: block;
          margin: 5px 0 7px;
          font-size: 14px;
          text-align: right;
        }
  .slideshow-nav {
    text-align: center;
    overflow: hidden;
    visibility: hidden;
  }
    .slideshow-nav li { display: inline; }
      .slideshow-nav li span {
        display: inline-block;
        margin-right: 2px;
        width: 10px;
        height: 10px;
        cursor: pointer;
        border: 2px solid #bbb;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: #fff;
      }
      .slideshow-nav li span:hover,
      .slideshow-nav li span.active { border: 2px solid #73828C; }
  #slideshow-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
  }
  /* --slideshows */