/* CSS Document */
.contentslide{
border: 1px solid #EEEEEE;
padding: 8px;
width: 680px;
/*height: 860px;*/
overflow: auto;
overflow-x: hidden; 
}

.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{
    clear: both;
    display: none;
}

.pagination{
/*width: 120px;*/ /*Width of pagination DIV. To equal that of Content Slider's width, take into account the later's left/right paddings!*/
width: 100%;
text-align: right;
background:none;
border-width: 0; /*Left/ right border width of pagination DIV.*/
padding: 10px 0 20px 0;
margin: 10px 0px;
/*float:right;  */
/*margin-top:-40px;*/
}

* html .pagination{ /*Simplified box model hack to get IE5 to display width equal to that of Content Slider's*/
/*width: 120px;*/ /*IE5 width*/
width: 100%;
}

.pagination a{
padding: 2px 6px;
background:#0186C8;
text-decoration: none; 
color: #fff;
font:bold 12px Arial, Helvetica, sans-serif;
float:left;
width:auto;
margin:0px 5px 0px 0px;
}

.pagination a:hover, .pagination a.selected{
color: #fff;
background:#55B81B;
float:left;
width:auto;
padding: 2px 6px;
margin:0px 5px 0px 0px;
font:bold 12px Arial, Helvetica, sans-serif;
}


