/*  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;
}
#tabsBody {
	position:relative;
}
/*  ul.tabbernav = the tab navigation list  li.tabberactive = the active tab */
#tabsBody ul.tabbernav {
	z-index: 10;
	margin: 0px;
	padding: .18em;
	padding-bottom: .31em;
}
ul.tabbernav li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	margin-right: .18em;
	display: inline;

}
ul.tabbernav li a {
	/* tab */
	background-color: #dadada; 
	padding: .4em 0.8em 0.4em 0.8em;
	margin: 0em .12em 0em 0em;
	text-decoration: none;
	border:1px solid #b3b3b3;
	border-bottom: 0px;
	background: url(/images/tab-bg.gif) repeat-x;  
	color: #000;
	font-size: 12px;
}
#tabsBody ul.tabbernav li a:link {}

#tabsBody ul.tabbernav li a:hover {
	/* hover */
	color: #fff;
	background-color: #dadada; 
	background: url(/images/tab-bg-selected.gif) repeat-x; 
}
#tabsBody ul.tabbernav li.tabberactive a {
	/* active tab when selected */
	color: #fff;
	font-weight: 600;
	background-color: #dadada; 
	background: url(/images/tab-bg-selected.gif) repeat-x; 
	border:1px solid #5c7335;
	border-bottom: 0px;
	font-size: 12px;
}
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	/* using padding. do not set a fixed width. */
	border-top-width: 4px;
	/* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
	min-height:200px; 
	_height:200px; 
	position:relative;
	top: -1px;
	padding: 1.5em;
	margin-bottom: 2em;
	border:1px solid #5c7335;
	border-top-width: 4px;
	/* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
	/* If you set a fix height set overflow to auto and you will get a scrollbar when necessary */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {

}
.tabberlive .tabbertab h3 {
}
