@media only screen and (max-width: 50em)
{
	/* Force table to not be like tables anymore */
	.resultSet table, 
	.resultSet thead, 
	.resultSet tbody, 
	.resultSet th, 
	.resultSet td, 
	.resultSet tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.resultSet thead tr { 
		border:0 !important;
		clip:rect(1px 1px 1px 1px);
		clip:rect(1px, 1px, 1px, 1px);
		height:1px !important;
		padding:0 !important;
		overflow:hidden;
		position:absolute !important;
		width:1px !important
	}
	
	.resultSet tr { border: 1px solid #ccc; }
	
	.resultSet td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	.resultSet 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
	*/
	.resultSet td:nth-of-type(1):before { content: "First Name"; }
	.resultSet td:nth-of-type(2):before { content: "Last Name"; }
	.resultSet td:nth-of-type(3):before { content: "MI"; }
	.resultSet td:nth-of-type(4):before { content: "Cert Number"; }
	.resultSet td:nth-of-type(5):before { content: "Cert Type"; }
	.resultSet td:nth-of-type(6):before { content: "Approval Status"; }
	.resultSet td:nth-of-type(7):before { content: "Expiration"; }
}

th
{
	background-color:#f6fae8;
	border-bottom:solid 1px #aaa;
	border-top:solid 1px #aaa;
	vertical-align:bottom;
}

.hiddenVisually,
.hiddenVisuallyAlways
{
	border:0 !important;
	clip:rect(1px 1px 1px 1px);
	clip:rect(1px, 1px, 1px, 1px);
	height:1px !important;
	padding:0 !important;
	overflow:hidden;
	position:absolute !important;
	width:1px !important
}

.formField,
.formField label
{
	display:block;
}

.formField
{
	float:left;
	margin-right:2%;
}

input[type="submit"]
{
	border:solid 1px #333;
	margin-top:1em;
}

.l-header
{
	position:relative;
}

.providerNote a[href^="tel:"]
{
	white-space:nowrap;
}

.providerNote
{
	background-color:#ededed;
	font-size:.9em;
	padding:3%;
}

.resultSet
{
	margin-bottom:2em;
}

.resultSet table
{
	width:100%;
}

.resultSet td
{
	white-space:nowrap;
}

.resultSet tr:nth-child(even)
{
	background-color:aliceblue;
}

.searchEMS
{
	background-color:#f6fae8;
	border:solid 1px #aaa;
	margin-bottom:2em;
	overflow:hidden;
	padding:1em 2%;
}