/* CSS for my first scrolling box */
#scrollingContainer{

	padding-left:5px;	/* A little bit of space between border of box and text inside */
	float:left;	/* I want the text to wrap around the box */
	font-size:12px;	/* Smaller font size than the rest of the page */
	overflow:hidden;	/* Hide overflow content */
	height:240px;
}
#scrollingContent{

	float:left;	/* I want the text to wrap around the box */
	overflow:hidden;	/* Hide overflow content */
}
/* End css for my first scrolling box */
