/* Aligns text in headers and body to center */
h1, h2, h3, body
	{
       		text-align: center;
	}
/* 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: 26pt;
        text-align: center;
        font-family: arial;
	}

/* Sets font properties and alignment for paragraphs */
p
	{
		text-align: left;
		font: bold 100% arial, helvetica, sans-serif;
		padding-left: 60px;
	}

