.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
border: 2px solid #71AA00;
border-bottom-width: 6px;
width: 240px; /*width of featured content slider*/
height: 180px;
}

h3 .title {
  color:#fff;
  background:#71AA00;
  display:block;
  padding:2px 10px;
 } 
  

.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0;  /*leave as is*/
top: 0;  /*leave as is*/
padding: 1px;
background: darkgreen;
width: 240px; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */
height: 100%;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
.sliderwrapper .contentdiv .img {
 width:240px;
 height:140px;
}
.sliderwrapper .contentdiv h4 {
 padding:2px;
 text-align:center;
 font-size:13px;
 width:240px;
 color:#fff;
}  
.pagination{
width: 244px; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
text-align: center;
background-color: #71AA00;
padding: 3px 0px 5px 0;
}

.pagination a{
padding: 0 3px;
text-decoration: none; 
color: #00007D;
background: white;
}

.pagination a:hover, .pagination a.selected{
color: #000;
background-color: #FEE496;
}