/* Aligns text in headers and body to center */
h1, h2, h3, body
	{
		text-align: center;
	}
/* Sets font size for level 1 headers */
h1
	{
		font-size: 30pt;
        font-family: Comic Sans MS, arial, sans-serif;
	}
/* Sets font property for level 2 headers */
h2
	{
		font: bold italic 110% arial, helvetica, sans-serif;
	}

/* Sets font properties for level 3 headers */
h3
	{
		font-size: 12pt;
        font-family: Comic Sans MS, arial, sans-serif;
	}
    /* Sets font properties for level 4 headers */
h4
	{
		font-size: 26pt;
        font: italic;
        text-align: center;
        font-family: times new roman;
	}
      /* Sets font properties for level 4 headers */
h5
	{
		font-size: 16pt;
        font: italic;
        text-align: center;
        font-family: times new roman;
	}
/* Sets font properties and alignment for paragraphs */
p
	{
		text-align: left;
		font: bold 100% arial, helvetica, sans-serif;
		padding-left: 70px;
	}

