/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
	width: 380px;
	position: relative;
	padding-top: 5px;
	padding-right: 40px;
	padding-bottom: 5px;
	padding-left: 40px;
	margin-top: 17px;
	margin-left: 40px;
}

/**
 * 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: 120px;
    height: 120px;
    margin-right: 10px;
	margin-top: 10px;
}

/**
 * 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: 45px;
    right: 5px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #FFFFFF;
    font-weight: bold;
}

.jcarousel-next-disabled {
 	cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50)
}

.jcarousel-prev {
    position: absolute;
    top: 45px;
    left: 5px;
    cursor: pointer;
    border: 1px outset #fff;
    color: #FFFFFF;
    font-weight: bold;
}

.jcarousel-prev-disabled {
 	cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50)
}

