   .pure_slider_container {
        margin:0px auto;
        width:340px;
        height:275px;
        overflow:hidden;
        position:relative;
    }

    .pure_slider_container div {
        position:absolute;
        top:0;
        left:0;
        opacity:0;
        filter:alpha(opacity=0);
        width:100%;
    }

    .pure_slider_container div {
        -webkit-animation: round 25s linear infinite;
                animation: round 25s linear infinite;
    }
    
    .pure_slider_container div img {
        max-width:100%;
    }

    @-webkit-keyframes round {
        4% {
            opacity: 1;
            filter: alpha(opacity=100);
        }
        20% {
            opacity: 1;
            filter: alpha(opacity=100);
        }
        24% {
            opacity: 0;
            filter: alpha(opacity=0);
        }
    }

    @keyframes round {
        4% {
            opacity: 1;
            filter: alpha(opacity=100);
        }
        20% {
            opacity: 1;
            filter: alpha(opacity=100);
        }
        24% {
            opacity: 0;
            filter: alpha(opacity=0);
        }
    }

    .pure_slider_container div:nth-child(5) {
        -webkit-animation-delay: 0s;
                animation-delay: 0s;
    }

    .pure_slider_container div:nth-child(4) {
        -webkit-animation-delay: 5s;
                animation-delay: 5s;
    }

    .pure_slider_container div:nth-child(3) {
        -webkit-animation-delay: 10s;
                animation-delay: 10s;
    }

    .pure_slider_container div:nth-child(2) {
        -webkit-animation-delay: 15s;
                animation-delay: 15s;
    }

    .pure_slider_container div:nth-child(1) {
        -webkit-animation-delay: 20s;
                animation-delay: 20s;
    }

.main .entry-content .pure_slider_container img {
    max-width:100% !important;
}