#gallery {
	border-top: 1px solid #e5e5e5;
	padding: 20px 0 0 0;
	margin: 20px 0 0 0;

}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 869px;
	height:200px;

	/* custom decorations */
	}

/*
	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 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable a {
	float:left;
	width: 200px;
	margin: 0 10px 0 10px;
	padding: 0;
	height: 200px;
	border-right: 1px solid #e5e5e5;
	text-decoration: none;
}

.scrollable a span{
	display: block;
	font-weight: bold;
	font-size: 12px;
	width: 200px;
	text-align: center;
	font-family: Arial;
	text-decoration: none;
	margin: 10px 0 0 0;
}

.scrollable span:hover {
	text-decoration: underline;
}



/* active item 
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}*/



