<!-- Description: A standard style sheet that sets background and font properties
Browsers: 
Additional Information: Replace Your Title Here with your preferred page title. Replace hex codes (i.e. #000000, #FFFFFF, etc.) with hex codes of desired colors. Replace center with preferred text alignment. Replace given font properties with desired font properties (size, weight, and family). If you prefer to use an image as a background instead of a solid color, replace

body { 
  background: #000000;
  text-align: center;
}

with

body { background: url(yourpicture.png) }

In this case, replace yourpicture.png with the image you want to display. -->

<head>
<title>CF Style Sheet</title>

<style type="text/css">
body {
  background: #f9eb8a;
  font-size: 16pt;
  font-family: Tahoma, Arial, sans-serif;
  text-align: center;
}

p {
  background: #f9eb8a;
}

p.italic   {
            font-style: italic;
}

p.blue  {
        background: #C4ECE2;
}

h1 {
  background: #f9eb8a;
  color: #253412;
  font-weight: bold;
  font-size: 18pt;
  font-family: Verdana;
}

 h1.title {
  BORDER-TOP: #003300 6px solid;
  BORDER-BOTTOM: #003300 6px solid;
  FONT-STYLE: normal;
  FONT-FAMILY: Verdana, Arial;
  PADDING-TOP: 3px;
  PADDING-BOTTOM: 3px;
     }

h2 {
  background: #f9eb8a;
  color: #000000;
  font-weight: bold;
  font-size: 16pt;
  font-family: Arial, sans-serif;
}

h3 {
  background: #f9eb8a;
  color: #000000;
  font-weight: bold;
  font-size: 14pt;
  font-family: Verdana,Arial, sans-serif;
}


</style>
</head>

