/* Ellen's CSS File */


/* Define body background color and font */

body.lilac
{
  font-family: times, roman;
  font-size: 10pt;
  color: white;
  background-color: #8080D0;  
  }
body.beige
{
  font-family: times, roman;
  font-size: 10pt;
  color:#707000;
  background-color: #CCCC99;  
  }

/* Define light text on a dark background */
p.dark
{
  font-family: times, roman;
  font-size: 12pt;
  font-weight: bold;
  color: white;
}

/* Define dark text on a light background */
p.light
{
  font-family: times, roman;
  font-size: 12pt;
  font-weight: bold;
  color: #707000;
} 
/* Create a class of link named 'menu' */

a.menu
{
  font-family: times, roman;
  font-size: 12pt;
  font-weight: bold;
  text-decoration: underline;
}

a.menu:link 
{
  color: white;
}
a.menu:visited
{
  color: #707000;
}
a.menu:hover
{
  color: #303030;
}
a.menu:active 
{
  color: #A00000;
}
/* end of <a class="menu"> definition */
/* The next one is for the 'beige page' menus */

a.menu2:link 
{
  color: #707000;
}
a.menu2:visited
{
  color: #660000;
}
a.menu2:hover
{
  color: #303030;
}
a.menu2:active 
{
  color: #A00000;
}
/* end of <a class="menu2"> definition */


