/* $Id: peditortabs.css,v 1.1.1.1 2007-09-26 14:30:32 detain Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberplive .tabberptabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabberp {
}
.tabberplive {
 margin-top:2em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabberpnav
{
 margin:0px;
 margin-right:68px;
 padding: 3px 0;
 border-bottom: 0px solid #EC3577;
 font: bold 10px Verdana, sans-serif;
 width:auto;
 text-align:left;
}

ul.tabberpnav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabberpnav li a
{
 padding: 2px 0.5em;
 margin-left: 3px;
 border: 1px solid #F69BBC;
 background: #FCE0EB;
 text-decoration: none;
 border-bottom: 0px solid #EC3577;
}

ul.tabberpnav li a:link { color: #EC3577; }
ul.tabberpnav li a:visited { color: #EC3577; }

ul.tabberpnav li a:hover
{
 color: #EC3577;
 background: #FCE0EB;
 border: 1px solid #F69BBC;
 border-bottom: 0px solid #EC3577;
}

ul.tabberpnav li.tabberpactive a
{
 color: #FFFFFF;
 background-color: #F69BBC;
 border: 2px solid #E4145E;
 border-bottom: 2px solid #F69BBC;
}

ul.tabberpnav li.tabberpactive a:hover
{
 color: #FFFFFF;
 background: #F69BBC;
 border-bottom: 2px solid #F69BBC;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberplive .tabberptab {
 padding:0px;
 padding-bottom:0px;
 border:1px solid #EC3577;
 width:auto;
 text-align:left;
 background:#F69BBC;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberplive .tabberptab h2 {
 display:none;
}
.tabberplive .tabberptab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberplive#tab1 {
}
.tabberplive#tab2 {
}
.tabberplive#tab2 .tabberptab {
 height:200px;
 overflow:auto;
}

fieldset {
color:#FFFFFF;
font-weight:bold;
border:1px solid #EC3577;
}

fieldset table tr td {
color:#000000;
}
