.infobox {
    padding: 2px 10px;
    border: 1px solid #ccc;
    color: #1c1c1c;
    width: 610px;
	height: 400px;
    position: relative;
    margin: 0px auto;
    background-color: #eef1f1;
    background-image: -webkit-gradient(linear,0 0, 0 100%, from(#f3f3f3), to(#f3f3f3));
    -webkit-border-radius: 2px;
    -webkit-box-shadow: 1px 0 0 #fff inset,
                        0 1px 0 #fff inset;
}

.infobox.shadow:after, .infobox.shadow:before {
    content: '\00a0';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: -1;
    left: 50%;
    margin-left: -50px;
    bottom: -41px;
    -webkit-border-radius: 50px;
    -webkit-box-shadow: 0 0 46px rgba(0,0,0,0.5);
    -webkit-transform: scaleX(2) scaleY(0.2);
}
 
.infobox.shadow:before {bottom: inherit; top: -41px;}

.infobox.shadowVert {min-height: 210px;}
 
.infobox.shadowVert:after, .infobox.shadowVert:before {
    content: '\00a0';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: -1;
    left: -41px;
    top: 50%;
    margin-top: -50px;
    -webkit-border-radius: 50px;
    -webkit-box-shadow: 0 0 46px rgba(0,0,0,0.5);
    -webkit-transform: scaleY(2) scaleX(0.2);
}
.infobox.shadowVert:after {left: inherit;right: -41px;}