#gallery {
	position:relative;
}
#gallery-viewport{
	width: 900px; /* 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;
	left:25px;
}
#gallery ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#gallery li{
	width: 150px; /* 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 */
	margin:10px 0;
	padding: 0px;
	text-align:center;
}
#gallery li img {
	display:block;
}

#gallery li a {
	margin:0 auto;
	display:block;
	background:#000;
	width:140px;
}

#gallery-next,#gallery-prev{
	cursor: pointer;
	width:20px;
	height:100px;
	left:5px;
	top:10px;
	position:absolute;
	background:url(../img/gallery-prev.gif) #000 no-repeat;
}

#gallery-next {
	left:925px;
	background:url(../img/gallery-next.gif) #000 no-repeat;
}
