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

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

#view_prev {
	position:absolute;
	top:22px;
	left:10px;
	width:20px;
	height:100px;
	-moz-border-radius: 5px 0 0 5px;
	background: url('http://static1.cda.pl/img/ico/arrow_left.png') 4px 42px no-repeat #444
}
#view_next {
	position:absolute;
	top:22px;
	right:10px;
	width:20px;
	height:100px;
	-moz-border-radius: 0 5px 5px 0;
	background: url('http://static.cda.pl/img/ico/arrow_right.png') 4px 42px no-repeat #444
}