/* 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-family: Tahoma; 
	font-size: 35px; 
	color: #d70305; 
	text-align: center; 
	font-weight: bold; 
}

h2 {
    font-family: Arial; 
	font-size: 20px; 
	font-weight: bold; 
	}

.h3 {
    font-family: Arial; 
	font-size: 19px; 
	font-weight: bold; 
	color: #C60000; 
}

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

.subheadline {
    font-family: Arial; 
	font-size: 18px; 
	font-weight: bold; 
	color: #C60000; 
}

/* This is the P tag definition, and determines how most of the text will look. */
p  {
	font-family: Arial; font-size: 12pt; 
}

.textbold {
    font-family: Arial; font-size: 14px; font-weight: bold; 
}

/* LI tags surround the List Items -- the bulleted stuff. */
li {
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 13px;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	color: #000000;
}

/* This is what color links will be. */
a {
	color: #0000FF;
	/* text-decoration: none; */
}


