/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabber h4 {
 clear: both;
}
.tabberlive {
 margin-top:1em;
 float: left;
 width: 310px;
 text-align: center;
}
.tabberlive p {
 text-align: left;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 4px 0 3px 0;
 border-bottom: 1px solid #cccccc;
 font-weight: bold;
 font-size: 12px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px .75em;
 margin-left: 3px;
 border: 1px solid #cccccc;
 border-bottom: 0px solid #cccccc;
 background: #ebe4f6;
 text-decoration: none;
 background-image: url(/images/tabberTabBG.gif);
 background-repeat: repeat-x;
 background-position: bottom left;
}

ul.tabbernav li a:link { color: #5c35b5; }
ul.tabbernav li a:visited { color: #5c35b5; }

ul.tabbernav li a:hover
{
 background: #d9cced;
 background-image: url(/images/tabberTabBG-hover.gif);
 background-repeat: repeat-x;
 background-position: bottom left;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
 background-image: none;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #5c35b5;
 background: white;
 border-bottom: 1px solid white;
 cursor: default;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding: 1.5em 1.5em .5em 1.5em;
 border:1px solid #cccccc;
 border-top:0;
 background-image: url(/images/tabberContentBG.gif);
 background-repeat: no-repeat;
 background-position: 5px 5px;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h4 {
 display:none;
}