

#slider {
	height: 360px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    width: 980px !important;
}

#slider ul, #slider li {
	margin:0;
	padding:0;
	list-style:none;
}

#slider li {
	/*
	define width and height of list item (slide)
	entire slider area will adjust according to the parameters provided here
	*/ 
	width:980px;
	height:360px;
	overflow:hidden;
}

#prevBtn, #nextBtn {
	display: block;
	height: 30px;
	left: 895px;
	position: relative;
	top: -120px;
	width: 30px;
}

#nextBtn {
	left: 930px;
	top: -150px;
}

#prevBtn a, #nextBtn a {
	display:block;
	width:30px;
	height:30px;
	background:url(arrow-left.png) no-repeat 0 0;
}

#nextBtn a {
	background:url(arrow-right.png) no-repeat 0 0;
}

#slider li img {
	float: left;
}

