<!--

body {
background:#ffffcc; 
color:#000000;
font-family:arial, helvetica, sans-serif;
}

p,td,ul,li,dd,dt,blockquote {font-weight: normal
}

/*Below will make text enclosed in <p class="reg"></p> regular text. This is a "class" tag*/
p.reg {font-style: normal; font-weight: normal
}

/*Below will format text as in a ms--double spaced and indented--when it's enclosed in <p class="ms"></p>*/
p.ms {text-indent: 5ex; line-height: 2.0
}

/*Below is for hyperlinks formatted to appear in the text as my-green, nonunderlined links, uppercase, sized smaller so they look like smallcaps. When the mouse is hovered over them, they'll turn to red, smaller-uppercase, underlined links. When they're active (they've been visited but nothing else has happened afterward yet), they'll be red, smaller-uppercase, nonunderlined. When they're in visited state they'll return to my-green, smaller-uppercase, nonunderlined.*/

a {
text-decoration:none;
}

a:link {
color:#006666;
background:transparent;
}

a:visited {
color:#006666;
background:transparent;
}

a:hover {
color:#ff3333;
background:transparent;
text-decoration:underline;
}
a:active {
color:#ff0033;
background:transparent;
}

-->