/* stylesheet.css */

/* Body text and page background */ 
body {
     background-image: url("images/bg_cream.jpg");
     background-repeat: repeat;
     margin: 20px;
     font-family: 'Book Antiqua', Times, Serif;
     font-size: medium;
     color: #000066;
}

/* h2 heading */
h2 {
     text-align: center;
     font-size: xx-large;
     color: #FF6633;
}

/* h3 heading */
h3 {
     text-align: center;
     font-size: x-large;
     color: #FF6633;
}

/* Text report style */
#text_report {
     position: relative;
     width: 80%;
     left: 10%;
}

/* Paragraphs */
p {
     width: 80%;
     margin: auto;
}

/* Images */
img {
     margin: auto;
}

/* Table header cells */
th {
     text-align: center;
}

/* Table cells */
td {
     text-align: center;
}

/* Page footer style */
#footer {
     width: 100%;
     border-top: thin solid #000066;
     padding-top: 4px;
}

/* Footer table style */
table.footer {
     text-align: center;
     margin: auto;
}

/* Footer table cell style */
td.footer {
     border: solid 1px #000066;
     padding: 10px;
     background-color: white;
}
