#photoHolder {
	width: 495px;
	background-color: #FEFEFE;
	border: 1px #C6AF9B solid;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

#viewport{
	width: 423px; /* 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-left: auto;
	margin-right: auto;
	float: left
}

#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li{
	width: 400px; /* Defines the size of inner element */
	height: 410px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	padding: 10px;
	text-align:center;
}

#viewport li img {
	vertical-align: middle;
}

/* Cosmetic */
#divNext {
	width: 35px;
	height: 25px;
	top: 193px;
	position: relative;
	text-align: left;
	float: left;
	cursor: pointer;
}

#divPrev {
	width: 35px;
	height: 25px;
	top: 193px;
	position: relative;
	text-align: right;
	float: left;
	cursor: pointer;
}