/* My CSS File */


/* Define body background color and font */
/* Taken from JPEG image, corporate colors are:  */
/*    Peach background : #FCCC9D  */
/*    Purple Font color: #3C1B6C  */
/*    Dull red borders : #C40000  */
/*    Dark blue-purple : #020206  */
/*    Coral            : #F38363  */


body
{
	font-family: book-antiqua;
	font-size: 14pt;
	color:#3C1B6C;
  }
img.framed
{
  border: 5;
  bordercolor: white;
}

/* Define a red italicized text font */
p.red
{
  font-family: book-antiqua;
  font-size: 14pt;
  font-style: italic;
  color: #C40000;
}
p.purple_large
{
  font-family: book-antiqua;
  font-size: 14pt;
  color: #3C1B6C ;
  font-weight: bold;
}
p.purple_medium
{
  font-family: book-antiqua;
  font-size: 12pt;
  color: #3C1B6C ;
}
p.purple_small
{
  font-family: book-antiqua;
  font-size: 10pt;
  color: #3C1B6C ; 
  font-style: italic;
}
p.white_on_red
{
  font-family: book-antiqua;
  font-size: 20pt;
  color: white ; 
  font-style: italic;
  background: #F38363 ; 
}


/* Create a class of link named 'mainlink' */

a.mainlink
{
	font-family: book-antiqua;
	font-size: 24;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	color: #660066;
}

a.mainlink:link 
{
	color: #330066;
}
a.mainlink:visited
{
  color: #3C1B6C;
}
a.mainlink:hover
{
  color: white;
}
a.mainlink:active 
{
	color: #330033;
}
/* end of <a class="mainlink"> definition */

/* Create a minor link class named "redlink" */

a.redlink
{
  font-family: font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  font-weight: bold;
  text-decoration: none;
  font-style: normal;
}

a.redlink:link 
{
   color: #C40000;
}
a.redlink:visited
{
  color: #C40000;
}
a.redlink:hover
{
  color: white;
}
a.redlink:active 
{
  color: #C40000;
}
/* end of <a class="redlink"> definition */

/* Create a link for bullets on a page */

a.bullet
{
  font-family: Book Antiqua;
  font-size: 18pt;
  font-weight: bold;
  text-decoration: none;
  font-style: italic;
}
a.bullet:link 
{
  color: #3C1B6C;
}
a.bullet:visited
{
  color: #3C1B6C;
}
a.bullet:hover
{
  color: white;
}
a.bullet:active 
{
  color: #3C1B6C ;
}
/* end of <a class="bullet"> definition */
