#page-wrap {
	max-width:100%;
	margin: 5px auto;	
    }
	table { 
		max-width:100%;
		border: 1px solid orange; /* Рамка вокруг таблицы */
		margin: 5px auto;	
	}
	td { 
	    font-size: 16px; 	
		padding: 3px; 
		border: 1px solid orange; 
	
		text-align: left;
		background: #eeeeee;
	}			
	@media only screen and (max-width: 240px)
	  {
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}		
		tr { border: 1px solid #ccc; }		
		td { 
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;			
		}		
		td:before { 			
			position: absolute;			
			left: 2px;
			width: 40%; 
			padding-right: 10px; 
			white-space: nowrap;
		}		
		td:nth-of-type(1):before { content: ""; }
		td:nth-of-type(2):before { content: ""; }
	}	
	