/* $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!
  --------------------------------------------------*/
h2 { font-size:11px;}
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber { font-size:11px;
}
.tabber img { align: center;}
.tabberlive {
 margin-top:0;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
    margin:0px; padding:0px;  
    margin-top:5px;  
    margin-bottom:4px; 
}

ul.tabbernav li
{
    list-style:none;  
    display:inline;  
}

ul.tabbernav li a
{
    background-color:#1F1B19; 
    background-image:url(images/tab_off.jpg);  
    background-repeat:repeat-x;    
    background-position:bottom;   
    color:#9DB99A;  
    padding:8px 10px 8px 10px;  
    margin-right:2px;
    text-decoration:none;  
    font-size:9px;  
    font-family:Verdana, Arial, Helvetica, sans-serif;  
    font-weight:bold;  
    text-transform:uppercase;  
    border:1px solid #000000; 
}

ul.tabbernav li img
{
    align: center;
}

ul.tabbernav li a:link {}
ul.tabbernav li a:visited { }

ul.tabbernav li a:hover
{
    background-color:#2f343a;  
    border-color:#2f343a; 

}

ul.tabbernav li.tabberactive a
{
    background-color:#ffffff;  
    background-image:url(images/tab_on.jpg);  
    background-repeat:repeat-x;  
    background-position:top;  
    color:#282e32;  
    border:1px solid #464c54;   
    border-bottom: 1px solid #ffffff;   
}

ul.tabbernav li.tabberactive a:hover
{
    background-color:#ffffff;  
    background-image:url(images/tab_on.jpg);  
    background-repeat:repeat-x;  
    background-position:top;  
    color:#282e32;  
    border:1px solid #464c54;   
    border-bottom: 1px solid #ffffff; 

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
    background-color:#ffffff;  
    background-image:url(images/content_bottom.jpg);  
    background-repeat:repeat-x;    
    background-position:bottom;  
    padding:10px;  
    border:1px solid #464c54;    


 /* 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 */
.tabberlive .tabbertab h2 {
 display:none;
  font-size:12px;
}
.tabberlive .tabbertab h3 {
 display:none;
 
}

/* 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;
}

.tabbertab p { padding-bottom:10px; line-height:100%; }
.tabbertab ul { 
    margin:0px;  
    padding:0px; 
}
.tabbertab ul li { 
    list-style:none;  
    border-bottom:1px solid #d6dde0;  
    padding-top:2px;  
    padding-bottom:2px;  
    font-size:13px; 
}
.tabbertab ul li { 
    text-decoration:none;  
    color:#3e4346; 
} 
.tabbertab ul li:last-child {  
    border-bottom:none;  
}