#viewport{
	width: 204px; /* 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;
	height:370px;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li, #viewportli{
	width: 202px; /* Defines the size of inner element */
	height: 150px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	background-color: #000;
	margin: 5px 0;
	padding: 0;
	text-align:center;
}
#viewport li img{
	border-style:none;	
}
#carousel-controls{
		float:left;
		margin:0 auto;
		width:200px;
}

/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer !important;
	font-size: 0.8em !important;
	text-decoration: underline !important;	
	display:inline-block;
	width:30px !important;
	height:30px !important;
	background-position: 0;
}

#simplePrevious{
		background-image:url(../images/watch/back_btn.png);
		background-repeat:no-repeat;
}

#simpleNext{
		background-image:url(../images/watch/next_btn.png);
		background-repeat:no-repeat;
}


#simplePrevious:hover, #simpleNext:hover{
	background-position:-30px 0;
}