<!-- BlockPhoto.css -->

<!-- 
This is the master Cascading Style Sheet that controls the appearance of text on web pages.
In the HEAD element of each document, insert a LINK tag and set the attributes for it as follows: 
<LINK REL="stylesheet" HREF="[relative path]/master.css">
-->

<!-- 
To set text attributes in an HTML source file, use this syntax:
<div class=classname>Your Text Here</div> where 'classname' is a class name chosen from those below.
Class names begin with a period. Type them all lower-case as shown, but omit the period in the HTML.
-->

<style type="text/css">

<!-- 

/* This is the syntax for a comment within the Cascading Style Sheet itself. */

/* the HTML comment tag hides class code from style-impaired browsers */

.h24  /* 24 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 24pt;
}

.h18  /* 18 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 18pt;
}

.h2  /* 14 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
}

.h3  /* 12 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
}

.body  /* 10 point sans-serif */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.bodyitalic  /* 10 point sans-serif */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: italic;
	text-decoration: none;
	font-size: 10pt;
}

.bodybold  /* 10 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
}

.bodysmall  /* 8 point sans-serif, bold */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
}

.table  /* 10 point sans-serif: use for text inside table cells other than header row */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10 pt;
}

.tablebold  /* 10 point sans-serif: use for text inside table cells other than header row */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10 pt;
}

.f1   /* use for 8 point sans-serif  footer text */
	{
	color: White;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 8pt;
}

-->

</style>

