I found a theme I'd like to emulate (some features of it anyway). By examining the page source and by using Firebug, it shows that they have a <div id="wrap"> which encapsulates the header, content and footer.
My question is....
How do I create an additional 'area' (DIV) that can encapsulate the <div id="wrapper"> which encapsulates the <div id="container">?
A more visual representation (specifically the items in red) of what I want this to look like would be this....
Code:
<html> <head> <A bunch of meta content, descriptions, and blah-blah-blah goes in here> </head> <body> <div id="wrap"> <div id="wrapper"> <div id="container"> <The rest of the Atahualpa magic happens in here!!!> </body> </html>

~Jeff