
/* outmost wrapper element */
#scrollable {
	padding:0px 0px;
	margin:0px 0px;
	width:403px;
	height:327px;
}

/* container for the scrollable items */
div.items {
	height:327px !important;	
	width:2000px !important;
}

/* single item */
div.items a {
	display:block;
	float:left;
	height:327px;
	width:403px;
	color:#ccc;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.items a:hover {
	color:#999;	
}

div.items a.active {
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	display:block;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background-repeat:no-repeat;	
	position:relative;
	float:left;
	z-index:3;
}

a.prev {
	background:url(../imgs/prev-horizontal.png);
	margin: 170px -37px -170px 0px;
}

a.prev:hover {
  background-position: -32px 0;
}

a.next {
	background:url(../imgs/next-horizontal.png);		
	margin: 170px -37px -170px -30px;
}

a.next:hover {
	background-position: -32px 0;
}

