
/*save as page_control.css in your CSS folder*/

/*This body area sets up the overall page 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: 1250px; /*Total width of page area*/
margin-left:auto;
margin-right:auto;
border:1px solid black;
}

/*This #page_banner area sets up the top section area to display your banner*/
/*Connected to the <div id="page_banner"> area of web page*/

#page_banner {
height:300px;
background-color:black;
}

/*This #page_display area holds the main page content like images & writing*/
/*Connected to the <div id="page_display"> area of web page*/

#page_display {
background-color:silver;
height:2000px; /*Total height of page*/
}
