/* sstyle.css - a simple style sheet */
body {
	margin-left: 2%;
	margin-right: 2%;
	color: black;
	background: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

h1 { font-size: large; }
h2 {
	font-size: medium;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-top: 5px;
	margin-bottom: 5px;
}
h3 {
	font-size: small;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-top: 5px;
	margin-bottom: 5px;
}

:link { color: rgb(0, 0, 153) }  /* for unvisited links */
:visited { color: rgb(153, 0, 153) } /* for visited links */
a:active { color: rgb(255, 0, 102) } /* when link is clicked */
a:hover { color: rgb(0, 96, 255) } /* when mouse is over link */


