/* CSS for jQuery Orbit Plugin 1.2.3
 * www.ZURB.com/playground
 * Copyright 2010, ZURB
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY
   ================================================== */
#featured {
    width: 604px;
    height: 230px;
    background: #FFFFFF url('../Imagens/loading.gif') no-repeat center center;
    overflow: hidden;
}

    #featured > img,
    #featured > div,
    #featured > a {
        display: none;
    }

/* CONTAINER
   ================================================== */

div.orbit-wrapper {
    width: 1px;
    height: 1px;
    position: relative;
}

div.orbit {
    width: 1px;
    height: 1px;
    position: relative;
    overflow: hidden;
}

    div.orbit > img {
        position: absolute;
        top: 0;
        left: 0;
        display: none;
    }

    div.orbit > a {
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        line-height: 0;
        display: none;
    }

.orbit > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* DIRECTIONAL NAV
   ================================================== */

div.slider-nav {
    display: block;
}

    div.slider-nav span {
        cursor: pointer;
        height: 32px;
        margin-top: -2px;
        position: absolute;
        text-indent: -9999px;
        top: 43%;
        width: 32px;
        z-index: 1000;
    }

        div.slider-nav span.right {
            background: url(../Imagens/right-arrow.png);
            right: 3px;
        }

        div.slider-nav span.left {
            background: url(../Imagens/left-arrow.png);
            left: 3px;
        }


/* caption
   ================================================== */
.orbit-caption {
    display: none;
}


/* BULLET NAV
   ================================================== */

.orbit-bullets {
    position: absolute;
    z-index: 1000;
    list-style: none;
    bottom: 5px;
    left: 50%;
    margin-left: -24px;
    padding: 0;
}

    .orbit-bullets li {
        float: left;
        margin-left: 5px;
        cursor: pointer;
        color: #999;
        text-indent: -9999px;
        background: url(../Imagens/bullets.png) no-repeat 4px 0;
        width: 13px;
        height: 12px;
        overflow: hidden;
    }

        .orbit-bullets li.active {
            color: #222;
            background-position: -8px 0;
        }

        .orbit-bullets li.has-thumb {
            background: none;
            width: 100px;
            height: 75px;
        }

        .orbit-bullets li.active.has-thumb {
            background-position: 0 0;
            border-top: 2px solid #000;
        }
