@media all and (min-width: 1024px) and (max-width: 1280px) {
	/* REMOVE AFTER TESTING!! */
	#wrapper { /*border: 1px solid green;*/ }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
	/* REMOVE AFTER TESTING!! */
	#wrapper { /*border: 1px solid yellow;*/ }

	#sidebar { display: none; }
}

@media all and (min-width: 480px) and (max-width: 768px) {
	/* REMOVE AFTER TESTING!! */
	#wrapper { /*border: 1px solid blue;*/ }

	#st-trigger-effects { display: block; }

	#nav, #head-top { display: none; }

	#int-right { width: 70%; }

	#sidebar { display: none; }
}

@media all and (orientation: landscape) and (max-width: 768px) {
	/* REMOVE AFTER TESTING!! */
	#wrapper { /*border: 1px solid orange;*/ }

	#st-trigger-effects { display: block; }

	#nav, #head-top, #sidebar { display: none; }

	#int-right { width: 100%; }
}

@media all and (max-width: 480px) {
	/* REMOVE AFTER TESTING!! */
	#wrapper { /*border: 1px solid red;*/ }

	#st-trigger-effects { display: block; }

	#nav, #head-top, #sidebar { display: none; }

	#int-right { width: 100%; }
}

/* Portrait */
@media screen and (orientation: portrait) { /* Portrait styles here */ }
/* Landscape */
@media screen and (orientation: landscape) { /* Landscape styles here */ }

/* Mobile navigation menu styles */
@media only screen and (max-width: 768px) {

}
