﻿/*
	AnythingSlider v1.8+ Metallic theme
	By Rob Garrison
*//*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************//* change the ID & dimensions to match your slider */
#slider
{
    width: 100%;
    height: 475px;
    list-style: none;
    margin: 0 auto;/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
    overflow-y: auto;
    overflow-x: hidden;
}/******************
  SET STYLING HERE
 ******************
 =================================
 Default state (no keyboard focus)
 ==================================*//* Overall Wrapper */
.anythingSlider-custom
{
    margin: 0 auto;/* 23px right & left padding for the navigation arrows *//*padding: 0 23px;*/
    padding: 0;
}/* slider window - top & bottom borders, default state */
.anythingSlider-custom .anythingWindow
{
    border-top: none;
    border-bottom: none;
}/* Navigation buttons + start/stop button, default state */
.anythingSlider-custom .anythingControls a
{
    background: transparent url(../../willbettingde/image/arrows-custom.png) -68px -40px repeat-x;
    color: #000;
    border: #000 1px solid;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}/* Navigation current button, default state */
.anythingSlider-custom .anythingControls a.cur, .anythingSlider-custom .anythingControls a:hover
{
    background-position: -70px -137px;
    background-color: #888;
    color: #000;
}/* start-stop button, stopped, default state */
.anythingSlider-custom .anythingControls a.start-stop
{
    background: #040;
    color: #ddd;/* top shadow */
    -moz-box-shadow: inset 1px 2px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: inset 1px 2px 5px rgba(0,0,0,.5);
    box-shadow: inset 1px 2px 5px rgba(0,0,0,.5);
}/* start-stop button, playing, default state */
.anythingSlider-custom .anythingControls a.start-stop.playing
{
    background-color: #800;
}/* start-stop button, default hovered text color (when visible) *//* hide nav/start-stop background image shadow on hover - makes the button appear to come forward */
.anythingSlider-custom .anythingControls a.start-stop:hover, .anythingSlider-custom .anythingControls a.start-stop.hover, .anythingSlider-custom .anythingControls a.start-stop .anythingControls ul a:hover
{
    color: #fff;/* clear top shadow */
    -moz-box-shadow: inset 0 0 0 #000;
    -webkit-box-shadow: inset 0 0 0 #000;
    box-shadow: inset 0 0 0 #000;
}/*
 =================================
 Active State (has keyboard focus)
 =================================
*//* slider window - top & bottom borders, active state */
.anythingSlider-custom.activeSlider .anythingWindow
{
    border-color: transparent;
}/* Navigation buttons, active state */
.anythingSlider-custom.activeSlider .anythingControls a
{/*background-color: transparent;*/
    background-color: #bbb;
}/* Navigation current button, active state */
.anythingSlider-custom.activeSlider .anythingControls a.cur, .anythingSlider-custom.activeSlider .anythingControls a:hover
{
    background-position: -76px -57px;
    background-color: #ff0105;
}/* start-stop button, stopped, active state */
.anythingSlider-custom.activeSlider .anythingControls a.start-stop
{
    background: #080;
    color: #fff;
}/* start-stop button, playing, active state */
.anythingSlider-custom.activeSlider .anythingControls a.start-stop.playing
{
    color: #fff;
    background: #d00;
}/* start-stop button, active slider hovered text color (when visible) */
.anythingSlider-custom.activeSlider .start-stop:hover, .anythingSlider-custom.activeSlider .start-stop.hover
{
    color: #fff;
}/************************
  NAVIGATION POSITIONING
 ************************//* Navigation Arrows */
.anythingSlider-custom .arrow
{
    top: 50%;
    position: absolute;
    display: block;
    z-index: 100;
}
.anythingSlider-custom .arrow a
{
    display: block;
    width: 30px;
    height: 46px;
    margin: -55px 0 0 0;/* half height of image */
    text-align: center;
    outline: 0;
    background: url(../../willbettingde/image/arrows-custom.png) no-repeat;
}/* back arrow */
.anythingSlider-custom .back
{
    left: 20px;
}
.anythingSlider-custom .back a
{
    background-position: left bottom;
}
.anythingSlider-custom .back a:hover, .anythingSlider-custom .back a.hover
{
    background-position: left top;
}/* forward arrow */
.anythingSlider-custom .forward
{
    right: 20px;
}
.anythingSlider-custom .forward a
{
    background-position: right bottom;
}
.anythingSlider-custom .forward a:hover, .anythingSlider-custom .forward a.hover
{
    background-position: right top;
}/* Navigation Links */
.anythingSlider-custom .anythingControls
{
    height: 15px;/* limit height, needed for IE9 of all things */
    outline: 0;
    display: none;
    float: right;
    position: absolute;
    bottom: 5px;
    right: 20px;
    margin: 0 45px;
    z-index: 100;
    opacity: .9;
    filter: alpha(opacity=90);
}
.anythingSlider-custom .anythingControls ul
{
    margin: 0;
    padding: 0;
    float: left;
}
.anythingSlider-custom .anythingControls ul li
{
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}
.anythingSlider-custom .anythingControls ul a
{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px;
    padding: 0;
    text-decoration: none;
    text-align: center;
    outline: 0;
}
.anythingSlider-custom .anythingControls span
{
    display: block;
    visibility: hidden;
}/* navigationSize window */
.anythingSlider-custom .anythingControls .anythingNavWindow
{
    overflow: hidden;
    float: left;
}/* navigationSize nav arrow positioning */
.anythingSlider-custom .anythingControls li.prev a span, .anythingSlider-custom .anythingControls li.next a span
{
    visibility: visible;
    position: relative;
    top: -6px;/* bring navigationSize text arrows into view */
    color: #fff;
}/* Autoplay Start/Stop button */
.anythingSlider-custom .anythingControls .start-stop
{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    z-index: 100;
    outline: 0;
}/***********************
IE8 AND OLDER STYLING
***********************//* Navigation Arrows */
.as-oldie .anythingSlider-custom .arrow
{
    top: 40%;
}
.as-oldie .anythingSlider-custom .arrow a
{
    margin: 0;
}/***********************
  COMMON SLIDER STYLING
 ***********************//* Overall Wrapper */
.anythingSlider
{
    display: block;
    overflow: visible!important;
    position: relative;
}/* anythingSlider viewport window */
.anythingSlider .anythingWindow
{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}/* anythingSlider base (original element) */
.anythingSlider .anythingBase
{
    background: transparent;
    list-style: none;
    position: absolute;
    overflow: visible!important;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}/* Navigation arrow text; indent moved to span inside "a", for IE7;
	apparently, a negative text-indent on an "a" link moves the link as well as the text */
.anythingSlider .arrow span
{
    display: block;
    visibility: hidden;
}/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
.anythingSlider .arrow.disabled
{
    display: none;
}/* all panels inside the slider; horizontal mode */
.anythingSlider .panel
{
    background: transparent;
    display: block;
    overflow: hidden;
    float: left;
    padding: 0;
    margin: 0;
}/* vertical mode */
.anythingSlider .vertical .panel
{
    float: none;
}/* fade mode */
.anythingSlider .fade .panel
{
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage
{
    z-index: 1;
}/***********************
  RTL STYLING
 ***********************//* slider autoplay right-to-left, reverse order of nav links to look better */
.anythingSlider.rtl .anythingWindow
{
    direction: ltr;
    unicode-bidi: bidi-override;
}
.anythingSlider.rtl .anythingControls ul
{
    float: left;
}/* move nav link group to left */
.anythingSlider.rtl .anythingControls ul a
{
    float: right;
}/* reverse order of nav links */
.anythingSlider .anythingWindow, .anythingSlider .anythingControls ul a, .anythingSlider .arrow a, .anythingSlider .start-stop
{
    transition-duration: 0s;
    -o-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
}