


@media only screen and (max-width: 768px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		#responsivetabls table, thead, tbody, th, td, tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		#responsivetabls thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		#responsivetabls tr { border: 1px solid #ccc; }
		#responsivetabls tr:nth-of-type(odd) {background: #eee;}
		
		#responsivetabls td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 75%; 
			text-align:left!important;
		}
		
		#responsivetabls 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
		*/
		#responsivetabls td:nth-of-type(0):before { content: "Vulnerability"; }
		#responsivetabls td:nth-of-type(1):before { content: "Regulatory functions (no. of countries)"; }
		#responsivetabls td:nth-of-type(2):before { content: "Registration"; }
		#responsivetabls td:nth-of-type(3):before { content: "Licensing"; }
		#responsivetabls td:nth-of-type(4):before { content: "Inspection"; }
		#responsivetabls td:nth-of-type(5):before { content: "Promotion"; }
		#responsivetabls td:nth-of-type(6):before { content: "Clinical trials"; }
		#responsivetabls td:nth-of-type(7):before { content: "Selection"; }
		#responsivetabls td:nth-of-type(8):before { content: "Procurement"; }
		#responsivetabls td:nth-of-type(9):before { content: "Distribution"; }
		
		
		
		
		
		
	}
	
	
	}