/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

.tabber{
float:left;
}

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

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0px;
 padding-bottom: 0px;
 font: bold 10px Verdana, sans-serif;

}

ul.tabbernav li
{
 list-style: none;
 display: inline;
}

ul.tabbernav li a
{
 padding:5px;
 margin-right:1px;
 color:#87008C;
 background: url(../images/tab_bg_inactief.gif) no-repeat;
 text-decoration: none;
 text-align:center;
 border-right:1px solid #9c9c9c;
 width:93px;
 height:19px;
}

ul.tabbernav li a:link { color: #87008C; }
ul.tabbernav li a:visited { color:#87008C; }
ul.tabbernav li a:hover{
color: #000000;
border-right:1px solid #9c9c9c;
background: url(../images/tab_bg_inactief.gif) no-repeat;
width:93px; 
height:19px;
}

ul.tabbernav li.tabberactive a
{
 background: #87008c url(../images/tab_bg_actief.gif) no-repeat;
 color:#ffffff;
 width:93px;
 height:19px;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000000;
 background: url(../images/tab_bg_inactief.gif) no-repeat;
 border-right:1px solid #9c9c9c;
 width:93px;
 height:19px;

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin-top:3px;
 padding:0px;
 border-top:2px solid #87008C;
 width:488px;
 }
.tabbertab p{
padding:0;
margin-top:0;
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}



