/* CSS Document */

/* CSS for my first scrolling box */
#scrollingContainer{
	width:190px;	/* 170 pixels in width */
	height:100px;	/* Height of box */
	
	/*border:1px solid #000;*/	/* Black border around box */
	/*background-color: #E2EBED;*/	/* 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:10px 0 15px 0;	/* Right margin of 10 pixels */
	/*font-size:0.9em;*/	/* Smaller font size than the rest of the page */
	
	overflow:hidden;	/* Hide overflow content */
	
}
/* End css for my first scrolling box */


/* CSS for my second scrolling box */
#scrollingContainer2{
	width:150px;	/* 170 pixels in width */
	height:150px;	/* Height of box */
	
	/*border:1px solid #000;*/	/* Black border around box */
	/*background-color: #E2EBED;*/	/* 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-top:10px;	/* Right margin of 10 pixels */
	/*font-size:0.9em;*/	/* Smaller font size than the rest of the page */
	
	overflow:hidden;	/* Hide overflow content */
}

