@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#book, #book thead, #book tbody, #book th, #book td, #book tr { 
		display: block; 
	}
	#book thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	#book tr { border: 1px solid #ccc; }
	
	#book td { 
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50% !important; 
	}
	
	#book td:before { 
		position: absolute;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}	
	/*
	Label the data
	*/
	#book td:nth-of-type(1):before { content: "Name"; }
	#book td:nth-of-type(2):before { content: "Company"; }
	#book td:nth-of-type(3):before { content: "Address"; }
	#book td:nth-of-type(4):before { content: "Postcode"; }
	#book td:nth-of-type(5):before { content: "Contact Number"; }
	#book td:nth-of-type(6):before { content: "Update"; }
	#book td:nth-of-type(7):before { content: "Delete"; }
}