﻿.slide-holder {
    margin: 0 auto;
}

.slide-container { /*slide-container là khối bao mà slide-stage có thể "trượt" bên trong */
    height: 200px;
    /*width: 100%;*/
    width:252px;
    overflow: hidden;
    position: relative;
}

.slide-stage {
    position: absolute;
}

.slide-image { /*Độ rộng của .slide-image có thể được thay đổi theo nhu cầu, ảnh hưởng đến độ rộng chung của slideshow*/
    float: left;
    /*width: 100%;*/
    height: auto;
    text-align: center;
}

    .slide-image img {
         max-width:252px;
        /*width: 100%;*/
        margin: 0 auto;
        /*position: absolute;*/
    }

    .slide-image p {
        position: relative;
        margin-left: 6px;
        margin-right:6px;
        
    }

        .slide-image p a {
            color: black;
        }

.slide-pager {
    position: relative;
}

.slide-control-prev {
    position: absolute;
    text-align: center;
    width: 25px;
    height: 60px;
    background: #e8e8e8;
    opacity: 0.7;
    line-height: 60px;
    color: #000;
    cursor: pointer;
    top: -140px;
    left: 5px;
}

.slide-control-next {
    position: absolute;
    text-align: center;
    width: 25px;
    height: 60px;
    background: #e8e8e8;
    opacity: 0.7;
    line-height: 60px;
    color: #000;
    cursor: pointer;
    right: 5px;
    top: -140px;
}
