/* CSS Document */
body {
  background-color:black;	
  color:white;
  height:1200px; 
  }

img {
  border:1px solid black;
  }	

.thumb {
  position:relative; 
  top:0;
  left:0; 
  }
    
/* CSS ZOOM */  
.thumb a .grandh2 {
	display:block;
	position:absolute;
	width:0px;
	top: 1px;
}	    
.thumb a:hover .grandh2 { 
  position:fixed; 
  top:250px; /* position à partir du haut */
  right:350px; /* position à partir de la droite */
  width:900px; /* taille du zoom en longueur */
  height:600px; /* taille du zoom en hauteur */
}
 
.thumb a .grandv1 {
	display:block;
	position:absolute;
	width:0px;
	top: 1px;
  }	  
  
.thumb a:hover .grandv1 { 
  position:fixed; 
  top:40px; /* position à partir du haut */
  right:500px; /* position à partir de la droite */
  width:600px; /* taille du zoom en longueur */
  height:900px; /* taille du zoom en hauteur */
  }
