   // Sports Injury Master Practitioner colour palette
   // Saves us typing the same magic number more than once
 
   var sky_='#B0E0FF', sea_='#0099CC', sea_dark_='#006699', grass_='#CC9966';
   var mount_dark_='#666699', mount_='#9999CC', rock_='#336633';
   var white_='#FFFFFF', lilac_='#C0C0FF', purple_= '#333366';

   // CSS styles:-

   document.write(
   '<style type=text/css>' +

   'table.backgrd  {width: 100%; height: 100%; border: 0}' +
   'table.backgrd0 {text-align: center; width: 100%; height: 100%; border: 0}' +
   'table.payload  {text-align: left;   width: 90%;  margin-top: 20px;  margin-left: 20px}' +
   'table.payload0 {text-align: center; width: 560px; margin-left: auto; margin-right: auto}' +

   'td             {vertical-align: top}' +
   'td.b0          {background-color: '+ sea_dark_   +' }' +
   'td.b1          {background-color: '+ sea_        +' }' +
   'td.b2          {background-color: '+ sky_        +' }' +
   'td.b3          {background-color: '+ mount_dark_ +' }' +
   'td.b4          {background-color: '+ mount_      +' }' +
   'td.b5          {background-color: '+ grass_      +' }' +
   'td.b6          {background-color: '+ rock_       +' }' +

   'img.big        {width:  480px; height: 360px; border: 0 }' +
   'img.small      {width:  160px; height: 120px; border: 0 }' +
   'img.news       {height:  17px; width:  36px; border: 0 }' +
   
   'a:link         {color: '+ sky_        +'; font: normal normal normal 10pt/10pt sans-serif}' +
   'a:visited      {color: '+ lilac_      +'; font: normal normal normal 10pt/10pt sans-serif}' +
   'a:hover        {color: '+ grass_      +'; font: normal normal normal 10pt/10pt sans-serif}' +

   'a:link.a2      {color: '+ sea_dark_   +'}' +
   'a:visited.a2   {color: '+ purple_     +'}' +
   'a:hover.a2     {color: '+ white_      +'}' +
 
   'td,p           {color: '+ white_  +'; font-size: 12pt; font-family: Comic Sans MS, sans-serif}' +

   'h1,h2,h3       {font-weight: bold}' +
   'h1             {font-size: 24 pt}'  +
   'h2             {font-size: 18 pt}'  +
   'h3             {font-size: 14 pt}'  +
   'ul             {list-style: circle}'  +
   '.c0            {color: '+ sea_dark_   +' }' +
   '.c1            {color: '+ sea_        +' }' +
   '.c2            {color: '+ sky_        +' }' +
   '.c3            {color: '+ mount_dark_ +' }' +
   '.c4            {color: '+ mount_      +' }' +
   '.c5            {color: '+ grass_      +' }' +
   '.c6            {color: '+ rock_       +' }' +

   '.right         {text-align: right; font-size: 9pt }'  +
   '.small         {font-size: 9pt }'  +

   '</style>'
   );



