I think it's wrong, too. The upper 4px of the background frame for the gallerie pictures are cropped.
The border image for the gallerie pictures bg_pal is moved to far to the top with the '-4px' attribute. So I changed it to '0':
`.gal {
background:url("../img/bg_gal.gif") 11px 0 no-repeat;
margin:0;
}`
Furthermore you have now to move the gallerie picture itself 4px down. So I added a 4px top attribute:
`.galleries .img {
position:absolute;
left:15px;
top:4px;
}`
Now the gallerie picture is centered within the fully visible background frame.