h1 {
    font-family: Trebuchet MS, Verdana, sans-serif;
    font-size: 22pt;
    color: #7f7f7f; 
}

h4 {
	  font-family: Trebuchet MS, Verdana, sans-serif;
    font-size: 12pt;
    color: #7f7f7f; 
}

p { font: 10pt/14pt Trebuchet MS, Verdana, sans-serif; }

li { font: 10pt/14pt Trebuchet MS, Verdana, sans-serif; }

a { color: #7f7f7f; }
a:visited { color: #3f3f3f; }
a:hover { color: #ff0000; }


P.std {
font-family: times new roman, times, serif;
  /* generics: serif, sans-serif, monospace */
font-style: normal;
  /* normal, itralic */
font-weight: normal;
  /* normal, bold, bolder, lighter */
font-size: small;
  /* values: absolute-size | relative-size (larger, smaller) | 
     length | percentage */

color: rgb(255,0,0);
  /* df1f1f, red, etc. */
background-color: rgb(0,0,0);
background-image: url(whatever.gif);
background-repeat: repeat;
  /* repeat, repeat-x, repeat-y, no-repeat */
background-attachment: scroll;
  /* scroll, fixed */
background-position: 0% 0%;
  /* x, y, or top right, etc */

letter-spacing: 0.1em;
  /* addition to letter-spacing */
text-decoration: none;
  /* none | underline | overline | line-through */
text-indent: 0;
  /* 3em, percentage */
line-height: 1.2;
  /* normal | number (ratio, multiplied by font size), point size */

border-width: medium medium medium medium;
  /* top, right, bottom, left */
border-color: red;
border-style: solid;
  /* none, solid, double, groove, ridge, inset, outset */
border-top: medium solid red;
  /* border-whatever: width, style, color */
border: medium solid red;
  /* all four sides */



}