#eg-slideshow {
    /* width: 886px; */
    /* height: 290px; */
    margin: auto;
    background: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #eeeeee), color-stop(0.50, #ffffff),color-stop(1.00, #dddddd));
    background: -webkit-linear-gradient(90deg,#dddddd,#ffffff,#eeeeee);
    background: -moz-linear-gradient(90deg,#dddddd,#ffffff,#eeeeee);
    background: -o-linear-gradient(90deg,#dddddd,#ffffff,#eeeeee);
    background: linear-gradient(90deg,#dddddd,#ffffff,#eeeeee);
    background-repeat: no-repeat;
    text-align: center;
}

#eg-slideshow .shadow {
    height: 8px;
    background: #f0f0f0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #bbbbbb), color-stop(1.00, #f0f0f0));
    background: -webkit-linear-gradient(90deg,#f0f0f0,#bbbbbb);
    background: -moz-linear-gradient(90deg,#f0f0f0,#bbbbbb);
    background: -o-linear-gradient(90deg,#f0f0f0,#bbbbbb);
    background: linear-gradient(90deg,#f0f0f0,#bbbbbb);
    background-repeat: no-repeat;
}

#eg-slideshow figure {
    position: relative;
    float: left;
    margin: 20px 37px;
    z-index: 100;
    width: 200px;
    background: #fff;
    border: 10px solid #fff;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 10px #ccc;
    -moz-box-shadow: 0 3px 10px #ccc;
    -ms-box-shadow: 0 3px 10px #ccc;
    -o-box-shadow: 0 3px 10px #ccc;
    box-shadow: 0 3px 10px #ccc;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#eg-slideshow figcaption {
    font-family: verdana, arial, sans-serif;
    font-size: 1.1em;
    text-align: center;
    color: #5d7885;
    background: #fff;
}