/* CSS Document */
/* 
The Following code defines what the text will look like. I am using CSS for fonts and sizes
because it is relatively straightforward. I didn't want to show you more complex CSS. 
*/

/* These three lines determine how all h1, h2 and h3 headers will look */
/* If you want to change all of the Headers from Arial to Georgia, simply
change which lines are commented out, and which ones aren't.  */
H1 {
    font-size: 180%;
	font-family: Verdana, sans serif;
    color: #000099;
}

H2 {
    font-size: 130%;
	font-family: Georgia;
    color: #000000;	
}
H3 {
    font-size: 120%;
	font-family: Georgia;
    color: #990000;	
}

h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: 990000;
	background-position: center;

}

/* This is the P tag definition, and determines how most of the text will look. */
p {
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 100%;
	/* text-align: left; */
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 110%;
	/* text-indent: 20px; */

}

/* LI tags surround the List Items -- the bulleted stuff. */
ul { list-style-image: url(images/checkmark.gif);}
li {
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 110%;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 120%;
}

/* This is what color links will be. */
a {
	color: #0000FF;
	/* text-decoration: none; */
}
.a3:link, .a3:visited, .a3:active      {
	font-size: 80%;
	font-family: Verdana, sans-serif;
	color:#0000FF;
	font-style: strong;
	text-decoration:underline;
	line-height:140%;
	padding-bottom: 10px;
	padding-left: 0px;
	font-weight: normal;
}
{
.a3:hover{color:#993300}
}

.td6 {font-family:Verdana; border-style:solid; border-color:CCCCCC;font-size:90%;pxline-height:120%;color:#ffffff; }
}
.td5 {font-family:Arial;font-size:10pt;pxline-height:120%;color:#000000; }


