/* root element for the whole scrollable setup */
#scrollablewrapper {height: 410px; clear:all; margin-top: 20px; }
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 522px;	 
	height:410px;	
}

/* 
	root element for scrollable items. it is 
	absolutely positioned with large width. 
*/
#items {	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:100px;	
}


/* single item */
#items div {
	float:left;
	width:256px;
	height:410px;
	background:#D7BE86 url(testscrollableh150.png) repeat-x 0 146px;
	color:#000;
	border-left:2px solid #fff;
	border-right:2px solid #fff;
	cursor:pointer;
}

/* style when mouse is over the item */
#items div.hover {
	background-color:#EFDCB3;	
}

/* style when element is active (clicked) */
#items div.active {
	background-color:#FFF0CF;
	cursor:default;
}

#items h3, #items p, #items span {
	margin: 0px;
	padding: 4px 13px;		
	font-size:13px;
	color:#000;	
}
#items p a {color: #527354; font-weight: bold;}
#items p a:hover {color: #000;}
#items .remarks {font-size: 10px;}
#items h3 {color: #fff; background-color: #527354; }


