
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/



#scroll_wrapper{border:1px solid #fefefe}


.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 260px;
	height:280px;

	/* custom decorations */
	background:url(../images/scrollable/grey.png)

	
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/


.scrollable div { 
    float:left; 
    display:block; 
    width:260px; 
 	height:280px;
	margin:1px
	
} 

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	height:260px;
}

	
.scrollable div h4 {
	color:#000;
	padding:0 4px;
	clear:both;
	font-size:1.4em;
	font-weight:normal;
	margin:0 0 4px 0!important;	
	}
.scrollable div a {color:#000;text-decoration:none}
.scrollable div p {
	color:#666;
	padding:0 4px;
	line-height:1.3em;
	margin:0;
	}
	.scrollable div p.homeEventDate {
	color:#000;
	padding:0 4px;
	margin:0 0 4px 0!important;
	}
/* single scrollable item */
.scrollable div.imagecontainer {
	float:left;
	margin:0;
	padding:0;
	border:none;
	width:260px;
	margin-bottom:6px;
	height:150px;
	overflow:hidden;
	}
.scrollable .imagecontainer  img {
	float:left;
	margin:0;
	background-color:#fff;
	padding:0;
	border:none;
	width:260px;
}
