/**!meta-info
 *
 * @name            Content Slider
 *
 * @description     
 *
 * @copyright       Copyright (c) 2009, Trapeze, All rights reserved.
 * @link            http://www.trapeze.com
 * @base-version    0.1.0
 *
 */

@media all {
    .content-slider {
        position: relative;
        overflow: hidden;
        color: #fff;
        border: solid 6px #fff;
        border-top: none;
        
        height: 257px; /* TODO: height of the content */
        width: 888px; /* TODO: width of the content */
    }
    
    .content-slider li.slider-item {
        position: relative;
        float: left;
        
        height: 257px; /* TODO: height of the content */
        width: 888px; /* TODO: width of the content */
    }
    
    .content-slider .message {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        background: transparent url(../images/bg-slider-msg.png) repeat left top;
        
        font-family: 'Arial Narrow';
        font-size: 17px;
        font-weight: bold;
        text-transform: uppercase;
        padding: 4px 14px;
    }
    
    .has-js .content-slider .message {
        padding: 8px 14px 6px;
    }
    
    .content-slider .message p {
        margin: 0;
    }
    
    /*----------- Controls ------------------------------------ */
    .content-slider .control {
        position: absolute;
        cursor: pointer;
    }
    
    .content-slider .left { /* TODO: Position the left control accordnly */
        left: 20px;
        top:  120px;
    }
    
    .content-slider .right { /* TODO: Position the right control accordingly */
        right: 20px;
        top:   120px;
    }
    
    .content-slider .control.disabled {
        display: none;
    }
    
    .content-slider .playback {
        bottom: 60px;
        right: 20px;
    }
    /*----------- Paginaltion -------------------------------- */
    .content-slider .pagination { /* TODO: Position of the pagination */
        position: absolute;
        right: 18px;
        bottom: 8px; 
    }
    
    .content-slider .pagination li {
        display: inline-block;
        cursor: pointer;
        padding: 0 4px;
        width: 7px;
        height: 15px;
        overflow: hidden;
        background: transparent url(../images/sprite-slider.png) no-repeat left top;
    }
    
    .content-slider .pagination li.current {
        background-position: left -25px;
    }
    
    .content-slider .pagination li span {
        /*visibility: hidden;*/
        display: inline-block;
        text-indent: -10000px;
    }
}

