.sliderwrapper{
position: absolute; /*leave as is*/
width: 100%; /*width of featured content slider*/
height: 398px;
padding: 0px;
clear: both;
top:135px;
background-color:#FFFFFF;
}


.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0;  /*leave as is*/
top: 0;  /*leave as is*/
background: center top no-repeat;
width: 100%; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */
height: 100%;
filter:alpha(opacity=100); -moz-opacity: 1; opacity: 1;
}

.pagination{
/*width: 945px; Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
text-align: centre;
padding: 0px 0px;
}




.pagination a{
padding: 10px;
margin:0px;
background-image:url(images/toggle.png);
background-repeat:no-repeat;
background-position: center;


}

.pagination a:hover{
background-image:url(images/hover.png);
background-repeat:no-repeat;
background-position:center;
}

.pagination a.selected{
background-image:url(images/selected.png);
background-repeat:no-repeat;
background-position: center;
}


.pagination  a.prev {
	background-image: url(images/arrow_left.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0px;
	height: 29px;
	width: 29px;
	float: left;
	margin-top: 0px;
	position: relative;
	top: 0px;
}
.pagination a.prev:hover {
	background-position: left -29px;
	background-image: url(images/arrow_left.png);
	background-repeat: no-repeat;
	text-decoration: none;
	cursor: pointer;
}
.pagination  a.next {
	background-image: url(images/arrow_right.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0px;
	height: 29px;
	width: 29px;
	float: right;
	margin-top: 0px;
	position: relative;
	top: 0px;

}
.pagination a.next:hover {
	background-position: left -29px;
	background-image: url(images/arrow_right.png);
	background-repeat: no-repeat;
	text-decoration: none;
	cursor: pointer;
}