/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding:0 0 10px 0;
}

div.scrollableArea
{
	position: relative;
	width: auto;
	height: 100%;
}

#logoParade div.scrollableArea img
{
	float: left;
	margin-right: 30px;
	height:50px;
}

