﻿div.cycle-slideshow {
    width: 100%;
    padding: 0;
    position: relative;
    height: auto;
    background: url(../Images/spinner.gif) 50% 50% no-repeat;
}

    div.cycle-slideshow .cycle-slide {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* slideshow images (for most of the demos, these are the actual "slides") */
    div.cycle-slideshow img {
        /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
        width: 100%;
        padding: 0;
        display: block;
    }

    /* in case script does not load */
    div.cycle-slideshow .cycle-slide:first-child {
        position: static;
        z-index: 100;
    }

    /* prev / next links */
    div.cycle-slideshow .cycle-prev, .cycle-slideshow .cycle-next {
        position: absolute;
        top: 0;
        width: 5%;
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 800;
        height: 100%;
        cursor: pointer;
    }

    div.cycle-slideshow .cycle-prev {
        left: 0;
        background: url(../Images/prev-banner.png) 2% center no-repeat;
    }

    div.cycle-slideshow .cycle-next {
        right: 0;
        background: url(../Images/next-banner.png) 98% center no-repeat;
    }

    div.cycle-slideshow .cycle-prev:hover, .cycle-slideshow .cycle-next:hover {
        opacity: .7;
        filter: alpha(opacity=70);
    }
    
    div.cycle-slideshow .cycle-pager {
        position: absolute;
        bottom: 0.5em;
        right:1em;
        z-index: 99999;
    }
    div.cycle-slideshow .cycle-pager span{
        /*width: 0.8725em;
        height: 0.8725em;*/
        overflow: hidden;
        /* margin: .25em;*/
        color: #000;
        /*background: #000;*/
        display: inline-block;
        cursor: pointer;
	opacity:0.3;
	font-size: 2.5em;
    }

/*
    nav scroll
*/

.nav-scroll {
    position: relative;
    padding: 1.250em 0; /*[16] 20px 0*/
    background: url(../images/slider-nav.jpg) repeat-x 0 0;
    height: 2.5em; /*[16] 40px*/
}

    .nav-scroll .prev-nav {
        position: absolute;
        left: 2%;
        top: 30%;
        width: 1.8em;
    }

    .nav-scroll .next-nav {
        position: absolute;
        right: 2%;
        top: 30%;
        width: 1.8em;
    }

    .nav-scroll a.inactive img {
        -ms-opacity: .5;
        opacity: .5;
        cursor: default;
    }

    .nav-scroll .jcarousel {
        position: relative;
        overflow: hidden;
        margin: 0 5em;
    }

        .nav-scroll .jcarousel ul {
            width: 20000em;
            position: relative;
            /* Optional, required in this case since it's a <ul> element */
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-scroll .jcarousel li {
            float: left;
            text-align: center;
            font: normal 1.125em "alright_sansregular", Arial, Helvetica, sans-serif; /*[16] 18px*/
            color: #133f6a;
            text-transform: uppercase;
            
        }

            .nav-scroll .jcarousel li a {
                display: inline-block;
                white-space: nowrap;
                padding: 0 1.667em;
                color: #133f6a;
                line-height: 100%;
                border-right: 2px solid #a2b53a;
                margin-top: 0.80em;
            }

            .nav-scroll .jcarousel li:first-child a {
                padding-left: 0;
            }

            .nav-scroll .jcarousel li:last-child a {
                border-right-width: 0;
                padding-right: 0;
            }

            .nav-scroll .jcarousel li a:hover {
                text-decoration: underline;
            }
