You can achieve an effect very close to this using pure CSS. This example uses a single element with an RGBA border color and several box shadows to add highlights and shadows.
Demo: http://dabblet.com/gist/2775781
<div class="box">Your message.</div>
.box {
background: #f0edcc;
background-clip: padding-box;
border: 4px solid rgba(255,255,255,.2);
border-radius: 3px;
box-shadow:
0 0 1px rgba(255,255,255,.8),
0 0 3px rgba(0,0,0,.8),
1px 1px 0 rgba(0,0,0,.8) inset,
-1px -1px 0 rgba(0,0,0,.8) inset;
padding: 10px;
}
, box-shadow RGBA IE9 + Firefox, Chrome, Opera Safari. ( .) , , .