@charset "utf-8";

/* propriétés par défaut (PC) */
a:link, a:visited, a:focus, a:hover, a:active {
	text-decoration: inherit;
	color: inherit;
	outline: inherit;
} 
a.Lien:link {
	background: lightgrey;
	border: 1px solid;
	text-decoration: none;
}
body {		/* Image de fond */
	background: url(images/mer.jpg) no-repeat center fixed;
	background-size: cover;
}
footer {
	padding: 10px;
	opacity: 0.8;
}
img  {
	max-width: 100%;
	height: auto; 
}
#AjaxLoader {
	position: fixed;
	visibility: hidden;
	left: 50%;
	top: 25%;
	background-color: transparent;
	z-index: 2000;
}
#Overlay {
	opacity:.60;
	filter: alpha(opacity=60);
	position: absolute;
	visibility: hidden;
	background-color: #000000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}
.BlocPage {
	font-size: 120%;
	font-weight: bold;
	opacity: 0.8;
	overflow: hidden;
	text-align: center;
}
.BlocTexte {
	margin: 0 auto;
	text-align: left;
	border-radius: 30px 30px 30px 30px; 
	box-shadow: 5px 5px 15px 10px grey; 
	padding: 10px 10px 10px 10px;
	background: #BBDEFB;
}
.BlocBoutonMenu {
	width: 60%;
	color: red;
	cursor: pointer;
}
.BlocFlex {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-content: space-between;
	align-items: center;
	row-gap: 10px;
	margin: auto;
}
.Carte {
	width: 750px;
	height: 600px;
	margin: auto;
}
.CodePopup {
	position: absolute;
	visibility : hidden;
	margin-left: auto;
	margin-right: auto;
	padding: 3px;
	left: 0;
	right: 0;
	top: 0;
	width: 90%;
	height: 90%;
	overflow: scroll;
	z-index: 2000;
}
.Popup {
	position: absolute;
	visibility : hidden;
	margin-left: auto;
	margin-right: auto;
	padding: 3px;
	left: 0;
	right: 0;
	top: 10%;
	background-color: lightblue;
	z-index: 2000;
}

/* propriétés pour tablette */
@media screen and (max-width: 1000px)
{
	.BlocPage {
		font-size: 110%;
	}
	.Carte {
		width: 600px;
	}
}
	
/* propriétés pour smartphone */
@media screen and (max-width: 800px)
{
	.BlocPage {
		font-size: 100%;
	}
	.BlocBoutonMenu {
		width: 80%;
	}
}
/* propriétés pour l'impression */
@media print {
	.Carte {
		width: 330px;
	}
	.NePasImprimer {
		display: none;
	}
}