<THIS CSS STYLE SHEET IS LINKED TO THE INDEX FILE FOR THE ARCHIVE PAGE>


	*, #content :first-child, #content :last-child 
	{
		margin: 0;
	}

	body {
		font: 300 15px/1.2 "Helvetica Neue", Helvetica, Arial, sans-serif;
		background:teal;   			 <! changes the colour of the background to the tabs at very top of page.  Note use same colour for border of table at bottom>
		margin: 20px;
	}
	th {
		background-color:teal;			<! controls the background colour of the headings used in tables>
		color:white;			<! controls the colour of the actual heading text: note white on dark looks good but 
						may have to resort to putting (font color=white against the particular line in the index file)>
		font:courrier;
		
	}  				
	td {
		background-color:lightcyan;        		<! controls the background colour of the text lines within tables>                 
		color:black;			<! controls the colour of the main text within tables>
	} 				 
	h1 {
		margin-bottom: 20px;
		color:#fff;       			<!  makes no difference;>
		text-transform: uppercase;
		font-size: 55px;
		font-weight: 100;
		letter-spacing: 30px;
		text-shadow: 3px 3px 5px #000;
	}
	nav ul {
		list-style: none;
		padding: 0 0 0 10px;
		min-width: 460px;			<! No noticeable effect>
	}
	nav li {
		float: left;
		position: relative;
		height: 30px;
		border-radius: 10px 30px 0 0;
		margin-left: -10px;
		text-shadow: 1px 1px 0 #bbb;
		box-shadow: 0px 0px 10px rgba(0,0,0,.5);
		transition: .2s;
	}
	nav a {
		display: block;
		position: relative;
		width: 90px;
		height: 20px;
		padding: 6px 10px 20px 0;
		border-radius: 10px 30px 0 0;
		background:lightcyan;			<! changes colour of all tabs except for the first (selected) one see 4 paras down>
		color:blue;				<! no noticeable effect; WAS444;>
		text-align: center;
		text-decoration: none;
		transition: .2s;
	}
	nav li:hover {
		z-index: 1;
	}
	nav li:hover a {
		background: #fff;			<! Changes mouseover colour of the tabs>
		color:white;			<! makes no difference;>
	}
	#selected {
		z-index: 2;
	}
	#selected a {
		z-index: 3;
		background:lightcyan;           		 <!  Changes colour of the first (selected) tab>
		color:white;    			 <! was #000;>
		text-shadow: none;
		font-weight: 500;
	}
	#content {
		position: relative;
		z-index: 1;
		clear: both;
		min-width: 420px;
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0px 0px 10px rgba(0,0,0,.5);
		background: lightcyan;    		<determines background colour of the banner block;>
	}
	#content p {
		margin: 20px 0;
	}
		



