/* ============================== ANIMATIONS ================================ */

@-webkit-keyframes Box {
  0% {
    background: red;
    left: 0px;
    top: 0px;
  }
  25% {
    background: yellow;
    left: 200px;
    top: 0px;
  }
  50% {
    background: blue;
    left: 200px;
    top: 200px;
  }
  75% {
    background: green;
    left: 0px;
    top: 200px;
  }
  100% {
    background: red;
    left: 0px;
    top: 0px;
  }
}

/* ============================== TANSITIONS ================================ */

.transit1 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.transit2 {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  -ms-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;

  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.transit3 {
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

.transit4 {
  -webkit-transition: all 50ms ease;
  -moz-transition: all 50ms ease;
  -ms-transition: all 50ms ease;
  -o-transition: all 50ms ease;
  transition: all 50ms ease;
}

.transit5 {
  -webkit-transition: width 500ms ease, height 500ms ease;
  -moz-transition: width 500ms ease, height 500ms ease;
  -ms-transition: width 500ms ease, height 500ms ease;
  -o-transition: width 500ms ease, height 500ms ease;
  transition: width 500ms ease, height 500ms ease;
}

.transit6 {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}

/* ===============================   SCROLLBAR =================================== */

/* Chrome & Safari */
::-webkit-scrollbar-track-piece {
  background: url("images/bkg.png");
  -webkit-border-radius: 0;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar {
  width: 25px;
  height: 25px;
  outline: 2px solid rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
  height: 25px;
  width: 25px;
  background: url("images/metal.png") center center;
  -webkit-border-radius: 23px;
  outline: 2px solid rgba(255, 255, 255, 0);
  outline-offset: -2px;
  border: 1px solid #aaaaaa;
  box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.5),
    0px 0px 8px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.5),
    0px 0px 8px rgba(0, 0, 0, 0.5);
}

/* ===============================   STYLE =================================== */

html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  padding: 0px;
}

#windowsScroller {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow-y: hidden;
  overflow-x: scroll;
  height: 26px;
  margin: 0px;
  padding: 0px;
}

#windowsScroller div {
  width: 11000px;
  height: 10px;
}

.bkg1 {
  background: url("images/bkg.png");
}

#data {
  display: none;
}

#zoomSlider {
  position: fixed;
  z-index: 499;
  left: 15px;
  top: 30px;
  width: 37px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 1px;
}

#zoomSlider a {
  background: url("images/zoom.png") 0px 5px no-repeat,
    url("images/metal.png") center center;
  border: 1px solid #aaaaaa;
  box-shadow: inset 0px 0px 8px rgba(255, 255, 255, 0.5),
    0px 0px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: -38px;
  height: 35px;
  width: 35px;
  border-radius: 20px;
  margin-left: 1px;
  left: 0px;
}
#zoomSlider a:focus {
  outline: none;
}

#bottomfixed {
  position: fixed;
  z-index: 500;
  bottom: 85px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 4px 7px 0px 15px;
}

#playpause {
  cursor: pointer;
  display: inline-block;
  height: 46px;
  width: 46px;
  margin-right: 10px;
  border-radius: 20px;
  background: url("images/play.png");
}

#stop {
  cursor: pointer;
  display: inline-block;
  height: 46px;
  width: 46px;
  border-radius: 20px;
  background: url("images/stop.png");
}

#scrollVertical {
  position: fixed;
  bottom: 25px;
  left: 0px;
  right: 0px;
  top: 0px;
  overflow-x: hidden;
  overflow-y: scroll;
}

#center {
  position: relative;
  margin-left: 50%;
  height: 2700px;
  width: 0px;
  zoom: 35%;
  -moz-transform: scale(0.26); /* Firefox */
}

#clouds {
  height: 2860px;
  position: absolute;
  overflow-y: hidden;
  width: 5000px;
  margin-left: -2500px;
}

#ground {
  background: rgba(0, 0, 0, 0.19);
  height: 550px;
  width: 5000px;
  position: absolute;
  margin-top: 2480px;
}

#nuages {
  z-index: 190;
  position: absolute;
}

#nuages .nuage {
  position: absolute;
  background: url("images/cloud.png");
  background-size: 100% 100%;
  opacity: 0.6;
}

#nuages2 {
  position: absolute;
}

#nuages2 .nuage {
  position: absolute;
  background: url("images/cloud.png");
  background-size: 100% 100%;
  opacity: 0.8;
}

#experience {
  position: absolute;
  width: 960px;
  margin-left: -480px;
}

#experience #ballon {
  z-index: 200;
  position: relative;
  opacity: 0.8;
  margin: auto;
  margin-top: 500px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.7);
  height: 500px;
  width: 500px;
  box-shadow: inset -50px -50px 200px rgba(0, 0, 0, 0.5),
    inset 25px 25px 75px rgba(0, 0, 0, 0.3), 0 0px 46px -3px rgba(0, 0, 0, 0.1);
}

#experience #explosion {
  z-index: 200;
  position: relative;
  margin: auto;
  width: 0px;
  margin-top: -450px;
  height: 450px;
}

#explosion .exprt1 {
  opacity: 0;
  position: absolute;
  height: 900px;
  width: 900px;
  margin-top: -450px;
  margin-left: -450px;
  box-shadow: inset 0px 0px 100px white;
  border-radius: 700px;
}

#explosion .exprt2 {
  opacity: 0;
  position: absolute;
  height: 700px;
  width: 700px;
  margin-top: -350px;
  margin-left: -350px;
  box-shadow: inset 0px 0px 100px white;
  border-radius: 700px;
}

#experience .corde {
  z-index: 200;
  position: relative;
  width: 10px;
  height: 200px;
  background: url("images/corde.png");
  margin: auto;
  box-shadow: inset 0px 0px 5px black;
}

#experience #parachute {
  z-index: 200;
  position: relative;
  width: 400px;
  margin: auto;
  margin-bottom: -45px;
  -webkit-transform: scaleX(0.3);
  -moz-transform: scaleX(0.3);
}

#parachute .paraElem1 {
  position: absolute;
  width: 400px;
  height: 150px;
  background: red;
  border-top-left-radius: 200px 150px;
  border-top-right-radius: 200px 150px;
}

#parachute .paraElem2 {
  position: absolute;
  width: 340px;
  margin-left: 30px;
  height: 150px;
  background: white;
  border-top-left-radius: 170px 150px;
  border-top-right-radius: 170px 150px;
}

#parachute .paraElem3 {
  position: absolute;
  width: 260px;
  margin-left: 70px;
  height: 150px;
  background: red;
  border-top-left-radius: 130px 150px;
  border-top-right-radius: 130px 150px;
}

#parachute .paraElem4 {
  position: absolute;
  width: 160px;
  margin-left: 120px;
  height: 150px;
  background: white;
  border-top-left-radius: 80px 150px;
  border-top-right-radius: 80px 150px;
}

#parachute .paraElem5 {
  position: absolute;
  width: 60px;
  margin-left: 170px;
  height: 150px;
  background: red;
  border-top-left-radius: 30px 150px;
  border-top-right-radius: 30px 150px;
}

#parachute .paraElem6 {
  width: 60px;
  height: 150px;
}

#parachute #parafils {
  height: 442px;
  width: 420px;
  overflow-y: hidden;
}

#parachute .parafil {
  vertical-align: top;
  display: inline-block;
  width: 6px;
  background: url("images/corde.png");
  margin: auto;
  box-shadow: inset 0px 0px 3px black;
}

#parachute .fil1 {
  height: 444px;
  margin-right: 18px;
  -webkit-transform: rotate(-26.2deg);
  -moz-transform: rotate(-26.2deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil2 {
  height: 434px;
  margin-right: 29px;
  -webkit-transform: rotate(-23deg);
  -moz-transform: rotate(-23deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil3 {
  height: 420px;
  margin-right: 40px;
  -webkit-transform: rotate(-18deg);
  -moz-transform: rotate(-18deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil4 {
  height: 409px;
  margin-right: 40px;
  -webkit-transform: rotate(-11deg);
  -moz-transform: rotate(-11deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil5 {
  height: 400px;
  margin-right: 50px;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil6 {
  height: 400px;
  margin-right: 40px;
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil7 {
  height: 409px;
  margin-right: 40px;
  -webkit-transform: rotate(11deg);
  -moz-transform: rotate(11deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil8 {
  height: 420px;
  margin-right: 30px;
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil9 {
  height: 434px;
  margin-right: 17px;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#parachute .fil10 {
  height: 444px;
  -webkit-transform: rotate(26.2deg);
  -moz-transform: rotate(26.2deg);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
}

#refleradar {
  z-index: 200;
  position: relative;
  width: 100px;
  margin: 13px auto;
}

#reflec1 {
  height: 100px;
  width: 100px;
  background: rgba(100, 100, 100, 0.8);
  position: absolute;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

#reflec2 {
  height: 100px;
  width: 100px;
  position: absolute;
  -webkit-transform: scaleY(0.5);
  -moz-transform: scaleY(0.5);
}
#reflec2 div {
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  height: 100px;
  width: 100px;
  background: rgba(150, 150, 150, 0.8);
}

#reflec3 {
  -webkit-transform: scaleX(0.2);
  -moz-transform: scaleX(0.2);
  height: 100px;
  width: 100px;
}
#reflec3 div {
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  height: 100px;
  width: 100px;
  background: rgba(200, 200, 200, 0.4);
}

#experience #box {
  z-index: 400;
  position: relative;
  -webkit-transform: rotateY(180deg);
  height: 200px;
  width: 200px;
  margin: auto;
  margin-bottom: 200px;
  background: #2b2b2b;
  border: solid 2px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

#box #boxContent {
  display: none;
  position: absolute;
  height: 500px;
  width: 500px;
}

#allSwitch {
  height: 500px;
  width: 490px;
  margin-left: 10px;
  overflow-y: hidden;
  overflow-x: hidden;
}

.captSwitch {
  display: inline-block;
  position: relative;
  margin: 16px 0px 0px 10px;
  height: 100px;
  width: 205px;
  border: solid 3px white;
}

.captSwitch h2 {
  color: white;
  font-family: tahoma;
  font-size: 20px;
  line-height: 30px;
  margin-top: 4px;
  text-align: center;
}

.checkbox {
  position: absolute;
  bottom: -3px;
  left: -1px;
  right: -1px;
  border: solid 4px white;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  height: 29px;
}

.checkbox span {
  color: white;
  font: 19px/31px "AllerDisplayRegular", "Aller Display", Arial;
  float: left;
  text-align: center;
  text-transform: uppercase;
}

.checkbox .on {
  width: 50%;
}

.checkbox .off {
  width: 50%;
}

.checkbox input {
  position: absolute;
  z-index: -1;
  left: 0;
  display: none;
}

.checkbox input + i {
  -ms-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 25px;
  margin: 2px;
}

.checkbox input:checked + i {
  left: 50%;
  width: 50%;
  margin-left: -2px;
}

#boxClose {
  position: absolute;
  right: -1px;
  top: 0px;
  color: white;
  font-family: tahoma;
  font-weight: 900;
  font-size: 20px;
  background: black;
  height: 26px;
  width: 26px;
  text-align: center;
  z-index: 290;
  cursor: pointer;
}
#boxClose:hover {
  background: transparent;
  color: white;
}

#box #boxCouvercl {
  cursor: pointer;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 1;
  background: url("images/box.png") no-repeat;
  background-size: cover;
}

#slider {
  position: fixed;
  bottom: 35px;
  left: 10px;
  z-index: 500;
}

#slider .fleche {
  height: 16px;
  width: 31px;
  background: url("images/fleche.png") 50% 50%;
}

#slider .time {
  display: block;
  width: 90px;
  position: relative;
  margin-top: -42px;
  margin-left: 0px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  background: url("images/button.png") 50% 50%;
  border-radius: 4px;
  color: #212121;
  padding: 3px 6px 1px 6px;
}

#slider div span {
  font-family: helvetica;
  font-size: 20px;
  font-weight: bold;
  color: #282a31;
}

#capteurs {
  position: fixed;
  z-index: 1000;
}

.capt {
  display: none;
  position: absolute;
  border: solid 5px #111;
  cursor: move;
  background: #c6c6c6;
}

.close {
  opacity: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 22px;
  width: 22px;
  background: #111;
  color: white;
  text-align: center;
  font-family: tahoma;
  cursor: pointer;
  font-weight: 900;
}
.capt:hover .close {
  opacity: 1;
}
.close:hover {
  background: white;
  color: #111;
}

.inf,
.AltiInf {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 20px;
  width: 20px;
  border-radius: 12px;
  background: white;
  color: #111;
  text-align: center;
  font-family: tahoma;
  cursor: pointer;
  font-weight: 900;
}
.inf:hover,
.AltiInf:hover {
  background: #111;
  color: white;
}

.infos {
  display: none;
  bottom: 0px;
  width: 260px;
  position: absolute;
  left: 35px;
  top: 5px;
  color: #111;
  font-family: tahoma;
  cursor: auto;
}

.infos h3 {
  text-align: center;
  margin: 6px 0px;
  cursor: move;
}

.infos p {
  position: absolute;
  overflow-y: auto;
  text-align: justify;
  padding: 0px 10px;
  bottom: 5px;
  top: 70px;
}

.infos p::-webkit-scrollbar-track-piece {
  background: #c6c6c6;
  -webkit-border-radius: 0;
  border: none;
  box-shadow: none;
}
.infos p::-webkit-scrollbar {
  width: 10px;
  height: 12px;
  outline: 2px solid rgba(0, 0, 0, 0);
}
.infos p::-webkit-scrollbar-thumb {
  height: 10px;
  width: 10px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  outline: 2px solid rgba(255, 255, 255, 0);
  outline-offset: -2px;
  border: none;
  box-shadow: none;
}
.infos p::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}

.captTitle {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  position: absolute;
  bottom: -21px;
  left: 13px;
  height: 22px;
  width: 240px;
  padding: 5px;
  padding-left: 15px;
  background: #111;
  color: white;
  font-family: tahoma;
  font-weight: 900;
}

.showChart {
  font-family: tahoma;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px 10px 15px;
  display: block;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.showChart:hover {
  color: black;
  background: rgba(0, 0, 0, 0.2);
}

#TempExt {
  height: 350px;
  width: 150px;
  top: 10px;
  left: 70px;
}

#TempExt .captTitle {
  width: 340px;
}

#TempExtWid {
  height: 292px;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 0px 2px;
  width: 60px;
  right: 30px;
  top: 14px;
}

#TempExtWid div {
  background: rgb(255, 0, 0);
  height: 150px;
  width: 58px;
  margin: 1px;
  position: absolute;
  bottom: 0px;
}

#TempExtValue {
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 120px;
  text-align: center;
  font-family: tahoma;
  font-size: 23px;
  color: #111;
}

#TempInt {
  height: 350px;
  width: 150px;
  background: #c6c6c6;
  top: 10px;
  left: 200px;
}

#TempInt .captTitle {
  width: 340px;
}

#TempIntWid {
  height: 292px;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 0px 2px;
  width: 60px;
  right: 30px;
  top: 14px;
}

#TempIntWid div {
  background: rgb(255, 0, 0);
  height: 150px;
  width: 58px;
  margin: 1px;
  position: absolute;
  bottom: 0px;
}

#TempIntValue {
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 120px;
  text-align: center;
  font-family: tahoma;
  font-size: 23px;
  color: #111;
}

#Accel {
  height: 250px;
  width: 220px;
  background: #c6c6c6;
}

#AccelWid {
  position: absolute;
  right: 20px;
  top: 20px;
}

#AccelWid div {
  background: rgba(0, 0, 0, 0.5);
  height: 210px;
  width: 150px;
}

#Albedo {
  height: 250px;
  width: 200px;
  background: #c6c6c6;
}

#AlbedoWid {
  background-color: rgb(85, 142, 213);
  height: 90px;
  width: 130px;
  position: absolute;
  right: 20px;
  top: 20px;
  border: 2px solid rgb(20, 20, 20);
  font-family: tahoma;
  font-size: 25px;
  font-weight: 900;
  color: white;
  text-shadow: black 0px 0px 1px;
  text-align: center;
  padding-top: 40px;
}

#AlbedoValue {
  position: absolute;
  bottom: 20px;
  right: 0px;
  width: 170px;
  text-align: center;
  font-size: 45px;
  font-family: tahoma;
}

#HumExt {
  height: 250px;
  width: 100px;
  background: #c6c6c6;
}

#HumInt {
  height: 250px;
  width: 100px;
  background: #c6c6c6;
}

#Tension {
  height: 280px;
  width: 170px;
  background: #c6c6c6;
}

#Tension .captTitle {
  width: 270px;
}

#TensionWid {
  height: 180px;
  width: 80px;
  position: absolute;
  right: 20px;
  top: 30px;
  border-radius: 20px;
  border: solid 10px black;
}

#TensionWid div {
  background: red;
  height: 170px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 5px;
  position: absolute;
}

#pileTop {
  position: absolute;
  height: 15px;
  width: 40px;
  background: black;
  border-radius: 10px 10px 0px 0px;
  right: 50px;
  top: 15px;
}

#TensionValue {
  position: absolute;
  width: 140px;
  display: block;
  right: 0px;
  bottom: 9px;
  text-align: center;
  font-family: tahoma;
  font-weight: 900;
  font-size: 25px;
}

#Pression {
  height: 280px;
  width: 450px;
  background: #c6c6c6;
}

#Pression .captTitle {
  width: 270px;
}

#PressionMes {
  width: 180px;
  height: 265px;
  position: absolute;
  right: 220px;
  top: 20px;
}

#PressionCal {
  width: 180px;
  height: 265px;
  position: absolute;
  right: 20px;
  top: 20px;
}

#Pression h4 {
  width: 180px;
  display: block;
  text-align: center;
  margin: 0px 0px 15px 0px;
  font-family: tahoma;
}

.PressionRond {
  height: 180px;
  width: 180px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 200px;
}

.PressionRond .PressVal {
  display: block;
  position: absolute;
  width: 10px;
  height: 4px;
  top: 122px;
  background: rgb(37, 37, 37);
  -webkit-transform-origin: 90px center;
}

.PressVal1 {
  -webkit-transform: rotate(-45deg);
}

.PressVal2 {
  -webkit-transform: rotate(22.5deg);
}

.PressVal3 {
  -webkit-transform: rotate(90deg);
}

.PressVal4 {
  -webkit-transform: rotate(157.5deg);
}

.PressVal5 {
  -webkit-transform: rotate(225deg);
}

.PressEguille {
  background: black;
  position: absolute;
  height: 100px;
  width: 4px;
  left: 88px;
  top: 34px;
  -webkit-transform-origin: center 90px;
  -webkit-transform: rotate(-135deg);
}

#PressionMesValue,
#PressionCalValue {
  position: absolute;
  bottom: 15px;
  right: 0px;
  width: 180px;
  text-align: center;
  font-family: tahoma;
  font-size: 24px;
  color: #111;
}

#Alti {
  height: 170px;
  width: 260px;
  background: #c6c6c6;
}

#AltiVal {
  position: absolute;
  right: 0px;
  width: 230px;
}

#Alti h4 {
  display: block;
  text-align: center;
  width: 230px;
  margin: 16px 0px 0px 0px;
  font-family: tahoma;
}

#AltiMesValue,
#AltiCalValue {
  width: 230px;
  text-align: center;
  font-family: tahoma;
  font-size: 35px;
  font-weight: 900;
}

#Alti .captTitle {
  width: 160px;
}

/* ====== Présentation ======= */

#presentation {
  display: none;
  position: fixed;
  right: auto;
  bottom: auto;
  z-index: 2000;
}

#presentation div {
  height: 80px;
  width: 208px;
  border-width: 2000px 2000px 2000px 2000px;
  margin: -2000px -2000px -2000px -2000px;
  border-color: rgba(0, 0, 0, 0.6);
  border-style: solid;
  box-shadow: inset 0px 0px 4px 4px rgba(0, 0, 0, 0.6);
}

#presentContent {
  display: none;
  position: fixed;
  z-index: 2001;
  color: white;
  font-family: tahoma;
  width: 500px;
  border: solid 3px white;
  padding: 0px 20px 30px 20px;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  top: 50%;
  margin-top: -120px;
  margin-left: -250px;
}

#presentContent .next {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 90px;
  height: 20px;
  color: white;
  background: rgba(0, 0, 0, 0);
  font-weight: 900;
  text-align: center;
  padding: 5px;
  cursor: pointer;
}
#presentContent .next:hover {
  color: #111;
  background: white;
}

#presentContent .fleche {
  position: absolute;
  top: 261px;
  left: 130px;
}

.fleche .fleVert {
  height: 204px;
  background: white;
  width: 3px;
}

.fleche .fleHori {
  background: white;
  height: 3px;
  width: 473px;
  margin-left: -470px;
}

.fleHori .fleBar {
  position: absolute;
  margin-top: -25px;
  height: 50px;
  width: 3px;
  background: white;
}

/* ============= Tour ===================*/

#tour {
  position: fixed;
  z-index: 15000;
  height: 0px;
}

#overlay {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.6);
}

#Tcenter {
  position: fixed;
  left: 50%;
  top: 50%;
}

#T1 {
  font-family: tahoma;
  position: absolute;
  color: white;
  height: 500px;
  width: 600px;
  margin-left: -300px;
  margin-top: -250px;
  background: rgb(0, 0, 0);
  box-shadow: 0px 0px 50px rgba(103, 0, 129, 0.5);
}

#T1 h1 {
  text-align: center;
  margin-top: 10px;
  font-size: 55px;
  margin-bottom: 0px;
}

#T1 h2 {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0px;
}

#T1 img {
  width: 540px;
  margin-left: 30px;
  margin-top: 20px;
}

#T1 p {
  margin-top: 0px;
  margin-bottom: 30px;
  margin-left: 70px;
  font-size: 20px;
}

#T1 #T1Oui,
#T2 #T2Oui {
  display: inline-block;
  cursor: pointer;
  vertical-align: top;
  height: 100px;
  width: 220px;
  margin-left: 50px;
  background: white;
  color: black;
  font-size: 55px;
  font-weight: 900;
  text-align: center;
  line-height: 100px;
  border: solid 0px white;
}
#T1 #T1Oui:hover,
#T2 #T2Oui:hover {
  color: white;
  background: black;
  border: solid 3px white;
  height: 94px;
  width: 214px;
}

#T1 #T1Non,
#T2 #T2Non {
  display: inline-block;
  cursor: pointer;
  height: 100px;
  width: 220px;
  margin-left: 60px;
  background: white;
  line-height: 55px;
  color: black;
  font-size: 55px;
  font-weight: 900;
  text-align: center;
  border: solid 0px white;
}
#T1 #T1Non:hover,
#T2 #T2Non:hover {
  color: white;
  background: black;
  border: solid 3px white;
  height: 94px;
  width: 214px;
}

#T1 #T1Non span,
#T2 #T2Non span {
  display: block;
  font-size: 25px;
  line-height: 35px;
}

.T1X {
  font-family: tahoma;
  position: absolute;
  color: white;
  width: 600px;
  margin-left: 2000px;
  background: rgb(0, 0, 0);
  box-shadow: 0px 0px 50px rgba(103, 0, 129, 0.5);
}

.T1X h3 {
  font-size: 26px;
  margin-left: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.T1X p {
  margin-left: 40px;
  margin-right: 20px;
  line-height: 23px;
}

.T1X ul {
}

.T1X ul li {
  margin-left: 40px;
  margin-top: 5px;
}

.T1Xnext {
  position: absolute;
  cursor: pointer;
  display: block;
  right: 20px;
  bottom: 20px;
  background: white;
  color: black;
  font-size: 20px;
  font-weight: 900;
  padding: 5px 15px;
  border: solid 0px white;
}
.T1Xnext:hover {
  color: white;
  background: black;
  border: solid 3px white;
  padding: 2px 12px;
}

#T11 {
  height: 410px;
  margin-top: -205px;
}

#T12 {
  height: 460px;
  margin-top: -230px;
}

#T13 {
  height: 280px;
  margin-top: -140px;
}

#T14 {
  height: 310px;
  margin-top: -155px;
}

#T2 {
  font-family: tahoma;
  position: absolute;
  color: white;
  height: 230px;
  width: 600px;
  margin-left: 2000px;
  margin-top: -115px;
  background: rgb(0, 0, 0);
  box-shadow: 0px 0px 50px rgba(103, 0, 129, 0.5);
}

#T2 h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 50px;
  font-size: 24px;
}

#T21 {
  height: 220px;
  margin-top: -110px;
}

#T22 {
  height: 340px;
  margin-top: -170px;
}

#T23 {
  display: none;
  left: 200px;
  top: 200px;
  cursor: move;
  font-family: tahoma;
  color: white;
  height: 210px;
  width: 600px;
  overflow-y: hidden;
  background: rgb(0, 0, 0);
  box-shadow: 0px 0px 50px rgba(103, 0, 129, 0.5);
}

#T23 div {
  position: absolute;
  margin-left: 0px;
  background: none;
  box-shadow: none;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

#T23 div h3 {
  font-size: 26px;
  margin-left: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#T23 div p {
  z-index: 16000;
  margin-left: 40px;
  margin-right: 20px;
  line-height: 23px;
}

#T231 {
  height: 210px;
}

#T232 {
  display: none;
}

#T233 {
  display: none;
}

#T234 {
  display: none;
}

#T235 {
  display: none;
}

#T236 {
  display: none;
}

#T237 {
  display: none;
}

#T238 {
  display: none;
}

#T239 {
  display: none;
}

#T2310 {
  display: none;
}

#T2311 {
  display: none;
}

#T2312 {
  display: none;
}

#T2313 {
  display: none;
}

#Aide {
  font-family: tahoma;
  font-weight: 900;
  color: white;
  background: black;
  display: inline-block;
  padding: 40px 20px 10px 20px;
  font-size: 25px;
  position: fixed;
  cursor: pointer;
  top: -30px;
  right: 50px;
}
#Aide:hover {
  top: -20px;
}

/* ----------- CHART ---------------------- */

#ChartBkg {
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  position: fixed;
  display: none;
}

#Chart {
  position: fixed;
  background: rgba(0, 0, 0, 1);
  left: 15px;
  top: 15px;
  right: 45px;
  bottom: 45px;
  border: 15px solid rgba(0, 255, 214, 0);
  border-radius: 10px;
  box-shadow: 0px 0px 25px rgb(112, 112, 112);
}

.ChartLbl {
  color: white;
}

#ChartTick1 {
  color: #edc240;
}

#ChartTick2 {
  color: #afd8f8;
}

#ChartClose {
  position: fixed;
  background: rgb(187, 187, 187);
  color: rgb(49, 49, 49);
  text-transform: uppercase;
  font-family: tahoma;
  font-weight: 900;
  font-size: 25px;
  padding: 50px 0px 10px 0px;
  border-radius: 10px;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  top: -50px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
}
#ChartClose:hover {
  top: -40px;
}
