#viewport{
	width:100%; /* 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:absolute;
	top:0;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
	float:left;
}
#viewport a{
	color:inherit;
}
#viewport li{
	width: auto; /* Defines the size of inner element */
	height: auto;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
}
.caption{
	width:770px;
	height:605px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  line-height:85px;
	display: table;
  text-align: center;
}
.captioncontent{
	position:absolute;
	width:100%;
	height:605px;
	color:#dacdbd;
    font-family: 'ArcherBold';
	text-transform:uppercase;
	font-size:87px;
	top:0;
	left:0;
	
}
#caption{
	display: table-cell;
  vertical-align: middle;  
  
  
}



/* Cosmetic */
#simplePrevious, #simpleNext{
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;	
}
