.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
border: 0px;
border-bottom-width: 0px;
width: 100%; /*width of featured content slider*/
height: 100%;
}



.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0;  /*leave as is*/
top: 0;  /*leave as is*/
padding: 5px;
background: white;
width: 100%; /*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;
background-position: center;
}

.pagination{
width: 100%; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
padding: 5px 10px;
float:left;
position:relative;
top: 180px;
z-index: 99;

}
.prev
{
	width: 16px;
	height: 29px;
	float:left;
	background-image: url("../images/flecha_slider.png");
	display: inline-block;
	    margin-left: 50px;
		opacity: 0.7;
	
}
.next
{
	width: 16px;
	height: 29px;
	float:right;
	background-image: url("../images/flecha_slider.png");
	background-position-x: 16px;
	display: inline-block;
	    margin-right: 50px;
		opacity: 0.7;
	
}
.prev:hover
{
	opacity: 1;
}
.next:hover
{
	opacity: 1;
}
.pagination a{
padding: 0 5px;
text-decoration: none; 
font-size: 0px;

}

.pagination a:hover, .pagination a.selected{
color: #000;

}