/*<link rel="stylesheet" href="css/mediaquery.css"><*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
	#container {
		top: 0px;
	}
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {

	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
	#container {
		top: 150px;
	}	

	#containerhome {
		top: 150px;
	}

}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
	#container {
		top: 150px;
	}
	#containerhome {
		top: 150px;
	}
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
	#container {
		top: 0px;
	}
	#containerhome {
		top: 0px;
	}
}

