I have my whole site set up to be centered with all elements (position:absolute

within this one div:
#website {
position:relative;
margin:0 auto;
width:960px;
How do I add a <div> with a fixed position (stays in the same left and top position as you scroll down) that will be relative to the centered site?
I tried position:fixed; but it just ignores the margins and a left:60px; is always 60px from the left, no matter how wide the browser window.