
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
body {
	margin:0px auto;
	padding:0px;
	font-size:12px;
	line-height:21px;	
	background-color:#381f28;
	color: #777;
}

#wrapper {
	margin: 0 auto;
	width: 700px;
}
	
 
/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}
 
:focus {
  -moz-outline-style:none;
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 680px;
	height:130px;
}

/*
	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 */
	border:2px solid #fff;
	background-color:#efefef;
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	padding: 5px;
	background-color:#efefef;
	cursor:pointer;
	width:156px;
	height:118px;

}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}



