.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
border-bottom-width: 6px;
padding: 5px;
width: 515px; /*width of featured content slider*/
height: 280px;
}

.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0;  /*leave as is*/
top: 0;  /*leave as is*/
padding: 10px;
width: 515px; /*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;
}

.contentslide{
border: 5px solid #000850;
border-bottom-width: 6px;
padding: 5px;
width: 515px;
height: 280px;
}

.contentslide .opacitylayer{ /*Do not edit this rule unless you're familiar with CSS opacity behavior*/
width: 100%;
height: 100%;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
} 

.contentslide .contentdiv{
display: none;
}

.pagination{
width: 525px; /*Width of pagination DIV. To equal that of Content Slider's width, take into account the later's left/right paddings!*/
text-align: center;
height: 20px;
border-width: 0 5px; /*Left/ right border width of pagination DIV.*/
padding-top: 10px;
}

* html .pagination{ /*Simplified box model hack to get IE5 to display width equal to that of Content Slider's*/
width: 515px; /*IE5 width*/
w\idth: 515px; /*IE6 width*/
}

.pagination a{
padding: 0px 2px;
text-decoration: none; 
color: #3269CE;
font-size:12px;
}

.pagination a:hover, .pagination a.selected{
background-color: #790987;
color: #FFFFFF;
}
