/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
.jcarousel-scope {
	top:5px;
    position: relative;
    width: 460px;
    height: 100px;
    /*-moz-border-radius: 10px;*/
    padding: 30px;
}

/**
 * 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 img{
 	border-color:#CCCCCC;
}

.jcarousel-list li {
    float: left;
    list-style: none;
    margin-bottom: 0px;
	margin-top: 0px;
	padding-left:8px;
	width:105px;
}

.jcarousel-list li img{
	border:solid 1px #CCCCCC;
}

/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 *
 * We set display:none to hide them from browsers having
 * javascript. jCarousel will show them automatically.
 */
.jcarousel-next {
    position: absolute;
    top: 55px;
    cursor: pointer;
	right:10px;
}

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

.jcarousel-prev {
    position: absolute;
    top: 55px;
    cursor: pointer;
	left:10px;
}

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