/* CSS Document */

img.shade{ 
   width: 37ex; 
   height: 9em; 
/* specify the dimension of the image */ 
   display: block; 
   position: absolute; 
   z-index: -1; 
/* force the image to show below the content */ 
   right: -3ex; 
   bottom: -1em; 
} 

div.shade{ 
   width: 30ex; 
   height: 6em; 
/* specify the dimension of the content, slightly smaller than the image */ 
   position: relative; 
   z-index: 1; 
/* force the content to show above the image */ 
   background-color: #fff; 
   border: 1px solid #000; 
   padding: 1em 2ex; 
   margin-right: 6ex; 
   margin-bottom: 3em; 
} 
