#piccontainer {
	margin-left:20px;
	margin-top:10px;
}

table #viewport{
	width: 550px; /* 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 */
	/*float:left;*/
}
table #viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin:0px;
	list-style: none;
	list-style-type: none;
}
table #viewport li{
	width: 100px; /* Defines the size of inner element */
	height: 75px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	list-style-type: none;
	
	/* Cosmetic */
	margin: 0px 10px 0px 0px;
	padding: 0px;
	text-align:center;
}

/* Cosmetic */
table #simplePrevious, #simpleNext{
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;	
}
table #previous{
	
	/*float:left;*/
}
table #next{
	
	/*float:left;*/
}