#viewport{
	width: 512px; /* Defines the size of the visible part of the carousel
		Attention : if you only want to see plain items in the viewport,
		the width of the viewport should take into account of :
		- the items width
		- the right and left padding of items
		- the number of items you want to see in the viewport
	 */
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
	/* Fix for IE */
	position:relative;
	margin: 0 auto;
	text-align: left;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li{
	width: 128px; /* Defines the size of inner element */
	height: 180px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	overflow: hidden;
	/* Cosmetic */
	background-color: red;
	margin: 0 1px;
	padding: 10px;
	text-align:center;
}

.carousel {
	position: relative;
}

.carousel .into{

	/*margin: 0 8px !important;*/
	text-align: center;
	/*padding: 0 !important;*/
}

#previous {
	position: absolute;
	top: 102px;
	left: 5px;
}

#next {
	position: absolute;
	top: 102px;
	right: 5px;
}


/* Cosmetic */
#previous, #next{
	cursor: pointer;
}



#viewport input {
	display: block;
	float: left;
	margin-right: 5px;
	margin-bottom: 10px;
}

#viewport label {
	text-align: left;
	height: 35px;
	display: block;
	line-height: 14px;
	overflow: hidden;
}

#viewport li a {
	display: block;
	background: white url(../img/carousel-foto.gif) no-repeat top left;
	width: 128px;
	height: 99px;
	text-align: center;
	overflow: hidden;
}

#viewport label span {
display: block;
padding-top: 3px;
}

#viewport li a  img {padding-top: 3px;}
