/* o.g.
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 830px
and also iPads specifically.
*/
@media 
only screen and (max-width: 830px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table.tbl-830, table.tbl-830 thead, table.tbl-830 tbody, table.tbl-830 th, table.tbl-830 td, table.tbl-830 tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	table.tbl-830 thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	table.tbl-830 tr {
		border: 1px solid #ccc;
		margin-bottom: 10px;
	}
	
	table.tbl-830 td { 
		/* Behave  like a "row" */
		border: none;
		border-top: 1px solid #ccc; 
		position: relative;
		padding-left: 50%; 
	}
	
	table.tbl-830 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;
		text-align: left;
		font-weight: bold;
		/*
		padding-left: 5px;
		background: #333;
		color: white;
		*/
	}
}

