This fiddle might be, what you want: Fiddle
This example contains gradients for the top and bottom parts but can be solid colors of course, if you want that.
You can play around with the padding of the #content Element, but note, that you need an additional element to the right, if you want to create a passepartout-effect.
edit:
changed the fiddle link, the old link with the gradients is the following: Fiddle
<div id="container">
<div id="content" class="pad">
1<br>
2<br>
3<br>
4<br>
5<br>
...
39<br>
40<br>
41<br>
42<br>
</div>
<div id="topbar" class="bar"> </div>
<div id="bottombar" class="bar"></div>
<div id="leftbar" class="vbar"></div>
<div id="rightbar" class="vbar"></div>
</div>
#container{
position:relative;
height:300px;
width:300px;
border:1px solid red;
}
#content{
height:200px;
width: 200px;
padding: 50px;
overflow-y: auto;
background-color: #cef;
}
.bar {
position:absolute;
width: 280px;
height: 50px;
background-color:#bcd;
}
.vbar {
position:absolute;
width: 50px;
height: 280px;
background-color:#bcd;
}
#topbar{
top:0;
}
#bottombar{
bottom:0;
}
#leftbar{
top:0;
}
#rightbar{
right:20px;
top:0;
}