/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

.tabberlive .tabbertabhide { display:none;}
.tabber {}
.tabberlive { margin-top:1em;}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav{
 margin:0;
 padding: 3px 0;
 font-weight:normal;
}

ul.tabbernav li{
 list-style: none;
 margin: 0;
 float:left;
}

ul.tabbernav li a{
 display: block;
 text-align:center;
 width:123px;
 padding: 3px 0;
 margin-right: 1px;
 border: 1px solid #ccc;
 background: #DDE url(../../images/glenpark/btn_bk.gif) repeat-x top left;
 font-size:12px;
 text-decoration: none;
}

ul.tabbernav li a:visited, ul.tabbernav li a:link {
 color: #666;
}

ul.tabbernav li a:hover{
 background: #999 url(../../images/glenpark/btn_bk_ovr.gif) repeat-x top left;
 text-decoration: none;
 color: #fff;
}

ul.tabbernav li.tabberactive{
 list-style: none;
 margin: 0;
 float:left;
}

ul.tabbernav li.tabberactive a{
 width:123px;
 background: #fff url(../../images/glenpark/btn_bk_on.gif) repeat-x top left;
 color: #fff;
}

ul.tabbernav li.tabberactive a:hover{
 background: #999 url(../../images/glenpark/btn_bk_ovr.gif) repeat-x top left;
 color: #fff;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin-top:40px;
 padding:20px 0;
 width:760px;
}

/* 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;
}

