/* $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!
  --------------------------------------------------*/
.benchmarklive .benchmarktabhide {
 display:none;
}

/*--------------------------------------------------
  .benchmark = before the benchmark interface is set up
  .benchmarklive = after the benchmark interface is set up
  --------------------------------------------------*/
.benchmark {
}

.benchmarklive {
}

/*--------------------------------------------------
  ul.benchmarknav = the tab navigation list
  li.benchmarkactive = the active tab
  --------------------------------------------------*/
ul.benchmarknav
{
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: {vb:stylevar control_content_font};
 line-height: 200%;
 color: {vb:stylevar control_content_color};
 text-align: center;
 }

ul.benchmarknav li
{
 list-style: none;
 margin: 0;
 display: inline-block;

}

ul.benchmarknav li a
{
 padding: 3px 0.5em;
 margin-right: 2px;
 border-bottom: none;
 background: #417394 url(http://stssoft.com/images/buttons/newbtn_middle.png);
 text-decoration: none;  
 color: white;
 -moz-box-shadow: 0 3px 8px {vb:stylevar control_content_shadow_color};
 -webkit-box-shadow: 0 3px 8px {vb:stylevar control_content_shadow_color};
 	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

ul.benchmarknav li a:link {  color: white; }
ul.benchmarknav li a:visited { color: white; }

ul.benchmarknav li a:hover
{
 color: white;
 background: #5b8dae;
 border-color: #227;
}

ul.benchmarknav li.benchmarkactive a
{
 background-color: #5b8dae;
}

ul.benchmarknav li.benchmarkactive a:hover
{
color: white;
 background: #5b8dae;
}

/*--------------------------------------------------
  .benchmarktab = the tab content
  Add style only after the benchmark interface is set up (.benchmarklive)
  --------------------------------------------------*/
.benchmarklive .benchmarktab {
 padding:5px;
 border-top:0;

 /* 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 */
.benchmarklive .benchmarktab h2 {
 display:none;
}
.benchmarklive .benchmarktab h3 {
 display:none;
}
.benchmarklive#tab2 .benchmarktab {
 height:200px;
 overflow:auto;
}
