/* A style for a paragraph of text */

    .regtext {
		font-family: Times; 
		font-size: 14pt; 
		width: 500px;
        position: absolute; 
		top: 100px; 
		left: 100px;
	}

/* A style for the text to be absolutely positioned */

    .abstext {
		position: absolute; 
		top: 25px; left: 50px; 
        font-family: Times; font-size: 24pt; 
        font-style: italic; letter-spacing: 1em;
        color: red; width: 400px;
	}
