/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

img{
border: none;
}

/*--------------------------------------------------
  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 {
width: 665px;
text-align: left;
margin: 0 0 10px 0;
}

.tabberlive {
margin: 0 0 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
margin-top:1em;
text-align: left;
background-image: url(images/boxBkgrd.jpg);
background-position: 0px 24px;
background-repeat: no-repeat;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
#quote ul.tabbernav{
width: 665px;
height: 23px;
margin:0;
background-color: #fff;
padding: 3px 0;
/*text-align: right;*/
border-bottom: 1px solid #999;
z-index: 5;
}

ul.tabbernav li{
list-style: none;
margin: 0;
display: inline;
}

ul.tabbernav li a:link, ul.tabbernav li a:visited{ 
display: block;
float: left;
height: 16px;
width: 100px;
padding: 3px 5px;
margin: 0 5px 0 0;
font-size: 11px;
color: #666699;
border: 1px solid #aaa;
border-bottom: 1px solid #999;
background: #ddd;
text-decoration: none;
font-weight: bold;
background-color: #fff;
background-image: url(images/tabBkgrd.jpg);
background-position: bottom left;
background-repeat: repeat-x;
/*color: #448;*/ 
}

ul.tabbernav li a:hover{
color: #666699;
background: #fff;
background-image: url(images/tabBkgrd.jpg);
background-repeat: repeat-x;
/* border-color: #227;*/
}

ul.tabbernav li.tabberactive a{
background-color: #fff;
height: 17px;
color: #333;
background-image: url(images/tabBkgrd.jpg);
background-position: top left;
background-repeat: repeat-x;
border-bottom: none;
z-index: 5;
/*border-bottom: 1px solid #fff;*/
}

ul.tabbernav li.tabberactive a:hover{
color: #666699;
/*background: white;*/
background-color: #fff;
background-image: url(images/tabBkgrd.jpg);
background-position: top left;
background-repeat: repeat-x;
/*border-bottom: 1px solid white;*/
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/

.tabberlive .tabbertab {
width: 645px;
padding: 5px 10px;
/*border: 1px solid #aaa;
border-top: 5px solid #aaa;*/
height: 450px;/*If you don't want the tab size changing whenever a tab is changed you can set a fixed height*/ 
/*overflow: auto;*//*If you set a fix height set overflow to auto and you will get a scrollbar when necessary*/
z-index: 4;
}

#bottom{
width: 400px;
height: 43px;
padding: 5px;
background-color: #aaa;
border: 1px solid #aaa;
color: #fff;
}

/*If desired, hide the heading since a heading is provided by the tab */

.tabberlive .tabbertab h2 {
display: none;
}

.tabberlive .tabbertab h3 {
/*display:none;*/
font-size: 18px;
margin: 10px 0 5px 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;
}
