/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
 
}

.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;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    /*width: 75px;
    height: 75px;*/
}

/**
 * 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".
 */
div.jcarousel-prev,
div.jcarousel-next
{
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('img/prev-horizontal.png') 0 0 no-repeat;
	right: 40px;
	top: 0;
	margin: 0 7px;
	cursor: pointer;
	-moz-user-select:none;
	-khtml-user-select:none;
}
div.jcarousel-next
{
	right: 0px;
	top: 0px;
	background: url('img/next-horizontal.png') 0 0 no-repeat;
}
div.jcarousel-prev:hover,
div.jcarousel-next:hover
{
	background-position: -20px 0;
}
div.jcarousel-prev:active,
div.jcarousel-next:active
{
	background-position: -40px 0;
}

