/* $Id: tabs.css,v 1.2 2008/09/08 02:35:29 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 drupal6-reference.css, line 510.)
 *
 */

  div.tabs
  {
    /*background: url(images/tabs-left.gif) no-repeat left top;*/
    margin-left: -2px;
    margin-right: -2px;
    border-top: 1px solid #c6c7c8;
    border-bottom: 1px solid #c6c7c8;
    border-left: 1px solid white;
    border-right: 1px solid white;
    padding: 0 1px;
    text-shadow: 0 1px white;
  }

  ul.primary
  {
    background: url(images/highlight-back.gif);
    border-width: 0;
    border-left: 1px solid #d7d8d9;
    border-right: 1px solid #d7d8d9;
    border-top: 1px solid #d7d8d9;
    border-bottom: 1px solid #d7d8d9;
    height: 2.8em;
    line-height: 2.8em;
    padding: 0 1em;
    list-style: none;
    white-space: nowrap;
    margin: 0;
  }

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

  ul.primary li.tab-right
  {
    float: right;
  }

  ul.primary li a
  {
    display: block;
    padding: 0 1em;
    margin: 0;
    border-width: 0;
    text-decoration: none;
    background-color: transparent;
    color: #667480;
  }

  ul.primary li a .tab
  {
    display: block;
    margin: 0;
    padding: 0;
    border-width: 0;
  }

  ul.primary li a:hover
  {
    border-width: 0;
    background-color: transparent;
  }

  ul.primary li a:hover
  {
    color: #0D2840;
  }

  ul.primary li.active
  {
  }

  ul.primary li.active a
  {
    padding-bottom: 3px;
    background: transparent url(images/tab-notch.gif) no-repeat bottom center;
    background-color: transparent;
    border-width: 0;
    color: #0D2840;
  }

  ul.primary li.tab-important
  {
    background: transparent url(images/important-tab-back.gif) repeat-x top left;
    border-right: 1px solid #F0F1F2;
    border-left: 1px solid #F0F1F2;
  }


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

  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 #c0c0c0;
    text-decoration: none;
    color: #777;
    background: url(images/tab-secondary.png) repeat-x left -56px;
  }

  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: url(images/tab-secondary.png) repeat-x left bottom;
  }

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