@charset "UTF-8";
/* CSS Document */

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 230px; 
    width: 300px; 
	float:left;
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    width:20000em; 
}

div.scrollable div.items div {
	height:230px;
	float:left;
	width:300px;
}


div.scroll-left {
	float:left;
	padding-right:10px;
}

div.scroll-right {
	float:left;
	padding-left:10px;
}

a.prev {
	display:block;
	background: url(../images/scrollable/left.gif) no-repeat center top;
	height:20px;
	width:20px;
	overflow:hidden;
	cursor:pointer;
	text-indent:-9999px;
	margin-top:105px;
}

a.next {
	display:block;
	background: url(../images/scrollable/right.gif) no-repeat center top;
	height:20px;
	width:20px;
	height:32px;
	cursor:pointer;
	text-indent:-9999px;
	margin-top:105px;
}



.scroller p {
	margin:0 !important;
}

.scroller {
	margin-top:18px;
}