/******************************************************************************
 * FormattedDate.css
 *
 * RealPatterns Web Application Framework :: Formatted Date
 *
 * Copyright 2007 RealPatterns, Inc.  All rights reserved.
 *
 * By using the FormattedDate Javascript class, long date strings can be
 * dynamically printed oo the document in several locales. Currently, English,
 * French, and Spanich locales (en_US, fr_CA, and es_ES) are supported. Layout
 * is accomplished with a span element.
 *
 * Color map:
 * ----------
 * rgb(65, 123, 161);   (Indigo)
 */

/******************************************************************************
 * Formatted Date.
 * Apply to span element containing formatted date string.
 */
.FormattedDate {

  border: none;
  z-index: 10;
  text-align: right;
  vertical-align: bottom;

  color: rgb(65, 123, 161);
  margin: 0px 0px 0px 0px;
  padding: 4px 4px 4px 4px;
  font-size: 10px;
  font-family: sans-serif;
}
