/******************************************************************************
 * Document.css
 *
 * RealPatterns Web Application Framework :: Document
 *
 * Copyright 2007 RealPatterns, Inc.  All rights reserved.
 *
 * Color map:
 * ----------
 * rgb(50, 50, 50);     (Dark Gray)
 * rgb(100, 100, 100);  (Mid Gray)
 * rgb(255, 255, 255);  (White)
 */

/******************************************************************************
 * Document.
 * Apply to document's body element.
 */
.Document {

  color: rgb(100, 100, 100);
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 12px;
  font-family: sans-serif;
  background-color: rgb(255, 255, 255);
  background-image: none;
}

/******************************************************************************
 * Document::Header.
 * Dimensions have been set to fit on US Letter paper with a 1/2" margin
 * (7.5in x 96px/in - 20px; 1.5in x 96px/in).
 */
.DocumentHeader {

  width: 700px;
  height: 144px;
  text-align: right;
  padding-bottom: 6px;
  margin-bottom: 16px;
  vertical-align: top;
  position: relative;
  z-index: 10;
}

/******************************************************************************
 * Document::Header Item.
 * Apply to nested header elements.
 */
.DocumentHeaderItem {

  text-align: left;
  vertical-align: top;
}

/******************************************************************************
 * Document::Content.
 * Dimensions have been set to fit on US Letter paper with a 1/2" margin
 * (7.5in x 96px/in - 20px; 5.25in x 96px/in).
 */
.DocumentContent {

  width: 700px;
  height: 556px;
  position: relative;
  z-index: 10;
}

/******************************************************************************
 * Document::Content Item.
 * Apply to nested content elements.
 */
.DocumentContentItem {

  color: rgb(50, 50, 50);
  text-align: left;
  vertical-align: top;
}

/******************************************************************************
 * Document::Footer.
 * Dimensions have been set to fit on US Letter paper with a 1/2" margin
 * (7.5in x 96px/in - 20px; 0.5in x 96px/in).
 */
.DocumentFooter {

  width: 700px;
  height: 48px;
  font-size: 10px;
  font-family: sans-serif;
  color: rgb(255, 255, 255);
  margin-top: 16px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/******************************************************************************
 * Document::Footer Item.
 * Apply to nested footer elements.
 */
.DocumentFooterItem {

  font-size: 10px;
  font-family: sans-serif;
  padding: 2px 4px 2px 4px;
  text-align: center;
  vertical-align: middle;
}
