/* smartphone view */
@media only screen and (max-width : 480px)   {
	#contentTop, #contentBottom {
		background:none;
		display:none;
	}
	#contentContainer { background:none; width:550px; }
	#content { width:550px; }
}

/* tablet view */
@media only screen and (max-width : 600px) and (min-width : 481px)   {
	#contentTop, #contentBottom {
		background:none;
		display:none;
	}
	#contentContainer { background:none; width:600px; }
	#content { width:600px; }
}