.table {
	display: table;
	border: 0px solid #555;
	border-collapse:collapse;
	margin-top: 50px;
}

.table-row {
	display: table-row;
	border: 0px solid #555;
}

.table-cell {
	display: table-cell;
	border: 0px solid #555;
	padding: 8px;
	vertical-align: top;
	width: 350px;
	margin-top: 50px;
	
}

.thead {
	font-weight: bold;
	background: #000;
}


 @media only screen and (max-width: 800px) {

	.table {border:none;}
	
	.table-row {
	display: block;
		border: 1px solid #555;
	}
	
	.table-cell {
		display: block;
		border: 0px solid #555;
	}
	
	.table-row { margin-bottom: 50px; }
	
}
