/**
 * Debug Media Queries CSS
******************************************/
body:before{
	content:"> 1350px";
	display: block;
	position: fixed;
	background: #fff;
	box-shadow: 0 0 5px #b3b3b3;
	bottom: 20px;
	left: 20px;
	padding: 5px 10px;
	z-index: 100;
}
@media screen and (max-width: 1300px){
	body:before{
		content:"1300px -  1350px";
	}
}
@media screen and (max-width: 1250px){
	body:before{
		content:"1250px -  1300px";
	}
}
@media screen and (max-width: 1200px){
	body:before{
		content:"1200px -  1250px";
	}
}
@media screen and (max-width: 1150px){
	body:before{
		content:"1150px -  1200px";
	}
}
@media screen and (max-width: 1100px){
	body:before{
		content:"1100px - 1150px";
	}
}
@media screen and (max-width: 1050px){
	body:before{
		content:"1050px - 1100px";
	}
}
@media screen and (max-width: 1000px){
	body:before{
		content:"1000px - 1050px";
	}
}
@media screen and (max-width: 950px){
	body:before{
		content:"950px - 1000px";
	}
}
@media screen and (max-width: 900px){
	body:before{
		content:"900px - 950px";
	}
}
@media screen and (max-width: 850px){
	body:before{
		content:"850px - 900px";
	}
}
@media screen and (max-width: 800px){
	body:before{
		content:"800px - 850px";
	}
}
@media screen and (max-width: 750px){
	body:before{
		content:"750px - 800px";
	}
}
@media screen and (max-width: 700px){
	body:before{
		content:"700px - 750px";
	}
}
@media screen and (max-width: 650px){
	body:before{
		content:"650px - 700px";
	}
}
@media screen and (max-width: 600px){
	body:before{
		content:"600px - 550px";
	}
}
@media screen and (max-width: 550px){
	body:before{
		content:"550px - 600px";
	}
}
@media screen and (max-width: 500px){
	body:before{
		content:"500px - 550px";
	}
}
@media screen and (max-width: 450px){
	body:before{
		content:"450px - 500px";
	}
}
@media screen and (max-width: 400px){
	body:before{
		content:"400px - 450px";
	}
}
@media screen and (max-width: 350px){
	body:before{
		content:"350px - 400px";
	}
}
@media screen and (max-width: 300px){
	body:before{
		content:"300px - 350px";
	}
}
@media screen and (max-width: 250px){
	body:before{
		content:"250px - 300px";
	}
}