/* $Id: tabs.css,v 1.1.2.3 2007/11/29 00:51:00 johnalbin Exp $ */

/*
 * Tabs CSS
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal5-reference.css, line 510.)
 *
 */

div.tabs
{

}

ul.primary
{
  margin: 0;
padding: 0;
  border-width: 0;
  list-style: none;
  white-space: nowrap;

  background: #4C94BB;
}

ul.primary li
{
  float: left;
  margin: 0;
  padding: 0;
}

ul.primary li a, ul.primary li a:visited
{
  display: block;
  margin: 0;
  padding:  5px;
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #4C94BB;
}

ul.primary li a:hover
{
  border-width: 0;
  background: #cce0ec;
  color: #336699;
  text-decoration: none;
}

ul.primary li.active a.active
{
  border-width: 0;
  color: #336699;
  background: #cce0ec;
  text-decoration: none;
}

ul.secondary
{
  margin: 0;
  padding: 0 0 0 5px;
  border-bottom: none;
  list-style: none;
  white-space: nowrap;
  background: #cce0ec;
}

ul.secondary li
{
  float: left;
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none;
}

ul.secondary a
{
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #336699;
  text-decoration: none;
  font-weight: bold;
  color: #336699;
  background: none;
}

ul.secondary a .tab
{
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover
{
  background: #4C94BB;
  color: #fff;
  border-color: #4C94BB;
  text-decoration: none;
}

ul.secondary a.active,
ul.secondary a.active:hover
{
  border: 1px solid #4C94BB;
  color: #fff;
  background: #4C94BB;
  text-decoration: none;
}

