/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .kartahide {
 display:none;
}

/*--------------------------------------------------
  .zakladki = before the zakladki interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.zakladki {
}
.tabberlive {
 margin:1px 1px 1px 1px;
 padding:1px 0px 0px 0px;
}

/*--------------------------------------------------
  ul.zakladka = the tab navigation list
  li.zaklaktywna = the active tab
  --------------------------------------------------*/
ul.zakladka
{
  margin:0;
  padding: 3px 0;
  border-bottom: 1px solid #949494;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

ul.zakladka li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.zakladka li a
{
 padding: 3px 4px;
 margin-right: 2px;
 border: 1px solid #949494;
 border-bottom: none;
 background: #DDE;
 text-decoration: none;
 font-weight: bold;
 color:#5D5D5D;
}

ul.zakladka li a:link
{
 color: #5D5D5D;
 background: #ECECEC;
 border-color: #949494;
 font-weight: bold;
 text-decoration: none;
}
ul.zakladka li a:visited
{
 color: #5D5D5D;
 background: #ECECEC;
 border-color: #949494;
 font-weight: bold;
 text-decoration: none;
}

ul.zakladka li a:hover
{
 color: #C12C3F;
 background: #ECECEC;
 border-color: #949494;
 font-weight: bold;
 text-decoration: none;
}

ul.zakladka li a:active
{
 color: #5D5D5D;
 background: #F2F2F2;
 border-color: #949494;
 font-weight: bold;
 text-decoration: none;
}


ul.zakladka li.zaklaktywna a
{
 background-color: #FFFFFF;
 border-bottom: 1px solid #FFFFFF;
}

ul.zakladka li.zaklaktywna a:hover
{
 color: #C12C3F;
 background: #FFFFFF;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .karta = the tab content
  Add style only after the zakladki interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .karta
{
  background-color:#FFFFFF;
  padding:2px;
  border:1px solid #949494;
  border-top:0;
 /* 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 */
.tabberlive .karta h2 {
 display:none;
}
.tabberlive .karta h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .karta {
 height:200px;
 overflow:auto;
}
