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

/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.tabberp {
}
.tabberplive {
margin-top:0em;
}

/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
ul.tabberpnav
{
margin:0px;
margin-right:68px;
padding: 3px 0;
font-size: 1.1em;
font-weight: bold;
width:auto;
text-align:left;
}

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

ul.tabberpnav li a
{
color: #6699CC;
background-color: #fff;
border-top: 1px solid #e7e7e7;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
padding: 5px;
margin: 0 0 0 3px;
}

ul.tabberpnav li a:link { color: #6699CC;border-top: 1px solid #e7e7e7; }
ul.tabberpnav li a:visited { color: #6699CC;border-top: 1px solid #e7e7e7; }

ul.tabberpnav li a:hover
{
color: #fff;
background: #60b5ed;
}

ul.tabberpnav li.tabberpactive a
{
color: #fff;
background-color: #60b5ed;
border-top: 1px solid #e7e7e7;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
}

ul.tabberpnav li.tabberpactive a:hover
{
color: #fff;
background: #60b5ed;
}

/*--------------------------------------------------
MAIN CODE BOX WHERE CONTENT IS DISPLAYED
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.tabberplive .tabberptab {
padding:0px;
padding-bottom:0px;
border: 1px solid #e7e7e7;
width:auto;
text-align:left;
background:#fff;


/* If you don't want the tab size changing whenever a tab is changed
you can set a fixed height */

height:215px;

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

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


fieldset {
color:#336699;
border:1px solid #6699CC;
}

fieldset table tr td {
color:#336699;
}

