/* My CSS File */


/* Define body background color & font */

body
{
  font-family: times-new-roman, book-antiqua, sans-serif;
  font-size: 10pt;
  color:black;
  background-color: #DDC488; 
  alink: green;
  vlink: olive;
  hlink: black;
  }

/* Define light text on a dark background */
p.dark
{
  font-family: times-new-roman, book-antiqua, sans-serif;
  font-size: 12pt;
  font-weight: bold;
  color: #ffff99;
}

/* Define dark text on a light background */
p.light
{
  font-family: times-new-roman, book-antiqua, sans-serif;
  font-size: 12pt;
  font-weight: normal;
  color: black;
} 

/* Create a class of picture link named "piclink" */

a.piclink
{
  font-family: sans-serif;
  font-size: 10pt;
  font-weight: bold;
  text-decoration: underline;
}
a.piclink:link 
{
  color: #990000;
}
a.piclink:visited
{
  bordercolor: white;
}
a.piclink:active 
{
  color: white;
}

/* end of <a class="piclink"> definition */


/* Create a class of link named 'menu' */

a.menu
{
  font-family: sans-serif;
  font-size: 10pt;
  font-weight: bold;
  text-decoration: underline;
}
a.menu:link 
{
  color: #FFFF99;
}
a.menu:visited
{
  color: white;
}
a.menu:hover
{
  color: black;
}
a.menu:active 
{
  color: white;
}
/* end of <a class="menu"> definition */

