/*
anythingSlider v1.2

By Chris Coyier: http://css-tricks.com
with major improvements by Doug Neiner: http://pixelgraphics.us/
based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

.anythingSlider {
    width: 1000px;
    height: 320px;
    position: relative;
    padding-bottom: 10px;
    /*margin: 0 auto 5px;*/
}
.anythingSlider .wrapper {
    width: 1000px;
    overflow: auto;
    height: 320px;
    margin: 0px;
    position: absolute;
    top: 0;
    left: 0;
}
/* Width below is max for Opera */
.anythingSlider .wrapper ul {
    width: 32700px;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    background: #eee;
    margin: 0;
}
.anythingSlider ul li {
    display: block;
    float: left;
    padding: 0;
    height: 320px;
    width: 1000px;
    margin: 0;
    position: relative;
    left: -40px;
}

