﻿/* $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!
  --------------------------------------------------*/
.innertabberlive .innertabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.innertabber {
}
.innertabberlive {
 /*margin-top:1em;*/
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.innertabbernav
{
	margin: 0;
	padding: 0px 0;
	border-bottom: 1px #a73232 solid;
	font: bold 12px Verdana, sans-serif;
    display:inline;
    float:left;
    position:relative;
    width:200px;
}

ul.innertabbernav li
{
 list-style: none;
 margin: 0;
 display: block;
}

ul.innertabbernav li a
{
	padding: 3px 0.5em;
/*margin-left: 3px;*/	
	border: 1px #a73232 solid;
	border-bottom: 0px #FDDEB9 solid;
	background: #E8E4D5;
	text-decoration: none;
	display: block;
}

ul.innertabbernav li a:link { /*color: #448;*/ }
ul.innertabbernav li a:visited { /*color: #448;*/ }

ul.innertabbernav li a:hover
{
 /*color: #000;*/
 /*background: #e9a502;*/
 border-color: #a73232;
 background:transparent;
/* background:transparent url(../sprite.png) no-repeat scroll 165px -922px*/
}

ul.innertabbernav li.innertabberactive a
{
 /*background-color: #e9a502;*/
 background-color:transparent; 
 /*border-bottom: 1px solid #e9a502;*/
 border-right:1px solid #fef3e5;

}

ul.innertabbernav li.innertabberactive a:hover
{
 /*color: #000;
 background: #e9a502;*/
  background-color:transparent; 
 border-right: 1px solid #fef3e5; 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.innertabberlive .innertabbertab {
 padding:5px;
 border:1px solid #a73232;
 border-left:0;
 margin-left:-1px;
 /*display:inline;*/
 float:left;
 position:relative;
 width:320px;
 /* 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 */
.innertabberlive .innertabbertab h2 {
 display:none;
}
.innertabberlive .innertabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
/*
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
/