<!-- whin.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 */

.h18  /* 18 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 18pt;
	}

.h2  /* 14 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
	}

.h2blue  /* 14 point sans-serif, bold DARK BLUE */
	{ 
	color: #000099;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
	}

.h3  /* 12 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
	}

.normal  /* 10 point sans-serif */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
	}

.normalred  /* 10 point sans-serif RED */
	{ 
	color: red;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
	}

.normalbluebold  /* 10 point sans-serif BLUE Bold */
	{ 
	color: 000099;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
	}

.normalwhitebold  /* 10 point sans-serif WHITE Bold */
	{ 
	color: white;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
	}

.normalitalic  /* 10 point sans-serif */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: italic;
	text-decoration: none;
	font-size: 10pt;
	}

.normalbold  /* 10 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
	}


.normalbolditalic  /* 10 point sans-serif BOLD ITALIC*/
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	}

.normalsmall  /* 8 point sans-serif */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
	}

.normalsmallwhite  /* 8 point sans-serif WHITE */
	{ 
	color: white;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
	}

.normalsmallbold  /* 8 point sans-serif BOLD */
	{ 
	color: black;
	font-family: arial, helvetica, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 8pt;
	}

-->

</style>


