#carousel {
	width:880px;
	height:210px;	
	margin:0px auto;
	overflow:hidden;
}

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

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

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

#slides li img {
	padding:0px;
}

/* Styling for prev and next buttons */

#buttons {
	margin:0px;
	padding:0px;
}

#previous {
	width:61px;
	position:relative;
	top:225px;
	left:15px;
	z-index:+1;
}

#next {
	width:833px;
	position:relative;
	top:103px;
	right:-220px;
	z-index:+1;
}