/* $Id: tabs.css,v 1.1 2008/02/15 16:22:09 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: 15px 5px;
  }

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

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

  ul.primary li a
  {
    display: block;
	  padding: 0px 5px;
	  color: #ccc;
	  background-color: #333;
	  border: 1px solid #666;
  }

  ul.primary li a:hover,
  ul.primary li.active a:hover
  {
    background-color: #333;
    border-color: #666;
    color: #fff;
  }
  ul.primary li.active a:hover
  {
    border-bottom: 1px solid #050505;
    background-color: #050505;
  }

  ul.primary li.active a
  {
      display: block;
      color: #ccc;
      background-color: #050505;
      border-color: #666;
      border-bottom: 1px solid #050505;
      font-weight: bold;
  }


  ul.secondary
  {
    margin: 0;
    padding: 0 0 0 5px;
    border-bottom: 1px solid #666;
    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 #666;
    text-decoration: none;
    color: #ccc;
    /* 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 #666;
    color: #fff;
    /* background: url(images/tab-secondary.png) repeat-x left top; */
  }
