when working with the box-shadow style ,the shadow can be placed either before or after the shadow offsets and dimentions code example
Example: does boxshadow work
.shadow {
-moz-box-shadow: 3px 3px 5px 6px #ccc;
-webkit-box-shadow: 3px 3px 5px 6px #ccc;
box-shadow: 3px 3px 5px 6px #ccc;
}