/* Tiny Carousel */
#slider1 {
    height:100%;
    width:100%;
    overflow: hidden;
    position: relative;    
}

#slider1 .viewport {
    height:Calc( 100% - 41px);
    width:100%;
    overflow: hidden;
    position: relative;
}

#slider1 .buttons {
       filter: Alpha(Opacity=50);
    opacity: 0.8;
    background: #ffffff;
    border-radius: 35px;
    display: block;
    position: relative; 
    width: 25px;
    height: 25px;
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height:25px;
    text-decoration: none;
    float:right;
    margin:0 5px;  
}

#slider1 .next {
    right: 0;
    left: auto;
    top: 50%;
}

#slider1 .buttons:hover {
    color: #C01313;
    background: #fff;
}

#slider1 .disable {
    visibility: hidden;
}

#slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    height: 100%;
    left: 0;
    top: 0;
    overflow:hidden;
}

#slider1 .overview li {
    float: left;
    margin:0;
    padding: 1px;
    width:200px;   
    height:Calc( 100% - 4px);
 }
