.css3-shadow
{
  	position:relative;
	-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3);
}
.css3-shadow:after
{
	content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 40px rgba(0,0,0,0.8);
    		box-shadow:0 0 40px rgba(0,0,0,0.8);
    bottom:0px;
	width:80%;
	height:50%;
    -moz-border-radius:100%;
    border-radius:100%;
	left:10%;
	right:10%;
}
*{
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
body {
	color: #666;
	font-family:"Calibri",Arial, Helvetica, sans-serif;
	padding:0;
	margin:0;
}
.wrap{
	max-width:1100px;
	margin:0 auto;
	position:relative;
	text-align:center;
}
.box h2{
	background:#eee;
	margin:0;
	padding:10px 0;
	text-align:center;
	font-size:18px;
	-webkit-box-shadow:0 0px 4px rgba(0, 0, 0, 0.2);
            box-shadow:0 0px 4px rgba(0, 0, 0, 0.2);
}
.box {
	width:96%;
	padding:20px;
	background:#fff;
	margin:20px auto 60px;
	border-radius:2px;
}
.box > div{
	clear:both;
	margin:20px 0;
}