<style type="text/css">
body {
width: 100%; height: 100%;
margin: 0; padding: 0;
text-align: center; /* use text-align to make IE in quirks mode centre the divs */
background: #000 url(lines.jpg);
}
/* setup the width, margins and padding for all the divs */
#TopLayer, #flashcontent, #BottomLayer {
width: 766px; /* see note below about widths */
margin: 0 auto; padding: 0; /* margin 0 auto centres the divs horizontally for FF, Opera, IE in standards mode etc... */
}
/* take up half the height of the page with the topBar background */
#TopLayer {
height: 50%;
background: url(barTop.jpg);
}
/* and fill the other half with the bottomBar background */
#BottomLayer {
height: 50%;
background: url(barBottom.jpg);
}
/* now position your movie absolutely so it appears right in the centre */
#flashcontent {
position: absolute;
left: 50%; top: 50%;
margin-top: -265px;
margin-left: -383px; /* again see note below */
}

 

 

</style>