/* Responsive
------------------------------------------------------- */
/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation : landscape) {
	#bg {background-size: 100% auto !important; display: block !important; }
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation : portrait) {
	#bg {background-size: auto 100% !important; display: block !important;}
}

/* iPhone5 (landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) { 
	#bg {background-size: 100% auto !important; display: block !important; }
}
/* iPhone 5 (portrait) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : portrait) {
	#bg {background-size: auto 100% !important; display: block !important;}
}

/* iPhone 1/2/3/4/4s (landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) 
and (orientation : landscape) {
	#bg {background-size: 100% auto !important; display: block !important; }
}

/* iPhone 1/2/3/4/4s (portrait) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) 
and (orientation : portrait) {
	#bg {background-size: auto 100% !important; display: block !important;}
}
