.special_table {
	width: 96%;
	margin: 14px auto;
	text-align: center;
	table-layout: fixed;
	border-collapse: collapse;
}

.special_table th {
	background-color:lavender;
}

.special_table th ,
.special_table td {
	border: solid 1px black;
}

dl.table_style {
	display:flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	border-top: none;
	width:96%;
	margin:14px auto;
	text-align: center;
}

@media only screen and ( min-width : 600px ) {

dl.table_style {
	width:500px;
}
}


dl.table_style dt {
	background: #eee;
	width: 50%;
	padding: 10px;
	box-sizing: border-box;
	border-top: 1px solid #ccc; 
	margin: 0;
	font-weight: normal;
}

dl.table_style dd {
	padding: 10px;
	margin: 0;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc; 
	width: 50%;
	background: #fff;
	box-sizing: border-box;
}