#carousel {
	width:649px;
	height:261px;	
	margin:0 auto;
	background-image:url(dece.jpg);
	background-repeat:no-repeat;
}

#slides {
	overflow:hidden;
	padding-left:20px;
	/* fix ie overflow issue */
	position:relative;
	width:350px;
	height:250px;
}

/* 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:750px;			
}

/* width of the item, in this case I put 250x250x gif */
#slides li {
	width:350px;
	height:250px;	
	float:left;
}

#slides li img {
	padding:5px;
}

/* Styling for prev and next buttons */
#buttons {
	padding:0 0 5px 0;	
	float:right;
}

#buttons a {
	display:block; 
	width:1px; 
	height:1px;
	text-indent:-999em;
	float:left;
	outline:0;
}

.clear {clear:both}

