#carousel {
	width:469px;
	height:248px;	
	margin:0 auto;
	overflow:hidden;
	position:relative;
	border:1px solid #ccc;
	padding:5px;
	background:#f2f2f2;
}

#slides {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:469px;
	height:248px;
}

/* 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:968px;			
}

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

#slides span {
	background:url(../images/bgimg.png) repeat; 
	padding: 10px; 
	position: absolute; 
	right: 20px; 
	top: 208px;  
	width: 460px; 
	z-index: 999; 
	color:#FFF; 
	font-family: 'FlamaSemicondensedBook'; 
	font-size: 20px;}

#slides li img {
	padding:0px;
}

/* Styling for prev and next buttons */
#buttons {
	padding:0 0 5px 0;	
	position:absolute;
	right:10px;
	bottom:4px;
	z-index:999;
}

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

a#prev {
	background:url(../images/arrow.png) 0 -30px no-repeat; 
}

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

a#next {
	background:url(../images/arrow.png) -34px -30px no-repeat; 
}

a#next:hover {
	background:url(../images/arrow.png) -34px 0 no-repeat;
}

.clear {clear:both}