@CHARSET "utf-8";
/* Format the <div> that represents the header */
.Header {
background-color: #EE5511;
border: thick #AA4411 solid;
padding: 10px;
margin: 10px;
text-align: center;
}
/* Format any <h1> headings in the header <div> */
.Header h1 {
margin: 0px;
color: white;
font-size: xx-large;
}
/* Format the central content in the CentralContent <div>. */
.CentralContent {
margin: 0px;
text-align: center;
}
/* Format any <h1> headings in the centralcontent <div> */
.CentralContent h1{
	font-size: large;
	color: maroon;
}
/* Format any <p> in the centralcontent <div> */
.CentralContent p{
	color: maroon;
}

