   *
{
    margin: 0;
    padding: 0;

    text-decoration: none;
}

body
{
    padding: 0px;
}

#container
{
    position: relative;

    overflow: hidden;
    
    margin: 0 auto;
    width: 1200px;
    height: 500px;
    border: 0px solid #333;
}

#list
{
    position: absolute;
    z-index: 1;

    width: 8400px;
    height: 400px;
}

#list img
{
    float: left;
}

#buttons
{
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 560px;

    width: 100%;
    height: 10px;
    text-align: center;
}

#buttons span
{
    float: left;

    width: 10px;
    height: 10px;
    margin-right: 5px;

    cursor: pointer;

    border: 1px solid #fff;
    border-radius: 50%;
    background: #333;
}

#buttons .on
{
    background: orange;
}

.arrow
{
    font-size: 36px;
    font-weight: bold;
    line-height: 39px;

    position: absolute;
    z-index: 2;
    top: 440px;

    display: none;

    width: 40px;
    height: 40px;

    cursor: pointer;
    text-align: center;

    color: #fff;
    background-color: RGBA(0, 0, 0, .3);
}

.arrow:hover
{
    background-color: RGBA(0, 0, 0, .7);
}

#container:hover .arrow
{
    display: block;
}

#prev
{
    left: 20px;
}

#next
{
    right: 20px;
}
