/* Home Tabs */

/*--------------------------------------------------
  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 {
}


/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav

 {
}

ul.tabbernav li
{
 list-style: none;
 display: inline;
 

}

ul.tabbernav li a
{
 padding-left:10px;
padding-top:7px;
padding-bottom:7px;
width:134px;

     font-family:Arial;
    font-size:12px;
   color:#4b90cd;
    font-weight:bold;    
    text-transform:uppercase;
    margin-left:0px;
	border-left:0px solid #bfbfbf; 
 background:url(../images/tab-bg.gif) left bottom no-repeat;
 text-decoration: none;
 white-space:nowrap;
 overflow:hidden;
 display:inline-block;
}

ul.tabbernav li a:link {  color:#4b90cd; }
ul.tabbernav li a:visited {  color:#4b90cd;}

ul.tabbernav li a:hover
{
     font-family:Arial;
    font-size:12px;
    color:#004990;
    font-weight:bold;    
    text-transform:uppercase;
    margin-left:0px;
 background:url(../images/tab-bg.gif) left bottom no-repeat;
 border-color: #bfbfbf;
width:134px;
 padding-left:10px;
padding-top:7px;
padding-bottom:7px;
white-space:nowrap;
overflow:hidden;
}

ul.tabbernav li.tabberactive a
{
	color:#004990;
 background:url(../images/tabactive-bg.gif) left bottom no-repeat;white-space:nowrap;
overflow:hidden;
}

ul.tabbernav li.tabberactive a:hover
{
 background:url(../images/tabactive-bg.gif) left bottom no-repeat;white-space:nowrap;
overflow:hidden;

 color:#004990;
 
 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {

 padding:0px;
padding-top:5px;
 border-left:1px solid #bfbfbf;
 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 */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

#tabcontent
{
height:168px;

}


