/*************
	START OF DEMO CSS 
	**************/
	
	/* 
	END OF DEMO CSS
	*************************************/
	
	/* CSS for my first scrolling box */
	#scrollingContainer{
		width:100%;	/* 170 pixels in width */
		height:24px;	/* Height of box */
		
		/*border:1px solid #000;	/* Black border around box */
		/*background-color: #E2EBED;	/* Light blue background color */
		line-height:23px;
		vertical-align:middle;
		padding:0px;	/* A little bit of space between border of box and text inside */
		margin-right:243px;	/* Right margin of 10 pixels */
		color:#FFFFFF;
		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:#FFFFFF;
		text-decoration:none;		
	}
	/* End css for my first scrolling box */
	#scrollingContainer a:hover{
		color:#FFFFFF;
		text-decoration:underline;
	}			
