@charset "utf-8";
/* CSS Document */

@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: inline-block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		
		
		td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 25%; 
		}
		
		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;
			font-family:Arial, Helvetica, sans-serif; font-size:16px;
			color:#000;
		}
		
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: " "; }
		td:nth-of-type(2):before { content: "Product"; }
		td:nth-of-type(3):before { content: " "; }
		td:nth-of-type(4):before { content: "Description"; }
		td:nth-of-type(5):before { content: " "; }
		
		
		tr:nth-of-type(even) { 
		background:none; 
		background: #eee none repeat scroll 0 0;
	}
		

		
	}
	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 300px)
	and (max-device-width : 480px) {
		body { 
			padding: 0; 
			margin: 0; 
			width: 300px; }
			
td img {
    margin: 0;
    padding: 0;
    width: 100%;
}
tr:nth-of-type(even) { 
		/*background:#f1f1f1; */
		background: #eee none repeat scroll 0 0;
	}
td div.send_enquiry {
    //height: 50px;
}
		}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body { 
			width: 495px; 
		}
		tr:nth-of-type(even) { 
		background:#f1f1f1; 
	}

	tr:nth-of-type(2n) {
    background: #eee none repeat scroll 0 0;
}


td div.send_enquiry {
    height: 50px;
}
	}
	