@charset "utf-8";
/* CSS Document */
#carousel {
	width:235px;
	height:153px;	
	overflow:hidden;
}
#slides {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:235px;
	height:80px;
	margin:20px 0 10px;
	text-align:center;
}
/* remove the list styles, width : item width * total items */	
.rightcont #slides ul {
	position:relative;
	list-style:none;
	width:2000px;
}
/* width of the item, in this case I put 250x250x gif */
.rightcont #slides li {
	width:235px;
	float:left;
	display:block;
}
/* Styling for prev and next buttons */
#buttons {
	padding:0 0 5px 0;	
	float:right;
}
#buttons a {
	display:block; 
	width:31px; 
	height:32px;
	text-indent:-999em;
	float:left;
	outline:0;
}
a#prev {
	background:url(../images/arrow.gif) 0 -31px no-repeat; 
}
a#prev:hover {
	background:url(../images/arrow.gif) 0 0 no-repeat;
}
a#next {
	background:url(../images/arrow.gif) -32px -31px no-repeat; 
}
a#next:hover {
	background:url(../images/arrow.gif) -32px 0 no-repeat;
}
.clear {clear:both}

