/******************************************************************************
 * BookmarkBar.css
 *
 * RealPatterns Web Application Framework :: Bookmark Bar
 *
 * Copyright 2007 RealPatterns, Inc.  All rights reserved.
 *
 * A Bookmark Bar is used for providing easy access to special sections.
 * Layout is accomplished with a table element in which each cell contains
 * a single bookmark with its own copy, icon, and link.
 *
 * Color map:
 * ----------
 * rgb(50, 50, 50);     (Dark Gray)
 * rgb(65, 123, 161);   (Indigo)
 * rgb(96, 181, 238);   (Pastel Blue)
 * rgb(255, 255, 255);  (White)
 */

/******************************************************************************
 * Bookmark Bar.
 * Apply to table element containing bookmarks.
 */
.BookmarkBar {

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

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

/******************************************************************************
 * Bookmark Bar::Copy.
 * Apply to each cell of Bookmark Bar table.
 */
.BookmarkBarCopy {

  height: 24px;
  z-index: 10;
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid rgb(96, 181, 238);
  border-right: 1px solid rgb(65, 123, 161);

  color: rgb(96, 181, 238);
  margin: 0px 0px 0px 0px;
  padding: 0px 4px 0px 4px;
  font-size: 10px;
  font-family: sans-serif;
}

/******************************************************************************
 * Bookmark Bar::Icon.
 * Apply to any image or graphics representing the bookmark.
 */
.BookmarkBarIcon {

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

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

/******************************************************************************
 * Bookmark Bar::Link.
 * Apply to bookmark's link.
 */
.BookmarkBarLink {

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

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