/* 
** -----------------------------------------------------------------------------
** File:        railfuture-non-tiki.css
**
** Title:       Railfuture Non-Tiki Style Sheet - used for stand-alone pages
**
** Description: This is the Cascading Style Sheet (CSS) for the stand-alone
**              "readfile-php" facility on the Railfuture web-site and overrides
**              the tiki and the tiki-like CSS files.
**
**              Both the 'stand-alone' and 'tiki-like' pages call the same PHP
**              functions to display pages. However, these pages look different.
**              For example, on the "readfile.php" form fields the field label
**              and field info is close to the input field but on the tiki-like
**              pages everything is left justified.
**
**              With Cascading Style Sheets (CSS) it will use the last one found.
**              Therefore this "railfuture-non-tiki.css" must be specified after
**              the normal "railfuture-tiki-like.css" file.
**
**              Do NOT use '//' comments in a CSS file - they are not supported.
**              If a CSS definition appears not to work look for bad comments!
**
** Author:      Jerry Alderson, Billing Specialists Ltd.
**
** Copyright:   Billing Specialists Ltd. 2009-2014.
**
** Last change: 17th February 2014.
** -----------------------------------------------------------------------------
*/

body {
/* The following works on readfile.php because it has a body and no divisions:
  background-image: url( '../styles/railfuture/titlebar.png' );
*/
  background-color: #C0C0C0;  /* Light Grey */
  margin-top: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
}

/* Styles */

td.heading {
  /* Used in "readfile.php" for background to the wide logo in the header */
  background-color: #CCFFCC;  /* Green (Pale) */
  text-align: center;
}

td.inputlabel {
  /* Used in "readfile.php" to override version in tiki-like css file */
  text-align: right;
  font-style: bold; 
}

td.inputfield {
  /* Used in "readfile.php" to override version in tiki-like css file */
  background-color: #C0C0C0;  /* Grey (Light) */
}

td.inputrule {
  /* Used in "readfile.php" to override version in tiki-like css file */
  text-align: left;
  font-style: bold; 
}

td.warning {
  /* Used in "readfile.php" for background warning message at the bottom of the page */
  background-color: #FF9933;  /* Orange */
  text-align: center;
}

td.sectionbar {
  /* Used in "readfile.php" for header underneath the wide logo */
  background-color: #FFFF00;  /* Yellow */
  text-align: center !important;
  font-family: impact;
  font-size: 1.5em;
}

tr.normal-text {
  /* Used in "readfile.php" to override version in tiki-like css file */
}

tr.normal {
  font-family: verdana;
  font-size: 0.8em;
}

tr.superseded {
  /* Used on "readfile.php" to highlight a response that has been superseded  */
  color: red;
}

tr.replacement {
  /* Used on "readfile.php" to highlight a response that supersedes a previous one */
  color: blue;
}

a img {
  border: 0;
} 

/* End of file */