/* Color reference -------------------------------------------- */
/* b22222 == firebrick (red)  --  variable color                */
/* ffe1e1 == NON-STANDARD pale pink  --  variable color         */
/* cd5c5c == indianred (red)                                    */
/* 2f4f4f == darkslategray                                      */
/* ffffff == white                                              */
/* 000000 == black                                              */

/* Basic page coloring ---------------------------------------- */
body,table,tr,td,th
   { 
   color: #000000;
   background-color: #ffffff;
   }
/* Link colors ------------------------------------------------ */
a:link, a:visited
   { 
   color: #b22222;
   }
a:hover, a:active
   {
   color: #cd5c5d;
   }

/* Search results table --------------------------------------- */
/* -- table headings */
table.mediaListing th
   {
   background-color: #b22222;
   }
/* -- link color in table headings */
table.mediaListing th, table.mediaListing th a:link, table.mediaListing th a:visited
   {
   color: #ffffff;
   }
/* -- link colors in table proper */
table.mediaListing a:link, table.mediaListing a:visited
   {
   color: #2f4f4f;
   }
table.mediaListing a:hover, table.mediaListing a:active
   {
   color: #cd5c5c;
   }
/* -- odd row shading */
table.mediaListing tr.o td
   {
   background-color: #ffe1e1;
   }
/* -- even row shading */
table.mediaListing tr.e td
   {
   background-color: #ffffff;
   }

/* Data input table ------------------------------------------- */
/* -- left cells */
table.dataInput td.field,
table.dataInput td.fieldrequired
   {
   color: #b22222;
   }
/* -- right cells */
table.dataInput td.data
   {
   }

/* Navgation & Footer bar ------------------------------------------- */
table.navigation
   {
   border: thin solid #b22222;
   }
table.footer
   {
   border-top: thin solid #b22222;
   }

td.o, td.o a, td.o a:visited, td.o a:link, td.o a:active, 
td.oskinny, td.oskinny a, td.oskinny a:visited, td.oskinny a:link, td.oskinny a:active,
table.footer td.quotelink, td.quotelink a, td.quotelink a:visited, td.quotelink a:link, td.quotelink a:active
   {
   color: #ffffff;
   background-color: #b22222;
   }
td.e, td.e a, td.e a:visited, td.e a:link, td.e a:active, 
td.eskinny, td.eskinny a, td.eskinny a:visited, td.eskinny a:link, td.eskinny a:active,
table.footer td.quote, td.quote a, td.quote a:visited, td.quote a:link, td.quote a:active
   {
   color: #b22222;
   }

/* Box around "look here!" paragraphs ------------------------------------------- */
p.infoBox
   {
   border: 1px solid #b22222;
   }

