#carousel {
	width:149px;
	height:124px;	
	margin:0 auto;
	overflow:hidden;
}

#slides {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:149px;
	height:80px;
	border:0px;
}

/* remove the list styles, width : item width * total items Sooo: 129px width * 4 = 516px */	
#slides ul {
	position:relative;
	left:0;
	top:0;
	list-style:none;
	margin:0;
	padding:0;	
	width:516px;
}

/* width of the item, in this case I put 250x250x gif */
#slides li {
	width:149px;
	height:80px;	
	float:left;
}

#slides li img {
	padding:0px 10px 0px 10px;
}

/* Styling for prev and next buttons */
#buttons {
	padding: 5px 8px 5px 0;	
	float:right;
}

#buttons a {
	display:block; 
	width:24px; 
	height:24px;
	text-indent:-999em;
	float:left;
	outline:0;
}

a#prev {
	background:url(CarouselArrows.gif) 0 -24px no-repeat; 
}

a#prev:hover {
	background:url(CarouselArrows.gif) 0 0 no-repeat;
}

a#next {
	background:url(CarouselArrows.gif) -24px -24px no-repeat; 
}

a#next:hover {
	background:url(CarouselArrows.gif) -24px 0 no-repeat;
}

.clear {clear:both}
