
/* $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!
  --------------------------------------------------*/ /*/*/
 .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/ /*/*/
.tabber {padding-top:1px
}
.tabberlive {
 margin-top:3px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/ /*/*/
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/ /*/*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;

 font: bold 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 5px;
 border: 2px solid #93c9ff;
 border-bottom: none;
 background: #93c9ff;
 text-decoration: none;
 -moz-border-radius:16px 16px 0px 0px;
}
ul.tabbernav li a span {display:none;}

ul.tabbernav li a:link { color: #1958b7; }
ul.tabbernav li a:visited { color: #1958b7; }
ul.tabbernav li a:hover {
 color: #FFFFFF;
 background:  #2586d7;
 border-color: #90bade;
}
ul.tabbernav li a:hover span{ /*the span will display just on :hover state*/ /*/*/
    display:block;
    position:absolute;
    bottom:2em; right:10em; width:auto;
    padding: 6px 6px 6px 6px;
    border:1px solid navy;
    background-color:#f4be82; color:navy;
    text-decoration:none
    text-align: center}

/* go set the active tab colors */ /*/*/
ul.tabbernav li.tabberactive a
{ 
color: #FFFFFF;
background-color: #2586d7;
border-right: 5px solid #1958b7; 
border-left: 5px solid #1958b7; 
border-top: 2px solid #1958b7; 
border-bottom: 3px solid #2586d7;
-moz-border-radius: 16px 16px 0px 0px;
}

ul.tabbernav li.tabberactive a:hover {
background-color: #2586d7;
border-right: 5px solid #1c64d1; 
border-left: 5px solid #1c64d1; 
border-top: 2px solid #1958b7; 
border-bottom: 3px solid #2586d7;
color: #ffffff;
}
ul.tabbernav li.tabberactive a:link { color: #ffffff; }
ul.tabbernav li.tabberactive a:visited { color: #ffffff; }

.tabbertab { 
font-size: 12px;
padding: 5px;
background-color: #2586d7;
border-right: 10px solid #1958b7; 
border-left: 10px solid #1958b7; 
border-top: 2px solid #1958b7;
color: #ffffff;
border-bottom: 3px solid #1958b7;
}

.tabbertab td { font-size: 13px;color: #ffffff; }
.tabbertab h2 { font-size: 13px; }
.tabbertab option { font-size: 13px; }
.tabbertab select { font-size: 13px; }
.tabbertab input { font-size: 13px; }
.tabbertab a:link { color: #ffffff;font-size: 12px;}
.tabbertab a:visited { color: #ffffff; }
.tabbertab a:hover { color: #ffffff; background-color: #1c64d1; }


 /* 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 */ /*/*/
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab 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;
}
.tabberhide {
	DISPLAY: none;
}