/*css เปลี่ยนรูปนาย*/
.slide_show {
    position: relative;

    /* responsive */
    display: inline-block;
    width: 100%;
    margin: 8px;
}
.slide_show img {
    position: absolute;
    left: 0;
    top: 0;

    /* responsive image */
    width: 213px;
    height: 289px;

    /* speed ของ effect */
    transition: 1s;

    /* fade out*/
    opacity: 0;
}
.slide_show img.select {
    /* fade in  */
    opacity: 1;
}
/*end css เปลี่ยนรูปนาย*/
