﻿#fade {
  /*--Masque opaque noir de fond--*/
  display: none; /*--masqué par défaut--*/
  background: #0355a8;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .60;
  z-index: 9999;
}

.popup_block {
  display: none; /*--masqué par défaut--*/
  background: #fff;
  padding: 20px 40px 20px 0px;
  border: 20px solid #cfe3ef;
  float: left;
  font-size: 1.2em;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999; /*--Les différentes définitions de Box Shadow en CSS3--*/
  -webkit-box-shadow: 0px 0px 20px #000;
  -moz-box-shadow: 0px 0px 20px #000;
  box-shadow: 0px 0px 20px #000; /*--Coins arrondis en CSS3--*/
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

img.btn_close {
  float: right;
  margin: -55px -75px 0px 0px;
  border: 0px;
}
/*--Gérer la position fixed pour IE6--*/
*html #fade {
  position: absolute;
}

*html .popup_block {
  position: absolute;
}

  .popup_block h2 {
    margin: -5px -26px -20px 12px;
    text-align: center;
    color: #226fbd;
  }

.popup_modale_contenu {
  width: 100%;
  height: 100%;
  margin: 20px -26px -5px 12px;
  max-height: 400px;
  padding-right: 12px;
  overflow-y: auto;
}

.poplight {
  border: 1px solid #3483d3;
  padding: 5px;
  background-color: #3483d3;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  behavior: url(../css/PIE.htc);
  position: relative;
  display: block;

  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.poplight:hover {
  background-color: #d0ebfb;
  color: #3483d3;
}
