section a
{
	display: inline-block;
	width: 300px;
	height: 200px;
	margin: 50px 10px 0 10px;
	text-decoration: none;
	font-size: 1.8em;
	box-shadow: 0px 0px 10px 5px var(--bleu);
}

section:first-of-type a, a#patient
{
	background: url('../img/captures/patient.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(2) a:first-of-type, a#mois
{
	background: url('../img/captures/mois.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(2) a:nth-of-type(2), a#semaine
{
	background: url('../img/captures/semaine.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(2) a:nth-of-type(3), a#jour
{
	background: url('../img/captures/jour.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(3) a:first-of-type, a#finances_devis
{
	background: url('../img/captures/finances_devis.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(3) a:nth-of-type(2), a#finances_factures
{
	background: url('../img/captures/finances_factures.png') top left no-repeat;
	background-size: cover;
}

section:nth-of-type(3) a:nth-of-type(3), a#finances_mouvements
{
	background: url('../img/captures/finances_mouvements.png') top left no-repeat;
	background-size: cover;
}

section:last-of-type
{
	padding: 50px;
}

section:last-of-type a
{
	width: 260px;
	height: 60px;
	line-height: 20px;
	padding: 20px 0;
	margin: 20px 0 0 0;
	font-size: 1em;
	box-shadow: none;
	background: var(--rouge);
	color: var(--blanc);
	border-radius: 20px;
}

section a div
{
	padding: 60px 0;
	line-height: 40px;
	background: var(--bleu);
	color: var(--blanc);
	opacity: 0;
	transition: opacity 1s;
}

section a div:hover
{
	opacity: 1;
}

section img
{
	display: block;
	height: 250px;
}

section > div ~ ul
{
	width: 856px;
	max-height: 0;
	padding: 0 30px;
	margin: 0 auto;
	background: var(--blanc);
	border: solid 1px var(--bleu);
	text-align: left;
	overflow: hidden;
	opacity: 0;
	transition: 1s;
}

section > div:target ~ ul
{
	max-height: 1000px;
	padding: 30px;
	margin: 50px auto 0 auto;
	opacity: 1;
}

li
{
	margin: 0 0 10px 30px;
}

section > div:target ~ ul a
{
	display: block;
	margin-top: 30px;
	text-align: center;
}