/* AJAX overlay windows ("lightbox" technique) */

  /* setting body width & height to 100% */
  body.home {
    width: 100%; 
    height: 100%;
  }
  
  /* put overlay-content at the top of the screen */
  body.home div.overlay-content {
  	position:absolute;
  	top:0;
  	left:0;
  	width:100%;
  	height:auto; /* ie7 has difficulty calculating height if this is set to 100% */
  	z-index: 1337;
  }
  
  /* cover the screen */
  body.home div.overlay-background { 
  	background: #333; 
  	opacity: 0.6; 
  	position: absolute; 
  	top: 0;
  	left:0;
  	width: 100%; 
  	height: 100%; 
  	z-index: 1337;
  }
  