
@-ms-viewport {	width: device-width;}

/************************************************************************************
smaller than 800
*************************************************************************************/
@media screen and (max-width: 800px) {

	.content {
		width: 85%;
	}
	img {
		width: 100%
	}
	
}

/************************************************************************************
smaller than 600
*************************************************************************************/
@media screen and (max-width: 600px) {

	.content {
		width: 80%;
	}
	p {
		text-align: left;
	}
}

/************************************************************************************
smaller than 400
*************************************************************************************/
@media screen and (max-width: 450px) {
	
	.content {
		width: 75%;
	}
}