.shiftcontainer{
position: relative;
left: 1px; /*Number should match -left shadow depth below*/
top: 1px; /*Number should match -top shadow depth below*/
}

.shadowcontainer{
width: 100px; /* container width*/
background-color: #d1cfd0;
padding: 1px;
}

.shadowcontainer .innerdiv{
/* Add container height here if desired */
background-color: white;
border: 1px solid gray;
padding: 0px;
position: relative;
left: -1px; /*shadow depth*/
top: -1px; /*shadow depth*/
}

