/* color of links */

a:link {
COLOR: forestgreen;
TEXT-DECORATION: underline;
}
a:visited {
COLOR: limegreen;
TEXT-DECORATION: underline;
}
a:hover {
COLOR: lime;
TEXT-DECORATION: underline;
}
a:active {
COLOR: chartreuse;
TEXT-DECORATION: none;
}

/*heading and paragraph appearances*/
h1{
font-size:250%;
font-family: "Trebuchet MS";
text-decoration: none;
color: darkgreen;
}

h2{
font-size:200%;
font-family: "Trebuchet MS";
text-decoration: none;
color: green;
}

h3{
font-size:150%;
font-family: "Trebuchet MS";
text-decoration: none;
color: forestgreen;
}

p{
font-size:100%;
font-family: "Trebuchet MS";
text-decoration: none;
color: black;
}

/* font face */
body {
font-family: "Trebuchet MS"; 
}

/* font size */
body { 
font-size:100%;
}

/* 2pixel border on all images, commented out 4/2/10 */
/*
img {
border:2px solid black; 
}
*/

/* body color light gray */
body {
background-color: #F0F0F0; 
}