/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
*{
	margin:0px;
	padding:0px;
} 
.jcarousel-scope {
	width: 510px;
	padding: 0px 53px 0px 46px;
}
/**
 * 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 {
	padding: 0px 5px 0px 0px;
    float: left;
    list-style: none;
}
/**
 * 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: 30px;
    right: 2px;
    cursor: pointer;
}
.jcarousel-next-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}
.jcarousel-prev {
    position: absolute;
    top: 30px;
    left: 1px;
    cursor: pointer;
}
.jcarousel-prev-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}
