/**
 * @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.)
 */


/* -----------------------------------------------------------------------------------------
>>>  ADMIN NODE VIEW / EDIT TABS  <<<
------------------------------------------------------------------------------------------*/
/*Different tab handling on front*/
.front #main > #content .section .tabs {
  width: 875px;
  margin: 0 auto;
  border: none;
  padding: 20px 0;
}

#main > #content .section .tabs {
  font-size: 0.9em;
  padding: 20px 0 10px;
  display: block;
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
#main > #content .section  .tabs ul.primary {
  border: none;
  padding: 0;
  font-size: 0.9em;
  margin: 5px 0;
}
#main > #content .section  .tabs ul.primary li a:link,
#main > #content .section  .tabs ul.primary li a:visited {
        background-color: #ccc;
        color: #333;
        padding: 6px 16px;
        -moz-border-radius: 12px;
        -webkit-border-radius: 12px;
        border-radius: 12px;
        border: none;
        text-transform: uppercase;
}
#main .tabs ul.primary li a:hover {
  background-color: #fff;
}

#main > #content .section  .tabs ul.primary li.active a:link,
#main > #content .section  .tabs ul.primary li.active a:visited,
#main > #content .section  .tabs ul.primary li.active a:hover {
  background-color: #760a0a;
  color: #f3f3f3;
  font-weight: bold;
  cursor: default;
}


/*Secondary Nav*/
#main > #content .section  .tabs ul.secondary {margin:0;padding: 10px 0;border: none;}
#main > #content .section  .tabs ul.secondary li {padding: 0;}
#main > #content .section  .tabs ul.secondary li a:link,
#main > #content .section  .tabs ul.secondary li a:visited {
color: #f3f3f3;
        padding: 6px 10px 4px 10px;
}

#main > #content .section  .tabs ul.secondary li a:hover {color: #9edae7;}
#main > #content .section  .tabs ul.secondary li.active a:link,
#main > #content .section  .tabs ul.secondary li.active a:visited,
#main > #content .section  .tabs ul.secondary li.active a:hover 
{color: #c9af60;font-weight: bold;cursor: default;background: none;border: none;}

