
body {
	font-family: sans-serif;
	margin: 0;
}
/*списки в статтях (list_body)
.list_body li {
	list-style-type: none;/*маркери списку
	padding: 2px;
}
.list_body li::before {
	content: "\25CB";/*додаємо в якості маркера символ*
	padding-right: 5px;
	color: red;
}
*/
.list_body li {
	padding: 0.3em;
}
/*------------*/
p {
	text-indent: 3em;
}

img {
	margin: 20px;
}

header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid black;
	width: 100%;
}
header h1 {
	margin-left: 50px;
}
/*Верхнє меню*/
nav {
	margin-right: 50px;
}
nav ul {
	display: flex;
}
nav li {
	list-style: none;
	border-right: 1px solid black;

}
nav li:last-child {
	border-right: none;
}
nav li a {
	text-decoration: none;
	padding: 0 10px 0 10px;
	color: black;
	font-size: 1.2em;
	text-transform: uppercase;
}
/*--------------------*/
main {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
aside {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 25%;
	margin: 5px 5px 25px 5px;
	padding: 10px;
	order: 2;
	min-width: 260px;
}
article {
	flex: 1 2 60%;
	margin: 5px 0 25px 5px;
	padding: 10px;
	order: 1;
}
.menu_sidebar {
	padding-left: 0;
}
.menu_sidebar ul{
 list-style: none;
 padding: 0;
 margin-right: 40px;
}
.menu_sidebar li {
	padding: 5px;
	border-bottom:1px solid black;
}
.menu_sidebar li a {
	text-decoration: none;
	color: #2a5c27
}
section {
	margin: 50px;
	border-top: 1px solid black;
	max-width: 680px;
}
section ul li {
	padding: 3px;
}
/*footer*/
footer {
	display: block;
	background-color: #d6d6d6;
	border-top: 1px solid black;
	height: 60px;
	padding: 20px;
	text-align: right;
}

table {
  border-collapse: collapse;
}
tr {

}
th, td {
	border-bottom: 1px solid black;
	padding: 5px;

}
@media screen and (max-width: 768px) {
  tr {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
  }

  td, th {
    display: block;
    width: 33%;
  }

  th:first-child,
  td:first-child {
    text-align: center;
    background: #efefef;
    width: 100%;
  }

  th:first-child {
    display: none;P
  }
}
.snoska {
	font-size: 0.8em;
	color: #522216;
}
samp {
	color: #466245;
	font-size: 1.2em;
}
blockquote {
	border-left: 4px solid #969494;
	padding-left: 10px;
	font-size: 0.9em;
}
pre {
	color: #656664;
	font-size: 1.2em;
}
