
.carousel_container{
  padding: 15px; 
  height: 170px; 
  width: 956px; 
  background-color: #DDDDDD;
}

.carousel_previous{
  float: left; 
  position: relative; 
  top: 70px; 
  margin-right: 10px;
  cursor: pointer;
}

.carousel_next{
  float: left; 
  position: relative; 
  top: 70px; 
  margin-left: 10px;
  cursor: pointer;
}

.carousel_container a:hover{
  opacity: 0.7;
}

.image_carousel img{
  width: 200px;
}

.carousel{
	width: 800px; /* 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;
	float: left;
}
.carousel ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}
.carousel li{
	width: 200px; /* 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: #F6F6F6;
	margin: 0 1px;
	padding: 10px;
	text-align:center;
}


