/* set background color */
body
{
background-color: d3d3d3;
}
/*
d3d3d3 - lightgray
cccc99 - classic
*/

/* set default paragraph font */
p
{
Color: default;
font-family: Arial, Helvetica, sans-serif;
}

/* set link display attributes */
a:link
{
text-decoration: none;
color: steelblue;
}
a:visited
{
text-decoration: none;
color: steelblue;
}
a:hover
{
text-decoration: underline;
color: blue
}
a:active
{
text-decoration: underline;
color: blue
}