/* $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!
  --------------------------------------------------*/
#tab_grn .tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
#tab_grn .tabber {

}
#tab_grn .tabberlive {
 margin: 16px;

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
#tab_grn ul.tabbernav
{
 margin:0px;
 padding: 0px;
 border-bottom: 1px solid #72bf44;
 font: bold 12px Verdana, sans-serif;
}

#tab_grn ul.tabbernav li
{
 list-style: none;
 margin:1px;
 margin-left: 4px;
 display: inline;
 font-size: 10px;
}

#tab_grn ul.tabbernav li a {
	padding: 3px 0.5em;
	margin-left: 0px;
	border: 1px solid #72bf44;
	border-bottom: none;
	text-decoration: none;
	background-image: url(../images/tabsBg_grn.gif);
}
#tab_grn ul.tabbernav li a:link { 
color: #FFFFFF;
padding: 3px 7px 0px 7px;
}
#tab_grn ul.tabbernav li a:visited { 
color: #FFFFFF;
padding: 3px 7px 0px 7px;
}

#tab_grn ul.tabbernav li a:hover {
color: #FFFFFF;
background-image: url(../images/tabsBg_grn_on.gif);
border-color: #72bf44;
text-decoration: none;
padding: 3px 7px 0px 7px;
}

#tab_grn ul.tabbernav li.tabberactive a
{
color: #000000;
border-bottom: 1px solid #DCEFD0;
background-color: #DCEFD0;
background-image: none;
padding: 3px 7px 0px 7px;
}

#tab_grn ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background-color: #DCEFD0;
 border-bottom: 1px solid #DCEFD0;
 background-image: none;
padding: 3px 7px 0px 7px;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
#tab_grn .tabberlive .tabbertab {
 padding:10px;
 border-bottom :1px solid #72bf44;
 border-left: 1px solid #72bf44;
 border-right: 1px solid #72bf44;
 background-color: #DCEFD0;
 border-top:0;
}
 
 /* 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 */
#tab_grn .tabberlive .tabbertab h2 {
 display:none;
}
#tab_grn .tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
#tab_grn .tabberlive#tab1 {
}
#tab_grn .tabberlive#tab2 {
}
#tab_grn .tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
