/*   

27th August 2008 - Programmmer J.Travers
Code for creating access keys (hotkey) to allow 100% keyboard control of hyperlinks.

Citations:
This code source is modified between: 

Author: Stuart Robertson (June 16, 2003); A List Apart 
Page Title: A List Apart: Articles: Accesskeys: Unlocking Hidden Navigation 
[ Online ] Retrieved: 27th August 2008; 
from url: < http://www.alistapart.com/articles/accesskeys/ > 
Web page file name: < ALA Accesskeys.htm >Reference(s): accesskey 

and 

Author: McGrath, Mike; (2001). 
Title: HTML: in Easy Steps 
Printed UK: Southam, Warwickshire 
ISBN: 1-84078-048-7 
Reference(s): Ch.3. Emphasising Text 
Ch. 7. Following Links:accesskey 
Date referenced: July/August 2008 

and 
 
Weakley, Russ; (2006)
Sams Teach Yourself CSS: in 10 Minutes
Printed USA: Sams Publishing, Indianapolis, Indiana
ISBN: 0-672-32745-7

*/


a:hover:after, a:focus:after {
content: " [" attr(accesskey) "] ";
  }

a {	text-decoration: none;}

a:hover { text-decoration: underline;}

a:first-letter { text-decoration: underline;}
 


	ul#navigation
	{
		margin-left: 0;
		padding-left: 0;
		list-style-type: none;
		background: #036;
		float: left;
		width: 100%;
	}
	
	ul#navigation li { display: inline; }
	
	ul#navigation a
	{
		display: block;
		float: left;
		padding: .2em 1em;
		text-decoration: none;
		color: #fff;
		background: #036;
		border-right: 2px solid #fff;
	}
	
	ul#navigation a:hover
	{
		color: #000;
		background: #69C;
	}


