/* $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
  {
    margin: 0 0 0 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/moleclues_tabs/tab-bar.png) repeat-x left bottom; */
  }

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

ul.primary li.tab-1 {
	position: relative;
	z-index: 101;
}

ul.primary li.tab-2 {
	position: relative;
	z-index: 100;
}

ul.primary li.tab-3 {
	position: relative;
	z-index: 99;
}

ul.primary li.tab-4 {
	position: relative;
	z-index: 98;
}

ul.primary li.tab-5 {
	position: relative;
	z-index: 97;
}

ul.primary li.tab-6 {
	position: relative;
	z-index: 96;
}

ul.primary li.tab-7 {
	position: relative;
	z-index: 95;
}

ul.primary li.tab-8 {
	position: relative;
	z-index: 94;
}



  ul.primary li.tab-2,
  ul.primary li.tab-3,
  ul.primary li.tab-4,
  ul.primary li.tab-5,
  ul.primary li.tab-6,
  ul.primary li.tab-7,
  ul.primary li.tab-8
  {
    float: left;
    margin-left: -24px;
    padding: 0;
  }

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

  ul.primary li a .tab
  {
    display: block;
    height: 44px; /* 24px (parent) - 4px (padding) */
    margin: 0;
    padding: 0px 26px 0 6px;
    border-width: 0;
    line-height: 51px;
    background: url(images/moleclues_tabs/tab-right.png) no-repeat right -59px;
  }

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

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

  ul.primary li.active {
	position: relative;
	z-index: 666666;
}

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

  ul.primary li.active a .tab,
  ul.primary li.active a:hover .tab
  {
    background: url(images/moleclues_tabs/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;
	height: 40px;
/*    background: url(images/tab-secondary-bg.png) repeat-x left bottom;*/
	float:left;
	margin-top: 3px;
	width: 680px;
	height: 55px;
  }

  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;
  }
