/**/
/*--------------------------------------------------
  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 {
    margin-top:34px;
    width:456px;
}
/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
    margin:0;
    padding:0;
    padding-bottom:1px;
}
ul.tabbernav li,
#content ul.tabbernav li {
    list-style: none;
    display: inline;
    background: none;
    padding:0;
}
ul.tabbernav li a
{
    width:75px;
    height:35px;
    display:block;
    float:left;
    color: #41525C;
    padding: 5px 5px 0 5px;
    margin-right: 2px;
    border: none;
    background: #fff url(/img/tabber-bg.gif) 0 0 repeat-x;
    text-decoration: none;
    text-align:center;
}
div.tabberlive.two li a,
div.tabberlive.three li a {width:140px;}
div.tabberlive.four li a {width:96px;}
div.tabberlive.five li a {width:75px;}
a#tabthreespecialnav1 {width:150px;}
a#tabthreespecialnav2 {width:100px;}
a#tabthreespecialnav3 {width:130px;}

ul.tabbernav li a:hover
{
    color: #BC0F42;
    background: #D4D9EF;
}
ul.tabbernav li.tabberactive a
{
    background-image:none;
    background-color: #D4D9EF;
    color:#BC0F42;
    height:39px;
    padding: 7px 5px 0 5px;
    margin-top:-4px;
}
ul.tabbernav li.tabberactive a:hover
{
    background: #D4D9EF;
}
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
    padding:10px;
    border:1px solid #CFD5EE;
    clear:both;
 /* 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;
}
