/* таблица */

div.table {
	overflow-x: auto;
	width:100%;
}

.table table {
	margin:0 auto;
	width:80%;
	border-collapse: collapse;
}

.table th {
	padding:10px;
	background-color:white;
	text-align: center;
	border:1px solid;
}

.table td {
	padding:10px;
	background-color:white;
	text-align: center;
	border:1px solid;
}

tr:nth-child(odd)>td {
	background-color: white;
}

tr:nth-child(even)>td {
	background-color: #ededed;
	}