BODY { 
background-image: url(images/bkg.jpg);
background-repeat: repeat /* tiles IMG */
color: black /* applies to text? */
 }

.menubar { /* this could really apply to <BODY> as the whole file is the menu... although all the text that appears is in <A> so this seems a bit irrelevant... */
font-family: "Comic Sans MS";
font-size: 4;
font-weight: bold }

A {
font-family: "Comic Sans MS";
font-size: 10pt;
font-weight: bold;
text-decoration: none /* this line gets rid of the underline on <A> */
}
A:hover {text-decoration: underline} /* this puts the underline on <A> when the mouse is over them */
A:visited { color: #FFC0FF }
A:active { color: #00FF40 }


/*.selected { /* this applies if you have more than one menu (ie the menu changes when you are in different sections of the site) not currently being used */
margin-left: 1em;
text-decoration: none;
font-size: 8pt}
a.selected:link {color: black}
a.selected:visited {color: green} */
