/*
 * '99 R.C. main style sheet
 * =========================
 *
 * Set a reasonable body font - simple global property, easy
 * for users to override.
 */

BODY
{
  font-family: homerton, helvetica, arial, sans-serif;
  font-size:   11.5pt;
}

/* Stop MSIE putting unrequested paragraph breaks after closing form tags */

FORM.searchform
{
  padding: 0pt 0pt 0pt 0pt;
  margin:  0pt 0pt 0pt 0pt;
}

/* Light blue border on three sides for the search bar and location strip.
 * The bottom border is actually done using the old "1x1 blank image in
 * coloured table cell" hack, because then we can have the "tabs" running
 * into the bar without a border line above them (looks nasty). It also
 * looks pretty good with just the underlying "old-style" border in web
 * browsers that don't support CSS.
 */

TABLE.searchbar
{
  padding:      0pt 0pt 0pt 0pt;
  border-top:   1px solid #a9d8ff;
  border-left:  1px solid #a9d8ff;
  border-right: 1px solid #a9d8ff;
}

/* Same thing, but designed to hang underneath the "tabs" */

TABLE.searchbar_under
{
  padding:       0pt 0pt 0pt 0pt;
  border-bottom: 1px solid #a9d8ff;
  border-left:   1px solid #a9d8ff;
  border-right:  1px solid #a9d8ff;
}

/* Tab padding area - thin border on bottom of cell; tab middle section -
 * thin border on top of cell. The edges are handled by cells containing
 * simple images.
 */

TD.tabmid
{
  padding:    0pt 0pt 0pt 0pt;
  border-top: 1px solid #a9d8ff;
}

TD.tabpad
{
  padding:       0pt 0pt 0pt 0pt;
  border-bottom: 1px solid #a9d8ff;
}

/* Main body text - background image and indent */

DIV.main
{
  margin:     12pt 0pt 0pt 0pt;
  padding:    0pt  0pt 0pt 70pt;
  background: url(/nines_archive/images/left_strip.png) top left no-repeat;
}

DIV.content
{
  margin:      0pt 0pt 0pt 0pt;
  padding:     0pt 0pt 0pt 5pt;
  border-left: 1px solid #a9d8ff;
}

/* Light blue all-round border for footer */

TABLE.footer
{
  padding: 0pt 0pt 0pt 0pt;
  border:  1px solid #a9d8ff;
}

/* Grey table cells for Ball feedback form */

TABLE.ballfeedback TD
{
  background-color: #EEEEEE;
}


