/*************
	START OF DEMO CSS 
	**************/
	
	/* 
	END OF DEMO CSS
	*************************************/
	
	/* CSS for my first scrolling box */
	#scrollingContainer{
		width:330px;	/* 170 pixels in width */
		height:26px;	/* Height of box */
		
		/*border:1px solid #000;	/* Black border around box */
		/*background-color: #E2EBED;	/* Light blue background color */
		line-height:26px;
		vertical-align:middle;
		padding:0px;	/* A little bit of space between border of box and text inside */
		margin-left:295px;	/* Right margin of 10 pixels */
		color:#000000;
		font-weight:bold;
		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;
	}			
