/* If I had any stype this is where it would be described. 
 * 
 * This style sheet defines four elements 
 *
 * BODY - 
 * BODY,P - Paragraphs in the body
 * H1 and H2 headers
 * 
 * and one class 
 *
 * .highlight
 *
 * (c) W.Robert Daasch, PSU ECE 1999
 */

BODY {
background: white
}

BODY, P {
	color : black;
}

H1 {
	color : black;
}

H2 {
	color : black;
}

.highlight {
	background-color : white;
	border-width : thin;
	border-color : darkgray;
	border-style : outset;
	color : black;
	font-weight : 500;
	font-size : medium;
	padding : 8px;
}

