/* root element for scrollable */ 
div.scrollable-v { 
 
  /* required settings */ 
  position:relative; 
  overflow:hidden; 
 
  /* vertical scrollers have typically larger height than width */ 
	width: 439px;
	height: 396px;
} 
 
/* root element for scrollable items */ 
div.scrollable-v div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

.scrollable-bg
{
	display: block;
	width: 529px;
	height: 153px;
	margin-top: 21px;
	background: url('../img/scrollable-bg.jpg');
}

.scrollable-bg a.left
{
	display: block;
	float: left;
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 22px;
	width: 11px;
	height: 140px;
	text-decoration: none;
	background: url('../img/scrollable-left.jpg') no-repeat;
}

.scrollable-bg div.scrollable
{
	display: block;
    position:relative; 
    overflow:hidden; 
	float: left;
	width: 448px;
	height: 153px;
}

.scrollable-bg div.scrollable div.items 
{ 
    width: 20000em; 
    position:absolute; 
} 


.scrollable-bg div.scrollable div.items img
{ 
	margin-top: 5px;
    margin-right: 10px;
}

.scrollable-bg a.right
{
	display: block;
	float: left;
	margin-top: 5px;
	margin-left: 15px;
	margin-right: 10px;
	width: 11px;
	height: 140px;
	text-decoration: none;
	background: url('../img/scrollable-right.jpg') no-repeat;
}