* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: Arial, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body, div, a, img, p, h1 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


#container {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 250px;
  margin: 0 auto;
}

#container:after {
  display: block;
  border: 1px black solid;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#container.s-300x250 {
  width: 300px;
  height: 250px;
}

#container.s-300x600 {
  width: 300px;
  height: 600px;
}

#container.s-970x250 {
  width: 970px;
  height: 250px;
}

#container.s-728x90 {
  width: 728px;
  height: 90px;
}

#container a {
  color: inherit;
  text-decoration: none;
}

span {
  display: block;
}
sup {
  vertical-align: top;
  font-size: 70%;
  position: relative;
  top: -1px;
}

#timeline {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow:hidden;
  display: block;
  background: white;
  text-decoration: none;
  cursor: pointer;
  color: black;
}

/* Legal Stuffs */
#legalBtn {
  position: absolute;
  z-index: 10;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
  font-family: 'GenesisSansText-Medium', Arial, sans-serif;
  left: 14px;
  bottom: 10px;
}

#legal {
  width: 100%;
  height: 100%;
  background: white;
  top: 101%;
  left: 0;
  z-index: 3000;
  position: absolute;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  padding: 15px;
  text-decoration: none;
  color: black;
  line-height: normal;
  opacity: 0;
}

#legal .content {
  width: 100%;
  font-size: 11px;
  margin-top: 4px;
  text-align: justify;
}

#legal .closeBtn {
  font-weight: bold;
  text-align: right;
  font-size: 9px;
}

#legal.open {
  top: 0%;
  opacity: 1;
  overflow: auto;
}

/* language */
html[lang=en] .french-text {
  display: none;
}

html[lang=fr] .english-text {
  display: none;
}