/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.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;
	}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.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: 43px !important;
    height: 43px !important;
    cursor: pointer;
    background: url(../img/btn_right.gif) no-repeat 0 0;
	}
.jcarousel-next:hover { background-position: -43px 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: 43px !important;
    height: 43px !important;
    cursor: pointer;
    background: url(../img/btn_left.gif) no-repeat 0 0;
}
.jcarousel-prev:hover { background-position: -43px 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: 430px;
	}
#sub-content .jcarousel-clip {
    width: 430px;
    height: 390px;
	}
#sub-content .jcarousel-list li,
#sub-content .jcarousel-item {
    width: 430px;
    height: 390px;
	}
	
/* Extra carousel styling */
#extra-content .jcarousel-container {
    width: 100%;
	margin: 35px 0 25px;
	}
#extra-content .jcarousel-clip {
    width: 800px;
    height: 130px;
	}
#extra-content .jcarousel-list li,
#extra-content .jcarousel-item {
    width: 185px;
    height: 130px;
	margin-right: 20px;
	text-align: center;

	}

#extra-content .jcarousel-item img {
        filter: alpha(opacity=70);
        -moz-opacity: .70;
        opacity: .70;
}
	
#extra-content .jcarousel-next {
    bottom: 37px;
    background-image: url(../img/btn_right_navy.gif);
	}
#extra-content .jcarousel-prev {
    bottom: 37px;
    background-image: url(../img/btn_left_navy.gif);
	}		
	
