﻿/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
    position: absolute;
    top: 43px;
    margin-left: 10px;
    width: 17px;
    height: 36px;
    cursor: pointer;
    background: transparent url('../images/homePageCarousel/previous.png') no-repeat 0 0;
    z-index: 200;

}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
    /*opacity: 0.35;*/ /* Standard CSS3 opacity setting */
    /*-moz-opacity: 0.35;*//* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
    /*filter: alpha(opacity = 35);*/ /* Opacity for Internet Explorer. */
    /*zoom: 1;*/ /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
    background: transparent url('../images/homePageCarousel/previous.png') no-repeat 0 0;
    z-index: 200;
    opacity: 1; /* Standard CSS3 opacity setting */
    -moz-opacity: 1; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
    filter: alpha(opacity = 1); /* Opacity for Internet Explorer. */
    zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
    display: block;
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
    /*min-width: 75px;
    width: 10%;
    height: 114px;
    background-image: url(../images/big_transparent.gif);
    background-repeat: repeat;
    background-position: center center;
    position: absolute;
    z-index: 200;
    right: 0;*/
    position: absolute;
    top: 43px;
    right: 10px;
    width: 17px;
    height: 36px;
    cursor: pointer;
    left: auto;
    right: 10px;
    z-index: 200;
    background-image: url('../images/homePageCarousel/next.png');
    background-repeat: no-repeat;
    display: block;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{

    background-image: url('../images/homePageCarousel/next.png');
    background-color: transparent;
    background-repeat: no-repeat;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 114px;
}

div.scrollableArea
{
    position: relative;
    width: auto;
    height: 100%;
}