body {
  background-color: #eee;
}

.container {
    width: 500px;
    padding: 20px;
    overflow: hidden;
    margin: 0 auto;
}

.row {
    overflow: hidden;
}

.photo-slider {
    width: 500px;
    overflow: hidden;
    height: 350px;
    position: relative;
    -webkit-box-shadow: 0px 5px 5px black; 
    box-shadow: 0px 5px 5px black;       
}

.photo-slider .photo-slider-img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 100%;
    top: 0
}

.photo-slider .photo-slider-img.NOW {
    left: 0
}

.photo-controls {
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    margin-top: 10px
}

.photo-pagination .photo-page {
    cursor: pointer;
    display: inline-block;
    zoom:1}

.photo-pagination .photo-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    border-radius: 20px;
    background: #869791
}

.photo-pagination .photo-page.active span {
    filter: Alpha(Opacity=100);
    opacity: 1
}