/* pages (impression) */
/*@page {
	margin: 1.8cm;
}*/

/* séparation de pages */
@media only screen {
	hr.page-break {
		margin: 100px 0;
		visibility: hidden;
	}
}
@media only print {
	hr.page-break {
		visibility: hidden;
		display: none;
		page-break-before: always;
	}
}

/* titre principal */
h1.uncr-title {
	text-align: center;
	font-family: 'CityStencil', sans-serif;
	font-size: 6rem;
	font-weight: normal;
}
/* les grandes parties sont sur une nouvelle page */
h2.uncr-subtitle {
	margin-top: 0 !important;
	text-align: center;
	margin-bottom: 60px;
	page-break-before: avoid !important;
}
@media only screen {
	h2 {
		margin-top: 200px !important;
	}
}
@media only print {
	h2 {
		page-break-before: always;
		margin-top: 120px !important;
	}
	h2.no-margin {
		margin-top: 2rem !important;
	}
}

/* section de texte */
div > section:not(:first-of-type) {
	margin-top: 35px;
}
/*
section:not(:last-child) > *:last-child {
	margin-bottom: 35px;
}
*/
section > div.not(.deux-colonnes) {
	display: inline-block;
	break-inside: avoid;
	page-break-inside: avoid;
	-webkit-column-break-inside: avoid;
}
section > p:first-of-type {
	margin-top: 15px;
}

/* texte indenté */
p.indente {
	margin-left: 1rem;
}
