I can see you did your box with images, here is how to do it with CSS and add a shadow effect. Works with most web browsers and a live demo is
here
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
.bevelbox{
width:220px;
height:220px;
background-image: url(https://chart.googleapis.com/chart?chs=280x280&cht=qr&chl=mobi.ionut.freeiz.com);
border: 2px solid #006666;
background-position: center center;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-o-border-radius: 20px;
-moz-box-shadow: 0px 0px 14px #444;
-webkit-box-shadow: 0px 0px 14px #444;
box-shadow: 0px 0px 14px #444;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444');
}
</style>
</head>
<body><div class="bevelbox"></div>
</body>
</html>