#home {
	width:960px;
	height:500px;
	position:absolute;
	top:127px;
}
#viewport{
	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; /* Hides extra elements, those outside the viewport area */
	/* Fix for IE */
	position:relative;
	z-index:1;
}
#viewport ul{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
	width:960px;
}
#viewport li{
	width: 960px; /* Defines the size of inner element */
	height: 500px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	margin: 0;
	padding: 0px;
	text-align:center;
}

/* Cosmetic */
#previous {
display:block;
width:34px;
height:38px;
background:url('/magento/_assets/img/prev_white.png') top no-repeat;
margin:0;
cursor:pointer;
text-indent:-9999em;
overflow:hidden;
position:absolute;
top:231px;
left:0px;
z-index:2;
}


#next {
display:block;
width:34px;
height:38px;
background:url('/magento/_assets/img/next_white.png') top no-repeat;
margin:0;
cursor:pointer;
text-indent:-9999em;
overflow:hidden;
position:absolute;
top:231px;
right:0px;
z-index:2;
}


/* mouseover state */
#previous:hover {
background-position:bottom;
}
#previous2:hover {
background-position:bottom;
}

#next:hover {
background-position:bottom;
}
#next2:hover {
background-position:bottom;
}

