/* $Id: tabs.css,v 1.2 2009/08/12 08:03:53 johnalbin Exp $ */

/**
 * @file
 * Tabs Styling
 *
 * 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 {
	width: 660px;
	margin: 0 auto;
} 

/** push some tabs into center **/
.not-logged-in.page-user div.tabs {
	margin-left: 250px;
}

ul.primary,
ul.secondary 
{
  height: 20px;
  margin: 0 0 7px 0;
  padding: 0;
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: none;
  font-size: .9em;
}

ul.primary { text-transform: uppercase; font-weight: 100; }
ul.secondary { text-transform: lowercase; font-weight: 100; }

ul.primary li,
ul.secondary li 
{
  float: left; /* LTR */
  margin: 0;
  padding: 0;
  border: none;
}

ul.primary li a,
ul.secondary li a 
{
  display: block;
  height: 26px;
  margin: 0;
  padding: 0;
  border-width: 0;
  font-weight: inherit;
  text-decoration: none;
  color: #777;
  background: none;
}

ul.primary li a .tab,
ul.secondary li a .tab 
{
  display: block;
  height: 12px;
  margin: 0 3px 0 0;
  padding: 4px 8px;
  border: 1px solid #ddd;
  line-height: 12px;
  background: none;
}

ul.primary li a:hover, 
ul.secondary li a:hover
{
  border-width: 0;
  background: none;
}

ul.primary li a:hover .tab,
ul.secondary li a:hover .tab
{
  background: none;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.secondary li.active a,
ul.secondary li.active a:hover 
{
  border-width: 0;
  color: #000;
  background: none;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab,
ul.secondary li.active a .tab,
ul.secondary li.active a:hover .tab 
{
  background: none;
}