.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
border: 10px solid gray;
border-bottom-width: 6px;
width: 370px; /*width of featured content slider*/
height: 230px;

/*rounded top corners in Firefox, Chrome and Safari
  -moz-border-radius-topleft:1.5ex;
  -moz-border-radius-topright:1.5ex;
  -webkit-border-top-left-radius:1.5ex;
  -webkit-border-top-right-radius:1.5ex;
  */
}

.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0;  /*leave as is*/
top: 0;  /*leave as is*/
padding: 15px;
background: white;
width: 390px; /*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{
float:left;
text-align:top;
}

.sliderpagination{
width: 370px; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
text-align: center;
background-color: gray;
padding: 2px 10px 8px 10px;
}

.sliderpagination a{
padding: 0 5px;
text-decoration: none; 
color: #73738a;
background: white;
}

.sliderpagination a:hover, .sliderpagination a.selected{
color: #000;
background-color: #FEE496;
}