/*==========  Media Query Debugging  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

	#wrapper, .container { background: red !important;}

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

	#wrapper, .container { background: blue !important;}

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

	#wrapper, .container { background: green !important;}

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

	#wrapper, .container { background: orange !important;}

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

	#wrapper, .container { background: purple !important;}

}
