/* $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:0em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	margin:0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-weight: bold;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 6px;
	padding-left: 22px;
	background-color: 4f0308;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
	margin-left: 3px;
	border: 0px;
	border-bottom: none;
	text-decoration: none;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 5px;
	margin-top: 10px;
	background-color: #4f0308;
}

ul.tabbernav li a:link {
	color: #ffe2b6;
}
ul.tabbernav li a:visited {
	color: #ffe2b6;
	background-color: #4f0308;
	
}

ul.tabbernav li a:hover
{
	color: #ffe2b6;
	background-color: #8E2828;
}

ul.tabbernav li.tabberactive a
{
	border-bottom: 1px solid #fff;
	background-color: #FF0000;
}

ul.tabbernav li.tabberactive a:hover
{
	color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	border-top:0;
	padding-left: 28px;
	/* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

height:300px;
	padding-top: 5px; /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */
	background-image: url(images/livebg.gif);
	padding-right: 25px; /* overflow:auto; */
	padding-bottom: 0px;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

