/********************************************************************************
                Tabber
********************************************************************************/

/*--------------------------------------------------
  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 {
background: #D6D6D8;
}
.tabberlive {
padding:15px 0 3px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
 margin:0;
 padding: 1px 0;
 font: bold 12px; /* Verdana, sans-serif*/
}
*html ul.tabbernav{  /* ie6 only */
 padding: 2px 0;
}
*+html ul.tabbernav{  /* ie7 only */
 padding: 2px 0;
}
ul.tabbernav li {
 list-style: none;
 margin: 0;
 display: inline;
}
ul.tabbernav li a { /* inactive tabs */
background-color:#fff;
border:1px solid #ccc;
color:#666769;
font-size:11px;
padding:5px;
font-weight: bold;
}
ul.tabbernav li.tabberactive a{ /* active tab */
background-color:#666769;
border:1px solid #666769;
color:white;
font-size:11px;
padding:5px;
}
ul.tabbernav a:hover {
background:#666769;
text-decoration:none;
color:#fff;
}
ul.tabbernav {
 margin:0 5px !important;
 padding: 3px 0 0 5px !important;
 font: bold 12px Verdana, sans-serif;
}



/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
background:none repeat scroll 0 0 #FFFFFF;
margin:10px;
padding:10px;
border: 1px solid #CCCCCC;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

.tablist {
 font-size:.8em;
}
.tabberlive h3 { /* hide std widget titles */
display:none;
}

ul.tabbernav li { /* hide bullets from tab headings */
background:none;
padding:5px 5px 5px 0;
list-style:none;
}