﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".	 Make sure the width of "jcarousel-container" 
 * is divisible by the number of elements you are showing.
 */
 
.jcarousel-container {
    float:left;
	height:250px;
	padding: 2px 0 0 0;
	margin:0;
	width:928px;
	text-align:left;
	position:relative;
	overflow:hidden;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
	overflow:hidden;
	padding:0;	
	position:relative;
	top:0;
	z-index:1;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 232px;
    padding:0;
    height: 240px;
}

/**
 * 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".
 */



