@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1023px)  {
	
	.w30
	{
		width:100% !important;
	}
		/* Force table to not be like tables anymore */
		.gainlos table, .gainlos thead, .gainlos tbody, .gainlos th, .gainlos td, .gainlos tr { 
			display: block; 
			width:auto
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.gainlos thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		.gainlos th[data-title]:before, td[data-title]:before
	{
		content: attr(data-title) ":\00A0";
		font-weight: bold;
	}
		.gainlos tr { border: 1px solid #ccc; }
		
		.gainlos td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 60%;
		}
		
		.gainlos td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			/*top: 0px;*/
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
		
		/*
		Label the data
		*/
		
		
		.gainlos th:first-child{ text-align:left !important; padding-left:10px;}
.gainlos td:first-child{ text-align:left !important; padding-left:5px; }
.gainlos td { text-align:left !important;}
	
	}
	@media 
	only screen and (max-width: 368px)
	{
		.gainlos td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			/*padding-left: 60%;*/
			text-align:right !important;
		}
		
		.gainlos td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 0px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
			text-align:left !important;
		}
	}