/*  ContentFlowAddOn_ride, version 1.0.2 
 *  (c) 2008 - 2010 Sebastian Kutsch
 *  <http://www.jacksasylum.eu/ContentFlow/>
 *
 *  This file is distributed under the terms of the MIT license.
 *  (see http://www.jacksasylum.eu/ContentFlow/LICENSE)
 *
 *--------------------------------------------------------------------------*/

/*
 * This is an example file of an AddOn stylesheet. All values are the default
 * values as they are found in 'mycontentflow.css'.
 *
 * It should give you a good idea which elements of the ContentFlow you can
 * style and how to excess them.
 *
 * To use this stylesheet follow this guideline:
 *
 * 1. Create a new AddOn and use the addStylesheet method in the init method.
 *    Take a look at ContentFlowAddOn_ride.js to know how.
 *    So a minimal AddOn file just to apply this stylesheet would look like this:
 *      new ContentFlowAddOn ('ADDONNAME', {
 *          init: function () { this.addStylesheet(); }
 *      });
 *
 * 2. Rename all class definitions '.ContentFlowAddOn_ride' to
 *    '.ContentFlowAddOn_ADDONNAME'.
 *    Where ADDONNAME is the name of your AddOn.
 *
 * 3. Make the changes you like
 *
 * 4. Reload your page :-)
 * 
 */

/* ========== ContentFlow ========== */
/*
 * Within this file you can adjust the styling of ContentFlow
 * to your personal needs. The default styling is the same as found on the 
 * project page.
 *
 */

.ContentFlowAddOn_ride {
  height: 447px !important;
  margin-left: -1260px;
  width: 3500px;
}

    /* ----- styling of items ----- */
    .ContentFlowAddOn_ride .flow .item.active {
        cursor: pointer;
        text-decoration: none;
    }
        .ContentFlowAddOn_ride .flow .item .caption {
            font-size: 100%;
            font-weight: bold;
            color: #333333;
            max-height: 30%;
            bottom: 10%;
            background: none;
            width: 100%;
        }
        * html .ContentFlowAddOn_ride .flow .item .caption {
            background-image: none;
            filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='img/1x1_0.5_black.png');
        }
            .ContentFlowAddOn_ride .flow .item .caption a,
            .ContentFlowAddOn_ride .flow .item .caption a:link,
            .ContentFlowAddOn_ride .flow .item .caption a:visited,
            .ContentFlowAddOn_ride .flow .item .caption a:active,
            .ContentFlowAddOn_ride .flow .item .caption a:hover {
                text-decoration: none;
                color: white;
                font-style: italic;
                font-size: 0.8em;
            }
            .ContentFlowAddOn_ride .flow .item .caption a:hover {
                text-decoration: underline;
            }
        .ContentFlowAddOn_ride .flow .item.active .caption {
            display: block; /* uncomment to show caption inside item */
            
            background-color: #FFFFFF;
            background-color: rgba(255, 255, 255, 0.5);  /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
            *background:none;
            background:none\0/;
            filter: progid:DXImageTransform.Microsoft.gradient(gradientType='0',startColorStr='#7fffffff',EndColorStr='#7fffffff'); /* IE6–IE9 */
            bottom: 0;
            color: #333333;
            display: block;
            left: 0;
            position: absolute;
            right: 0;
            width: 100%;
            text-align: left;

        }
        .ContentFlowAddOn_ride .flow .item.active .caption h3 {
          border-bottom: 1px solid #999999;
          color: #FF122A;
          font-size: 17px;
          margin: 10px 25px;
          padding-bottom: 5px;
          
        }
        .ContentFlowAddOn_ride .flow .item.active .caption p {
          font-size: 18px;
		  line-height:1.4em;
          font-weight: normal;
          margin: 5px 25px 25px;
          padding: 5px 0;
        }
.ContentFlowAddOn_ride .flow .item.active .caption span {
	font-size:12px;
	padding:5px 18px;
	display:block;
	color:#000;
	text-align:right;
	}

.ContentFlow .flow .item img.content {
    height: 100%;
    width: 100%;
}

    /* ----- scrollbar ----- */
    .ContentFlowAddOn_ride .scrollbar {
      bottom: 0;
      height: 0;
      left: 1260px;
      margin: 0 auto;
      position: absolute;
      top: 0;
      width: 980px;
    }
      .ContentFlowAddOn_ride .scrollbar .preButton {
        background: transparent url('../images/prev-button.png') no-repeat;
        background: url("../images/prev-button.png") no-repeat scroll 0 0 transparent;
        height: 132px;
        position: absolute;
        top: 148px;
        width: 18px;
        left:0;
        
      }
      .ContentFlowAddOn_ride .scrollbar .nextButton {
        background: url("../images/next-button.png") no-repeat scroll 0 0 transparent;
        height: 132px;
        position: absolute;
        top: 148px;
        width: 18px;
        right:0;
      }

        .ContentFlowAddOn_ride .scrollbar .slider {
            width: 16px;
            height: 16px;
            background: url(img/slider_white.png) center center no-repeat;
        }
        
        /* only for IE <= 6 and a alphatransparent slider image */
        * html .ContentFlow .scrollbar .slider { background-image: none; }
        * html .ContentFlow .scrollbar .slider .virtualSlider {
            filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='img/slider_white.png');
        }

            .ContentFlowAddOn_ride .scrollbar .slider .position {
                top: 120%;
                font-size: 16px;
                font-weight: bold;
                color: silver
            }

    /* ----- global caption ----- */
    .ContentFlowAddOn_ride .globalCaption {
        text-align: center;
        font-weight: bold;
        color: white;
        font-size: 14px;
        height: 20px;
        margin: 2em auto;
    }
        .ContentFlowAddOn_ride .globalCaption .caption {
        }
            .ContentFlowAddOn_ride .globalCaption .caption a,
            .ContentFlowAddOn_ride .globalCaption .caption a:link,
            .ContentFlowAddOn_ride .globalCaption .caption a:visited,
            .ContentFlowAddOn_ride .globalCaption .caption a:active,
            .ContentFlowAddOn_ride .globalCaption .caption a:hover {
                text-decoration: none;
                color: white;
                font-style: italic;
                font-size: 0.8em;
            }

            .ContentFlowAddOn_ride .globalCaption .caption a:hover {
                text-decoration: underline;
            }

    /* ----- load indicator ----- */
    .ContentFlowAddOn_ride .loadIndicator {
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background: url(img/1x1_0.5_black.png);
    }
    * html .ContentFlowAddOn_ride .loadIndicator {
        background-image: none;
        filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='img/1x1_0.5_black.png');
    }
        .ContentFlowAddOn_ride .loadIndicator .indicator {
            background: url(img/loader.gif) center center no-repeat;
            width: 100%;
            height: 100%;
        }

/* ================================= */

