@charset "utf-8";
/* CSS Document */

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
/*	background:url(/Portals/0/OfficeDynamicsScrollable.jpg); */
	width: 400px;
	height:241px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:15px;
}



/* single item */
#thumbs div {
	float:left;
	width:400px;
	height:216px;
	color:#fff;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#EBEBEB;	
}

/* style when element is active (clicked)
#thumbs div.active {
	background-color:#066;
	cursor:default;
}
*/


#thumbs div a img {
	border:0px;
}
