/* CSS Document */

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    width: 450px;
    -moz-border-radius: 10px;
    background: #00CCFF;
    padding:10px 20px 0 20px;
}

/**
 * Similar styles will be applied by jCarousel. But we additionally
 * add it here for better displaying with browsers having
 * javascript disabled.
 */
.jcarousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.jcarousel-list li {
    float: left;
    list-style: none;
    width: 110px;
    height: 110px;
    margin-right: 5px;
}

/**
 * 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 {
    position: absolute;
    top: -23px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #5D83A2;
    background-color: #FFF;
    font-weight: bold;
}

.jcarousel-next-disabled {
    color: #ACCC68;
    cursor: default;
}

.jcarousel-prev {
    position: absolute;
    top: -23px;
    right: 45px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #5D83A2;
    background-color: #FFF;
    font-weight: bold;
	margin:0;
}

.jcarousel-prev-disabled {
    color: #ACCC68;
    cursor: default;
}
*/
.jcarousel-next {
    display: none;
    position: absolute;
    top: -23px;
    right: 15px;
    cursor: pointer;
}

.jcarousel-next-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.jcarousel-prev {
    display: none;
    position: absolute;
    top: -23px;
    right: 45px;
    cursor: pointer;
}

.jcarousel-prev-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}
