.tabberlive .tabbertabhide {
 display:none;
}
.tabber {
}
.tabberlive {
 margin-top:3px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid black;
}

ul.tabbernav li /* NOT active tabs */
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a /* NOT active tabs:hover */
{
 padding: 3px 0.9em;
 margin-left: 0px;
 border: 1px solid black;
 background: white;
 text-decoration: none;
}

ul.tabbernav li a:link { color: black; }
ul.tabbernav li a:visited { color: black; }
ul.tabbernav li a:hover
{
 color: #990000;
 background-color:#CCCCCC;
 border-color: black;
 text-decoration:none;
}

ul.tabbernav li.tabberactive a /* The active tab */
{
 background-color: #CCCCCC;
}

ul.tabbernav li.tabberactive a:hover /* The active tab over */
{
 background: #CCCCCC;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	padding:4px; /*inner padding*/
	border:1px solid black;
	border-top:0;
 	height:417px;
	width:585px;
	overflow:auto;
	background-color:white;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}
