/* this is a comment */

/* help on all the elements and settings available from www.w3schools.com under the CSS tutorial */
/* once you get the hang of it, the full list of settings is under the LHS link called "CSS2 References" */

hr
{
	color:	#808080;
}

body
{
	background-color: #C0C0C0;
}

h1,h2,h3,p,hr
{
	margin-left:	20px;
	margin-right:	20px;
}

h4
{
	margin-bottom:	3px;
}

/* quotes are optional on all items above but help if the font say had spaces in it (e.g. "times new roman") */


a:link {color: #0000C0}		/* unvisited link */
a:visited {color: #C000C0}	/* visited link */
a:hover {color: #00FFFF}	/* mouse over link */
a:active {color: #FF0000}	/* selected link */

