/* 957px = (450px * 2) + 25px + (16px * 2) */
@media (min-width: 957px) {
	body {
		max-width: 925px;
	}

	div.post-wrapper {
		display: inline-block;
		width: 450px;
	}

	div.post-pad.two-col {
		width: 25px;
	}
}

/* 1432px = (450px * 3) + (25px * 2) + (16px * 2) */
@media (min-width: 1432px) {
	body {
		max-width: 1400px;
	}

	div.post-pad.two-col {
		width: 0;
	}

	div.post-pad.three-col {
		width: 25px;
	}
}

/* 1907px = (450px * 4) + (25px * 3) + (16px * 2) */
@media (min-width: 1907px) {
	body {
		max-width: 1875px;
	}

	div.post-pad.three-col {
		width: 0;
	}

	div.post-pad.four-col {
		width: 25px;
	}
}

/* 2857px = (450px * 6) + (25px * 5) + (16px * 2) */
@media (min-width: 2857px) {
	body {
		max-width: 2825px;
	}

	div.post-pad.four-col {
		width: 0;
	}

	div.post-pad.six-col {
		width: 25px;
	}
}
