/* Drop shadows (not IE6 though) */

.shiftcontainer{
position: relative;
left: 3px; /*Number should match -left shadow depth below*/
top: 3px; /*Number should match -top shadow depth below*/
}

.shadowcontainer{
width: 100%; /* container width*/
background-color: #d1cfd0;
}

.shadowcontainer .innerdiv{
/* Add container height here if desired */
border: 1px solid gray;
padding: 10px;
background-image:url('/images/corner.png'); 
background-repeat:no-repeat; 
background-position:bottom right;
position: relative;
left: -3px; /*shadow depth*/
top: -3px; /*shadow depth*/
}
