	/* NAVIGATION - Liste déroulante */
nav {
	z-index: 1;
}

nav li {
	list-style: none;
}

.hList {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

	margin: 0;
}

.hList > li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.hList > li > span, .hList > li > a {
	display: inline-block;
	text-decoration: none;
	color: #000;

	padding: 0 16px;
	padding-bottom: 8px;
	margin-right: 32px;
}

.hList > li > *:hover {
	color: #80CC28;
}


	/* NAVIGATION - Sous-liste déroulante */
.hSubList
{
	transition: transform .2s;
	transform-origin: top;
	transform: scaleY(0);

	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

	box-shadow: 8px 8px 8px 0 #0004;
	padding: 0px;
	top: 40px;
}

.hSubList > li
{
	position: relative;
	display: flex;
	flex-direction: column;

	width: 100%;
}

.hList > li:hover .hSubList
{
	transform: scaleY(1);
}

.hSubList span::after {
	transition: transform 2s;
	position: absolute;
	content: "\0027A4";

	right: 4px;
	font-size: 12px;
	transform-origin: center;
	transform: scaleX(0.6);
}

.hSubList > li:hover span::after {
	transition: transform .5s;
	transform-origin: center;
	transform: rotateY(180deg) scaleX(0.6);
}

.hSubList > li > a, .hSubList > li > span {
	border-top: solid 1px #444;
	background-color: #333;
}

.hSubList > li > a, .hSubList > li > span, .hExSubList > li > * {
	text-decoration: none;
	font-size: 16px;
	color: #fff;

	padding: 8px 16px;
	padding-right: 32px;
}

.hSubList > li > *:hover, .hExSubList > li > *:hover {
	color: #80CC28;
}


	/* NAVIGATION - Extra-sous-liste déroulante */
.hExSubList {
	transition: transform .2s;
	transform-origin: left;
	transform: scaleX(0);

	position: absolute;
	display: flex;
	flex-direction: column;

	box-shadow: 8px 8px 8px 0 #0004;
	padding: 0;
	margin-left: 100%;
}

.hSubList > li:hover .hExSubList {
	transform: scaleX(1);
}

.hExSubList > li {
	position: relative;
	display: flex;
	flex-direction: column;

	white-space: nowrap;
}

.hExSubList > li > * {
	border-top: solid 1px #666;
	background-color: #555;
}


	/* BANNIERE */
#background {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;

	background-image: url('../images/background.jpg');
	background-position: center right;
	background-size: 125%;

	height: 400px;
}

#background > div {
	display: flex;
	flex-direction: column;
	align-items: center;

	background-color: #fffd;
	background-image: linear-gradient(to top, #fff, #fffa 10%, #fff0);
	padding: 16px 64px;
}

#background span {
	font-family: "Roboto-Bold", Arial;
	font-size: 32px;
	color: #80CC28;
}

#background strong {
	font-weight: normal;
	font-size: 48px;
}

#deconnection a {
	color: #a00;
}

#deconnection a:hover {
	text-decoration: underline;
}

	/* HEADER - Menu */
#spanMenu {
	border-radius: 0 0 16px 0;
	position: absolute;
	top: 0;

	font-family: "Roboto-Bold", Arial;
	font-size: 28px;
	color: #333;

	padding: 0 16px;
	z-index: 2;
}

#spanMenu::before {
	content: "\2630";
	margin-right: 8px;
}

#spanMenu:hover {
	cursor: pointer;
	color: #888;
}

#divMenu {
	transform-origin: left;
	transform: scaleX(0);
	transition: transform .5s;

	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;

	background-color: #333;

	padding: 8px 16px;
	width: 300px;
	height: 100%;

	z-index: 2;
}

#divMenu {
	color: #fff;
}

#divMenu h2 {
	margin-top: 64px;
}

#divMenu h2 + * {
	margin-left: 16px;
}

#closeMenu {
	font-family: "Roboto-Bold", Arial;
	align-self: flex-end;
	color: #f44;
}

#closeMenu:hover {
	cursor: pointer;
	color: #f88;
}

.searchPageForm input {
	font-family: "Roboto-Regular", Arial;
	font-size: 16px;
	color: #333;
	border: none;
	padding: 8px 0;
	padding-left: 4px;

	width: 240px;
}

.listSearch {
	display: none;
	position: absolute;
	top: 143px;
	color: #a00;

	overflow-x: hidden;
	overflow-y: auto;
	max-height: 300px;

	width: 244px;
	padding: 0;
	z-index: 3;
}

.listSearch li {
	list-style: none;
}

.listSearch a {
	display: inline-block;
	text-decoration: none;
	color: #333;

	padding: 4px;
	width: 100%;
}

.listSearch li:hover {
	background-color: #80CC28;
}

.listSearch li:hover a {
	color: #fff;
}

.searchPageForm input:focus ~ ul, .listSearch:hover {
	display: block;
	background-color: #fff;
}

.searchPageForm input:focus {
	outline: none;
}

.fastAccess {
	display: flex;
	flex-direction: column;
}

.fastAccess a {
	display: flex;
	flex-direction: row;
	align-items: center;

	color: #fff;
	text-decoration: none;
	padding: 8px 0;
}

.fastAccess a:hover {
	color: #80CC28;
}

.fastAccess img {
	filter: invert(100%);
	
	object-fit: cover;
	height: 32px;
	width: 32px;

	padding-right: 8px;
}