 
.collage {
	float: right; 
}

.collage img {
	display: block;
	max-width: 100%;
	height: auto;
	float: right;
}  


/* Rules Sensitive to Screen Size */

/* Small Screen Rules */
@media screen and (min-width: 150px) and (max-width: 515px) 
{ 
	
	.collage {
		width: 100%; 
		margin: auto;
		margin-bottom: -1ex;
		float: none;
	}

	.collage img {
		display: block;
		width: 100%;
		max-width: 100%;
		margin: auto;
		height: auto;
		float: none;
	}
}


/* Medium to Large Screen Rules */
@media screen and (min-width: 516px)
{ 
	.collage {
		width: 50%; 
		max-width: 50%; 
		float: right; 
		margin-top: -2ex; 
		margin-right: -3em;
	}

	.logoAgog img {
		height: auto;
		float: right;
		margin-bottom: 2ex;
	} 
}
