a:link 		{ color: #000099; text-decoration: underline; }
a:visited	{ color: #990099; text-decoration: underline; }
a:hover		{ color: #990000; text-decoration: underline; background-color: #DDDDDD; }
a:active	{ color: #990000; text-decoration: underline; background-color: #DDDDDD; }

a.menu:link 	{ text-decoration: none; background-color: #558AFF; }
a.menu:visited	{ text-decoration: none; background-color: #558AFF; }
a.menu:hover	{ text-decoration: none; background-color: #558AFF; }
a.menu:active	{ text-decoration: none; background-color: #558AFF; }

/*	lit is used by the link to www.literate.co.uk wherever it is used on the page */
a.lit:link	 	{ color: #999999; text-decoration: underline; }
a.lit:visited	{ color: #999999; 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;}

img.bullet		{color: #FFFFFF; border-style: none; border-width: 0px; margin-top: 0; margin-bottom: 0; margin-left: 0; margin-right: 10; }

body	{
		 background-color: #C1DA7C;
		 scrollbar-base-color: #558AFF;
		}
h1	{ color: #2424A6; text-decoration: underline; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 20pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }
h2	{ color: #2424A6; text-decoration: none; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 20pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }
h3	{ color: #2424A6; text-decoration: underline; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 18pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }
h4	{ color: #2424A6; text-decoration: none; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 18pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }
h5	{ color: #2424A6; text-decoration: underline; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 16pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }
h6	{ color: #2424A6; text-decoration: none; font-weight: bold; font-family:Comic sans MS, Verdana, Arial, Helvetica; font-size: 16pt; margin-top: 6px; margin-bottom: 12px; margin-right: 6px; margin-left: 6px; }

/*
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)
*/