/* CSS */

.jcarousel-container {
    position: relative;
	}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
	}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
	}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
	position: relative;
	}

/*

*/
.jcarousel-next {
    z-index: 3;
    display: none;
	}

.jcarousel-prev {
    z-index: 3;
    display: none;
	}

/**
 *  Button styling
 */
.jcarousel-next {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 29px !important; /*tamanho das setas*/
    height: 284px !important;
    cursor: pointer;
    background: url(../img/next.jpg) no-repeat 0 0;
	}
.jcarousel-next:hover { background-position: 0px 0; }
.jcarousel-next:active {}
.jcarousel-next-disabled,
.jcarousel-next-disabled:hover,
.jcarousel-next-disabled:active {
    cursor: default;
    background-position: -86px 0;
	}

.jcarousel-prev {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 29px !important;
    height: 284px !important;
    cursor: pointer;
    background: url(../img/prev.jpg) no-repeat 0 0;
}
.jcarousel-prev:hover { background-position: 0px 0; }
.jcarousel-prev:active {}
.jcarousel-prev-disabled,
.jcarousel-prev-disabled:hover,
.jcarousel-prev-disabled:active {
    cursor: default;
    background-position: -86px 0;
	}
	
/* Main carousel styling */	
#sub-content .jcarousel-container {
    width: 500px;
	}
#sub-content .jcarousel-clip {
    width: 500px;
    height: 284px;
	}
#sub-content .jcarousel-list li,
#sub-content .jcarousel-item {
    width: 500px;
    height: 284px;
	}
	
/* Extra carousel styling */
#extra-content .jcarousel-container {
    width: 100%;
	margin: 0px 0 0px;
	}
#extra-content .jcarousel-clip {
	/*ok - distância auto centrada*/
    width: 557px;
    height: 284px;
	}
#extra-content .jcarousel-list li,
#extra-content .jcarousel-item {
    width: 550px;
    height: 284px;
	/*background-color:#FFF;*/
	}
	
#extra-content .jcarousel-next {
    top: 0px;
    background-image: url(../img/next.jpg);
	}
#extra-content .jcarousel-prev {
    top: 0px;
    background-image: url(../img/prev.jpg);
	}		
	
