
#wrapper {
    width: 100%;
    height: 550px;
    position: relative;
    margin-top: 60px;
}

#carousel {
    width: 100%;
    position:relative;
}
#carousel ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
#carousel li {
    font-size: 40px;
    color: #999;
    text-align: center;
    display: block;
    width: 300px;
    height: 500px;
    padding: 0;
    float: left;
    position: relative;
    margin: 0 30px;
}

#carousel li img {
    max-width: 100%;
    height: 350px;
    margin-top: 14px;
}

#carousel li span {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 65px;
    position: absolute;
    z-index: 2;
    background-color: #E6E6E6;
    text-align: left;
    padding: 10px;
    margin-top: 5px;
}   
#carousel li span p{
    color: #808080;
    font-size: 12px;
}

.clearfix {
    float: none;
    clear: both;
}
#carousel .prev, #carousel .next {
    display: block;
    overflow: hidden;
    width: 60px;
    height: 100px;
    margin-left: 10px;
    position: absolute;
    top: 200px;  
}

#carousel .prev {
    background-position: 0 0;
    left: 30px;
}
#carousel .prev:hover {
    left: 31px;
}   
#carousel .next {
    background-position: -18px 0;
    right: 30px;
}
#carousel .next:hover {
    right: 31px;
}   
#carousel .pager {
    text-align: center;
    margin: 0 auto;
}
