/*
    anythingSlider v1.0
    
    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: 960px;
    height: 340px;
    position: relative;
    margin: 0 auto 0px;
}
 
.anythingSlider .wrapper {
    width: 960px;
    overflow: auto;
    height: 340px;
    margin: 0 00px;
    position: absolute;
    top: 0px; /*to move the image down*/
    left: 0;
}

.anythingSlider .wrapper ul {
    width: 9999px;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0px;
    margin: 0;
}

.anythingSlider ul li {
    display: block;
    float: left;
    padding: 0;
    height: 340px;
    width: 960px;
    margin: 0;
 }
 
.anythingSlider .arrow {
    display: block;
    height: 8px;
    width: 7px;
    background: url("/icons/newcbl/arrows.png") no-repeat 0 0;
    text-indent: -9999px;
    position: absolute;
    top: 8px;
    cursor: pointer;
    left: 930px;
}

.anythingSlider .forward {
    background-position: 0 0;
    right: -10px;
 }
 
.anythingSlider .back {
    background-position: -7px 0;
    left: 920px;
 }
 
.anythingSlider .forward:hover {
    background-position: 0 -9px;
}

.anythingSlider .back:hover {
    background-position: -7px -9px;
}

#thumbNav {
    position: relative;
    top: 0px;
    text-align: right;
    margin-right: 40px;
}

#thumbNav a {
    color: #999999;
    font-size: 11px;
    font-family: Verdana;
    font-weight: bold;
    display: inline-block;
    padding: 2px 2px;
    height: 18px;
    margin: 0 2px 0 0;
    text-decoration: none;
}

#thumbNav a:hover {
    color: #f38b0e;
}
#thumbNav a.cur {
    color: #f38b0e;
}

#start-stop {
    display: none;
}

/*
  Prevents
*/
.anythingSlider .wrapper ul ul {
    position: static;
    margin: 0;
    background: none;
    overflow: visible;
    width: auto;
    border: 0;
}

.anythingSlider .wrapper ul ul li {
    float: none;
    height: auto;
    width: auto;
    background: none;
}

/*
    For Specific Slides
*/
.textSlide ul                           { list-style-image: url(/reseller/images/slider/g-arrows.jpg); }
.textSlide ul li                        { display: list-item; }
#textSlide ul                           { list-style-image: url(/reseller/images/slider/g-arrows.jpg); }
#textSlide ul li                        { display: list-item; }

