.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)  {
		
/* 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 tr {
}
.responsivetable td {
 /* Behave  like a "row" */
	border: none;
	position: relative; 
 }
 .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;
}
/*Label the data*/
}

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

@media all and (min-width:480px) and (max-device-width : 1023px) {
	.responsivetable td {
		width:45%;
		float:left;
	}
}

@media all and (min-width:1024px)  {
	.responsivetable td {
		width:30%;
		float:left;
	}
}
