/* Dev Code 15.3.2009 Batch 2.1.01.0009 */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.showtablive .showtabtabhide {
 display:none;
}

/*--------------------------------------------------
  .showtab = before the showtab interface is set up
  .showtablive = after the showtab interface is set up
  --------------------------------------------------*/
.showtabtop {
width:300px;

}
.showtablive {
 margin-top:2px;


}

/*--------------------------------------------------
  ul.showtabnav = the tab navigation list
  li.showtabactive = the active tab
  --------------------------------------------------*/
ul.showtabnav
{
 margin:0px !important;
 padding: 6px 0px 0px 0px;
 font: bold 12px Arial, Helvetica, sans-serif;
}

ul.showtabnav li
{
 list-style: none;
 margin: 0;
 display: inline;
 
}


ul.showtabnav li a
{
 padding: 3px 20px 3px 20px;
 margin-left: 0px;
 margin-right:3px;
 border: 1px solid #CCCBCB;
 border-bottom: none;
 text-decoration: none; 
 text-transform:uppercase;
 background: url(../images/tab_bg.gif) repeat-x left bottom;
 color:#4c4c4c;
  line-height:20px;

}
ul.showtabnav li a:link { color: #4c4c4c; }
ul.showtabnav li a:visited { color: #4c4c4c; }

ul.showtabnav li a:hover
{
 color: #1f1f1f;
 background: url(../images/tab_hover_bg.gif) repeat-x left bottom;
 border-color: #E2E2E0;
 color:#ffffff;
 padding-top:8px !important;
 padding-left:20px;
 padding-right:20px;
 line-height:20px;
 text-decoration:none;
}

ul.showtabnav li.showtabactive a
{
 background: url(../images/tab_hover_bg.gif) repeat-x left bottom;
 padding-top:8px!important;

 padding-left:20px;
 padding-right:20px;
 color:#ffffff !important;
}



/*--------------------------------------------------
  .showtab = the tab content
  Add style only after the showtab interface is set up (.showtablive)
  --------------------------------------------------*/
.showtablive .showtabtab {
 
 border:1px solid #CCCBCB;
 border-top:0;
 padding:0px 5px 0px 5px;
 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 height:390px;

 /* 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 */
.showtablive .showtabtab h2 {
 display:none;
 
}
.showtablive .showtabtab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.showtablive#tab1 {

}
.showtablive#tab2 {

}
.showtablive#tab2 .showtab {
 height:200px;
 overflow:auto;
}
