#viewport{
	width: 790px; /* 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;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
#viewport li{
	width: 392px; /* Defines the size of inner element */
	height: 147px;   /* Allow for top bot border on CONTAINER_LISTITEM_CAROUSEL */
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	 
	margin: 0 0px;
	padding: 0 10px 0 0px;
	text-align:left;
}

/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;	
}


  
     .CONTAINER_LISTITEM_CAROUSEL
  
  {
	  border: 1px solid #e5e5e5; 
	  width:385px;
	  height:145px;  /* Allow for top bot border*/
	  margin-right:0px;
	  margin-bottom:0px;
	  background:#fff
	  
  }