/*
 AnythingSlider v1.8+ Carousel Shoutcms Theme
 */
/*****************************
 SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID & dimensions to match your slider */


/******************
 SET STYLING HERE
 ******************
 =================================
 Default state (no keyboard focus)
 ==================================*/
/* Overall Wrapper */
.anythingSlider-carousel-shoutcms {
    margin: 0 auto;
    /* 30px right & left padding for the navigation arrows */
    padding: 0;
}

/* slider window - top & bottom borders, default state */
.anythingSlider-carousel-shoutcms .anythingWindow {
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

/* Navigation current button, default state */
.anythingSlider-carousel-shoutcms .anythingControls a.cur, .anythingSlider-carousel-shoutcms .anythingControls a:hover {
    background-color: #777;
    color: #000;
}

/* start-stop button, stopped, default state */
.anythingSlider-carousel-shoutcms .anythingControls a.start-stop {
    background: #040;
    color: #ddd;
    /* top shadow */
    -moz-box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 1px 2px 5px rgba(0, 0, 0, 0.5);
}

/* start-stop button, playing, default state */
.anythingSlider-carousel-shoutcms .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-carousel-shoutcms .anythingControls a.start-stop:hover, .anythingSlider-carousel-shoutcms .anythingControls a.start-stop.hover, .anythingSlider-carousel-shoutcms .anythingControls a.start-stop .anythingControls ul a:hover {
    color: #fff;
    /* clear top shadow */
    -moz-box-shadow: inset 0 0 0 #000000;
    -webkit-box-shadow: inset 0 0 0 #000000;
    box-shadow: inset 0 0 0 #000000;
}

/*
 =================================
 Active State (has keyboard focus)
 =================================
 */
/* slider window - top & bottom borders, active state */
.anythingSlider-carousel-shoutcms.activeSlider .anythingWindow {
    border: none;
}

/* Navigation buttons, active state */
.anythingSlider-carousel-shoutcms.activeSlider .anythingControls a {
    background-color: #656565;
    color: #fff;
}

/* Navigation current button, active state */
.anythingSlider-carousel-shoutcms.activeSlider .anythingControls a.cur, .anythingSlider-carousel-shoutcms.activeSlider .anythingControls a:hover {
    background-color: #fff;
    color: #000;
}

/* start-stop button, stopped, active state */
.anythingSlider-carousel-shoutcms.activeSlider .anythingControls a.start-stop {
    background: #080;
    color: #fff;
}

/* start-stop button, playing, active state */
.anythingSlider-carousel-shoutcms.activeSlider .anythingControls a.start-stop.playing {
    color: #fff;
    background: #f00;
}

/* start-stop button, active slider hovered text color (when visible) */
.anythingSlider-carousel-shoutcms.activeSlider .start-stop:hover, .anythingSlider-carousel-shoutcms.activeSlider .start-stop.hover {
    color: #fff;
}

/************************
 NAVIGATION POSITIONING
 ************************/
/* Navigation Arrows */
.anythingSlider-carousel-shoutcms .arrow {
    top: 40%;
    position: absolute;
    display: block;
}

.anythingSlider-carousel-shoutcms .arrow a {
    display: block;
    width: 54px;
    height: 54px;
    text-align: center;
    outline: 0;
}

/* back arrow */
.anythingSlider-carousel-shoutcms .back {
    left: -33px;
}

.anythingSlider-carousel-shoutcms .back a {
    background: url(../images/arrows-minimalist-prev.png) no-repeat top left transparent
}

.anythingSlider-carousel-shoutcms .back a:hover, .anythingSlider-carousel-shoutcms .back a.hover {
    background-position: left bottom;
}

/* forward arrow */
.anythingSlider-carousel-shoutcms .forward {
    right: -33px;
}

.anythingSlider-carousel-shoutcms .forward a {
    background: url(../images/arrows-minimalist-next.png) no-repeat top left transparent
}

.anythingSlider-carousel-shoutcms .forward a:hover, .anythingSlider-carousel-shoutcms .forward a.hover {
    background-position: left bottom;
}

/* Navigation Links */
.anythingSlider-carousel-shoutcms .anythingControls {
    height: 15px; /* limit height, needed for IE9 of all things */
    outline: 0;
    display: none;
    float: right;
    position: absolute;
    bottom: -5px;
    right: -1px;
    z-index: 100;
    opacity: 0.90;
    filter: alpha(opacity=90);
}

.anythingSlider-carousel-shoutcms .anythingControls ul {
    margin: 0;
    padding: 0;
    float: left;
}

.anythingSlider-carousel-shoutcms .anythingControls ul li {
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
}

.anythingSlider-carousel-shoutcms .anythingControls ul a {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    padding: 0;
    text-decoration: none;
    text-align: center;
    outline: 0;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.anythingSlider-carousel-shoutcms .anythingControls span {
    display: block;
    visibility: hidden;
}

/* navigationSize window */
.anythingSlider-carousel-shoutcms .anythingControls .anythingNavWindow {

    overflow: hidden;
    float: left;
}

/* navigationSize nav arrow positioning */
.anythingSlider-carousel-shoutcms .anythingControls li.prev span, .anythingSlider-carousel-shoutcms .anythingControls li.next span {
    visibility: visible;
    position: relative;
    top: -6px; /* bring navigationSize text arrows into view */
}

/* Autoplay Start/Stop button */
.anythingSlider-carousel-shoutcms .anythingControls .start-stop {
    margin: 3px;
    padding: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    text-align: center;
    text-decoration: none;
    z-index: 100;
    outline: 0;
}

/***********************
 IE8 AND OLDER STYLING
 ***********************/
/* Navigation Arrows */
.as-oldie .anythingSlider-carousel-shoutcms .arrow {
    top: 45%;
}

.as-oldie .anythingSlider-carousel-shoutcms .arrow a {
    margin: 0;
}

/***********************
 COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper */
.anythingSlider {
    display: block;
    overflow: visible !important;
    position: relative;
}

/* anythingSlider viewport window */
.anythingSlider .anythingWindow {
    overflow: visible;
    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;
}

.anythingSlider .related-image a img {
    line-height: 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: visible;
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* vertical mode */
.anythingSlider .vertical .panel {
    float: none;
}

/* fade mode */
.anythingSlider .fade .panel {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage {
    z-index: 0;
}

/***********************
 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.rtl .start-stop {/* float: right; */
}/* move start/stop button - in case you want to switch sides */

/* probably not necessary, but added just in case */
.anythingSlider .anythingWindow, .anythingSlider .anythingControls ul a, .anythingSlider .arrow a, .anythingSlider .start-stop {
    transition-duration: 0;
    -o-transition-duration: 0;
    -moz-transition-duration: 0;
    -webkit-transition-duration: 0;
}

