/* CSS for my first scrolling box */
	#programacaoScroll{
		height:266px;	/* Height of box */
		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 */
	}
