a:link 		{ color: #FFFFFF; text-decoration: underline; font-weight: bold; }
a:visited	{ color: #FFFFFF; text-decoration: underline; font-weight: bold; }
a:hover		{ color: #CB0732; text-decoration: underline; font-weight: bold; background-color: #FFFFFF; }
a:active	{ color: #FFFFFF; text-decoration: underline; font-weight: bold;}

a.menu:link 	{ color: #000099; text-decoration: underline; }
a.menu:visited	{ color: #990099; text-decoration: underline; }
a.menu:hover	{ color: #990000; text-decoration: underline; background-color: #FFFFFF; }
a.menu:active	{ color: #990000; text-decoration: underline; background-color: #FFFFFF; }

/*	lit is used by the link to www.literate.co.uk wherever it is used on the page */
a.lit:link	 	{ color: #CCCCCC; text-decoration: underline; }
a.lit:visited	{ color: #CCCCCC; text-decoration: underline; }
a.lit:hover		{ color: #000000; text-decoration: underline; background-color: #FFFFFF; }
a.lit:active	{ color: #000000; text-decoration: underline; background-color: #FFFFFF; }

/*	fon sets up the font etc for the text sizer. */
a.fon:link	 	{ color: #000099; background-color: #FFFFFF; text-decoration: none; border: 1px solid #990000; padding: 2px; font-weight: normal;}
a.fon:visited	{ color: #000099; background-color: #FFFFFF; text-decoration: none; border: 1px solid #990000; padding: 2px; font-weight: normal;}
a.fon:hover		{ color: #000099; background-color: #CCCCCC; text-decoration: none; border: 1px solid #990000; padding: 2px; font-weight: normal;}
a.fon:active	{ color: #990000; background-color: #FFFFFF; text-decoration: none; border: 1px solid #990000; padding: 2px; font-weight: normal;}

body	{
		 background-color: #FFFFFF;
		 scrollbar-base-color: #CB0720;
		}
/*
Can also set individual scrollbar colours as follows:
  	scrollbar-face-color: #0000FF;
	scrollbar-highlight-color: #FFFFFF;
	scrollbar-shadow-color: #666666;
    scrollbar-3dlight-color: #CCCCCC;
    scrollbar-arrow-color: #000000;
    scrollbar-track-color: #99DDFF;
    scrollbar-darkshadow-color: #000000;

Background image can be added and then adjusted as follows:
	background-image: url('../images/bg4.jpg');									(url address is relative to css file)
	background-repeat: repeat;													(repeat as standard, same as omitting)
	background-repeat: repeat-y;												(repeat vertical only)
	background-repeat: repeat-x;												(repeat horizontal only)
	background-repeat: no-repeat;												(show once only)
	background-position: bottom center;  										(first word: top, center or bottom.  Second word: left, center or right)
																				(can also be percentage: 25% 75% - first horizontal, second vertical top left = 0% 0%)
																				(or positioned in px: 100px 50px - first horizontal, second vertical top left = 0px 0px)
	background-attachment: fixed; 												(no scroll with page)
	background: #FFFFFF url('../images/bg4.jpg') no-repeat fixed top center; 	(full declaration all on one line)
*/