#viewportWrapper{
	float: left;
	position: relative;
	width:100%;height: auto;
	margin:5px 0 20px 0;
}

#viewport{
	float:left;
	width: 840px;
	height:120px;
	margin:0 0 0 30px;
	padding:0 0;
	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: 120px; /* Defines the size of inner element */
	height: 120px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	background: url('../images/viewport_item_bg.png') no-repeat;
	margin: 0 1px;
	padding: 0 ;
	text-align:left;
}

#viewport li:hover{
	background: url('../images/viewport_item_bg-hover.png') no-repeat;
}

#viewport li .thumb{
	width:80px;
	height:80px;
	margin:14px 0 0 14px;
	background:#000;
	border:1px solid #e3e3e3;
	}

/* Cosmetic */
#simplePrevious{
	position: absolute;
	left: 0px;
	top:40px;
	width:22px;
	height:23px;
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;
	background: url('../images/grey_arrow-left.gif') 0 0 no-repeat;	
}

#simplePrevious:hover{	
	background: url('../images/grey_arrow-left.gif') 0 -23px no-repeat;	
}

#simpleNext{
	position: absolute;
	right: -3px;
	top:40px;
	z-index: 100;
	width:22px;
	height:23px;
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;
	background: url('../images/grey_arrow-right.gif') 0 0 no-repeat;	
}

#simpleNext:hover{	
	background: url('../images/grey_arrow-right.gif') 0 -23px no-repeat;	
}


