.responsivetable {
	width: 100%;
	border-collapse: collapse;
	}
/* Zebra striping */
.responsivetable tr:nth-of-type(odd) {
	background: #fff;
	}
.responsivetable th {
	background: #fff;
	color: white;
	font-weight: bold; 
	}
.responsivetable td, th {
	padding: 6px;
	background: #fff;
	}



/* 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)  {
	h2 {
		max-width:85%;
		}	
	/* Force table to not be like tables anymore */
	.responsivetable table, thead, tbody, th, td, tr {
		display: block;
		}
	/* Hide table headers (but not display: none;, for accessibility) */
	.responsivetable thead tr {
		position: absolute; 
		top: -9999px; 
		left: -9999px;
		}
	.responsivetable td {
	 /* Behave  like a "row" */
		border: none;
		position: relative; 
		float:left;
		height:460px;
		width:45%;
	 	}
	 .responsivetable 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;
		}
}


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	h2 {
		max-width:100%;
		}
    /* iPads (portrait and landscape) ----------- */
	.responsivetable td {
		width:100%;
		height:auto;
		}
	.responsivetable td img {
		text-align:center;
		}
}

@media only screen and (min-width:481px) and (max-device-width : 1023px) {
	.responsivetable td {
		width:45%;
		float:left;
		height:450px;
		}
}


@media only screen and (min-device-width:1024px)  {
	.responsivetable td {
		width:30%;
		float:left;
		height:450px;
		}
}

