That would be invalid code if you just copy and paste a div with an ID. IDs in
CSS are unique and if you have more than one ID your page will not validate.
In order to make this work you will need to change the ID "header" to a class
and then change those DIVS to class="header" instead of ID="header". For the
CSS document, the # represents an ID, so change that to a . which defines a
class.
For a good quick tutorial on basic CSS check out the following link:
http://www.w3schools.com/css/