#carousel {
	width:100%;
	height:150px;
	overflow:hidden;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#slides {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:100%;
	height:150px;
}

/* 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:100%;			
}

/* width of the item, in this case I put 250x250x gif */
#slides li {
	height:150px;
	float:left;
	padding-right: 15px;
}

#slides li img {
	height: 150px;
	padding-right: 15px;
}

/* Styling for prev and next buttons */
#buttons {
	float:left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	overflow: hidden;
}

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

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

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

a#next {
	background:url(arrow.gif) -32px -31px no-repeat; 
}

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

.clear {clear:both}
