/*************************************
CSS for my first scrolling box*/
#scrollingContainer
{
	width: 254px;
/*170 pixels in width*/
	height: 120px;
/*Height of box*/
	border: 1px solid #341E67;
/*Black border around box*/
	background-color: #D6C3FD;
/*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-size: 0.9em;
/*Smaller font size than the rest of the page*/
	overflow: hidden;
/*Hide overflow content*/
	margin-top: -10px;
	margin-bottom: 30px;
	font-weight: bold;
}
/*End css for my first scrolling box
CSS for my second scrolling box*/
#scrollingContainer2
{
	width: 100px;
/*Width of second box*/
	height: 150px;
/*Height of second box*/
	border: 1px solid #000;
	background-color: #DDD;
	padding: 2px;
/*A little bit of space between border of box and text inside*/
	float: right;
/*I want the text to wrap around the box*/
	margin-left: 10px;
/*Space at the left of the box*/
	color: #FF0000;
/*red text color*/
}
#scrollingContent2
{
	font-size: 0.9em;
}
