@charset "utf-8";
#TableContainer {
	background-color: #000;
	width: 100%;
}
/* 
Generic Styling, for Desktops/Laptops 
*/
table {
	width: 100%;
	border-collapse: inherit;
	font-size: 20px;
}
/* Zebra striping */
tr:nth-of-type(odd) {
}
th {
	color: #FFF;
	font-weight: bold;
	background-color: #333333;
}
td, th {
	padding: 8px;
	border: 2px none #787878;
	text-align: center;
	color: #FDCD00;
}

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

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr {
	display: block;
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr {
	position: absolute;
	top: -9999px;
	left: -9999px;
	}
	
	tr {
	border: 2px solid #787878;
	}
	
	td {
	/* Behave  like a "row" */
		border: none;
	border-bottom: 2px solid #787878;
	position: relative;
	padding-left: 45%;
	text-align: center;
	}
	
	td:before {
	/* Now like a table header */
		position: absolute;
	/* Top/left values mimic padding */
		top: 0px;
	left: 0px;
	width: 45%;
	padding-right: 0px;
	white-space: nowrap;
	background-color: #333;
	font-weight: bold;
	color: #FFF;
	font-family: "Century Gothic";
	padding-top: 6px;
	padding-bottom: 6px;
	}
	
	/*
	Label the data
	*/
	td:nth-of-type(1):before { content: "MODEL"; }
	td:nth-of-type(1):before { content: "MAX. FLOW"; }
	td:nth-of-type(2):before { content: "MAX. PRESSURE"; }
	td:nth-of-type(3):before {content: "POWER";
}

}


.tableHeader {
	font-family: "Century Gothic";
	text-align: center;
	font-size: 18px;
	font-weight: bolder;
	text-transform: uppercase;
	color: #FFF;
}
.tableBody {
	font-family: "Century Gothic";
	text-transform: none;
}
.TablePumpRange {
	background-color: #000;
	font-family: "Century Gothic";
}
