/* CSS Document */


<!-- Hide entire CSS code from IE6 -->
<![if !IE 6]>

.shiftcontainer{
position: relative;
left: 5px; /*Number should match -left shadow depth below*/
top: 5px; /*Number should match -top shadow depth below*/
}

.shadowcontainer{
width: 210px; /* container width*/
background-color: #F0CA00;
margin:0;
padding:0;
}

.shadowcontainerleft{
width: 210px; /* container width*/
background-color: #F0CA00;
margin:10px;
padding:0;
}

.shadowcontainer .innerdiv{
/* Add container height here if desired */
background-color: #f3f3f3;
border: 1px solid #cccccc;
padding: 6px;
position: relative;
left: -5px; /*shadow depth*/
top: -5px; /*shadow depth*/
font-size:90%;
}

.shadowcontainerleft .innerdiv{
/* Add container height here if desired */
background-color: #f3f3f3;
border: 1px solid #cccccc;
padding: 6px;
position: relative;
left: -5px; /*shadow depth*/
top: -5px; /*shadow depth*/
font-size:90%;
}

<![endif]>

