/* $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;
 /* Can't put the tab background here */
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
/* Can't put the tab background here */
}
.tabberlive {
/* Can't put the tab background here */
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list (the ENTIRE top row)
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
/* Controlls the top tab list */
 margin:0;
 /*padding: 0px .5em;*/
 border-bottom: 1px solid #000033;
 font: bold 12px Tahoma;
}

/*  To get these menu items all on to one line we'll insert this CSS rule */
ul.tabbernav li
{
 list-style: none;
 /*margin: 1px;*/
 display: inline;
 /*float:left;*/
}

/*--------------------------------------------------
  Right, we've got the menu items all lined up next to each other. 
  So now let's make them look good too. Our final CSS rule is:
  ul.tabbernav li a = the actual tab
  --------------------------------------------------*/
ul.tabbernav li a
{
 /*padding: 5px 1em;*/
 /*padding: 10px;*/
 /*margin-left: 3px;*/
 /*border: 1px solid #000033;*/
 /*border-bottom: 2px solid #000033;*/
 
 /* padding-right centers the links in the middle of the tabs. */
 padding-right: 5px;
 border-bottom: none;
 text-decoration: none;
 text-align: center;
 
 /* padding-top makes the li elements the heighth of the image.. */
 padding-top: 8px;
 /* background: #3399FF; */
 background: url(tabs.jpg) bottom no-repeat;
 /*height: 2.5em;*/
 
 /* Width is the width of each li in the row.  Needs to be equal to the image width. */
 width: 125px;
 /*line-height: 2em;*/
 /*float: left; */
}

ul.tabbernav li a:link { 
color: #000033;
font-size:14px;
text-decoration: none;
}
ul.tabbernav li a:visited { 
color: #000033;
font-size:14px; 
text-decoration: none;
}

ul.tabbernav li a:hover
{
 /* color: #000033; */
 /* background: #FF9900; */
 text-decoration: none;
 background-image:url(tabs2.jpg);
 font-size:14px;
 /* border-color: #000033; */
}

/* 1em = 100% */

ul.tabbernav li.tabberactive a
{
 /* background-color: #fff;
 border-bottom: 1px solid #fff; */
 background-image:url(tabs2.jpg);
 font-size:14px;
}

ul.tabbernav li.tabberactive a:hover
{
 /* color: #000033;
 background: white; */
 /*border-bottom: 1px #FF9900; */
 background-image:url(tabs2.jpg);
 font-size:14px;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #000033;
 border-top:1;
 color:#000;
 /* Clears the float:left; from the tab line */
 /*clear:left;*/
  width:797px;
 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

  height:250px;

 /* 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;
}
.tabberlive .tabbertab h3 {
 display:none;
}
/* Example of using an ID to set different styles for the tabs on the page */
.tabbertab#tab1 {
/*background-color:#CCCCCC; */
background-color:#bccce0;
}

.tabbertab#tab2 {
/*background-color:#CCCCCC; */
background-color:#bccce0;
}

.tabbertab#tab3 {
/*background-color:#CCCCCC; */
background-color:#bccce0;
}

.tabbertab#tab4 {
/*background-color:#CCCCCC; */
background-color:#bccce0;
}

/* .tabberlive#tab1 .tabbertab {
 height:150px;
 overflow:auto;
} */

