﻿/* This style sheet establishes class styles to be used in html pages. */
/* Be sure there is the statement <LINK REL=stylesheet HREF="htmlstyle.css" TYPE="text/css"> */
/* in the header of each html page */ 

/* This makes a nice rollover button effect when used with a table with lots of cells */
/* and links in each cell. This gives a blue background to each cell of the table. */
/* You must put the class=menubar in each table <td> command. */
/* This is to be used  with a table to create a bar across the top of the page */
.mainmenubar {background:#1207AC;}
.mainmenubar a {color: #FFFFFF; font-family:Trebuchet MS, Arial, Helvetica, Times New Roman; font-size:12px; text-decoration:none; font-weight:bold;}

/* The hover color for all the links is red */
A:hover {color: FF0000;}

/* Use this for a yellow highlite on specific words. */
.yellowbg {background:yellow;}

/* Use this for a lightblue highlite on specific words. */  
.lightbluebg {background:lightblue;}

/* Use this for a lightgrey highlite on specific words. */  
.lightgreybg {background:lightgrey;}

/* Standard font for general paragraph use */
.std {
	background:white;
	color: #000000;
	font family:Trebuchet MS, Arial, Helvetica, Times New Roman;
	font-size:16px;
	text-decoration:none;
	font-weight: normal;
	}
	
/* Standard size and decoration for headers */
.h1 {
	background:white;
	color: #000000;
	font family:Trebuchet MS, Arial, Helvetica, Times New Roman;
	font-size:12px;
	text-decoration:none;
	font-weight: normal;
	}
	
/* Standard size and decoration for headers */
.h2 {
	background:white;
	color: #000000;
	font family:Trebuchet MS, Arial, Helvetica, Times New Roman;
	font-size:14px;
	text-decoration:none;
	font-weight:bold;
	}

/* Standard font color for general link use */
/* such as the email link at the bottom of the page. */
/* This gives a blue link color with a red mouseover hover color */
.link {background:#ffffff; color:#0000FF; font-family:Trebuchet MS, Arial, Helvetica, Times New Roman; font-size:12px; text-decoration:none; font-weight:bold;}
