/* The surrounding background to the page */
/* Also, the default text colour */
body { 
  background-color: white;
  color: black;
 }

/* "Peterborough Arts Cinema" header */
h1 { 
  background-color: RGB(226, 226, 226);
  color: white;
 }

/* Title of the page (Programme, About, etc) */
h2 { 
  color: white;
  background: rgb(51, 102, 153);
 }

/* Site navigation block on the left hand side of the page */
#sitenav { 
  background-color: rgb(51, 102, 153);
 }

/* Colour of the navigation bar enclosing block (borders, etc) */
#sitenav div { 
  border-color: rgb(51, 102, 153);
  background-color: rgb(51, 102, 153);
  color: RGB(187, 187, 187);
 }

#sitenav a { 
  border-color: rgb(51, 102, 153);
 }

/* Normal colour of navigation block */
#sitenav a:link { 
  background-color: rgb(51, 102, 153);
  color: white;
}

/* Colour of navigation block after visiting */
/* -same as above for navigation blocks      */
#sitenav a:visited { 
  background-color: rgb(51, 102, 153);
  color: white;
}

/* Colour change of block when mouse hovers over */
#sitenav a:hover { 
  background-color: rgb(226, 226, 226);
  color: rgb(51, 102, 153);
}

/* Colour of 'selected' navigation block element */
/* -probably wants to be the same as normal or   */
/* -looks a bit funny                            */
#sitenav a:active { 
  background-color: rgb(51, 102, 153);
  color: white;
}

/* Navigation block on the top right hand side of the page */
/* used for going forward and backward                     */
#filmnav span { 
  border-color: rgb(51, 102, 153);
  background-color: rgb(51, 102, 153);
  color: RGB(187, 187, 187);
 }

#filmnav a { 
  border-color: rgb(51, 102, 153);
 }

/* As for navigation bar above */
#filmnav a:link { 
  background-color: rgb(51, 102, 153);
  color: white;
}

#filmnav a:visited { 
  background-color: rgb(51, 102, 153);
  color: white;
}

#filmnav a:hover { 
  background-color: rgb(226, 226, 226);
  color: rgb(51, 102, 153);
}

#filmnav a:active { 
  background-color: rgb(51, 102, 153);
  color: white;
}

/* The seperator between the list of details on the right */
#details .title { 
  border-color: rgb(51, 102, 153);
 }

#filmname { 
  color: white;
  background: rgb(51, 102, 153);
 }

/* The background to the index to the films */
#programme { 
  background-color: RGB(226, 226, 226);
}

/* Programme index header */
th { 
  color: white;
 }

/* The background to the About page */
#about { 
  background-color: RGB(226, 226, 226);
 }

/* The background to the Links page */
#links { 
  background-color: RGB(226, 226, 226);
}

/* The footer at the bottom of the page */
#footer { 
  border-color: rgb(51, 102, 153);
  background-color: rgb(226, 226, 226);
  color: rgb(51, 102, 153);
}

/* The email address */
#footer a { 
  background-color: rgb(226, 226, 226);
  color: rgb(51, 102, 153);
}

/* The light background */
#main { 
  background-color: RGB(226, 226, 226);
}