
/* this changes the way links (anchors) look  */


a:link {color: blue; text-decoration: none;}
a:visited {color: purple; text-decoration: none;}
a:hover {font-weight: bold; text-decoration: none;}
a:focus {background-color: yellow;}
a:active {color: red; text-decoration: none;}












/* Creates a headline 1 in green */

h1 	{
    color: #008000;
    font-family:Verdana; sans-serif;
    font-size:300%;
    text-align: center;
	}

/* Creates a headline 2 in dark goldenrod */

h2 	{
    color: #B8860B;
    font-family:Verdana; sans-serif;
    font-size:120%;
	}

/* Creates a headline 3 in dark khaki */

h3 	{
    color: #BDB76B;
    font-family:Verdana; sans-serif;
    font-size:100%;
	}

/* Creates a headline 4 in green */

h4 	{
    color: #008000;
    font-family:Verdana; sans-serif;
    font-size:90%;
	}


/* Creates a headline 5 in indigo */
h5 	{
    color: #4B0082;
    font-family:Verdana; sans-serif;
    font-size:75%;
	}



/* Creates a paragraph with a grey background, a line, and centred text */

p.boxed {
	background-color: #E0E0E0;
	margin: 20px;
	padding: 20px;
	border-style: solid;
	border-width: 2px;
	text-align: center;
	}


/* Creates blue text, centred */
p.centred {
	text-align:center;
	color: blue;
	}


/* Makes the Body font to be Verdana (or default to a sans serif font), slightly reduced in size from normal because Verdana is a big font, and adds a left-margin */

body {

	font-family: Verdana; sans-serif;
	font-size: 83%;
	margin-left: 100px;
	margin-right: 80px;
}


bl	{
	font-weight: bold;
	}