/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#thumbs
{
			float: right;
			width: 100px;
			margin: 0 60px 0 0;
	}
#content .scrollable {

	position:relative;
	overflow:hidden;
	width: 80px;
	height:200px;
	padding:0 20px 60px 0;
	/* required settings */

}

/*
	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.
*/
#content .scrollable .items {
	/* this cannot be too large */
	height:20000em;
	position:absolute;
	padding: 20px 15px;
	background: #afafaf;
}

/* single scrollable item */
#content .scrollable img {
	margin:10px 5px 10px 5px;
	background-color:#ccc;
	padding:0;
	border:none;
	cursor:pointer;
	width:60px;
	height:80px;
	border: 1px solid #666;
}

/* active item */

#content .scrollable .active {
	border:1px solid #333;
	z-index:9999;
	position:relative;
}

/* styling for the image wrapper  */ 
#content #image_wrap { 
	float: left;
    width:220px; 
    margin:40px 0 0 0; 
    padding:0; 
    border:3px solid #a4a4a4; 
}


