<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#main {
width: 1000px;
min-height: 1000px;
height: auto;
position: absolute;
left: 170px;
overflow: hidden;
border: 1px dotted blue;
}
#header {
width: 100%;
height: 250px;
background:#EEE;
}
#content {
width: 100%;
height: 1000px;
position: relative;
top: 20px;
background:#AAA;
}
</style>
</head>
<body>
<body>
<div id='main'>
<div id='header'>header</div>
<div id='content'>content</div>
</div>
</body>
</body>
</html>