/******************************************************************************
 * PromotionBanner.css
 *
 * RealPatterns Web Application Framework :: Promotion Banner
 *
 * Copyright 2007 RealPatterns, Inc.  All rights reserved.
 *
 * A Promotion Banner is used for displaying a promotional statement which
 * may include an image, copy, or both. A banner, in general, usually runs
 * from side to side. Layout is accomplished with a single-row, two-cell
 * table element.
 *
 * Color map:
 * ----------
 * rgb(50, 50, 50);     (Dark Gray)
 */

/******************************************************************************
 * Promotion Banner.
 * Apply to table element containing promotion's logo and copy.
 * 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).
 */
.PromotionBanner {

  width: 700px;
  height: 144px;
  z-index: 10;
  text-align: center;
  vertical-align: middle;

  color: rgb(50, 50, 50);
  margin-top: 16px;
  padding: 0px 0px 0px 0px;
  font-size: 12px;
  font-family: sans-serif;
}

/******************************************************************************
 * Promotion Banner::Icon.
 * Apply to cell containing promotional image.
 */
.PromotionBannerIcon {

  border: none;
  z-index: 10;
  text-align: center;
  vertical-align: middle;

  color: rgb(50, 50, 50);
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 12px;
  font-family: sans-serif;
}

/******************************************************************************
 * Promotion Banner::Copy.
 * Apply to cell containing promotional copy.
 */
.PromotionBannerCopy {

  border: none;
  z-index: 10;
  text-align: left;
  vertical-align: middle;

  color: rgb(50, 50, 50);
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 12px;
  font-family: sans-serif;
}

/******************************************************************************
 * Promotion Banner::Link.
 * Apply to promotional links.
 */
.PromotionBannerLink {

  border: none;
  z-index: 10;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;

  color: rgb(50, 50, 50);
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 12px;
  font-family: sans-serif;
}
