/* 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: Arial, Helvetica, sans-serif; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 32px;
	text-align: center;
	color: #CC0000;
}

h2{
	font-family: Arial, Helvetica, sans-serif; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 20px;
	text-align: center;
	color: #CC0000;
}

h3{
	font-family: Arial, Helvetica, sans-serif; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 18px;
	color: #CC0000;
	text-align: center;
}

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

}

h5 {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 18px;
	color: #0000CC;
	text-align: center;

}

.subtitle-sans-serif-red { font-family: Arial, sans-serif; font-size: 16px; color:#003366; color:#CC0000; font-weight:bold; text-decoration:none; line-height:normal;
}

.bullets {FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: #ff0000; }
ul.cross li { background-image:url(images/cross.gif);
background-position:top left;
background-repeat:no-repeat;
padding-left: 50px;
text-indent: 0;
} 

ul.cross { list-style-type: none;
list-style-image:none;
padding: 0px;
margin: 0;
}		  


/* 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: 13px;
	/* text-align: left; */
	font-style: normal;
	font-weight: normal;
	color: #000000;
	/* text-indent: 20px; */

}



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


