$(document).ready( function() {
	
	$("#content img").load( function() {		
		if ($(this).width() > 625) {
			$(this).css({'width':'625px'})
		}		
	})
	
	$("#report span").each( function() {
		$(this).css({'margin-top':'-'+($(this).innerHeight()+12)+'px'})
	})
}); 
