/* .pkg - wraps enclosing block element around inner floated elements */
.pkg:after { content: " ";display: block;visibility: hidden;clear: both;height: 0.1px;font-size: 0.1em;line-height: 0;}
.pkg { display: inline-block; }
/* no ie mac \*/
* html .pkg { height: 1%; }
.pkg[class] { height: auto; }
.pkg { display: block; }
/* */
.hidden { display: none !important; }
.visible { display: block; }
.invisible { display: block !important;visibility: hidden !important;position: absolute !important;left: 0 !important;top: 0 !important;width: 0 !important;height: 0 !important;font-size: 0.1px !important;line-height: 0 !important; }
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.right { float: right; }
.left { float: left; display: inline; /* ie hack */ }
.center { margin-left: auto; margin-right: auto; }
.center-text { text-align: center; }
.inline { display: inline; }
.clear { clear: both; }

/*--------------------------------------------------
  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:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
 margin: 0 0 15px 0 !important;
 padding: 6px 0 1px 0 !important;
 border-bottom: 1px solid #cccccc;
 font-weight: bold;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
 padding: 0 !important;
 background: none !important;
}

ul.tabbernav li a
{
 padding: 6px 0 6px 20px;
 margin-left: 3px;
 border-bottom: none;
 background: url('../images/content-tab.gif') no-repeat top left;
 text-decoration: none;
}
ul.tabbernav li a span {
 padding: 6px 20px 6px 0;
 background: url('../images/content-tab.gif') no-repeat top right;
}


ul.tabbernav li a:link { color: #000000; }
ul.tabbernav li a:visited { color: #333333; }

ul.tabbernav li a:hover { color: #069; }

ul.tabbernav li.tabberactive a {
 background: url('../images/content-tab-on.gif') no-repeat top left;
}
ul.tabbernav li.tabberactive a span {
 padding: 6px 20px 6px 0;
 background: url('../images/content-tab-on.gif') no-repeat top right;
}

ul.tabbernav li.tabberactive a:hover {

}


/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:0px;

 /* 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 {

}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}