/* $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!
  --------------------------------------------------*/
.tabber2live .tabber2tabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber2 = before the tabber2 interface is set up
  .tabber2live = after the tabber2 interface is set up
  --------------------------------------------------*/
.tabber2 {
	width:245px;
	height:195px;
	float:left;
	margin:0px;
}
.tabber2live {
 margin-top:0px;
}

/*--------------------------------------------------
  ul.tabber2nav = the tab navigation list
  li.tabber2active = the active tab
  --------------------------------------------------*/
ul.tabber2nav
{
 margin:0px 0px 0px 0px;
 padding: 3px 0px 0px 0px;
 border-bottom: 0px solid #778;
 font-weight:bold;
 font-size:14px;
 width:480px;
 height:20px;
 float:left;
}

ul.tabber2nav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabber2nav li a
{
 padding: 5px 18px;
 margin:0px 3px 0px 0px;
 border: 1px solid #ddd;
 border-bottom: none;
 background-color:#616161;
 text-decoration: none;
 width:69px;
 height:17px;
 color:#fff;
}

ul.tabber2nav li a:link { color: #fff; }
ul.tabber2nav li a:visited { color: #fff; }

ul.tabber2nav li a:hover
{
 color: #000;
 background-color:#616161;
 
}

ul.tabber2nav li.tabber2active a
{

 background-color: #fff;
 border-bottom: 0px solid #fff;
 color:#616161;

}

ul.tabber2nav li.tabber2active a:hover
{
 color: #000;
 border-bottom: 0px solid white;
 background-color:#616161;
}

/*--------------------------------------------------
  .tabber2tab = the tab content
  Add style only after the tabber2 interface is set up (.tabber2live)
  --------------------------------------------------*/
.tabber2live .tabber2tab {
 width:480px;height:315px;border:1px solid #ddd;background-color:#fff;filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity: 0.7;opacity: 0.7;position:relative;float:left;margin:0px 0px 0px 0px;padding:10px;}

 /* 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 */
.tabber2live .tabber2tab h2 {
 display:none;
}
.tabber2live .tabber2tab h3 {
 display:none;
}

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

