/* root element for the whole scrollable setup */
div.spaces_features {  
	position:relative;
	overflow:hidden;
	width: 525px;	 
	height:350px;
	background:#F8F8F8;	
}

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



/* single item */
#featuredSpaces div {
	width:525px;
	height:350px;
	cursor:pointer;
}

/* single item */
#featuredSpaces div img {
margin:0 10px 0 0;
}

#featuredSpaces div h2 {
padding:6px 0 0 7px;
float: left;
font-size:13px;
}

#featuredSpaces div p {
padding:8px 0 0 8px;
float: left;
}


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


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