/* Introduction - this is a general style sheet for all pages - to use it paste the following HTML code into the HEAD of your HTML document: <LINK REL="stylesheet" TYPE="text/css" HREF="/stylesheet.css"> - four points will regulate the appearance of the text */

/* 1 out of 4 - background set for anything between <BODY> tags */

body
	{
	background-color:#ffffff;
	background-image:url("guitar.gif");
	}

/* 2 out of 4 - headings set to Arial or an alternative sans-serif font and centred */

h1
	{
	font-family: arial, verdana, helvetica, sans-serif;
	text-align: center;
	}

h2
	{
	font-family: arial, verdana, helvetica, sans-serif;
	text-align: center;
	}

h3
	{
	font-family: arial, verdana, helvetica, sans-serif;
	text-align: center;
	}

h4
	{
	font-family: arial, verdana, helvetica, sans-serif;
	text-align: center;
	}

/* 3 out of 4 - sets the numbering system for numbered ordered lists to decimal numbers then lower case alphabet for a list within a list */

ol
	{
	font-weight: bold;
	list-style-type: decimal;
	}

ol ol
	{
	list-style-type: lower-alpha;
	}

/* 4 out of 4 - make links stand out */

a:link
	{
	text-decoration: none;
	color:#990000;
	}

a:hover
	{
	text-decoration: none;
	color:#660000;
	}

a:visited
	{
	text-decoration: none;
	color:#cc0000;
	}
