/* Poster of the Week Mobile Fix */
@media only screen and (max-width: 940px) {
	/* comes into effect for screens less than or equal to 940 pixels */

	#page-body > table {
		width: 100%;
		/* background-color: blue; */
	}

	#page-body > table img.avatar {
		width: 120px;
		height: 120px;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 720px) {
	#page-body > table {
		width: 100%;
		/* background-color: green; */
	}
   
	#page-body > table img.avatar {
		width: 80px;
		height: 80px;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 530px) {
	#page-body > table {
		width: 100%;
		/* background-color: yellow; */
	}

	#page-body > table img.avatar {
		width: 30px;
		height: 30px;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 320px) {
	#page-body > table {
		/* background-color: pink; */
	}

	#page-body > table img.avatar {
		display: none;
	}
}

