body
{
	background: url(images/tuile.png) repeat;
	position: relative;	
	font-family: Times New Roman;
	font-style: italic;
	text-align: center;
}
header
{
	display: inline-block;
	position: absolute;
	width: 600px;	
	height: 91px;
	left: 50%;
	margin-left: -300px;
	
}
#bleauHt
{
	display: inline-block;
	width: 598px;	
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.5em;
}
.gauche
{
	width: 149px;
}
.milieu
{
	width: 300px;
}
.droit
{
	width: 149px;
}
nav
{	
	position: absolute;
	width: 676px;
	height: 44px;
	top: 120px;
	left: 50%;
	margin-left: -338px;
	text-align: center;
	background-color: #fff5df;
	
	display: grid;
	grid-template-columns: repeat(26, 26px);
	grid-template-rows: 1, 44px);
}
#accueil
{
	grid-area: 1/2/2/6;
}
#auteur
{
	grid-area: 1/7/2/11;
}
#oeuvre
{
	grid-area: 1/12/2/16;
}
#actualite
{
	grid-area: 1/17/2/21;
}
#merci
{
	grid-area: 1/22/2/26;
}
.dbouton /*Faux-boutons*/
{	
	display: inline-block;
	width: 100px;
	height: 32px;
	margin-top: 4px;
	margin-left: 10px;
	border-radius: 5px;
	box-shadow: 4px 4px 4px gray;
	background-color: rgb(171,159,140);
	vertical-align: middle;	
}
.dboutonActif
{	
	display: inline-block;
	width: 100px;
	height: 32px;
	margin-top: 4px;
	margin-left: 10px;
	border-radius: 5px;
	box-shadow: 4px 4px 4px gray;
	background-color: rgb(240,226,196);	
	vertical-align: middle;	
}
.pbouton
{
	color: rgb(255,245,225);
	font-family: Times New Roman;
	font-style: italic;
	font-size: 0.875em;
	font-weight: bold;
	text-align: center;
	position:relative; /*Pour placer le paragraphe à mi-hauteur du faux-bouton*/
	top:50%;
	margin-top:-8px; /*Soit la moitié de la moitié de la hauteur!*/ 	
}
.pbouton:hover
{
	color: rgb(171,159,140);
}
.abouton
{
	display: block; /*Ainsi c'est le conteneur du lien, c.a.d. ici le paragraphe qui est rendu cliquable*/
	width: 100%; /*Pour étendre au maximum du conteneur cette zone cliquable*/
	height: 100%; /*id*/
	text-decoration: none; /*Evite les pointillés et autres changements de couleur*/
	color: rgb(255,245,225);
}
.aboutonActif
{
	display: block; /*Ainsi c'est le conteneur du lien, c.a.d. ici le paragraphe qui est rendu cliquable*/
	width: 100%; /*Pour étendre au maximum du conteneur cette zone cliquable*/
	height: 100%; /*id*/
	text-decoration: none; /*Evite les pointillés et autres changements de couleur*/
	color: rgb(171,159,140);
}
.dbouton:hover
{	
	background-color: rgb(255,245,225);	
}
.abouton:visited
{
	text-decoration: none;
	color: rgb(255,245,225);
}
.abouton:hover
{
	color: rgb(171,159,140);
}
#liensGaleries
{
	position: absolute;
	width: 700px;
	/* height: 6em; */
	left: 50%;
	margin-left: -350px;
	top: 170px;
	
	font-size: 1.25em;
	font-weight: bold;
	text-decoration: underline;
}
#V, #A, #M
{
	padding-left: 70px;
}
#N, #R
{
	padding-left: 150px;
}
#D
{
	padding-left: 250px;
}
#recent
{
	position: absolute;
	width: 100px;
	height: 30px;
	top: 240px;
	left: 50%;
	margin-left: -380px;
	color: blue;
	font-size: 1.25em;
	font-weight: bold;
	background-color: rgb(240,226,196);
	border: 2px solid blue;
	border-radius: 2px;
	box-shadow: 2px 2px 2px gray;
}
#huitvign
{
	position: absolute;
	width: 697px;
	height: 401px;
	top: 280px;
	left: 50%;
	margin-left: -350px;
	background-color: rgba(153,255,255,0.2);	
	border-radius: 8px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	display:-ms-grid;
	display: grid;
	-ms-grid-columns: 168px 8px 168px 8px 168px 8px 168px;
	grid-template-columns: repeat(4, 173px);
	-ms-grid-row: repeat(2,199px);
	grid-template-rows: repeat(2,199px);
	grid-gap: 1px;
	grid-template-areas: 
		"a b c d"
		"e f g h";
    align-content: space-between;
	justify-content: space-around;
}
#huitvign img
{
	border: 3px solid white;
	border-radius: 3px;
	box-shadow: 2px 2px 2px gray;
	cursor: pointer;
}
#huitvign figure
{
	text-align: center;
	margin-left: 2px;
}
#un
{
	-ms-grid-row:1;
	-ms-grid-column:1;
	grid-area: a;
}
#deux
{
	-ms-grid-row:1;
	-ms-grid-column:3;
	grid-area: b;
}
#trois
{
	-ms-grid-row:1;
	-ms-grid-column:5;
	grid-area: c;
}
#quatre
{
	-ms-grid-row:1;
	-ms-grid-column:7;
	grid-area: d;
}
#cinq
{
	-ms-grid-row:2;
	-ms-grid-column:1;
	grid-area: e;
}
#six
{
	-ms-grid-row:2;
	-ms-grid-column:3;
	grid-area: f;
}
#sept
{
	-ms-grid-row:2;
	-ms-grid-column:5;
	grid-area: g;
}
#huit
{
	-ms-grid-row:2;
	-ms-grid-column:7;
	grid-area: h;
}
#grde
{
	position: absolute;
	width: 676px;
	height: 507px;
	top: 30px;
	left: 50%;
	margin-left: -338px;	
	border: solid white 15px;
	border-radius: 10px;
	box-shadow: 4px 4px 4px grey;
	z-index: 5;
	display: none;
}
footer
{
	position: absolute;
	width: 700px;
	height: 120px;
	top: 690px;
	left: 50%;
	margin-left: -350px;
}
a
{
	text-decoration: none;
	color: gray;
}
a:visited
{
	text-decoration: none;
	color: gray;
}
#hauteur
{
	width: 150px;
	height: 6em;
	border: 1px solid black;
}
#pied
{
	font-family: 'Times New Roman';
	font-style: italic;
	font-size: 0.8em;
	text-align: center;
	color: gray;
}
.ligne
{
	text-decoration: overline;
}
.espace
{
	margin-left: 2em;
}
#legal
{
	font-family: Georgia;
	font-size: 0.6em;
	text-align: center;
	color: gray;
}