/* 
	Mobile.css 
	Only use pt/ em here
*/
	/* iPad - landscape/ Portrait */	
	@media only screen
	and (min-device-width : 768px)
	and (max-device-width : 1024px) {
		
	}
	/* iPad - landscape */
	@media only screen
	and (min-device-width : 768px)
	and (max-device-width : 1024px)
	and (orientation : landscape) {
		
	}
	/* iPad - portrait */
	@media only screen
	and (min-device-width : 768px)
	and (max-device-width : 1024px)
	and (orientation : portrait) {
			
	}
	/* iPhone - landscape/ Portrait */
	@media only screen 
	and (max-device-width: 480px) {
		
	}
	/* iPad - landscape */
	@media only screen 
	and (max-device-width: 480px) 
	and (orientation : landscape) {
 
	}		
	/* iPad - portrait */
	@media only screen 
	and (max-device-width: 480px) 
	and (orientation : portrait) {
 
	}
	


/*---------------------------------------------------------

END SECTION - no more CSS must be placed below this section.
This is to eliminate CSS merge issues. Place all new and
updated CSS above this section.
	
--------------------------------------------------------- */	