@charset "utf-8";
/* CSS Document */

#infiniteCarousel {
    margin-left: 4px;
    border: 1px #FF00FF solid;
    height: 180px;
	width: 500px; 
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
	/* Fix for IE */
	position:relative;
}
#infiniteCarousel ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
    width: 1875px;
}
#infiniteCarousel li{
    position: absolute;
    padding-top: 5px;
	width: 125px; /* Defines the size of inner element */
	height: 173px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
}
#infiniteCarousel li img{
    padding-left: 22px;
}

/* Cosmetic */
#previous {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 75px;
  left: 0px;
  cursor: pointer;
  cursor: hand;
  background-image:url(/main_images/arrow_left.png);
  background-repeat: no-repeat;
  z-index: 101;
}
#next {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 75px;
  right: 0px;
  cursor: pointer;
  cursor: hand;
  background-image:url(/main_images/arrow_right.png);
  background-repeat: no-repeat;
  z-index: 101;
}
