/* slider.css */


/*
    This is a custom version of anythingSlider.
    Base credit to:
    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/
*/


/*
-------------------------------------------------
    S t r u c t u r e
------------------------------------------------- */
.anythingSlider,
.anythingSlider .wrapper,
.anythingSlider .wrapper ul li { 
    height: 400px;
 }
.anythingSlider ul li {
    border-top-left-radius: 10px; -moz-border-radius-topleft: 10px; -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px;
}
.anythingSlider ul li ul li {
    background-image: none;
    background-color: Transparent;
    padding: 0;
    border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;
}
.anythingSlider {
    position: relative;
    width: 960px;
}
.anythingSlider .wrapper {
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
}
.anythingSlider .wrapper ul {
    width: 9999px;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    margin: 0;
}
.anythingSlider ul li {
    position: relative;
    background-color: #FFF;
    display: block;
    float: left;
    padding: 10px;
    width: 940px;
    margin: 0;
}


/*
-------------------------------------------------
    N a v i g a t i o n
------------------------------------------------- */
.anythingSlider .arrow {
    background-image: url(../../i/slider/slider-arrows.png);
    background-color: transparent;
    display: block;
    height: 28px;
    width: 22px;
    text-indent: -9999px;
    position: absolute;
    top: 15px;
    cursor: pointer;
}
.anythingSlider .forward {
    background-position: right top;
    right: -11px;
}
.anythingSlider .back {
    background-position: left top;
    right: 11px;
}
.anythingSlider .forward:hover {
    background-position: right bottom;
}
.anythingSlider .back:hover {
    background-position: left bottom;
}
#thumbNav {
    background-color: transparent;
    position: absolute;
    bottom: 0;
    height: 44px;
    display: inline;
    padding: 52px 0 0;
    width: 100%;
    text-align: center;
	z-index:10;
}
#thumbNav a {
    color: #FFF;
    cursor: pointer;
    display: inline;
    font-size: 16px;
    font-weight: bold;
    height: 44px;
    letter-spacing: .04em;
    line-height: 50px;
	/* reversed order of display values in an attempt to center align text in FF3.0 */
    display: inline-block; 
    display: -moz-inline-stack;
    /* ------ */
    *display:inline;
    margin:0;
    overflow: hidden;
    padding:0;
    text-align:center;
    text-transform: uppercase;
    vertical-align:middle;
    width:200px;
    zoom:1;
}
#thumbNav a:hover,
#thumbNav a.cur {
    text-decoration: none;
    color: #FFF;
}
#start-stop {
    background: green;
    background-image: url(../../images/cellshade.png);
    background-repeat: repeat-x;
    color: white;
    padding: 2px 5px;
    width: 40px;
    text-align: center;
    position: absolute;
    right: 45px;
    top: 323px;
}
#start-stop.playing {
    background-color: red;
}
#start-stop:hover {
    background-image: none;
}


/*
-------------------------------------------------
    R e s e t s
------------------------------------------------- */
.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;
}


/*
-------------------------------------------------
    T i t l e   C o n t r o l   b a r
------------------------------------------------- */
.anythingSliderTitle {
    position: absolute;
    top: 11px;
    right: -12px;
    display: block;
    background-color: #8ec509; /* Title bg color */
    height: 38px;
    line-height: 38px;
    padding: 0 56px 0 10px;
    color: #FFF;
    font-weight: bold;
    width: 200px;
}
.anythingSliderTitle span {
    position: absolute;
    top: 38px;
    right: 0;
    font-size: 0px; 
    line-height: 0%; 
    width: 0px;
    border-top: 12px solid #84b01a; /* Angle shape bg color */
    border-right: 12px solid transparent;
    _border-right: 12px solid #d7e2f7; /* false transparent for IE6 */
}
body.well-being .anythingSliderTitle {
    width: 270px;
}