body {
	font-family: Open Sans;
}
.container {
	display: flex;
	flex-direction: row;
	align-content: stretch;
	align-items: flex-start;
}
.index_pages {
	display: flex;
	flex-direction: column;
	align-content: stretch;
	flex-grow: 1;
	padding-left: 20px;
}
h1 {
	font-size: 18pt;
	text-align: center;
	color: blue;
	margin: 0;
}
h2 {
	font-size: 14pt;
	text-align: center;
	color: blue;
	margin: 0;
}
nav#navigation {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	border: 1px solid black;
	padding: 10px;
	min-width: 220px;
}
nav.navpage {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	border-bottom: 1px solid black;
}
nav#navigation a {
	display: block;
	padding: .4em 1em;
	margin-bottom: 2px;
	margin-top: 2px;
	text-decoration: none;
	color: black;
	background: lightgrey;
	border-radius: 6px;
}
nav.navpage a {
	display: block;
	padding: .4em 1em;
	margin-left: 2px;
	margin-right: 2px;
	text-decoration: none;
	color: black;
	background: lightgrey;
	border-radius: 4px 4px 0 0;
}
nav.navpage a:hover,
nav.navpage a:focus,
nav.navpage a:active,
nav#navigation a:hover,
nav#navigation a:focus,
nav#navigation a:active {
	color: #fff;
	background: lightgrey;
}
nav.navpage > a,
nav#navigation > a {
	background-image: linear-gradient(to right, currentColor, currentColor);
	background-repeat: no-repeat;
	background-size: 100% 1px;
	background-position: center bottom;
	transition: background-size .25s;
}
nav.navpage > a:hover,
nav.navpage > a:focus,
nav#navigation > a:hover,
nav#navigation > a:focus {
	background-size: 100% 5px;
	outline: 0;
	color: #ba3176;
}
nav > p {
	text-align: center;
	font-weight: bold;
}
.page {
	display: none;
}
.page > p {
	font-size: 14px;
}
.article {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
}
.article > p {
	padding: 10px;
	margin: 5px;
	border: 1px solid black;
	font-size: 14px;
	background-color: #f7f6cf; 
}
.article > span {
	padding: 10px;
	margin: 5px;
	border: 1px solid black;
	font-size: 14px;
	background-color: #f7f6cf; 
}
.colonnes {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	padding: 10px;
	margin: 5px;
	border: 1px solid black;
	background-color: #f7f6cf; 
}
.colonnes > p {
	padding: 5px;
	margin: 0;
	font-size: 14px;
}
.colonnes > span {
	padding: 5px;
	margin: 0;
	font-size: 14px;
}

.pages {
	display: none;
}
ol {
	list-style-type: circle
}
.citation {
	font-size: .8em;
	font-style: italic;
	text-align: right;
}
.bullet {
	text-indent: -1em;
	padding-left: 2em;
}
.indent {
	padding-left: 2em;
}
.index {
	background-color: white;
	padding: 3px 3px;
	border: 2px solid black;
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: bold;
}