body {
	background-color: #FFFFFF;
}

a:link       { color: #8f8d8d; text-decoration: none   }
a:visited       { color: #878484; text-decoration: none   }
a:hover { color: #020000; font-style: italic; }
a:active     { color: #000; text-decoration: none   }


img  {
  	max-width: 100%;
  	height: auto;
}


.divcenter {
	background-color: #fff;
	position: relative;
  	width: 50%;
  	height: auto;
	z-index: 1;
	visibility: visible;
	border: dotted 2px #cecccc;
	margin: 0 auto;
	padding: 10px;
}



.logo {
	position: relative;
	padding: 10px;
	max-width: 500px;
  	height: auto;
	margin: 0 auto;
	-webkit-animation: logo 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
	        animation: logo 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}





.text_adresse {
	color: #999999;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	visibility: visible;
	z-index: 100;
	border-top: 1px solid #c7c5c5;
	border-bottom: 1px solid #c7c5c5;
	margin: 10px;
	-webkit-animation: text 0.5s reverse both;
	animation: text 0.5s reverse both;
}



@-webkit-keyframes logo {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes logo {
  0% {
    -webkit-transform: translateZ(600px);
            transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}






@-webkit-keyframes text {
  0% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  }
}
@keyframes text {
  0% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  }
}

		@media screen and (max-width: 1680px) {

			.text_adresse {
				font-size: 14pt;
			}

		}

		@media screen and (max-width: 1280px) {

			.text_adresse {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 736px) {

			.text_adresse {
				font-size: 10pt;
			}

		}

		@media screen and (max-width: 360px) {

			.text_adresse {
				font-size: 9pt;
			}

		}
		
		
