/* $Id: tabs.css,v 1.1.2.4 2008/02/09 02:39:54 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
  {
    margin: 0 0 5px 0;
  }

  ul.primary
  {
    margin: 0;
    padding: 0 0 0 10px;
    border-width: 0;
    list-style: none;
    white-space: nowrap;
    line-height: normal;
/*     background: url(images/tab-bar.png) repeat-x left bottom; */
  }

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

  ul.primary li a
  {
    display: block;
    height: 20px;
    margin: 0;
    padding: 0 0 0 5px; /* width of tab-left.png */
    border-width: 0;
    font-weight: bold;
    text-decoration: none;
    color: #777;
    background-color: transparent;
/*     background: url(images/tab-left.png) no-repeat left -38px; */
  }

  ul.primary li a .tab
  {
    display: block;
    height: 18px; /* 24px (parent) - 4px (padding) */
    margin: 0;
    padding: 2px 5px 0 4px;
    border-width: 0;
    line-height: ¹8px;
/*     background: url(images/tab-right.png) no-repeat right -38px; */
  }

  ul.primary li a:hover
  {
    border-width: 0;
    background-color: transparent;
/*     background: url(images/tab-left.png) no-repeat left -76px; */
  }

  ul.primary li a:hover .tab
  {
/*     background: url(images/tab-right.png) no-repeat right -76px; */
  }

  ul.primary li.active a,
  ul.primary li.active a:hover
  {
    border-width: 0;
    color: #000;
    background-color: white;
/*     background: url(images/tab-left.png) no-repeat left 0; */
  }

  ul.primary li.active a .tab,
  ul.primary li.active a:hover .tab
  {
/*     background: url(images/tab-right.png) no-repeat right 0; */
  }

  ul.secondary
  {
    margin: 0;
    padding: 0 0 0 5px;
     border-bottom: 0px solid #c0c0c0; 
    list-style: none;
    white-space: nowrap;
/*     background: url(images/tab-secondary-bg.png) repeat-x left bottom; */
  }

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

  ul.secondary a
  {
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #777;
  }

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

  ul.secondary a:hover
  {
/*     background: url(images/tab-secondary.png) repeat-x left bottom; */
  }

  ul.secondary a.active,
  ul.secondary a.active:hover
  {
    border: 0px solid #c0c0c0;
    color: #000;
	background: white;
/*     background: url(images/tab-secondary.png) repeat-x left top; */
  }
