/* Bookassist hotel webapp for mobile	 						*/
/* Copyright 2010,2012 Bookassist	 							*/
/* All rights Reserved 											*/



/*  Adjustments to position of primary buttons on index page based on screen sizes  */
	
	/*  for landscape on small devices up to height 260px, iPhone landscape for example */
	@media all and (max-height: 260px) {
		#landing { min-height:260px}
		#primarycontainer {top:9%;}
	}

	/*  for portrait on small devices between 260px and 900px, iPhone portrait and iPad landscape for example */
	@media all and (min-height: 260px) and (max-height:900px) {
		#landing { min-height:1024px}
		#primarycontainer {top:16%;}
	}

	/*  for larger screen devices, iPad for example */
	@media all and (min-height: 900px) {
		#landing { min-height:1024px}
		#primarycontainer {top:60%;}
	}

/*  End adjustments to position of primary buttons on index page based on screen sizes  */


/*  hide the header for language pop-up dialog and adjust sizes of strips */
	div.ui-corner-top.ui-header {display:none !important; }
	.ui-dialog {font-size:90%; height:33px; max-height:33px !important;}



