	#scrollingContainer{
		width:400px;	/* width */
		height:450px;	/* Height*/
		
		border:2px solid #FFF;
		background-color: #FFFF99;	/* bkgrd color */

		padding:2px;	/* A bit of space between border of box and text inside */
		float:left;	/* I want the text to wrap around the box */
		margin-right:10px;
		font-size:0.9em;	/* Smaller font than rest of page */
		text-align: center;
	
		
		overflow:hidden;	/* Hide overflow content */
	}