/* page background */

body {
background-color: #CCFFCC;
background-image: url(bg.jpg);
background-position: top center;
background-repeat: repeat;

color: #336633;

margin-top: 3;

}


a {text-decoration: none;
}

/* unvisited link */
a:link {color: #336633;
text-decoration: none;
}

/* visited link */
a:visited {color: #336633;
text-decoration: none;
}

/* mouse over link */
a:hover {color: red;
text-decoration: none;
}

/* selected link */
a:active {color: blue;
text-decoration: none;
}