I can haz shadow
Code used in this page
.shadow {
width: 100px;
height: 100px;
margin: 20px auto;
padding: 5px;
background: #ffffa2;
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=135, Color='#000000');
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=135, Color='#000000')";
/* Firefox */
-moz-box-shadow: 3px 3px 10px #000;
/* WebKit */
-webkit-box-shadow: 3px 3px 10px #000;
/* Standard */
box-shadow: 3px 3px 10px #000;
}