/* other */

div#fancy_overlay { background: #2c2c2c; }	/* overlay color */

.fixe { 
  /* un bloc fixe situ? en haut qui fait toute la largeur */ 
  position : fixed;
  display: inline-block;
  height:auto;
  z-index:100;
  background-color:#FFFFE1;
  border-bottom:#707070 1px solid;
  top: 0px; 
  left: 0px; 
  right: 0px; 
  width: 100%;
  /* et le patch pour IE */ 
  position : expression("absolute"); 
  width : expression("100%"); 
  top : expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight); 
  left : expression("0px"); 
}

.pr1 { 
  /* un bloc fixe situ? en haut qui fait toute la largeur */ 
  position : fixed;
  display: inline-block;
  height:auto;
  z-index:101;
  border: #000 solid 1px;
  top: 50px; 
  left: 50px;  
  width: 100px;
  height:100px;
  background-color:#FFF;
  
  /* et le patch pour IE */ 
  position : expression("absolute"); 
  width : expression("100px"); 
  top : expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight); 
  left : expression("50px"); 
}
