#AS_buttonToggle {
	display: block;
	position: relative;
	background-color: chocolate;
	margin: 0 auto;
	padding: .3em 2em;
	text-align: center;
	border: 0;
	color: white;
	border-radius: 0 0 5px 5px;
	cursor: pointer;
	-webkit-transition: all .3s ease!important;
	transition: all .3s ease!important;
}
#AS_overlayAnnonce {
	display: inline-block;
	position: fixed;
	background-color: rgba(0,0,0,.8);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	cursor: pointer;
	z-index: 99998;
}
#AS_annonceSplash {
	display:none;
	position: fixed;
	top: 15vh;
	height: calc(100vh - 16vh);
	margin: 0;
	border-top: 0;
	overflow: auto;
	z-index: 99999;
}
#AS_annonceSplash a {
	position: relative;
	display: block;
	text-align: center;
	z-index: 10;
}
#AS_annonceSplash img {
	position: relative;
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 0 2em black;
}
#AS_annonceSplash figcaption {
  position: absolute;
  display: inline-block;
  background-color: rgba(0,0,0,.5);
  width: 90%;
  right: 5%;
  padding: 1em 0;
  text-align: center;
  z-index: 200;
}
#AS_annonceSplash button {
	position: relative;
	background-color: rgba(198, 158, 41, 0.9);
	bottom: 100px;
	padding: .5rem 2rem;
	text-align: center;
	border: 1px solid white;
	border-radius: 100px;
	-webkit-transition: all .3s ease!important;
	transition: all .3s ease!important;
}
#AS_annonceSplash p,
#AS_annonceSplash button {
	margin: 0;
	color: white;
	font-family: inherit;
	font-size: 1.4em;
	line-height: 1.25;
}
@media only screen and (max-width: 700px) {
	#AS_annonceSplash p {
		font-size: 1.25em;
	}
}
#AS_closeAnnonce {
	position: absolute;
	display: block;
	background-color: rgba(0,0,0,.2);
	top: 10px;
	right: 10px;
	width: 41px;
	height: 41px;
	border-radius: 100%;
	cursor: pointer;
	text-align: center;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.5);
	z-index: 999;
	-webkit-transition: all .3s ease!important;
	transition: all .3s ease!important;
}
#AS_closeAnnonce:after {
	position: absolute;
	top: 0;
	right: 9px;
	content: '\00d7';
	font-family: "Arial";
	font-size: 36px;
	line-height: 1.15;
	color: rgba(255,255,255,.7);
}
#AS_closeAnnonce:hover,
#AS_annonceSplash button:hover,
#AS_buttonToggle:hover {
	background-color: rgba(255, 255, 255, 0.9)!important;
	color: black!important;
	cursor: pointer;
	-webkit-transition: all .3s ease!important;
	transition: all .3s ease!important;
}
#AS_closeAnnonce:hover:after {
	color: black;
	-webkit-transition: all .3s ease!important;
	transition: all .3s ease!important;
}