/* This is the only valid CSS comment style. */

body {
       background-color:#FFFFCC;
       margin-left:4em;
       margin-right:4em;
       font-family:Arial, Helvetica, sans-serif;
       font-size:12pt;
       font-weight:normal;
       font-decoration:none;
       color:black;
       }

h1 {
     font-size:32;
     color:darkgreen;
     text-transform:capitalize;
     margin-left:1em;
     margin-right:1em;
     text-align:center;
     }

h2 {
     font-size:26;
     color:darkgreen;
     margin-left:1em;
     margin-right:1em;
     text-align:center;
     }

h3 {
     font-size:22;
     margin-left:1em;
     margin-right:1em;
     }

h4 { 
     font-size:20;
     margin-left:3em;
     margin-right:2em;
     }

h5 { 
     font-size:18;
     margin-left:5em;
     margin-right:2em;
     }

hr { 
     height:6px;
     color:darkred;
     background-color:darkred;
     width:90%;
     }

p { 
    color:black;
    }


/* 
   The imagelink style is used to suppress the dotted line around an
   image in the firefox browsers when the image is part of a hyper-link.
   There will still be a link border around the image if the html
   stipulates a border > 0.
   */
a.imagelink { 
     outline:none;
}

/* =============================================== */
/* Generic classes. Can be applied to any element. */
/* =============================================== */


/*
   To center text or other elements.
   The name was chosen to be the same as the align=center directive,
   which is expected to simplify editing of the html source.
   */
.center { 
     text-align:center;
}

