/* 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: 25px;
	text-align: center;
	color: #CC0000;
	font-style: normal;
	font-weight: bold;
	margin-left: 0;
	margin-right: 0;
	margin-top: 30;
	margin-bottom: 30;
}

h2{
	font-family: Arial, Helvetica, sans-serif; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 20px;
	text-align: center;
	color: #CC0000;
	font-style: normal;
	font-weight: bold;
	margin-left: 50;
	margin-right: 50;
	margin-top: 40;
	margin-bottom: 40;

}

h3{
	font-family: Arial, Helvetica, sans-serif; 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 20px;
	color: #CC0000;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	margin-left: 20;
	margin-right: 20;
	margin-top: 40;
	margin-bottom: 40;
}

h4 {
	/* font-family: Arial, Helvetica, sans-serif;  */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #CC0000;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	margin-left: 10;
	margin-right: 10;
	margin-top: 30;
	margin-bottom: 0;

}

h5 {
	/* font-family: Arial, Helvetica, sans-serif;  */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: #000000;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	margin-left: 20;
	margin-right: 20;
	margin-top: 40;
	margin-bottom: 0;

}

h6 {
	/* font-family: Arial, Helvetica, sans-serif;  */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #000000;
	text-align: justify;
	font-style: normal;
	font-weight: bold;
	margin-left: 30;
	margin-right: 50;
	margin-top: 40;
	margin-bottom: 0;

}

.bullet {
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 13px;
	text-align: center;
	color: #000000;
	font-weight : normal;
	margin-left: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;

}

/* 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; */
}