/* $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 {
 display:none;
}

.tabberlive {
 margin: 0;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/

#tabwrapper {
 float: left;
 clear: none;
}
#tabwrapper h5{
	margin:0;
}  
ul.tabbernav
{
 margin:0;
 padding: 0;
 font: bold 1.1em arial, helvetica, sans-serif;
 
 /* height needed for IE7 */
 height: 0px;
 
 position: relative;
 z-index: 2;
 
 /* width needed for IE6 */
 width: 315px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 0;
 background: #DDE;
 text-decoration: none;
 
 background: transparent url('/images/tabber/tab_center_unselected.gif') repeat-x;
 
 float: left;
 
 padding: 11px 5px 0 5px;
 height: 20px;

 /* (for IE conditional comment) height 31px; */
}

div.tabberleft, div.tabberright
{
 float: left;
 height: 31px; 
}

div.tabberleft
{
background: transparent url('/images/tabber/tab_left_unselected.gif') repeat-x;
width: 5px;
}

div.tabberright
{
background: transparent url('/images/tabber/tab_right_unselected.gif') repeat-x;
width: 8px;
}

.tabberactive div.tabberleft
{
background: transparent url('/images/tabber/tab_left_selected.gif') repeat-x;
}

.tabberactive div.tabberright
{
background: transparent url('/images/tabber/tab_right_selected.gif') repeat-x;
}

ul.tabbernav li a
{
 color: white;
}

/*
ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }
ul.tabbernav li a:hover
{
 color: white;
}
*/

ul.tabbernav li.tabberactive a
{
 color: #1572C2;
 background: transparent url('/images/tabber/tab_center_selected.gif') repeat-x; 
}

ul.tabbernav li.tabberactive a:hover
{
 color: #1572C2;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {

 background: transparent url('/images/tabber/tabber-bg.gif');

 /* IE6 needed "!important" here */
 margin: -4px 0 0 -6px;

 float: left;
 clear: none;
 width: 372px;
 height: 215px;
 
 padding: 0;
 
}

.tabbercontent {

 margin: 14px 0 0 18px;
 padding: 0;
 overflow: auto;
 width: 339px;
 height: 185px;
 

}

.tabbercontent p {
 padding: 0 0 10px 0;
 margin: 0;
}

/*

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;
}
*/