
@CHARSET "UTF-8";
/* 
    Document   : cts_carousel
    Created on : Sep 4, 2012, 5:03:58 PM
    Author     : Daniel Schwiperich
    Description:
        Carousel, List and Slider
*/

/***********************************************************************************************************************
 * Carousels List 
 **********************************************************************************************************************/

/* General list */
.mod_cts_carousels {
    width: 100%; height: auto;  
    overflow: visible;
}

/* Slider */
.mod_cts_carousels.cts_slider { position: relative;  }
.mod_cts_carousels.cts_slider .slider-wrap { 
    position: relative; width: 100%; height: auto; overflow: hidden;
    box-sizing: border-box; border-left: 15px solid transparent; border-right: 15px solid transparent;
    -moz-box-sizing: border-box;
}
.mod_cts_carousels ul.slider-list { list-style: none; position: relative; overflow-x: hidden; }
.mod_cts_carousels ul.slider-list li { list-style: none; }

.mod_cts_carousels .slider-btn-left, .mod_cts_carousels .slider-btn-right {
    position: absolute; background: url(carousel_arrows.png) no-repeat 0px 0px; width: 12px; height: 55px;
    text-indent: -10000px; top: 50%; margin-top: -16px; overflow: hidden;
}
.mod_cts_carousels .slider-btn-left { left: 0px;  }
.mod_cts_carousels .slider-btn-right { right: 0px; background-position: -13px 0px;}

/* Slider Elements */
.mod_cts_carousels h2 { 
    margin-bottom: 10px; 
}
.mod_cts_carousels .slider-wrap { 
    height: auto; 
}

.mod_cts_carousels > .default, .mod_cts_carousels  ul.slider-list > li { 
    background: #fff; padding: 5px; margin: 0 3px;
    display: block; position: relative; z-index: 1;
    float: left; border: 1px solid #ccc;     
}
.mod_cts_carousels > .default a {
    cursor: pointer;
}
.mod_cts_carousels .default h3, .mod_cts_carousels  .default h3 a {}
.mod_cts_carousels .default h3 a:hover { text-decoration: none; }
.mod_cts_carousels .default a { line-height: 0px; }

.mod_cts_carousels  .default .image_container {
    position: relative;
    line-height: 0px;
}
.mod_cts_carousels  .default figure figcaption {
    
}
.mod_cts_carousels li .default .image_container .teaser { 
         display: block; bottom: -100%; 
         -moz-transition: bottom 2s 1s;
         -webkit-transition: bottom 2s 1s;
         transition: bottom 2s 1s;
         padding: 5px;
         box-sizing: border-box;
         -moz-box-sizing: border-box;
         -webkit-box-sizing: border-box;
}
.mod_cts_carousels li:hover .default .image_container .teaser { display: block; bottom: 0%; }
.mod_cts_carousels  .default .teaser {
    position: absolute; bottom: 0px; right: 0px; z-index: 10;
    background: rgba(255,255,255, 0.8); color: #333; font-size: 10px; line-height: 13px;
    width: 100%; height: 100%;
}
.mod_cts_carousels .slider-list { padding: 5px 0; }




/***********************************************************************************************************************
 * /Carousels List 
 **********************************************************************************************************************/


