 @charset "UTF-8";
/* CSS Document */

/* Generic Styling, for Desktops/Laptops */
.gate-table { 
  width: 100%; 
  width: 730px; 

  border-collapse: collapse; 
}
/* Zebra striping */
.gate-table  tr:nth-of-type(odd) { 
  background: #fff; 
}
.gate-table th { 
  background: #; 
  color: 293173; 
  font-weight: bold; 
}
.gate-table td, .gate-table th { 
  padding: 5px; 
  border: 1px solid #293173; 
  text-align: center; 
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/




/* Generic Styling, for Desktops/Laptops */
@media 
only screen and (max-width: 800px),
  {
.gate-table { 
  width: 100%; 
  max-width: 700px; 

  border-collapse: collapse; 
}
/* Zebra striping */
.gate-table  tr:nth-of-type(odd) { 
  background: #fff; 
}
.gate-table th { 
  background: #; 
  color: 293173; 
  font-weight: bold; 
}
.gate-table td, .gate-table th { 
  padding: 5px; 
  border: 1px solid #293173; 
  text-align: center; 
}

  }



@media 
only screen and (max-width: 600px),
  {

	/* Force table to not be like tables anymore */
	
	.gate-table { 
  width: 100%; 
  max-width: 600px; 

}
	.gate-table, .gate-table thead, .gate-table tbody, .gate-table th, .gate-table td, .gate-table tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.gate-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.gate-table tr { border: 1px solid #293173; }
	
	.gate-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #293173; 
		position: relative;
		padding-left: 50%; 
	}
	
	.gate-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.gate-table td:nth-of-type(1):before { content: "Model"; }
	.gate-table td:nth-of-type(2):before { content: "Size Range"; }
	.gate-table td:nth-of-type(3):before { content: "Maximum Reach to Seat Centerline"; }
	.gate-table td:nth-of-type(4):before { content: "Minimum Reach to Seat Centerline"; }
	.gate-table td:nth-of-type(5):before { content: "Required Overhead Clearance"; }
	.gate-table td:nth-of-type(6):before { content: "Minimum Access Between Seats"; }
	.gate-table td:nth-of-type(7):before { content: "Outside Diameter of Discs"; }
}

	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		
	.gate-table { 
		padding: 0; 
		margin: 0; 
 	 	width: 100%; 
 	 	max-width: 320px;
	}
	 
	/* Force table to not be like tables anymore */
	.gate-table, .gate-table thead, .gate-table tbody, .gate-table th, .gate-table td, .gate-table tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.gate-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.gate-table tr { border: 1px solid #293173; }
	
	.gate-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #293173; 
		position: relative;
		padding-left: 50%; 
	}
	
	.gate-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.gate-table td:nth-of-type(1):before { content: "Model"; }
	.gate-table td:nth-of-type(2):before { content: "Size Range"; }
	.gate-table td:nth-of-type(3):before { content: "Maximum Reach to Seat Centerline"; }
	.gate-table td:nth-of-type(4):before { content: "Minimum Reach to Seat Centerline"; }
	.gate-table td:nth-of-type(5):before { content: "Required Overhead Clearance"; }
	.gate-table td:nth-of-type(6):before { content: "Minimum Access Between Seats"; }
	.gate-table td:nth-of-type(7):before { content: "Outside Diameter of Discs"; }		
		}
	