ZEN Style CSS

Drop Shadow CSS

.outer{
	border: 1px solid rgb(150,150,150);
	background: url("../images/box-background.png") repeat-x 0% 0%;
	background-color: rgb(238,238,238);
}

.inner{
	position: relative; top: 3px; left: 3px;
	padding: 1%;
	border-right: 2px solid rgb(220,220,220);
	border-bottom: 2px solid rgb(180,180,180);
}

Drop Shadow HTML

<div id="outer">
<div id="inner">
<p>Content in here</p>
</div>
</div>