/* As I am new to .css files, remember: Use AMERICAN Spellings!!! */
/* for COLOR, GRAY etc (apart from lightgrey!)                    */
/* NEW STYLESHEET FOR MAY 2010 DJ WEBSITE                            */

/* backgrounds - all a shade of gray */
body,table,form {background-color: white;}

/* font family to be used for normal text */
body,table,form,p {font-family: verdana,arial,"sans serif";}

/* font family to be used for headings text */
h1,h2,h3,h4,h5,h6 {font-family: verdana,arial,"sans serif";}

/* h1 headings used for main page headings, black, centred, 20 point */
h1 {color: white; font-size: 20pt; text-align: left;}

/* h2 headings used for "date updated" sub-heading */
h2 {color: black; font-size: 16pt; text-align: left;}

/* h3 headings used for section sub-heading */
h3 {color: black; font-size: 16pt; text-align: left;}

/* h4 headings used for left margin sub-heading */
/* same as h3, but left justified and red       */
h4 {color: red; font-size: 16pt; text-align: left;}

/* p paragraph text point size and colour */
body,p {font-size: 10pt; color: black;}

/* ul and ol (unordered and ordered lists */
ul,ol {font-size: 10pt; color: black;}

/* table text point size and colour (could be combined, but this gives */
/* me separate control if I need it over paragraph, table, forms...)   */
table {color: black; font-size: 10pt; background-color: white; border-collapse: collapse;}

/* forms text point size and colour */
form  {color: black; font-size: 10pt;}

/* a anchor colours */
a:link    {color: blue}
a:visited {color: purple}
a:hover   {color: black}
a:active  {color: dimgray}

