a			{ color: #000099; text-decoration: underline; font-weight: normal; }
a:hover		{ background-color: #DDDDDD; }
a:active	{ background-color: #DDDDDD; }

a.menu	 	{ text-decoration: none; }

/*	lit is used by the link to www.literate.co.uk wherever it is used on the page */
a.lit		 	{ color: #000000; text-decoration: none; }
a.lit:hover		{ background-color: #CCCCCC; }
a.lit:active	{ background-color: #CCCCCC; }

/*	fon sets up the font etc for the text sizer. */
a.fon			{ color: #000000; background-color: #CCCCCC; font-weight: normal; text-decoration: none; border: 1px solid #990000; padding-left: 4px; padding-right: 4px; padding-top: 2px; padding-bottom: 2px; }
a.fon:hover		{ color: #000000; background-color: #FFFFFF; }

body	{
		 background-color: #CC0000;
		 scrollbar-base-color: #DDBBBB;
		}
/*
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)
*/