#jq-carousel{
	width: 960px; /* 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;
  text-align: center;
  position: absolute;
  top: 110px;
}
#jq-carousel ul{
	position: relative;
	padding: 0;
  margin: 0;
}
#jq-carousel li{
	width: 960px; /* Defines the size of inner element */
	height: 375px;
	float: left;
  display: inline;
	list-style: none;
	margin: 0 1px;
	padding: 0;
	text-align:center;
}

/* Cosmetic */
#jq-carousel-previous, #jq-carousel-next{
	cursor: pointer;
	font-size: 0.85em;
  margin: 0 4px;
  visibility: hidden;

}
