@charset "UTF-8";
/* Laptop/Tablet (1024px) */
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
	body {
		font-size:18px;
	}
	/*#responsive:after {
		content:"Laptop/Tablet (1024px)";
	}*/
}

/* Tablet Portrait (768px) */
@media only screen and (min-width: 321px) and (max-width: 1024px) and (orientation: portrait) {
	body {
		font-size:16px;
	}
	.box {
		width:80%;
		font-size:2em;
	}
	/*#responsive:after {
		content:"Tablet Portrait (768px)";
	}*/
	#menu_container {
		font-size:3em;
	}
	#menu_container img {
		height:2em;
	}
}

/* Phone Landscape (480px) */
@media only screen and (min-width: 321px) and (max-width: 480px) and (orientation: landscape) {
	body {
		font-size:14px;
	}
	/*#responsive:after {
		content:"Phone Landscape (480px)";
	}*/
}

/* Phone Portrait (320px) */
@media only screen and (max-width: 320px) {
	body {
		font-size:12px;
	}
	/*#responsive:after {
		content:"Phone Portrait (320px)";
	}*/
}