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

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: 350px;
	height: 40px;
	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;
}

a.grand
{
	display: none;
	position: fixed;
	top: 50px;
	bottom: 50px;
	left: 50px;
	right: 50px;
	text-align: right;
	text-decoration: none;
	box-shadow: 0px 0px 50px 20px var(--bleu);
	outline: 0;
	z-index: 0;
}

a.grand div
{
	display: inline-block;
	padding: 10px;
	margin: 50px 10px 0 10px;
	text-align: center;
	background: var(--bleu);
	color: var(--blanc);
	box-shadow: 0px 0px 20px 2px var(--sombre);
	opacity: 0.9;
	vertical-align: top;
}

a.grand div:last-of-type
{
	margin-top: 20px;
	background: var(--rouge);
}

a.grand:target
{
	display: block;
	z-index: 9;
}