#container {
	width:200px;
	height:252px;
	margin:0 auto;
	position:relative;
	z-index:0;
	margin-top:20px;
	-webkit-border-radius: 5px;
	  -moz-border-radius: 5px;
	  border-radius: 5px;
}

#example {
	width:200px;

	position:relative;
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
	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 {
	width:200px;

	overflow:hidden;
	position:relative;
	display:none;
	
	
}

/*
	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 {
	
	width:230px;
	height:265px;
	display:block;
	
	}

#cont{
	width:200px;
	height:265px;
	display:block;}
/*
	Next/prev buttons
*/
#cont img{ margin-bottom:3px;}
#slides .next,#slides .prev {
	position:absolute;
	top:275px;
	left:6px;
	width:22px;
	height:22px;
	display:block;
	z-index:101;
}

#slides .next {
	left:185px;
}

/*
	Pagination
*/

.pagination {
	margin:0px auto;
	margin-top:10px;
	width:80px;
}

.pagination li {
	float:left;
	margin:0px auto;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(https://www.palermo.edu/contenidos/img-test/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Footer
*/

