@charset "UTF-8";
/* CSS Document */

    
body {
	background: #ffffff url(../img/fond.jpg) no-repeat;
	margin: 0;
	padding: 0;
	font-family: 'Terminal Dosis Light', sans-serif;
	text-transform: uppercase;
}

#parallax {
	position: absolute;
	overflow: hidden;
	width: 1000px;
	height: 700px;
	margin-top: 0px;
}

.conteneur img {
  vertical-align:middle;
}
	

.pierrot {
	z-index:2;
	position:relative;
	height:700px;
	margin-top:0px;
	margin-left:0px;
	display: block;
}

.conteneur {
	
	width: 1000px;
	margin: 0 auto;
}

a {
	color:  #738093;
	text-decoration: none;
}

#footer {
	width: 100%;
	background: #FFFFFF;
	height:80px;
	font-size:14px;
	color: #929eaf;
}


[data-tip] { /* on sélectionne l'attribut data-tip */
    position: relative;
    /* cursor: help;*/
    border-bottom: 1px dotted #aaa;
}
[data-tip]:hover:after {
    content: attr(data-tip); /* on récupère la valeur de l'attribut data-tip */
    position: absolute;
    bottom: 2.3em; left: -5em;
    white-space: nowrap; /* no wrapping*/
    padding: 5px 10px;
    /*background: #E69B00; */
	background: #929eaf;
    color: #fff;
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	text-transform:none;
}