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

.tabberlive {
  /*width: 100%;*/
  width: 400px;
  margin-top:1em;
  /*border-style: solid;*/
  /*border-width: 1px;*/
  /*border-color: #ccddee;*/
  margin-bottom: 20px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
 margin:0px;
 /*margin-left: -10px;*/
 margin-left: 0;
 /*padding-left: 1.35em;*/
 padding-left: 8px;
 /*border-bottom: 2px solid #0079c1;*/
 border-right: 1px solid #ccddee;
 border-left: 1px solid #ccddee;
 border-top: 1px solid #ccddee;
 font: bold 12px Verdana, sans-serif;
 float: left;
 /*width: 96%;*/
 width: 98%;
 background:url('/vgn/mastercard/keyline.png') 1px bottom no-repeat;
}

ul.tabbernav li {
 list-style-type: none;
 margin: 0px;
 padding: 0px;
 display: inline;
}

ul.tabbernav li a {
 padding: 4px 0.5em;
 margin-left: 2px;
 background: #ccddee;
 text-decoration: none;
 text-align: center;
 float: left;
 width: 90px;
 /*border-bottom: 1px solid #ccddee;*/
}

ul.tabbernav li a:link {
 color: #6688ab;
 text-decoration: none;
}
ul.tabbernav li a:visited {
 color: #fff;
 text-decoration: none;
}

ul.tabbernav li a:hover {
 color: #fff;
 background: #0079c1;
 border-color: #0079c1;
 text-decoration: none;
}

ul.tabbernav li.tabberactive a {
 color: #fff;
 background-color: #0079c1;
 border-bottom: 1px solid #0079c1;
 text-decoration: none;
}

ul.tabbernav li.tabberactive a:hover {
 color: #fff;
 background-color: #0079c1;
 /*border-bottom: 1px solid #0079c1;*/
 text-decoration: none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 /*margin-left: 8px;*/
 /*margin-right: 8px;*/
 padding-left: 8px;
 padding-right: 8px;
 /*dansari - commented because with overflow:auto below commented, the border
   appears in the wrong place*/
 /*border-top: 2px solid #409ccf;*/

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

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */
 /*dansari - commented because it causes content to disappear in Firefox 2
   with the float:left in ul.tabbernav*/
 /*overflow:auto;*/
 /*overflow-x: none;*/
 /*display: inline;*/
 /*display: run-in;*/
 overflow-x: none;
 /*overflow-y: auto;*/
 float:left;
 border-left: 1px solid #ccddee;
 border-right: 1px solid #ccddee;
 border-bottom: 1px solid #ccddee;
 width: 96%;
}

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


