/*--------------------------------------------------
  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 {
margin-top:5px;
}

.tabber .tabbertab ul {
margin-left:5px;
margin-right:0px;
}

.tabber .tabbertab p {
padding:0px;
}

.tabbertab {
margin-top:0px;
}

.tabberlive {
 margin-top:0px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0px;
 background: #B00A00;
 padding: 0px;
 font-size: 11px;
 font-family: Arial, Tahoma, Verdana;
 font-weight: normal;
 color:#000000;
 border-top: 10px solid #B00A00;
 border-left: 0px solid #B00A00;
 line-height: 18px;
 border-bottom: 5px solid #B00A00;
}

ul.tabbernav li
{
 list-style: none;
 background: #B00A00;
 color:#424031;
 display: inline;
 padding: 0px;
 margin: 0px 2px 0px;
}

ul.tabbernav li a
{
 border-top: 0px solid #B00A00;
 border-right: 0px solid #B00A00;
 border-left: 0px solid #B00A00;
 border-bottom: 0px solid #FFFFFF;
 font-weight: bold;
 padding:5px 5px 5px;
 background: #DE9793;
 text-decoration: uppercase;
 color:#000000;
}

ul.tabbernav li a:link { color: #424031; }

ul.tabbernav li a:hover
{
 border-top: 0px solid #B00A00;
 border-right: 0px solid #B00A00;
 border-left: 0px solid #B00A00;
 border-bottom: 0px solid #FFFFFF;
 background:#FE7C26;
 text-decoration: underline;
 color:#000000;
}


ul.tabbernav li.tabberactive a
{
 background-color:#FFFFFF;
 color:#B32A00;
 text-decoration: none;
 border-top: 0px solid #B00A00;
 border-left: 0px solid #B00A00;
 border-right: 0px solid #B00A00;
 border-bottom: 2px solid #FFFFFF;
}


ul.tabbernav li.tabberactive a:hover
{
 background-color:#FFFFFF;
 border-bottom: 2px solid #FFFFFF;
 color:#B32A00;
 text-decoration: none;
}


/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:0px;
 border-bottom: 3px solid #B00A00;
 border-left: 3px solid #B00A00;
 border-right:3px solid #B00A00;
 border-top: 0px solid #B00A00;
 background: #FFFFFF;
 font-weight: normal;

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

 height:214px;

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

  overflow:auto;
}

.tabberlive .tabbertab ul {
list-style-image:url(images/icon.gif)
padding:0px;
margin:0px;
font-weight: normal;
}

/* 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:214px;
 overflow:auto;
}

