/*************
	START OF DEMO CSS 
	**************/
	
	/* 
	END OF DEMO CSS
	*************************************/
	
	/* CSS for my first scrolling box */
	#scrollingContainer{
		width:820px;	/* 170 pixels in width */
		height:32px;	/* Height of box */
		
		/*border:1px solid #000;	/* Black border around box */
		/*background-color: #E2EBED;	/* Light blue background color */
		line-height:32px;
		vertical-align:middle;
		padding:0px;	/* 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:0px;	/* Right margin of 10 pixels */
		font-size:0.9em;	/* Smaller font size than the rest of the page */
		color:#AF0A1B;
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size:12px;
		overflow:hidden;	/* Hide overflow content */
		white-space:nowrap;
	}
	/* End css for my first scrolling box */
	#scrollingContainer a{
		color:#000000;
	}		
