	/* 
	END OF DEMO CSS
	*************************************/
	
	/* CSS for my first scrolling box */
	#scrollingContainer{
		width:150px;	/* 170 pixels in width */
		height:180px;	/* Height of box */
		
		/*border:0px solid #538616;	/* Black border around box */
		/*background-color: #538616;	/* Light blue background color */
		border:none;
		background-image: url(../images/fondo_noticas.gif);
		
		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:1px;	/* Right margin of 10 pixels */
		font-size:0.9em;	/* Smaller font size than the rest of the page */
		text-align: justify;		
		overflow:hidden;	/* Hide overflow content */
	}
	/* End css for my first scrolling box */
