html,body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

@font-face {
  font-family: 'Droid Serif';
  font-weight: 400;
  font-style: normal;
  src: url('/fonts/Droid-Serif-regular.eot');
  src: url('/fonts/Droid-Serif-regular.eot?#iefix') format('embedded-opentype'),
       local('Droid Serif'),
       local('Droid-Serif-regular'),
       url('/fonts/Droid-Serif-regular.woff2') format('woff2'),
       url('/fonts/Droid-Serif-regular.woff') format('woff'),
       url('/fonts/Droid-Serif-regular.ttf') format('truetype'),
       url('/fonts/Droid-Serif-regular.svg#DroidSerif') format('svg');
}

@font-face {
  font-family: 'Droid Serif';
  font-weight: 700;
  font-style: normal;
  src: url('/fonts/Droid-Serif-700.eot');
  src: url('/fonts/Droid-Serif-700.eot?#iefix') format('embedded-opentype'),
       local('Droid Serif Bold'),
       local('Droid-Serif-700'),
       url('/fonts/Droid-Serif-700.woff2') format('woff2'),
       url('/fonts/Droid-Serif-700.woff') format('woff'),
       url('/fonts/Droid-Serif-700.ttf') format('truetype'),
       url('/fonts/Droid-Serif-700.svg#DroidSerif') format('svg');
}

@font-face {
  font-family: 'Droid Serif';
  font-weight: 400;
  font-style: italic;
  src: url('/fonts/Droid-Serif-italic.eot');
  src: url('/fonts/Droid-Serif-italic.eot?#iefix') format('embedded-opentype'),
       local('Droid Serif Italic'),
       local('Droid-Serif-italic'),
       url('/fonts/Droid-Serif-italic.woff2') format('woff2'),
       url('/fonts/Droid-Serif-italic.woff') format('woff'),
       url('/fonts/Droid-Serif-italic.ttf') format('truetype'),
       url('/fonts/Droid-Serif-italic.svg#DroidSerif') format('svg');
}

@font-face {
  font-family: 'Droid Serif';
  font-weight: 700;
  font-style: italic;
  src: url('/fonts/Droid-Serif-700italic.eot');
  src: url('/fonts/Droid-Serif-700italic.eot?#iefix') format('embedded-opentype'),
       local('Droid Serif Bold Italic'),
       local('Droid-Serif-700italic'),
       url('/fonts/Droid-Serif-700italic.woff2') format('woff2'),
       url('/fonts/Droid-Serif-700italic.woff') format('woff'),
       url('/fonts/Droid-Serif-700italic.ttf') format('truetype'),
       url('/fonts/Droid-Serif-700italic.svg#DroidSerif') format('svg');
}



/*--------------------------------------------------
  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;
 margin-bottom:38px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 padding-right:35px;
 /*border-bottom: 1px solid #cacaca;*/
 font: 17px Droid Serif, Georgia, serif;
}

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

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #cacaca;
 border-bottom: none;
 background: #e8e8e8;
 text-decoration: none;
}

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

ul.tabbernav li a:hover
{
 color: #000;
 background: #ddd;
 border-color: #cacaca;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}



ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
 
}



/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:20px;
 border:1px solid #cacaca;
 /*border-top:0;*/
 background-color:white;
 font: 17px Droid Serif, Georgia, serif;
 margin-left:25px;
 margin-right:25px;

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

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



