/* $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 {
}
.tabberlive {
 margin-top:1em; 
 margin-left:6px; 
 margin-right:6px; 
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #C5C496;
 font: bold 1.5em Arial,Helvetica,sans-serif;
}

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

ul.tabbernav li a
{
 padding: 3px 0.8em 4px 0.8em;
 margin-left: 2px;
 border: 1px solid #C5C496;
 border-bottom: none;
 background: #4D4D02 url(../img/bgtab0.gif);
 text-decoration: none;
-webkit-border-top-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-moz-border-radius-topleft: 6px;
-moz-border-radius-topright: 6px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

ul.tabbernav li a:link { color: #EBECD7; }
ul.tabbernav li a:visited { color: #EBECD7; }

ul.tabbernav li a:hover
{
 color: #FFFF99;
 background: #C5C496 url(../img/bgtab1.gif);
 border-color: #484824;
}

ul.tabbernav li.tabberactive a
{
 color: #666633;
 font: bold 1.2em Arial,Helvetica,sans-serif;
 background: #FFFEDF;
 border-top: 2px solid #B5871E;
 border-bottom: 1px solid transparent;
 padding-bottom: 4px !important;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #666666;
 border-color: #484824;
 border-top: 2px solid #B5871E;
 border-bottom: 1px solid transparent;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin-bottom:12px;
 padding:8px;
 background: #FFFEDF;
 border: 1px solid #C5C496;
 border-top:none;
 /* If you don't want the tab size changing whenever a tab is changed you can set a fixed height */
 /* height:440px; */
 /* 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 {
 margin: 18px 10px 24px 10px;
 border-bottom: 2px solid #CCCC99;
 /* font: normal 6em "Edwardian Script ITC","Times New Roman",Times,serif; */
 font: normal 6em/.7em Savoy,"Times New Roman",Times,serif;
 color:#808000;
 /* text-shadow: 3px 3px 3px #E0DCB4; */
}

.tabberlive .tabbertab h3 {
 /* display:none; */
 display: inline-block; 
 margin: 8px 0 0 -12px;  
 padding-bottom: 0; 
 color: #CE7B00; 
 font: bold 1.8em/1em Arial,Helvetica,sans-serif; 
 border: none; 
 border-bottom: 1px solid #CE7B00;
}

.tabberlive .tabbertab h4 {
 margin-left:10px;
 text-decoration: underline;
}

.menucont { margin-left:12px; padding:10px; padding-top:0; font: normal 16px Arial,Helvetica,sans-serif; }
.menucont b { color: #555; font: bold 1.3em Arial,Helvetica,sans-serif; line-height: 1.1em; }
.menucont i { color: #000; font: bold 1 Arial,Helvetica,sans-serif; }
.menucont .sub { margin-left:-6px; color: #333333; font: bold 12px Arial,Helvetica,sans-serif; }

/* 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;
}

