#example {
	width:575px;
	height:160px;
	position:relative;
	background-color:#Ffffff; 
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
/*	top:15px;      */
/*	left:4px;      */
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
		
	background-color:#ffffff; /* color de fondo */
	width:580px;
	height:160px;
	overflow:hidden;
	position:relative;
	display:none;
	
	font-family: 'Arial', serif;   
	font-size:10pt;         /* tamaño del texto  */
	line-height:12pt;       /* altura del las lineas para aplicar interlineado */
	color:#333333;

}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
/*	padding:20px; */
	width:580px;
	height:160px;
	display:block;
	
}


/*
	Pagination
*/

.pagination {
	margin:5px;
	width:200px;  /* antes teniamos 100px para 7 bolitas */
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}


/*
	Type and anchors
*/

a:link,a:visited {
	color:#599100;
	text-decoration:none;
}

a:hover,a:active {
	color:#599100;
	text-decoration:underline;
}



#slides .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}