/* Tutorial CSS File */


/* Define body background color and font */

body
{
  font-family: times, serif;
  font-size: 10pt;
  color:black;
  background-color: #B8D8D8;  
  }


h3
{
  color: navy;
}

/* Define dark text on a light background */
p
{
  font-family: times, serif;
  font-size: 12pt;
  font-weight: normal;
  color: black;
} 

/* Make lists conform with the text size of paragraphs */
ol
{
  font-family: times, serif;
  font-size: 12pt;
  font-weight: normal;
  color: black;
}

/* 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: #707070;
}
a.menu:visited
{
  color: #707000;
}
a.menu:hover
{
  color: black;
}
a.menu:active 
{
  color: #A00000;
}
/* end of <a class="menu"> definition */