
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_5655e2a501c3fa045560a5aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78bb15076f87eba1a2f7f170.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_05ceb17f55a85f80bfe43492.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_18b3302dd9e059becbae3e35.woff')format("woff");}.ff4{font-family:ff4;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8d5b09e612b5bb35e8a4c30d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a356712461b71c4152a51d68.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_965361abc749a1582045181c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_62460ca3e5c3b0355e0b3bbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.791000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f180180bc89c7318a39b3413.woff')format("woff");}.ff9{font-family:ff9;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0d01c0d5454a7fb930e463b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9065df2607395b24ec17e3c4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_472d6165c00073e28a6df2bc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.788000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c97b24695b2e40009adfa90c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2f3f67af6f200da431ec726b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c97b24695b2e40009adfa90c.woff')format("woff");}.fff{font-family:fff;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f578d694e609189d66587f9c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a535890d732743e0c103f4c6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2f3f67af6f200da431ec726b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f578d694e609189d66587f9c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4cf41bf3dd17507923f891a6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c97b24695b2e40009adfa90c.woff')format("woff");}.ff15{font-family:ff15;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_72319875ccf51be9349ae1ad.woff')format("woff");}.ff16{font-family:ff16;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c97b24695b2e40009adfa90c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_97c507a27e8d30972b16284f.woff')format("woff");}.ff18{font-family:ff18;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a535890d732743e0c103f4c6.woff')format("woff");}.ff19{font-family:ff19;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_174672e7c2037140580306b7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a535890d732743e0c103f4c6.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_91cebf779ce83ef5e72d6554.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.785000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e5b05c3dab6aed91fc431545.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_450dfae09532a78a71e1f548.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_010699f682625c637754ed75.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a6a844d911264d188323c376.woff')format("woff");}.ff20{font-family:ff20;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_5f4159dd38a7046b97d29bf7.woff')format("woff");}.ff21{font-family:ff21;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_d2fe0e89e5813d73341411e5.woff')format("woff");}.ff22{font-family:ff22;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_e4f169164d79c734d0315d95.woff')format("woff");}.ff23{font-family:ff23;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_bf6d3253326c8fb592f36db1.woff')format("woff");}.ff24{font-family:ff24;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cfa01cbee8ff964083128543.woff')format("woff");}.ff25{font-family:ff25;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_54a07c6d029d7de97e9f8f77.woff')format("woff");}.ff26{font-family:ff26;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_c0741fde71554a7f452592ed.woff')format("woff");}.ff27{font-family:ff27;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_4ac98c153825364864b52b92.woff')format("woff");}.ff28{font-family:ff28;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_275e526937de1f55c289b65e.woff')format("woff");}.ff29{font-family:ff29;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_bd778613fffd091c4b8cac46.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_febcf26819d53ba05503e913.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_43b89d7c4bf53ba95f8569d8.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.765000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_fb98a0279db64bbde53d55dd.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_89a4447030ff61726d376c2e.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_e8d055f7104466a35c3f4430.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.833984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_af5eb4e9a4b9b11bbc326642.woff')format("woff");}.ff30{font-family:ff30;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_b14370dada0f27dc23c1d14b.woff')format("woff");}.ff31{font-family:ff31;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_af5eb4e9a4b9b11bbc326642.woff')format("woff");}.ff32{font-family:ff32;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_b14370dada0f27dc23c1d14b.woff')format("woff");}.ff33{font-family:ff33;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_af5eb4e9a4b9b11bbc326642.woff')format("woff");}.ff34{font-family:ff34;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_b14370dada0f27dc23c1d14b.woff')format("woff");}.ff35{font-family:ff35;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_fb20a1b2048264da82aff290.woff')format("woff");}.ff36{font-family:ff36;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_fb20a1b2048264da82aff290.woff')format("woff");}.ff37{font-family:ff37;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_fb20a1b2048264da82aff290.woff')format("woff");}.ff38{font-family:ff38;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_fb20a1b2048264da82aff290.woff')format("woff");}.ff39{font-family:ff39;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_5e0ed701b9ee4398a862790e.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0187500cac6e042f900b9d26.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_fb20a1b2048264da82aff290.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_2456ae5839f5312dc3bfc3a5.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_a5ff95db33a8028d3996787c.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_e581939743d58d9ccec235f4.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_c449e9ec7e51ad5a7284ecce.woff')format("woff");}.ff40{font-family:ff40;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.758848px;}
.v4{vertical-align:-3.449490px;}
.v5{vertical-align:-1.460160px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.170034px;}
.v2{vertical-align:3.201834px;}
.v6{vertical-align:4.435164px;}
.lsf{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004959px;}
.ls5{letter-spacing:0.004960px;}
.ls8{letter-spacing:0.039764px;}
.ls0{letter-spacing:0.044183px;}
.ls2{letter-spacing:0.050495px;}
.ls1{letter-spacing:0.119925px;}
.lse{letter-spacing:0.269679px;}
.ls7{letter-spacing:1.187417px;}
.ls6{letter-spacing:3.324767px;}
.ls4{letter-spacing:3.330009px;}
.lsa{letter-spacing:5.343889px;}
.lsc{letter-spacing:5.611343px;}
.ls9{letter-spacing:6.710281px;}
.lsd{letter-spacing:11.914609px;}
.lsb{letter-spacing:16.802965px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-32.990683px;}
.ws6{word-spacing:-32.004408px;}
.ws4{word-spacing:-32.004258px;}
.ws34{word-spacing:-23.659803px;}
.ws0{word-spacing:-16.495343px;}
.ws5{word-spacing:-15.911039px;}
.ws1{word-spacing:-12.728830px;}
.ws22{word-spacing:-8.847635px;}
.ws1b{word-spacing:-3.325047px;}
.ws8{word-spacing:-2.624926px;}
.ws32{word-spacing:-2.454338px;}
.wse{word-spacing:-2.217708px;}
.ws20{word-spacing:-2.198101px;}
.ws33{word-spacing:-2.168777px;}
.ws25{word-spacing:-2.137630px;}
.ws2c{word-spacing:-1.897688px;}
.ws16{word-spacing:-1.495903px;}
.ws11{word-spacing:-1.489591px;}
.ws12{word-spacing:-1.445408px;}
.ws29{word-spacing:-1.346310px;}
.ws27{word-spacing:-1.340629px;}
.ws18{word-spacing:-1.324950px;}
.ws26{word-spacing:-1.300865px;}
.ws15{word-spacing:-1.121937px;}
.ws7{word-spacing:-0.948670px;}
.wsf{word-spacing:-0.011184px;}
.ws9{word-spacing:-0.006652px;}
.ws35{word-spacing:0.000000px;}
.ws1c{word-spacing:0.001322px;}
.ws1f{word-spacing:0.002442px;}
.ws24{word-spacing:0.009360px;}
.ws1a{word-spacing:0.009366px;}
.ws23{word-spacing:0.009924px;}
.ws1d{word-spacing:0.010765px;}
.ws1e{word-spacing:0.014043px;}
.ws19{word-spacing:0.014607px;}
.ws21{word-spacing:0.026410px;}
.ws13{word-spacing:8.397342px;}
.ws14{word-spacing:8.410261px;}
.ws17{word-spacing:15.953087px;}
.ws2b{word-spacing:16.889571px;}
.ws10{word-spacing:19.689038px;}
.ws2f{word-spacing:27.608199px;}
.ws30{word-spacing:31.760199px;}
.ws31{word-spacing:38.324581px;}
.ws2d{word-spacing:45.695391px;}
.ws2a{word-spacing:52.886337px;}
.ws2e{word-spacing:62.048553px;}
.ws28{word-spacing:83.560324px;}
.wsd{word-spacing:111.322677px;}
.wsa{word-spacing:195.381405px;}
.wsb{word-spacing:210.457330px;}
.wsc{word-spacing:214.896644px;}
.ws2{word-spacing:606.249240px;}
._5{margin-left:-13.052445px;}
._1{margin-left:-8.234187px;}
._4{margin-left:-6.652072px;}
._6{margin-left:-4.512624px;}
._3{margin-left:-3.200186px;}
._0{margin-left:-1.123661px;}
._2{width:1.078714px;}
._d{width:2.585846px;}
._c{width:10.322553px;}
._b{width:21.592407px;}
._a{width:49.210201px;}
._e{width:108.193748px;}
._f{width:124.102492px;}
._9{width:126.855563px;}
._8{width:192.335045px;}
._10{width:355.843609px;}
._7{width:871.558281px;}
.fc10{color:rgb(159,159,159);}
.fcf{color:rgb(92,152,148);}
.fc11{color:transparent;}
.fce{color:rgb(153,153,153);}
.fcd{color:rgb(17,102,68);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(35,31,32);}
.fc3{color:rgb(51,51,51);}
.fc8{color:rgb(80,80,80);}
.fc1{color:rgb(255,255,255);}
.fcc{color:rgb(34,17,153);}
.fc6{color:rgb(13,110,253);}
.fc7{color:rgb(51,122,183);}
.fc9{color:rgb(119,0,136);}
.fca{color:rgb(255,85,0);}
.fc5{color:rgb(33,37,41);}
.fcb{color:rgb(0,136,85);}
.fs4{font-size:3.412482px;}
.fs11{font-size:4.543188px;}
.fsd{font-size:4.733910px;}
.fsf{font-size:5.522868px;}
.fs10{font-size:5.680632px;}
.fse{font-size:5.785806px;}
.fsb{font-size:6.311826px;}
.fs7{font-size:6.651774px;}
.fs6{font-size:7.092546px;}
.fs12{font-size:7.665612px;}
.fsa{font-size:7.889748px;}
.fs8{font-size:7.982190px;}
.fs15{font-size:8.213214px;}
.fs18{font-size:8.760660px;}
.fs14{font-size:9.855852px;}
.fsc{font-size:10.085832px;}
.fs5{font-size:10.095870px;}
.fs13{font-size:10.950900px;}
.fs9{font-size:11.183874px;}
.fs17{font-size:11.498346px;}
.fs16{font-size:14.236182px;}
.fs1a{font-size:26.967864px;}
.fs1{font-size:35.957148px;}
.fs0{font-size:44.946438px;}
.fs2{font-size:53.935722px;}
.fs3{font-size:89.892870px;}
.fs19{font-size:125.850018px;}
.y16c{bottom:-1.705173px;}
.y142{bottom:-0.846888px;}
.y16e{bottom:-0.844263px;}
.y189{bottom:-0.797582px;}
.y177{bottom:-0.479827px;}
.yfc{bottom:-0.340887px;}
.y123{bottom:-0.298660px;}
.yf5{bottom:-0.158642px;}
.y11e{bottom:-0.116415px;}
.y0{bottom:0.000000px;}
.yee{bottom:0.023604px;}
.ya1{bottom:0.047390px;}
.y117{bottom:0.065793px;}
.yfe{bottom:0.080613px;}
.y139{bottom:0.088278px;}
.yd0{bottom:0.170858px;}
.yce{bottom:0.172357px;}
.y171{bottom:0.223566px;}
.y112{bottom:0.248039px;}
.y121{bottom:0.263840px;}
.y187{bottom:0.273190px;}
.y114{bottom:0.276539px;}
.y15b{bottom:0.285846px;}
.y133{bottom:0.290228px;}
.y104{bottom:0.290661px;}
.yf3{bottom:0.303358px;}
.yf7{bottom:0.304858px;}
.y129{bottom:0.308925px;}
.y165{bottom:0.319656px;}
.y11c{bottom:0.323085px;}
.y10f{bottom:0.335745px;}
.y10d{bottom:0.337245px;}
.y13e{bottom:0.343032px;}
.y101{bottom:0.349907px;}
.y12f{bottom:0.355471px;}
.yf0{bottom:0.362604px;}
.y126{bottom:0.369670px;}
.y153{bottom:0.375100px;}
.y119{bottom:0.382293px;}
.y10a{bottom:0.394990px;}
.y8e{bottom:0.395528px;}
.y108{bottom:0.396490px;}
.ycb{bottom:0.400313px;}
.yfa{bottom:0.409113px;}
.y12c{bottom:0.414717px;}
.y144{bottom:0.430472px;}
.y14d{bottom:0.464281px;}
.y167{bottom:0.478656px;}
.y146{bottom:0.523472px;}
.yd3{bottom:0.527255px;}
.y13b{bottom:0.544278px;}
.y155{bottom:0.603100px;}
.y15d{bottom:0.636846px;}
.yc1{bottom:0.679542px;}
.yac{bottom:0.723148px;}
.y9f{bottom:0.860045px;}
.yd6{bottom:0.888366px;}
.y131{bottom:1.614397px;}
.y134{bottom:1.614728px;}
.ya3{bottom:1.823390px;}
.y84{bottom:4.064103px;}
.y7e{bottom:4.180227px;}
.y12d{bottom:4.796643px;}
.y130{bottom:4.796972px;}
.y75{bottom:4.822607px;}
.y79{bottom:5.253869px;}
.y12a{bottom:7.979217px;}
.y127{bottom:11.161425px;}
.y18c{bottom:13.275753px;}
.y124{bottom:14.343671px;}
.y11f{bottom:17.525840px;}
.y18b{bottom:19.663803px;}
.y16f{bottom:20.165742px;}
.y11a{bottom:20.708085px;}
.y140{bottom:22.606821px;}
.y115{bottom:23.890293px;}
.y16a{bottom:24.564312px;}
.y13f{bottom:26.941568px;}
.y110{bottom:27.072171px;}
.y169{bottom:27.502799px;}
.y10b{bottom:30.254745px;}
.y168{bottom:31.303656px;}
.y163{bottom:31.304012px;}
.y18a{bottom:31.550075px;}
.y106{bottom:33.436587px;}
.y162{bottom:33.653531px;}
.y161{bottom:36.592017px;}
.y102{bottom:36.618832px;}
.y105{bottom:36.619161px;}
.y193{bottom:37.568589px;}
.y160{bottom:39.530502px;}
.yff{bottom:39.801407px;}
.y185{bottom:39.968505px;}
.y15f{bottom:42.468987px;}
.y184{bottom:42.843129px;}
.yf8{bottom:42.983613px;}
.y183{bottom:45.717753px;}
.yf1{bottom:46.165859px;}
.y15e{bottom:46.269846px;}
.y159{bottom:46.270202px;}
.y182{bottom:48.592340px;}
.y158{bottom:48.619721px;}
.yec{bottom:49.348104px;}
.y181{bottom:51.466928px;}
.y157{bottom:51.558206px;}
.y136{bottom:52.185123px;}
.y135{bottom:52.530232px;}
.y156{bottom:55.359101px;}
.y151{bottom:55.359456px;}
.y17f{bottom:55.413824px;}
.yd4{bottom:55.567866px;}
.y17e{bottom:57.216176px;}
.y180{bottom:57.261797px;}
.y150{bottom:57.708975px;}
.y17d{bottom:58.288448px;}
.yd1{bottom:59.019641px;}
.y17c{bottom:60.090762px;}
.y14f{bottom:60.647424px;}
.y17b{bottom:61.163034px;}
.y17a{bottom:62.965386px;}
.ye4{bottom:63.441209px;}
.yeb{bottom:63.441210px;}
.y14e{bottom:63.585909px;}
.y179{bottom:64.037658px;}
.y14b{bottom:64.448675px;}
.ye3{bottom:65.512284px;}
.yea{bottom:65.512286px;}
.y14a{bottom:66.798156px;}
.ye2{bottom:67.583360px;}
.ye9{bottom:67.583361px;}
.y178{bottom:69.102410px;}
.ye1{bottom:69.654435px;}
.ye8{bottom:69.654437px;}
.y149{bottom:69.736643px;}
.y8{bottom:70.229797px;}
.yc{bottom:70.719264px;}
.ye0{bottom:71.725511px;}
.ye7{bottom:71.725512px;}
.y148{bottom:72.675165px;}
.ydf{bottom:73.796586px;}
.ye6{bottom:73.796588px;}
.y147{bottom:75.613613px;}
.yde{bottom:75.867663px;}
.ydd{bottom:77.938739px;}
.y175{bottom:78.250958px;}
.y13c{bottom:79.072278px;}
.y143{bottom:79.414472px;}
.ydc{bottom:80.009814px;}
.y174{bottom:81.536243px;}
.y7{bottom:81.915870px;}
.ydb{bottom:82.080890px;}
.y4{bottom:82.169069px;}
.y138{bottom:82.357526px;}
.yb{bottom:82.405337px;}
.y18d{bottom:82.562894px;}
.yda{bottom:84.151965px;}
.yd9{bottom:86.223041px;}
.y173{bottom:87.878597px;}
.ye5{bottom:88.294116px;}
.yd8{bottom:90.365192px;}
.yd7{bottom:92.436267px;}
.y6{bottom:93.601943px;}
.y3{bottom:93.855142px;}
.ya{bottom:94.091410px;}
.ycc{bottom:99.389162px;}
.y172{bottom:99.970199px;}
.yc9{bottom:101.756097px;}
.yc7{bottom:105.175023px;}
.y5{bottom:105.288016px;}
.y2{bottom:105.541215px;}
.y9{bottom:105.777483px;}
.yc8{bottom:108.265166px;}
.yc6{bottom:108.265223px;}
.yc5{bottom:112.210115px;}
.yc4{bottom:115.367639px;}
.yc3{bottom:120.791925px;}
.ybe{bottom:125.724684px;}
.ybf{bottom:134.082960px;}
.yc2{bottom:134.186487px;}
.y1{bottom:151.485461px;}
.y1c{bottom:213.233736px;}
.y1b{bottom:228.964989px;}
.y19{bottom:231.088446px;}
.y20{bottom:246.819697px;}
.y18{bottom:246.819699px;}
.y1f{bottom:262.550951px;}
.y17{bottom:264.674407px;}
.y16{bottom:280.405661px;}
.y1e{bottom:296.136914px;}
.y15{bottom:298.260368px;}
.y14{bottom:313.991622px;}
.y13{bottom:329.722875px;}
.y12{bottom:347.577585px;}
.y1a{bottom:347.577590px;}
.y1d{bottom:347.577594px;}
.y11{bottom:380.865139px;}
.y137{bottom:427.850646px;}
.y141{bottom:446.969646px;}
.y170{bottom:447.929646px;}
.y16b{bottom:451.181646px;}
.y16d{bottom:451.183146px;}
.y166{bottom:458.675646px;}
.y164{bottom:458.834646px;}
.y188{bottom:465.742146px;}
.y186{bottom:465.743646px;}
.y15c{bottom:473.483646px;}
.y15a{bottom:473.834646px;}
.y154{bottom:482.606646px;}
.y152{bottom:482.834646px;}
.ybd{bottom:486.010146px;}
.y132{bottom:487.334646px;}
.y12e{bottom:490.451646px;}
.y14c{bottom:491.834646px;}
.y12b{bottom:493.574646px;}
.y33{bottom:495.874232px;}
.y128{bottom:496.862646px;}
.y125{bottom:499.984146px;}
.y120{bottom:503.272146px;}
.y13d{bottom:503.294646px;}
.y176{bottom:503.296146px;}
.y122{bottom:503.834646px;}
.y13a{bottom:506.378646px;}
.y11b{bottom:506.395146px;}
.y145{bottom:506.741646px;}
.y11d{bottom:506.834646px;}
.y118{bottom:509.518146px;}
.y116{bottom:509.834646px;}
.y113{bottom:512.806146px;}
.y111{bottom:512.834646px;}
.y32{bottom:514.790648px;}
.y10c{bottom:515.927646px;}
.y10e{bottom:515.929146px;}
.y107{bottom:519.050646px;}
.y109{bottom:519.052146px;}
.y103{bottom:522.338646px;}
.y100{bottom:525.461646px;}
.yf9{bottom:528.584646px;}
.yfd{bottom:528.913146px;}
.yfb{bottom:529.334646px;}
.yf6{bottom:531.871146px;}
.yf2{bottom:531.872646px;}
.yf4{bottom:532.334646px;}
.y31{bottom:533.707143px;}
.yef{bottom:534.995646px;}
.yed{bottom:535.334646px;}
.yd5{bottom:540.689646px;}
.yd2{bottom:544.469646px;}
.y30{bottom:556.315500px;}
.ycd{bottom:581.512146px;}
.ycf{bottom:581.513646px;}
.yca{bottom:583.651146px;}
.yc0{bottom:619.334646px;}
.y8d{bottom:637.451646px;}
.yba{bottom:637.690685px;}
.ybc{bottom:641.015267px;}
.yb9{bottom:641.017263px;}
.y89{bottom:641.308499px;}
.ybb{bottom:644.341845px;}
.yb8{bottom:644.343840px;}
.y86{bottom:646.207959px;}
.y57{bottom:649.419794px;}
.yb5{bottom:649.749779px;}
.y58{bottom:651.381707px;}
.y88{bottom:652.461320px;}
.yb7{bottom:653.074361px;}
.yb4{bottom:653.076356px;}
.y6e{bottom:655.090498px;}
.yb6{bottom:656.400938px;}
.yb3{bottom:656.402934px;}
.y62{bottom:657.702861px;}
.y72{bottom:658.443017px;}
.y77{bottom:658.505229px;}
.y5f{bottom:659.466708px;}
.yb2{bottom:661.391147px;}
.y9d{bottom:661.678110px;}
.y7a{bottom:663.426489px;}
.y4e{bottom:663.440948px;}
.y6d{bottom:663.835016px;}
.yb1{bottom:664.717725px;}
.y63{bottom:664.837695px;}
.y8b{bottom:665.724302px;}
.y67{bottom:665.903224px;}
.y4a{bottom:665.934314px;}
.y54{bottom:666.948567px;}
.y4f{bottom:666.979655px;}
.y48{bottom:668.394981px;}
.y5a{bottom:669.271099px;}
.y52{bottom:669.440285px;}
.yb0{bottom:670.121656px;}
.y64{bottom:670.884414px;}
.y90{bottom:671.250990px;}
.y60{bottom:671.358261px;}
.y71{bottom:671.791395px;}
.y55{bottom:671.891664px;}
.y68{bottom:672.307194px;}
.y46{bottom:672.458251px;}
.y53{bottom:673.352498px;}
.y95{bottom:673.363434px;}
.yaf{bottom:673.448234px;}
.y4d{bottom:673.622775px;}
.y73{bottom:675.454043px;}
.y85{bottom:677.465508px;}
.y87{bottom:677.715822px;}
.yae{bottom:678.852855px;}
.y96{bottom:681.081561px;}
.y4c{bottom:681.625638px;}
.y2f{bottom:681.676423px;}
.y23{bottom:681.676430px;}
.y4b{bottom:683.089731px;}
.yab{bottom:683.834646px;}
.y51{bottom:684.177398px;}
.yad{bottom:684.557794px;}
.y59{bottom:685.140786px;}
.y3f{bottom:686.875046px;}
.y70{bottom:687.797196px;}
.y35{bottom:687.801429px;}
.y69{bottom:688.846733px;}
.yaa{bottom:690.959461px;}
.y50{bottom:691.450256px;}
.y66{bottom:691.660493px;}
.y97{bottom:692.816102px;}
.y7b{bottom:692.900751px;}
.ya9{bottom:694.286039px;}
.y83{bottom:694.334646px;}
.y3c{bottom:694.877945px;}
.y3e{bottom:697.429742px;}
.ya8{bottom:699.690005px;}
.y2e{bottom:700.592840px;}
.y22{bottom:700.592846px;}
.y92{bottom:701.958695px;}
.y6a{bottom:702.099077px;}
.y98{bottom:702.239460px;}
.ya7{bottom:703.016583px;}
.y3d{bottom:704.702600px;}
.y7d{bottom:704.834646px;}
.y43{bottom:707.053973px;}
.y93{bottom:707.446542px;}
.ya6{bottom:708.420514px;}
.y37{bottom:708.986669px;}
.y7f{bottom:709.014873px;}
.y40{bottom:709.610451px;}
.y10{bottom:710.944424px;}
.ya5{bottom:711.747092px;}
.y3b{bottom:712.079283px;}
.y7c{bottom:712.149175px;}
.y5e{bottom:713.119194px;}
.y36{bottom:713.698292px;}
.ya4{bottom:717.151676px;}
.y91{bottom:717.262206px;}
.y38{bottom:718.653186px;}
.y2d{bottom:719.509335px;}
.y21{bottom:719.509341px;}
.y34{bottom:719.887677px;}
.y6c{bottom:721.209665px;}
.y94{bottom:721.290794px;}
.y9a{bottom:722.199834px;}
.ya2{bottom:722.641146px;}
.y6b{bottom:723.678536px;}
.ya0{bottom:724.417146px;}
.y99{bottom:725.157161px;}
.y61{bottom:726.471320px;}
.y8f{bottom:727.614158px;}
.y9e{bottom:728.834646px;}
.y65{bottom:731.304334px;}
.y39{bottom:736.132743px;}
.y8a{bottom:736.687944px;}
.y82{bottom:737.535858px;}
.y5d{bottom:737.562564px;}
.y3a{bottom:741.400541px;}
.y47{bottom:742.322093px;}
.yf{bottom:743.851996px;}
.y81{bottom:744.954192px;}
.y5b{bottom:746.445328px;}
.y9b{bottom:747.108288px;}
.y49{bottom:747.589926px;}
.y78{bottom:748.544851px;}
.y5c{bottom:749.881334px;}
.y6f{bottom:752.654341px;}
.y56{bottom:754.105399px;}
.y76{bottom:755.556458px;}
.y9c{bottom:757.643921px;}
.y42{bottom:760.928793px;}
.ye{bottom:761.830566px;}
.y80{bottom:764.213628px;}
.y41{bottom:764.791602px;}
.y44{bottom:766.650587px;}
.y45{bottom:766.866217px;}
.y74{bottom:770.834646px;}
.y8c{bottom:771.939246px;}
.yd{bottom:779.809068px;}
.y2c{bottom:880.414021px;}
.y192{bottom:885.279586px;}
.y27{bottom:896.145274px;}
.y191{bottom:896.965623px;}
.y2b{bottom:899.330437px;}
.y26{bottom:915.061690px;}
.y2a{bottom:918.246898px;}
.y25{bottom:933.978152px;}
.y24{bottom:957.372360px;}
.y29{bottom:957.708714px;}
.y28{bottom:975.687284px;}
.y190{bottom:1083.600537px;}
.y18f{bottom:1124.501762px;}
.y18e{bottom:1165.403080px;}
.h4b{height:0.399000px;}
.h33{height:0.439500px;}
.h2b{height:0.463500px;}
.h40{height:0.756000px;}
.h4d{height:0.802500px;}
.h2c{height:0.891000px;}
.h34{height:0.913500px;}
.h35{height:0.972000px;}
.h2a{height:1.014000px;}
.h32{height:1.036500px;}
.h28{height:1.143000px;}
.h36{height:1.260000px;}
.h2e{height:1.282500px;}
.h20{height:1.312500px;}
.h2d{height:1.318500px;}
.h31{height:1.324500px;}
.h24{height:1.365000px;}
.hc{height:1.383000px;}
.h2f{height:1.407000px;}
.hf{height:1.417500px;}
.h30{height:1.447500px;}
.h5a{height:1.453500px;}
.h37{height:1.470000px;}
.h21{height:1.476000px;}
.h29{height:1.482000px;}
.h3c{height:1.500000px;}
.h3e{height:1.530000px;}
.h1f{height:1.641000px;}
.h3f{height:1.822500px;}
.h59{height:1.857000px;}
.h49{height:1.869000px;}
.h48{height:1.881000px;}
.h3d{height:1.986000px;}
.h47{height:2.004000px;}
.h4a{height:2.028000px;}
.h53{height:2.038500px;}
.h22{height:2.103000px;}
.h46{height:2.127000px;}
.h41{height:2.139000px;}
.h25{height:2.145000px;}
.h42{height:2.232000px;}
.h19{height:2.256000px;}
.h8{height:2.528649px;}
.hd{height:2.760000px;}
.h15{height:3.000000px;}
.h1e{height:3.673514px;}
.h26{height:4.225749px;}
.h27{height:4.447935px;}
.h23{height:4.530286px;}
.h1b{height:4.733869px;}
.h11{height:4.893000px;}
.h1a{height:4.897977px;}
.h1c{height:4.942160px;}
.h12{height:5.161777px;}
.h10{height:5.167031px;}
.h38{height:5.373336px;}
.h13{height:5.713814px;}
.h9{height:5.730483px;}
.h5d{height:5.749209px;}
.h39{height:5.788776px;}
.h14{height:5.815150px;}
.h18{height:6.122444px;}
.h3b{height:6.149707px;}
.h4f{height:6.159910px;}
.h5c{height:7.028205px;}
.h1d{height:7.312228px;}
.h4e{height:7.492950px;}
.h51{height:7.672719px;}
.he{height:7.723341px;}
.h4c{height:8.213175px;}
.h17{height:8.499744px;}
.h5b{height:8.571036px;}
.h54{height:8.623759px;}
.hb{height:9.000000px;}
.ha{height:9.270000px;}
.h45{height:9.599191px;}
.h44{height:9.599197px;}
.h43{height:9.599347px;}
.h52{height:10.061053px;}
.h57{height:10.584721px;}
.h56{height:10.584727px;}
.h55{height:10.584871px;}
.h58{height:10.585021px;}
.h50{height:13.040565px;}
.h3{height:26.967861px;}
.h2{height:33.709829px;}
.h7{height:37.755005px;}
.h4{height:40.451792px;}
.h5{height:43.660805px;}
.h6{height:67.419652px;}
.h5e{height:84.067812px;}
.h3a{height:106.266000px;}
.h16{height:138.405000px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w19{width:0.780000px;}
.w16{width:1.119000px;}
.w2b{width:1.189500px;}
.w47{width:1.218000px;}
.w11{width:1.288500px;}
.wd{width:1.330500px;}
.w14{width:1.353000px;}
.wf{width:1.371000px;}
.w5{width:1.500000px;}
.w3d{width:1.558500px;}
.w21{width:1.669500px;}
.w23{width:1.722000px;}
.w1f{width:1.822500px;}
.w29{width:1.828500px;}
.w31{width:1.939500px;}
.w15{width:1.945500px;}
.w28{width:1.992000px;}
.w27{width:2.010000px;}
.w12{width:2.032500px;}
.w24{width:2.050500px;}
.w1c{width:2.133000px;}
.wc{width:2.151000px;}
.w10{width:2.167500px;}
.w13{width:2.173500px;}
.we{width:2.197500px;}
.w1b{width:2.238000px;}
.w1a{width:2.280000px;}
.w42{width:2.373000px;}
.w17{width:2.403000px;}
.w43{width:2.437500px;}
.w35{width:2.514000px;}
.w3f{width:2.578500px;}
.w18{width:2.595000px;}
.w2a{width:2.689500px;}
.w2d{width:2.853000px;}
.w6{width:3.000000px;}
.w40{width:3.421500px;}
.w7{width:3.651000px;}
.w20{width:3.720000px;}
.w25{width:3.925500px;}
.w44{width:3.949500px;}
.w39{width:3.978000px;}
.w34{width:4.137000px;}
.w26{width:4.336500px;}
.w30{width:4.353000px;}
.w8{width:4.500000px;}
.w9{width:4.546500px;}
.w32{width:4.840500px;}
.w22{width:4.974000px;}
.w3e{width:5.044500px;}
.w41{width:5.766000px;}
.w1d{width:6.000000px;}
.w3b{width:6.052500px;}
.w38{width:6.099000px;}
.w3c{width:6.538500px;}
.w46{width:6.691500px;}
.w2e{width:7.500000px;}
.wa{width:7.605000px;}
.w33{width:7.939500px;}
.w2f{width:8.425500px;}
.w36{width:8.478000px;}
.w3{width:8.502000px;}
.w37{width:9.000000px;}
.w45{width:9.357000px;}
.w4{width:10.002000px;}
.w2{width:10.500000px;}
.w3a{width:12.000000px;}
.w1e{width:15.000000px;}
.wb{width:97.968000px;}
.w2c{width:156.153000px;}
.w0{width:892.913387px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x64{left:1.107901px;}
.x51{left:2.682175px;}
.x4f{left:3.817185px;}
.x95{left:5.571069px;}
.x72{left:6.769137px;}
.x92{left:8.369202px;}
.x94{left:10.139006px;}
.xa5{left:13.517352px;}
.xbb{left:15.398054px;}
.xbe{left:18.167766px;}
.x8f{left:32.801888px;}
.x84{left:34.782566px;}
.xa1{left:35.869070px;}
.xbc{left:37.915806px;}
.xc3{left:44.061678px;}
.x7d{left:50.167655px;}
.x18{left:51.759192px;}
.x1{left:56.006106px;}
.x26{left:57.895631px;}
.x13{left:63.149033px;}
.x12{left:66.110814px;}
.xac{left:70.291623px;}
.x93{left:72.382431px;}
.xa8{left:74.379914px;}
.x14{left:76.183202px;}
.x15{left:78.515955px;}
.x19{left:80.036530px;}
.x7c{left:83.577689px;}
.xa9{left:92.207055px;}
.x1e{left:105.376395px;}
.xbf{left:108.697191px;}
.x16{left:115.326519px;}
.x27{left:164.599164px;}
.x1f{left:170.958750px;}
.x20{left:180.112434px;}
.x3{left:193.248213px;}
.xc0{left:204.040863px;}
.x2{left:209.504889px;}
.x21{left:211.018200px;}
.x4{left:214.628711px;}
.xc1{left:269.717457px;}
.x17{left:298.747424px;}
.x1d{left:319.345326px;}
.xc2{left:323.864427px;}
.x6{left:329.680119px;}
.x1a{left:333.700743px;}
.x5{left:337.860073px;}
.x1b{left:347.503182px;}
.x7{left:366.616425px;}
.x23{left:390.876791px;}
.x22{left:427.781823px;}
.x24{left:429.499970px;}
.x25{left:446.130006px;}
.x9{left:474.952733px;}
.x71{left:481.459500px;}
.x8{left:485.141865px;}
.x7e{left:486.720000px;}
.x7f{left:489.000000px;}
.x80{left:490.500000px;}
.x81{left:492.000000px;}
.x82{left:493.500000px;}
.x83{left:495.000000px;}
.xa{left:497.425573px;}
.x96{left:499.500000px;}
.x97{left:501.000000px;}
.x98{left:502.500000px;}
.xa2{left:504.000000px;}
.x88{left:505.500000px;}
.x99{left:507.000000px;}
.x89{left:508.500000px;}
.x8a{left:510.000000px;}
.x8b{left:511.500000px;}
.x8c{left:513.000000px;}
.x85{left:517.500000px;}
.x86{left:519.000000px;}
.x8d{left:520.500000px;}
.x8e{left:522.000000px;}
.x9a{left:523.500000px;}
.x9b{left:525.000000px;}
.x9c{left:526.500000px;}
.x9d{left:528.000000px;}
.x9e{left:529.500000px;}
.x9f{left:531.000000px;}
.x90{left:532.500000px;}
.x73{left:534.000000px;}
.x74{left:535.669500px;}
.x75{left:537.129000px;}
.x76{left:538.711500px;}
.x91{left:540.000000px;}
.xa0{left:541.500000px;}
.x77{left:543.967500px;}
.x78{left:545.326500px;}
.x79{left:547.054500px;}
.x7a{left:549.000000px;}
.x87{left:550.500000px;}
.x7b{left:553.500000px;}
.x5b{left:554.625647px;}
.x5a{left:557.586681px;}
.x43{left:566.974492px;}
.x3f{left:571.963510px;}
.x3e{left:578.194584px;}
.x49{left:579.728680px;}
.x5c{left:582.000000px;}
.x41{left:583.965856px;}
.x59{left:585.348745px;}
.x36{left:592.691757px;}
.x55{left:594.161618px;}
.x40{left:597.306895px;}
.xb{left:599.875621px;}
.xc{left:602.952690px;}
.x32{left:604.481133px;}
.xd{left:606.921461px;}
.x35{left:608.433235px;}
.x44{left:610.486575px;}
.x45{left:611.763467px;}
.x34{left:612.878438px;}
.x1c{left:615.943110px;}
.x2b{left:617.237905px;}
.x38{left:618.390930px;}
.x3a{left:620.783280px;}
.x62{left:624.470835px;}
.x57{left:626.387052px;}
.x2a{left:631.477909px;}
.x28{left:632.630973px;}
.x48{left:634.405458px;}
.x29{left:635.858838px;}
.xe{left:637.232959px;}
.x46{left:639.145659px;}
.x37{left:640.711556px;}
.x39{left:641.789334px;}
.x5e{left:645.880395px;}
.x4e{left:647.317258px;}
.x5d{left:649.409028px;}
.x47{left:652.229754px;}
.x33{left:653.709352px;}
.x31{left:655.157302px;}
.x2c{left:656.349732px;}
.x3d{left:657.675951px;}
.x3c{left:658.753692px;}
.xbd{left:660.024000px;}
.xa3{left:661.647000px;}
.xa4{left:663.000000px;}
.xa6{left:664.500000px;}
.x5f{left:665.858450px;}
.x4b{left:667.019116px;}
.x2d{left:672.598805px;}
.x2e{left:674.271749px;}
.x30{left:675.726402px;}
.x2f{left:677.637787px;}
.x4c{left:679.480665px;}
.x56{left:681.487936px;}
.x60{left:683.563300px;}
.x4d{left:686.019622px;}
.x6c{left:687.762000px;}
.x52{left:689.291724px;}
.x3b{left:691.188874px;}
.x65{left:693.000000px;}
.x66{left:694.500000px;}
.x4a{left:695.598907px;}
.x61{left:698.270485px;}
.x67{left:700.500000px;}
.x63{left:701.929800px;}
.x42{left:704.621529px;}
.x68{left:706.500000px;}
.x69{left:709.500000px;}
.x50{left:711.363495px;}
.x6a{left:712.500000px;}
.xae{left:714.000000px;}
.x6b{left:715.500000px;}
.xab{left:720.000000px;}
.xaa{left:721.500000px;}
.xa7{left:723.000000px;}
.x6f{left:724.667228px;}
.x58{left:727.500000px;}
.x53{left:729.000000px;}
.xad{left:733.500000px;}
.x54{left:736.030317px;}
.x10{left:738.975738px;}
.xf{left:740.314917px;}
.x6e{left:742.817859px;}
.xaf{left:748.500000px;}
.xb0{left:751.078500px;}
.xb1{left:753.000000px;}
.xb2{left:756.000000px;}
.xb3{left:757.500000px;}
.xb4{left:759.000000px;}
.x70{left:761.594834px;}
.xb5{left:763.500000px;}
.x11{left:769.862254px;}
.xb6{left:772.500000px;}
.xba{left:775.272000px;}
.xb7{left:777.000000px;}
.xb8{left:781.500000px;}
.x6d{left:789.603000px;}
.xb9{left:795.000000px;}
@media print{
.v1{vertical-align:-21.118976pt;}
.v4{vertical-align:-3.066213pt;}
.v5{vertical-align:-1.297920pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.928919pt;}
.v2{vertical-align:2.846075pt;}
.v6{vertical-align:3.942368pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004408pt;}
.ls5{letter-spacing:0.004409pt;}
.ls8{letter-spacing:0.035346pt;}
.ls0{letter-spacing:0.039274pt;}
.ls2{letter-spacing:0.044884pt;}
.ls1{letter-spacing:0.106600pt;}
.lse{letter-spacing:0.239714pt;}
.ls7{letter-spacing:1.055481pt;}
.ls6{letter-spacing:2.955348pt;}
.ls4{letter-spacing:2.960008pt;}
.lsa{letter-spacing:4.750124pt;}
.lsc{letter-spacing:4.987860pt;}
.ls9{letter-spacing:5.964694pt;}
.lsd{letter-spacing:10.590764pt;}
.lsb{letter-spacing:14.935969pt;}
.ws3{word-spacing:-29.325052pt;}
.ws6{word-spacing:-28.448363pt;}
.ws4{word-spacing:-28.448230pt;}
.ws34{word-spacing:-21.030936pt;}
.ws0{word-spacing:-14.662527pt;}
.ws5{word-spacing:-14.143146pt;}
.ws1{word-spacing:-11.314516pt;}
.ws22{word-spacing:-7.864564pt;}
.ws1b{word-spacing:-2.955597pt;}
.ws8{word-spacing:-2.333268pt;}
.ws32{word-spacing:-2.181634pt;}
.wse{word-spacing:-1.971296pt;}
.ws20{word-spacing:-1.953868pt;}
.ws33{word-spacing:-1.927801pt;}
.ws25{word-spacing:-1.900116pt;}
.ws2c{word-spacing:-1.686834pt;}
.ws16{word-spacing:-1.329691pt;}
.ws11{word-spacing:-1.324081pt;}
.ws12{word-spacing:-1.284807pt;}
.ws29{word-spacing:-1.196720pt;}
.ws27{word-spacing:-1.191670pt;}
.ws18{word-spacing:-1.177733pt;}
.ws26{word-spacing:-1.156324pt;}
.ws15{word-spacing:-0.997277pt;}
.ws7{word-spacing:-0.843262pt;}
.wsf{word-spacing:-0.009941pt;}
.ws9{word-spacing:-0.005913pt;}
.ws35{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.001175pt;}
.ws1f{word-spacing:0.002171pt;}
.ws24{word-spacing:0.008320pt;}
.ws1a{word-spacing:0.008325pt;}
.ws23{word-spacing:0.008821pt;}
.ws1d{word-spacing:0.009569pt;}
.ws1e{word-spacing:0.012483pt;}
.ws19{word-spacing:0.012984pt;}
.ws21{word-spacing:0.023475pt;}
.ws13{word-spacing:7.464304pt;}
.ws14{word-spacing:7.475788pt;}
.ws17{word-spacing:14.180522pt;}
.ws2b{word-spacing:15.012952pt;}
.ws10{word-spacing:17.501367pt;}
.ws2f{word-spacing:24.540621pt;}
.ws30{word-spacing:28.231288pt;}
.ws31{word-spacing:34.066294pt;}
.ws2d{word-spacing:40.618125pt;}
.ws2a{word-spacing:47.010077pt;}
.ws2e{word-spacing:55.154269pt;}
.ws28{word-spacing:74.275843pt;}
.wsd{word-spacing:98.953491pt;}
.wsa{word-spacing:173.672360pt;}
.wsb{word-spacing:187.073182pt;}
.wsc{word-spacing:191.019239pt;}
.ws2{word-spacing:538.888213pt;}
._5{margin-left:-11.602173pt;}
._1{margin-left:-7.319277pt;}
._4{margin-left:-5.912953pt;}
._6{margin-left:-4.011221pt;}
._3{margin-left:-2.844610pt;}
._0{margin-left:-0.998810pt;}
._2{width:0.958857pt;}
._d{width:2.298530pt;}
._c{width:9.175603pt;}
._b{width:19.193250pt;}
._a{width:43.742401pt;}
._e{width:96.172220pt;}
._f{width:110.313326pt;}
._9{width:112.760501pt;}
._8{width:170.964484pt;}
._10{width:316.305431pt;}
._7{width:774.718472pt;}
.fs4{font-size:3.033317pt;}
.fs11{font-size:4.038389pt;}
.fsd{font-size:4.207920pt;}
.fsf{font-size:4.909216pt;}
.fs10{font-size:5.049451pt;}
.fse{font-size:5.142939pt;}
.fsb{font-size:5.610512pt;}
.fs7{font-size:5.912688pt;}
.fs6{font-size:6.304485pt;}
.fs12{font-size:6.813877pt;}
.fsa{font-size:7.013109pt;}
.fs8{font-size:7.095280pt;}
.fs15{font-size:7.300635pt;}
.fs18{font-size:7.787253pt;}
.fs14{font-size:8.760757pt;}
.fsc{font-size:8.965184pt;}
.fs5{font-size:8.974107pt;}
.fs13{font-size:9.734133pt;}
.fs9{font-size:9.941221pt;}
.fs17{font-size:10.220752pt;}
.fs16{font-size:12.654384pt;}
.fs1a{font-size:23.971435pt;}
.fs1{font-size:31.961909pt;}
.fs0{font-size:39.952389pt;}
.fs2{font-size:47.942864pt;}
.fs3{font-size:79.904773pt;}
.fs19{font-size:111.866683pt;}
.y16c{bottom:-1.515709pt;}
.y142{bottom:-0.752789pt;}
.y16e{bottom:-0.750456pt;}
.y189{bottom:-0.708961pt;}
.y177{bottom:-0.426513pt;}
.yfc{bottom:-0.303011pt;}
.y123{bottom:-0.265476pt;}
.yf5{bottom:-0.141015pt;}
.y11e{bottom:-0.103480pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:0.020981pt;}
.ya1{bottom:0.042124pt;}
.y117{bottom:0.058483pt;}
.yfe{bottom:0.071656pt;}
.y139{bottom:0.078469pt;}
.yd0{bottom:0.151873pt;}
.yce{bottom:0.153207pt;}
.y171{bottom:0.198725pt;}
.y112{bottom:0.220479pt;}
.y121{bottom:0.234524pt;}
.y187{bottom:0.242836pt;}
.y114{bottom:0.245812pt;}
.y15b{bottom:0.254085pt;}
.y133{bottom:0.257980pt;}
.y104{bottom:0.258365pt;}
.yf3{bottom:0.269652pt;}
.yf7{bottom:0.270985pt;}
.y129{bottom:0.274600pt;}
.y165{bottom:0.284139pt;}
.y11c{bottom:0.287187pt;}
.y10f{bottom:0.298440pt;}
.y10d{bottom:0.299773pt;}
.y13e{bottom:0.304917pt;}
.y101{bottom:0.311028pt;}
.y12f{bottom:0.315975pt;}
.yf0{bottom:0.322315pt;}
.y126{bottom:0.328596pt;}
.y153{bottom:0.333423pt;}
.y119{bottom:0.339816pt;}
.y10a{bottom:0.351103pt;}
.y8e{bottom:0.351580pt;}
.y108{bottom:0.352436pt;}
.ycb{bottom:0.355833pt;}
.yfa{bottom:0.363656pt;}
.y12c{bottom:0.368637pt;}
.y144{bottom:0.382641pt;}
.y14d{bottom:0.412695pt;}
.y167{bottom:0.425472pt;}
.y146{bottom:0.465308pt;}
.yd3{bottom:0.468671pt;}
.y13b{bottom:0.483803pt;}
.y155{bottom:0.536089pt;}
.y15d{bottom:0.566085pt;}
.yc1{bottom:0.604037pt;}
.yac{bottom:0.642799pt;}
.y9f{bottom:0.764484pt;}
.yd6{bottom:0.789659pt;}
.y131{bottom:1.435020pt;}
.y134{bottom:1.435313pt;}
.ya3{bottom:1.620791pt;}
.y84{bottom:3.612536pt;}
.y7e{bottom:3.715757pt;}
.y12d{bottom:4.263683pt;}
.y130{bottom:4.263975pt;}
.y75{bottom:4.286761pt;}
.y79{bottom:4.670105pt;}
.y12a{bottom:7.092637pt;}
.y127{bottom:9.921267pt;}
.y18c{bottom:11.800669pt;}
.y124{bottom:12.749929pt;}
.y11f{bottom:15.578524pt;}
.y18b{bottom:17.478936pt;}
.y16f{bottom:17.925104pt;}
.y11a{bottom:18.407187pt;}
.y140{bottom:20.094952pt;}
.y115{bottom:21.235816pt;}
.y16a{bottom:21.834944pt;}
.y13f{bottom:23.948060pt;}
.y110{bottom:24.064152pt;}
.y169{bottom:24.446932pt;}
.y10b{bottom:26.893107pt;}
.y168{bottom:27.825472pt;}
.y163{bottom:27.825788pt;}
.y18a{bottom:28.044511pt;}
.y106{bottom:29.721411pt;}
.y162{bottom:29.914249pt;}
.y161{bottom:32.526237pt;}
.y102{bottom:32.550073pt;}
.y105{bottom:32.550365pt;}
.y193{bottom:33.394301pt;}
.y160{bottom:35.138224pt;}
.yff{bottom:35.379028pt;}
.y185{bottom:35.527560pt;}
.y15f{bottom:37.750211pt;}
.y184{bottom:38.082781pt;}
.yf8{bottom:38.207656pt;}
.y183{bottom:40.638003pt;}
.yf1{bottom:41.036319pt;}
.y15e{bottom:41.128752pt;}
.y159{bottom:41.129068pt;}
.y182{bottom:43.193191pt;}
.y158{bottom:43.217529pt;}
.yec{bottom:43.864981pt;}
.y181{bottom:45.748380pt;}
.y157{bottom:45.829516pt;}
.y136{bottom:46.386776pt;}
.y135{bottom:46.693540pt;}
.y156{bottom:49.208089pt;}
.y151{bottom:49.208405pt;}
.y17f{bottom:49.256732pt;}
.yd4{bottom:49.393659pt;}
.y17e{bottom:50.858823pt;}
.y180{bottom:50.899375pt;}
.y150{bottom:51.296867pt;}
.y17d{bottom:51.811953pt;}
.yd1{bottom:52.461903pt;}
.y17c{bottom:53.414011pt;}
.y14f{bottom:53.908821pt;}
.y17b{bottom:54.367141pt;}
.y17a{bottom:55.969232pt;}
.ye4{bottom:56.392185pt;}
.yeb{bottom:56.392187pt;}
.y14e{bottom:56.520808pt;}
.y179{bottom:56.922363pt;}
.y14b{bottom:57.287711pt;}
.ye3{bottom:58.233141pt;}
.yea{bottom:58.233143pt;}
.y14a{bottom:59.376139pt;}
.ye2{bottom:60.074097pt;}
.ye9{bottom:60.074099pt;}
.y178{bottom:61.424364pt;}
.ye1{bottom:61.915053pt;}
.ye8{bottom:61.915055pt;}
.y149{bottom:61.988127pt;}
.y8{bottom:62.426486pt;}
.yc{bottom:62.861568pt;}
.ye0{bottom:63.756009pt;}
.ye7{bottom:63.756011pt;}
.y148{bottom:64.600147pt;}
.ydf{bottom:65.596965pt;}
.ye6{bottom:65.596967pt;}
.y147{bottom:67.212100pt;}
.yde{bottom:67.437923pt;}
.ydd{bottom:69.278879pt;}
.y175{bottom:69.556407pt;}
.y13c{bottom:70.286469pt;}
.y143{bottom:70.590641pt;}
.ydc{bottom:71.119835pt;}
.y174{bottom:72.476660pt;}
.y7{bottom:72.814107pt;}
.ydb{bottom:72.960791pt;}
.y4{bottom:73.039172pt;}
.y138{bottom:73.206689pt;}
.yb{bottom:73.249188pt;}
.y18d{bottom:73.389239pt;}
.yda{bottom:74.801747pt;}
.yd9{bottom:76.642703pt;}
.y173{bottom:78.114308pt;}
.ye5{bottom:78.483659pt;}
.yd8{bottom:80.324615pt;}
.yd7{bottom:82.165571pt;}
.y6{bottom:83.201727pt;}
.y3{bottom:83.426793pt;}
.ya{bottom:83.636809pt;}
.ycc{bottom:88.345922pt;}
.y172{bottom:88.862399pt;}
.yc9{bottom:90.449864pt;}
.yc7{bottom:93.488909pt;}
.y5{bottom:93.589348pt;}
.y2{bottom:93.814413pt;}
.y9{bottom:94.024429pt;}
.yc8{bottom:96.235703pt;}
.yc6{bottom:96.235754pt;}
.yc5{bottom:99.742324pt;}
.yc4{bottom:102.549012pt;}
.yc3{bottom:107.370600pt;}
.ybe{bottom:111.755275pt;}
.ybf{bottom:119.184853pt;}
.yc2{bottom:119.276877pt;}
.y1{bottom:134.653743pt;}
.y1c{bottom:189.541098pt;}
.y1b{bottom:203.524435pt;}
.y19{bottom:205.411952pt;}
.y20{bottom:219.395286pt;}
.y18{bottom:219.395288pt;}
.y1f{bottom:233.378623pt;}
.y17{bottom:235.266140pt;}
.y16{bottom:249.249476pt;}
.y1e{bottom:263.232812pt;}
.y15{bottom:265.120327pt;}
.y14{bottom:279.103664pt;}
.y13{bottom:293.087000pt;}
.y12{bottom:308.957853pt;}
.y1a{bottom:308.957858pt;}
.y1d{bottom:308.957861pt;}
.y11{bottom:338.546791pt;}
.y137{bottom:380.311685pt;}
.y141{bottom:397.306352pt;}
.y170{bottom:398.159685pt;}
.y16b{bottom:401.050352pt;}
.y16d{bottom:401.051685pt;}
.y166{bottom:407.711685pt;}
.y164{bottom:407.853019pt;}
.y188{bottom:413.993019pt;}
.y186{bottom:413.994352pt;}
.y15c{bottom:420.874352pt;}
.y15a{bottom:421.186352pt;}
.y154{bottom:428.983685pt;}
.y152{bottom:429.186352pt;}
.ybd{bottom:432.009019pt;}
.y132{bottom:433.186352pt;}
.y12e{bottom:435.957019pt;}
.y14c{bottom:437.186352pt;}
.y12b{bottom:438.733019pt;}
.y33{bottom:440.777095pt;}
.y128{bottom:441.655685pt;}
.y125{bottom:444.430352pt;}
.y120{bottom:447.353019pt;}
.y13d{bottom:447.373019pt;}
.y176{bottom:447.374352pt;}
.y122{bottom:447.853019pt;}
.y13a{bottom:450.114352pt;}
.y11b{bottom:450.129019pt;}
.y145{bottom:450.437019pt;}
.y11d{bottom:450.519685pt;}
.y118{bottom:452.905019pt;}
.y116{bottom:453.186352pt;}
.y113{bottom:455.827685pt;}
.y111{bottom:455.853019pt;}
.y32{bottom:457.591687pt;}
.y10c{bottom:458.602352pt;}
.y10e{bottom:458.603685pt;}
.y107{bottom:461.378352pt;}
.y109{bottom:461.379685pt;}
.y103{bottom:464.301019pt;}
.y100{bottom:467.077019pt;}
.yf9{bottom:469.853019pt;}
.yfd{bottom:470.145019pt;}
.yfb{bottom:470.519685pt;}
.yf6{bottom:472.774352pt;}
.yf2{bottom:472.775685pt;}
.yf4{bottom:473.186352pt;}
.y31{bottom:474.406349pt;}
.yef{bottom:475.551685pt;}
.yed{bottom:475.853019pt;}
.yd5{bottom:480.613019pt;}
.yd2{bottom:483.973019pt;}
.y30{bottom:494.502667pt;}
.ycd{bottom:516.899685pt;}
.ycf{bottom:516.901019pt;}
.yca{bottom:518.801019pt;}
.yc0{bottom:550.519685pt;}
.y8d{bottom:566.623685pt;}
.yba{bottom:566.836165pt;}
.ybc{bottom:569.791349pt;}
.yb9{bottom:569.793122pt;}
.y89{bottom:570.051999pt;}
.ybb{bottom:572.748307pt;}
.yb8{bottom:572.750080pt;}
.y86{bottom:574.407075pt;}
.y57{bottom:577.262039pt;}
.yb5{bottom:577.555359pt;}
.y58{bottom:579.005961pt;}
.y88{bottom:579.965617pt;}
.yb7{bottom:580.510543pt;}
.yb4{bottom:580.512317pt;}
.y6e{bottom:582.302665pt;}
.yb6{bottom:583.467501pt;}
.yb3{bottom:583.469275pt;}
.y62{bottom:584.624765pt;}
.y72{bottom:585.282681pt;}
.y77{bottom:585.337981pt;}
.y5f{bottom:586.192629pt;}
.yb2{bottom:587.903242pt;}
.y9d{bottom:588.158320pt;}
.y7a{bottom:589.712435pt;}
.y4e{bottom:589.725287pt;}
.y6d{bottom:590.075569pt;}
.yb1{bottom:590.860200pt;}
.y63{bottom:590.966840pt;}
.y8b{bottom:591.754935pt;}
.y67{bottom:591.913977pt;}
.y4a{bottom:591.941612pt;}
.y54{bottom:592.843171pt;}
.y4f{bottom:592.870804pt;}
.y48{bottom:594.128872pt;}
.y5a{bottom:594.907644pt;}
.y52{bottom:595.058031pt;}
.yb0{bottom:595.663694pt;}
.y64{bottom:596.341701pt;}
.y90{bottom:596.667547pt;}
.y60{bottom:596.762899pt;}
.y71{bottom:597.147907pt;}
.y55{bottom:597.237035pt;}
.y68{bottom:597.606395pt;}
.y46{bottom:597.740668pt;}
.y53{bottom:598.535553pt;}
.y95{bottom:598.545275pt;}
.yaf{bottom:598.620652pt;}
.y4d{bottom:598.775800pt;}
.y73{bottom:600.403593pt;}
.y85{bottom:602.191563pt;}
.y87{bottom:602.414064pt;}
.yae{bottom:603.424760pt;}
.y96{bottom:605.405832pt;}
.y4c{bottom:605.889456pt;}
.y2f{bottom:605.934598pt;}
.y23{bottom:605.934604pt;}
.y4b{bottom:607.190872pt;}
.yab{bottom:607.853019pt;}
.y51{bottom:608.157687pt;}
.yad{bottom:608.495817pt;}
.y59{bottom:609.014032pt;}
.y3f{bottom:610.555596pt;}
.y70{bottom:611.375285pt;}
.y35{bottom:611.379048pt;}
.y69{bottom:612.308207pt;}
.yaa{bottom:614.186187pt;}
.y50{bottom:614.622449pt;}
.y66{bottom:614.809327pt;}
.y97{bottom:615.836535pt;}
.y7b{bottom:615.911779pt;}
.ya9{bottom:617.143145pt;}
.y83{bottom:617.186352pt;}
.y3c{bottom:617.669284pt;}
.y3e{bottom:619.937548pt;}
.ya8{bottom:621.946671pt;}
.y2e{bottom:622.749191pt;}
.y22{bottom:622.749196pt;}
.y92{bottom:623.963284pt;}
.y6a{bottom:624.088068pt;}
.y98{bottom:624.212853pt;}
.ya7{bottom:624.903629pt;}
.y3d{bottom:626.402311pt;}
.y7d{bottom:626.519685pt;}
.y43{bottom:628.492420pt;}
.y93{bottom:628.841371pt;}
.ya6{bottom:629.707123pt;}
.y37{bottom:630.210372pt;}
.y7f{bottom:630.235443pt;}
.y40{bottom:630.764845pt;}
.y10{bottom:631.950599pt;}
.ya5{bottom:632.664081pt;}
.y3b{bottom:632.959363pt;}
.y7c{bottom:633.021489pt;}
.y5e{bottom:633.883728pt;}
.y36{bottom:634.398481pt;}
.ya4{bottom:637.468156pt;}
.y91{bottom:637.566405pt;}
.y38{bottom:638.802832pt;}
.y2d{bottom:639.563853pt;}
.y21{bottom:639.563859pt;}
.y34{bottom:639.900157pt;}
.y6c{bottom:641.075257pt;}
.y94{bottom:641.147372pt;}
.y9a{bottom:641.955408pt;}
.ya2{bottom:642.347685pt;}
.y6b{bottom:643.269809pt;}
.ya0{bottom:643.926352pt;}
.y99{bottom:644.584143pt;}
.y61{bottom:645.752284pt;}
.y8f{bottom:646.768140pt;}
.y9e{bottom:647.853019pt;}
.y65{bottom:650.048297pt;}
.y39{bottom:654.340216pt;}
.y8a{bottom:654.833728pt;}
.y82{bottom:655.587429pt;}
.y5d{bottom:655.611168pt;}
.y3a{bottom:659.022703pt;}
.y47{bottom:659.841860pt;}
.yf{bottom:661.201775pt;}
.y81{bottom:662.181504pt;}
.y5b{bottom:663.506959pt;}
.y9b{bottom:664.096256pt;}
.y49{bottom:664.524379pt;}
.y78{bottom:665.373201pt;}
.y5c{bottom:666.561185pt;}
.y6f{bottom:669.026081pt;}
.y56{bottom:670.315911pt;}
.y76{bottom:671.605740pt;}
.y9c{bottom:673.461263pt;}
.y42{bottom:676.381149pt;}
.ye{bottom:677.182725pt;}
.y80{bottom:679.301003pt;}
.y41{bottom:679.814757pt;}
.y44{bottom:681.467188pt;}
.y45{bottom:681.658860pt;}
.y74{bottom:685.186352pt;}
.y8c{bottom:686.168219pt;}
.yd{bottom:693.163616pt;}
.y2c{bottom:782.590241pt;}
.y192{bottom:786.915187pt;}
.y27{bottom:796.573577pt;}
.y191{bottom:797.302776pt;}
.y2b{bottom:799.404833pt;}
.y26{bottom:813.388169pt;}
.y2a{bottom:816.219465pt;}
.y25{bottom:830.202801pt;}
.y24{bottom:850.997653pt;}
.y29{bottom:851.296635pt;}
.y28{bottom:867.277585pt;}
.y190{bottom:963.200478pt;}
.y18f{bottom:999.557122pt;}
.y18e{bottom:1035.913849pt;}
.h4b{height:0.354667pt;}
.h33{height:0.390667pt;}
.h2b{height:0.412000pt;}
.h40{height:0.672000pt;}
.h4d{height:0.713333pt;}
.h2c{height:0.792000pt;}
.h34{height:0.812000pt;}
.h35{height:0.864000pt;}
.h2a{height:0.901333pt;}
.h32{height:0.921333pt;}
.h28{height:1.016000pt;}
.h36{height:1.120000pt;}
.h2e{height:1.140000pt;}
.h20{height:1.166667pt;}
.h2d{height:1.172000pt;}
.h31{height:1.177333pt;}
.h24{height:1.213333pt;}
.hc{height:1.229333pt;}
.h2f{height:1.250667pt;}
.hf{height:1.260000pt;}
.h30{height:1.286667pt;}
.h5a{height:1.292000pt;}
.h37{height:1.306667pt;}
.h21{height:1.312000pt;}
.h29{height:1.317333pt;}
.h3c{height:1.333333pt;}
.h3e{height:1.360000pt;}
.h1f{height:1.458667pt;}
.h3f{height:1.620000pt;}
.h59{height:1.650667pt;}
.h49{height:1.661333pt;}
.h48{height:1.672000pt;}
.h3d{height:1.765333pt;}
.h47{height:1.781333pt;}
.h4a{height:1.802667pt;}
.h53{height:1.812000pt;}
.h22{height:1.869333pt;}
.h46{height:1.890667pt;}
.h41{height:1.901333pt;}
.h25{height:1.906667pt;}
.h42{height:1.984000pt;}
.h19{height:2.005333pt;}
.h8{height:2.247688pt;}
.hd{height:2.453333pt;}
.h15{height:2.666667pt;}
.h1e{height:3.265346pt;}
.h26{height:3.756221pt;}
.h27{height:3.953720pt;}
.h23{height:4.026921pt;}
.h1b{height:4.207884pt;}
.h11{height:4.349333pt;}
.h1a{height:4.353757pt;}
.h1c{height:4.393031pt;}
.h12{height:4.588246pt;}
.h10{height:4.592916pt;}
.h38{height:4.776299pt;}
.h13{height:5.078946pt;}
.h9{height:5.093763pt;}
.h5d{height:5.110408pt;}
.h39{height:5.145579pt;}
.h14{height:5.169022pt;}
.h18{height:5.442173pt;}
.h3b{height:5.466406pt;}
.h4f{height:5.475476pt;}
.h5c{height:6.247294pt;}
.h1d{height:6.499758pt;}
.h4e{height:6.660400pt;}
.h51{height:6.820195pt;}
.he{height:6.865192pt;}
.h4c{height:7.300600pt;}
.h17{height:7.555328pt;}
.h5b{height:7.618698pt;}
.h54{height:7.665564pt;}
.hb{height:8.000000pt;}
.ha{height:8.240000pt;}
.h45{height:8.532614pt;}
.h44{height:8.532620pt;}
.h43{height:8.532753pt;}
.h52{height:8.943158pt;}
.h57{height:9.408641pt;}
.h56{height:9.408646pt;}
.h55{height:9.408774pt;}
.h58{height:9.408908pt;}
.h50{height:11.591613pt;}
.h3{height:23.971432pt;}
.h2{height:29.964292pt;}
.h7{height:33.560005pt;}
.h4{height:35.957148pt;}
.h5{height:38.809604pt;}
.h6{height:59.928580pt;}
.h5e{height:74.726944pt;}
.h3a{height:94.458667pt;}
.h16{height:123.026667pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w19{width:0.693333pt;}
.w16{width:0.994667pt;}
.w2b{width:1.057333pt;}
.w47{width:1.082667pt;}
.w11{width:1.145333pt;}
.wd{width:1.182667pt;}
.w14{width:1.202667pt;}
.wf{width:1.218667pt;}
.w5{width:1.333333pt;}
.w3d{width:1.385333pt;}
.w21{width:1.484000pt;}
.w23{width:1.530667pt;}
.w1f{width:1.620000pt;}
.w29{width:1.625333pt;}
.w31{width:1.724000pt;}
.w15{width:1.729333pt;}
.w28{width:1.770667pt;}
.w27{width:1.786667pt;}
.w12{width:1.806667pt;}
.w24{width:1.822667pt;}
.w1c{width:1.896000pt;}
.wc{width:1.912000pt;}
.w10{width:1.926667pt;}
.w13{width:1.932000pt;}
.we{width:1.953333pt;}
.w1b{width:1.989333pt;}
.w1a{width:2.026667pt;}
.w42{width:2.109333pt;}
.w17{width:2.136000pt;}
.w43{width:2.166667pt;}
.w35{width:2.234667pt;}
.w3f{width:2.292000pt;}
.w18{width:2.306667pt;}
.w2a{width:2.390667pt;}
.w2d{width:2.536000pt;}
.w6{width:2.666667pt;}
.w40{width:3.041333pt;}
.w7{width:3.245333pt;}
.w20{width:3.306667pt;}
.w25{width:3.489333pt;}
.w44{width:3.510667pt;}
.w39{width:3.536000pt;}
.w34{width:3.677333pt;}
.w26{width:3.854667pt;}
.w30{width:3.869333pt;}
.w8{width:4.000000pt;}
.w9{width:4.041333pt;}
.w32{width:4.302667pt;}
.w22{width:4.421333pt;}
.w3e{width:4.484000pt;}
.w41{width:5.125333pt;}
.w1d{width:5.333333pt;}
.w3b{width:5.380000pt;}
.w38{width:5.421333pt;}
.w3c{width:5.812000pt;}
.w46{width:5.948000pt;}
.w2e{width:6.666667pt;}
.wa{width:6.760000pt;}
.w33{width:7.057333pt;}
.w2f{width:7.489333pt;}
.w36{width:7.536000pt;}
.w3{width:7.557333pt;}
.w37{width:8.000000pt;}
.w45{width:8.317333pt;}
.w4{width:8.890667pt;}
.w2{width:9.333333pt;}
.w3a{width:10.666667pt;}
.w1e{width:13.333333pt;}
.wb{width:87.082667pt;}
.w2c{width:138.802667pt;}
.w0{width:793.700788pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x64{left:0.984801pt;}
.x51{left:2.384156pt;}
.x4f{left:3.393053pt;}
.x95{left:4.952062pt;}
.x72{left:6.017011pt;}
.x92{left:7.439291pt;}
.x94{left:9.012449pt;}
.xa5{left:12.015424pt;}
.xbb{left:13.687159pt;}
.xbe{left:16.149125pt;}
.x8f{left:29.157233pt;}
.x84{left:30.917836pt;}
.xa1{left:31.883617pt;}
.xbc{left:33.702939pt;}
.xc3{left:39.165936pt;}
.x7d{left:44.593471pt;}
.x18{left:46.008171pt;}
.x1{left:49.783205pt;}
.x26{left:51.462783pt;}
.x13{left:56.132474pt;}
.x12{left:58.765168pt;}
.xac{left:62.481443pt;}
.x93{left:64.339939pt;}
.xa8{left:66.115479pt;}
.x14{left:67.718402pt;}
.x15{left:69.791960pt;}
.x19{left:71.143583pt;}
.x7c{left:74.291279pt;}
.xa9{left:81.961827pt;}
.x1e{left:93.667907pt;}
.xbf{left:96.619725pt;}
.x16{left:102.512461pt;}
.x27{left:146.310368pt;}
.x1f{left:151.963333pt;}
.x20{left:160.099941pt;}
.x3{left:171.776189pt;}
.xc0{left:181.369656pt;}
.x2{left:186.226568pt;}
.x21{left:187.571733pt;}
.x4{left:190.781076pt;}
.xc1{left:239.748850pt;}
.x17{left:265.553266pt;}
.x1d{left:283.862512pt;}
.xc2{left:287.879491pt;}
.x6{left:293.048995pt;}
.x1a{left:296.622882pt;}
.x5{left:300.320065pt;}
.x1b{left:308.891717pt;}
.x7{left:325.881267pt;}
.x23{left:347.446036pt;}
.x22{left:380.250509pt;}
.x24{left:381.777751pt;}
.x25{left:396.560005pt;}
.x9{left:422.180207pt;}
.x71{left:427.964000pt;}
.x8{left:431.237213pt;}
.x7e{left:432.640000pt;}
.x7f{left:434.666667pt;}
.x80{left:436.000000pt;}
.x81{left:437.333333pt;}
.x82{left:438.666667pt;}
.x83{left:440.000000pt;}
.xa{left:442.156065pt;}
.x96{left:444.000000pt;}
.x97{left:445.333333pt;}
.x98{left:446.666667pt;}
.xa2{left:448.000000pt;}
.x88{left:449.333333pt;}
.x99{left:450.666667pt;}
.x89{left:452.000000pt;}
.x8a{left:453.333333pt;}
.x8b{left:454.666667pt;}
.x8c{left:456.000000pt;}
.x85{left:460.000000pt;}
.x86{left:461.333333pt;}
.x8d{left:462.666667pt;}
.x8e{left:464.000000pt;}
.x9a{left:465.333333pt;}
.x9b{left:466.666667pt;}
.x9c{left:468.000000pt;}
.x9d{left:469.333333pt;}
.x9e{left:470.666667pt;}
.x9f{left:472.000000pt;}
.x90{left:473.333333pt;}
.x73{left:474.666667pt;}
.x74{left:476.150667pt;}
.x75{left:477.448000pt;}
.x76{left:478.854667pt;}
.x91{left:480.000000pt;}
.xa0{left:481.333333pt;}
.x77{left:483.526667pt;}
.x78{left:484.734667pt;}
.x79{left:486.270667pt;}
.x7a{left:488.000000pt;}
.x87{left:489.333333pt;}
.x7b{left:492.000000pt;}
.x5b{left:493.000575pt;}
.x5a{left:495.632605pt;}
.x43{left:503.977327pt;}
.x3f{left:508.412009pt;}
.x3e{left:513.950741pt;}
.x49{left:515.314383pt;}
.x5c{left:517.333333pt;}
.x41{left:519.080761pt;}
.x59{left:520.309996pt;}
.x36{left:526.837117pt;}
.x55{left:528.143660pt;}
.x40{left:530.939463pt;}
.xb{left:533.222775pt;}
.xc{left:535.957947pt;}
.x32{left:537.316563pt;}
.xd{left:539.485743pt;}
.x35{left:540.829543pt;}
.x44{left:542.654733pt;}
.x45{left:543.789748pt;}
.x34{left:544.780833pt;}
.x1c{left:547.504987pt;}
.x2b{left:548.655916pt;}
.x38{left:549.680827pt;}
.x3a{left:551.807360pt;}
.x62{left:555.085187pt;}
.x57{left:556.788491pt;}
.x2a{left:561.313697pt;}
.x28{left:562.338643pt;}
.x48{left:563.915963pt;}
.x29{left:565.207856pt;}
.xe{left:566.429297pt;}
.x46{left:568.129475pt;}
.x37{left:569.521383pt;}
.x39{left:570.479408pt;}
.x5e{left:574.115907pt;}
.x4e{left:575.393119pt;}
.x5d{left:577.252469pt;}
.x47{left:579.759781pt;}
.x33{left:581.074980pt;}
.x31{left:582.362047pt;}
.x2c{left:583.421984pt;}
.x3d{left:584.600845pt;}
.x3c{left:585.558837pt;}
.xbd{left:586.688000pt;}
.xa3{left:588.130667pt;}
.xa4{left:589.333333pt;}
.xa6{left:590.666667pt;}
.x5f{left:591.874177pt;}
.x4b{left:592.905881pt;}
.x2d{left:597.865604pt;}
.x2e{left:599.352665pt;}
.x30{left:600.645691pt;}
.x2f{left:602.344700pt;}
.x4c{left:603.982813pt;}
.x56{left:605.767055pt;}
.x60{left:607.611823pt;}
.x4d{left:609.795220pt;}
.x6c{left:611.344000pt;}
.x52{left:612.703755pt;}
.x3b{left:614.390111pt;}
.x65{left:616.000000pt;}
.x66{left:617.333333pt;}
.x4a{left:618.310140pt;}
.x61{left:620.684876pt;}
.x67{left:622.666667pt;}
.x63{left:623.937600pt;}
.x42{left:626.330248pt;}
.x68{left:628.000000pt;}
.x69{left:630.666667pt;}
.x50{left:632.323107pt;}
.x6a{left:633.333333pt;}
.xae{left:634.666667pt;}
.x6b{left:636.000000pt;}
.xab{left:640.000000pt;}
.xaa{left:641.333333pt;}
.xa7{left:642.666667pt;}
.x6f{left:644.148647pt;}
.x58{left:646.666667pt;}
.x53{left:648.000000pt;}
.xad{left:652.000000pt;}
.x54{left:654.249171pt;}
.x10{left:656.867323pt;}
.xf{left:658.057704pt;}
.x6e{left:660.282541pt;}
.xaf{left:665.333333pt;}
.xb0{left:667.625333pt;}
.xb1{left:669.333333pt;}
.xb2{left:672.000000pt;}
.xb3{left:673.333333pt;}
.xb4{left:674.666667pt;}
.x70{left:676.973186pt;}
.xb5{left:678.666667pt;}
.x11{left:684.322003pt;}
.xb6{left:686.666667pt;}
.xba{left:689.130667pt;}
.xb7{left:690.666667pt;}
.xb8{left:694.666667pt;}
.x6d{left:701.869333pt;}
.xb9{left:706.666667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  