/*save as format.css*/
/*copy and paste this code onto a new Notepad++ document*/
/*save it in your CSS folder*/


/*This body area sets up the page setting defaults*/

body{
background-color:white;
margin:0;
text-align:center;
}

/*This #page_setup area sets up the page structure*/
/*Connected to the <div id="page_setup"> area of web page*/

#page_setup{
width:1000px; /*Width display area*/
margin-left:auto;
margin-right:auto;
border:1px solid black;
}

/*This #page_top area sets up the top section*/
/*Connected to the <div id="page_top"> area of web page*/

#page_top {
height:250px;
background-color:black;
}

/*This #page_display area holds the page content*/
/*Connected to the <div id="page_display"> area of web page*/

#page_display {
background-color:silver;
height:1250px;
}