H2.scrolling {
	margin-top:0px;
	margin-bottom:0px;
	font-size:13pt;
	color:navy;
	display:inline
}
#scrollingContainer{
	width:230px;	/* 170 pixels in width */
	height:40px;	/* Height of box */
	
	border:1px solid #000;	/* Black border around box */
	background-color: white;	/* Light blue background color */
	
	padding:2px;	/* A little bit of space between border of box and text inside */
	float:left;	/* I want the text to wrap around the box */
	margin-right:10px;	/* Right margin of 10 pixels */
	font-family: Trebuchet MS,sans-serif;
	font-size:0.9em;	/* Smaller font size than the rest of the page */
	
	overflow:hidden;	/* Hide overflow content */
}
