
    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_8b520567937d12b0ff7986f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_8e65285bfffc1b543473cd17.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_4de52024c2b35dd4bad1166a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_9c5b451ec1a8aa04634b93fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_b62eb88e3fa44d77daa4290a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_efb5a67642bb8068956694d8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e039cc588f878f307d3d5df9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_9880e6a8d856275fd34f30a5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934000;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_bc995aa1cca207cfa85303c5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_907a0bbe60624704b8cbc54d.woff')format("woff");}.ffa{font-family:ffa;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;}
.m28{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.546000px;}
.v1{vertical-align:26.898000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001639px;}
.ls7{letter-spacing:0.698552px;}
.ls3{letter-spacing:2.310587px;}
.ls9{letter-spacing:2.312552px;}
.ls0{letter-spacing:2.315727px;}
.lsa{letter-spacing:3.630547px;}
.ls4{letter-spacing:13.449720px;}
.ls2{letter-spacing:16.362001px;}
.ls6{letter-spacing:16.368001px;}
.ls8{letter-spacing:19.180917px;}
.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;}
}
.ws90{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws11{word-spacing:-65.454540px;}
.ws48{word-spacing:-64.557900px;}
.ws93{word-spacing:-60.357847px;}
.ws4d{word-spacing:-53.798265px;}
.ws2d{word-spacing:-50.138178px;}
.ws37{word-spacing:-50.072723px;}
.ws75{word-spacing:-49.679996px;}
.ws6b{word-spacing:-49.287269px;}
.ws53{word-spacing:-49.090905px;}
.ws68{word-spacing:-48.894541px;}
.ws66{word-spacing:-48.763632px;}
.ws3{word-spacing:-47.820660px;}
.ws1d{word-spacing:-46.603632px;}
.ws69{word-spacing:-46.238924px;}
.ws6a{word-spacing:-46.208275px;}
.ws70{word-spacing:-45.490905px;}
.ws3d{word-spacing:-44.967269px;}
.ws81{word-spacing:-44.592777px;}
.ws12{word-spacing:-43.038600px;}
.wsb{word-spacing:-40.456307px;}
.ws26{word-spacing:-40.402508px;}
.ws5{word-spacing:-40.348710px;}
.ws83{word-spacing:-35.865510px;}
.ws2{word-spacing:-31.202994px;}
.ws3c{word-spacing:-30.553013px;}
.ws29{word-spacing:-28.472725px;}
.ws45{word-spacing:-23.402252px;}
.ws4{word-spacing:-20.801987px;}
.ws8d{word-spacing:-17.279999px;}
.wsa1{word-spacing:-16.821817px;}
.wsa8{word-spacing:-16.690908px;}
.ws65{word-spacing:-16.429090px;}
.ws8b{word-spacing:-15.839999px;}
.wsac{word-spacing:-15.643635px;}
.ws44{word-spacing:-15.578181px;}
.ws79{word-spacing:-15.512726px;}
.ws51{word-spacing:-15.447271px;}
.ws58{word-spacing:-15.381817px;}
.ws9a{word-spacing:-15.316362px;}
.ws40{word-spacing:-15.054544px;}
.ws2f{word-spacing:-14.989090px;}
.ws49{word-spacing:-14.727272px;}
.ws60{word-spacing:-14.661817px;}
.ws57{word-spacing:-14.530908px;}
.ws22{word-spacing:-14.471737px;}
.ws33{word-spacing:-14.465453px;}
.ws4b{word-spacing:-14.399999px;}
.wsa3{word-spacing:-14.203635px;}
.ws54{word-spacing:-14.138181px;}
.ws92{word-spacing:-14.072726px;}
.ws46{word-spacing:-13.941817px;}
.ws85{word-spacing:-13.876362px;}
.ws10{word-spacing:-13.826158px;}
.ws52{word-spacing:-13.810908px;}
.ws4c{word-spacing:-13.745453px;}
.ws91{word-spacing:-13.679999px;}
.ws5f{word-spacing:-13.614544px;}
.ws64{word-spacing:-13.549090px;}
.ws2b{word-spacing:-13.418181px;}
.ws62{word-spacing:-13.352726px;}
.ws7c{word-spacing:-13.287272px;}
.ws1{word-spacing:-13.270239px;}
.ws35{word-spacing:-13.221817px;}
.ws2c{word-spacing:-13.156363px;}
.ws2e{word-spacing:-13.090908px;}
.ws38{word-spacing:-13.025453px;}
.ws96{word-spacing:-12.959999px;}
.ws20{word-spacing:-12.894544px;}
.ws7e{word-spacing:-12.763635px;}
.ws74{word-spacing:-12.698181px;}
.ws7b{word-spacing:-12.632726px;}
.ws84{word-spacing:-12.567272px;}
.ws63{word-spacing:-12.501817px;}
.ws1c{word-spacing:-12.436363px;}
.ws4f{word-spacing:-12.435200px;}
.ws17{word-spacing:-12.370908px;}
.ws1b{word-spacing:-12.305454px;}
.ws16{word-spacing:-12.239999px;}
.ws28{word-spacing:-12.174544px;}
.ws82{word-spacing:-12.109616px;}
.ws18{word-spacing:-12.109090px;}
.wsa7{word-spacing:-12.105259px;}
.ws2a{word-spacing:-12.043635px;}
.ws36{word-spacing:-11.978181px;}
.ws41{word-spacing:-11.912726px;}
.ws3b{word-spacing:-11.847272px;}
.ws30{word-spacing:-11.781817px;}
.ws71{word-spacing:-11.716363px;}
.ws55{word-spacing:-11.650908px;}
.wsc{word-spacing:-11.620428px;}
.ws5a{word-spacing:-11.585454px;}
.ws7d{word-spacing:-11.519999px;}
.ws13{word-spacing:-11.454544px;}
.ws94{word-spacing:-11.389090px;}
.ws5c{word-spacing:-11.258181px;}
.ws5e{word-spacing:-11.192726px;}
.ws61{word-spacing:-11.127272px;}
.ws59{word-spacing:-11.061817px;}
.ws8a{word-spacing:-10.865454px;}
.wsf{word-spacing:-10.813454px;}
.ws80{word-spacing:-10.799999px;}
.wsa0{word-spacing:-10.734545px;}
.ws19{word-spacing:-10.669090px;}
.ws3f{word-spacing:-10.603635px;}
.ws8e{word-spacing:-10.538181px;}
.ws89{word-spacing:-10.472726px;}
.ws77{word-spacing:-10.341817px;}
.ws76{word-spacing:-10.276363px;}
.ws8f{word-spacing:-10.210908px;}
.ws7{word-spacing:-10.114077px;}
.wsa{word-spacing:-10.060278px;}
.ws5d{word-spacing:-10.014545px;}
.ws25{word-spacing:-10.006480px;}
.wsd{word-spacing:-9.964306px;}
.ws23{word-spacing:-9.954911px;}
.ws9{word-spacing:-9.952682px;}
.ws7f{word-spacing:-9.949090px;}
.ws21{word-spacing:-9.900963px;}
.ws4e{word-spacing:-9.883636px;}
.ws15{word-spacing:-9.818181px;}
.ws6{word-spacing:-9.791287px;}
.ws86{word-spacing:-9.752726px;}
.ws1e{word-spacing:-9.687272px;}
.ws1f{word-spacing:-9.621817px;}
.ws32{word-spacing:-9.612720px;}
.wse{word-spacing:-9.576094px;}
.ws34{word-spacing:-9.556363px;}
.ws4a{word-spacing:-9.490908px;}
.ws78{word-spacing:-9.425454px;}
.wsa2{word-spacing:-9.359999px;}
.ws1a{word-spacing:-9.163636px;}
.ws9d{word-spacing:-9.098181px;}
.wsab{word-spacing:-9.032727px;}
.ws6d{word-spacing:-8.967272px;}
.wsa4{word-spacing:-8.901817px;}
.ws88{word-spacing:-8.770908px;}
.ws95{word-spacing:-8.705454px;}
.ws42{word-spacing:-8.639999px;}
.ws72{word-spacing:-8.574545px;}
.ws6f{word-spacing:-8.509090px;}
.ws9f{word-spacing:-8.247272px;}
.ws6c{word-spacing:-8.116363px;}
.wsaa{word-spacing:-8.050908px;}
.ws3e{word-spacing:-7.919999px;}
.ws5b{word-spacing:-7.854545px;}
.wsa5{word-spacing:-7.789090px;}
.ws9e{word-spacing:-7.658181px;}
.ws73{word-spacing:-7.461818px;}
.ws8{word-spacing:-7.424163px;}
.ws3a{word-spacing:-7.330908px;}
.ws6e{word-spacing:-7.069090px;}
.ws14{word-spacing:-7.003636px;}
.ws8c{word-spacing:-6.938181px;}
.ws87{word-spacing:-6.778583px;}
.ws24{word-spacing:-6.635114px;}
.wsa6{word-spacing:-6.545454px;}
.ws99{word-spacing:-6.414545px;}
.ws98{word-spacing:-6.349090px;}
.ws31{word-spacing:-6.283636px;}
.ws39{word-spacing:-6.152727px;}
.wsa9{word-spacing:-5.890909px;}
.ws50{word-spacing:-5.694545px;}
.ws47{word-spacing:-5.301818px;}
.ws7a{word-spacing:-5.105454px;}
.ws9c{word-spacing:-5.040000px;}
.ws56{word-spacing:-4.712727px;}
.ws9b{word-spacing:-4.385454px;}
.ws67{word-spacing:-1.829142px;}
.ws97{word-spacing:-1.374545px;}
.ws27{word-spacing:0.000000px;}
.ws43{word-spacing:4.254545px;}
._13{margin-left:-8.842639px;}
._1c{margin-left:-7.574794px;}
._1{margin-left:-6.197558px;}
._e{margin-left:-5.170909px;}
._8{margin-left:-3.873476px;}
._4{margin-left:-2.689914px;}
._3{margin-left:-1.237360px;}
._2{width:1.219427px;}
._11{width:2.259528px;}
._15{width:3.955951px;}
._22{width:10.632066px;}
._12{width:11.943205px;}
._1a{width:13.053241px;}
._7{width:14.310342px;}
._6{width:15.924543px;}
._5{width:17.000256px;}
._d{width:18.844632px;}
._c{width:20.826202px;}
._a{width:22.712725px;}
._9{width:23.771656px;}
._17{width:25.062813px;}
._f{width:26.699176px;}
._23{width:27.824455px;}
._19{width:29.127270px;}
._10{width:30.900818px;}
._0{width:33.673401px;}
._16{width:35.084477px;}
._1b{width:36.121941px;}
._b{width:37.374542px;}
._14{width:39.599997px;}
._21{width:41.825451px;}
._18{width:43.038600px;}
._1e{width:46.336434px;}
._20{width:50.982811px;}
._1f{width:55.320745px;}
._1d{width:66.835363px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs7{font-size:52.363620px;}
.fs4{font-size:53.798280px;}
.fs9{font-size:56.727300px;}
.fs8{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y16c{bottom:111.472500px;}
.y31{bottom:111.526500px;}
.y12d{bottom:111.532500px;}
.yd6{bottom:111.648000px;}
.y137{bottom:111.865500px;}
.yb4{bottom:114.352500px;}
.y169{bottom:115.650000px;}
.y63{bottom:116.538000px;}
.y115{bottom:116.581500px;}
.y30{bottom:127.965000px;}
.y12c{bottom:127.971000px;}
.yd5{bottom:128.086500px;}
.y16b{bottom:131.796000px;}
.y136{bottom:132.189000px;}
.y101{bottom:132.976500px;}
.y2f{bottom:133.008000px;}
.y12b{bottom:133.014000px;}
.yd4{bottom:133.129500px;}
.yb3{bottom:134.676000px;}
.y168{bottom:135.973500px;}
.y2e{bottom:147.387000px;}
.y62{bottom:152.119500px;}
.y135{bottom:152.512500px;}
.yb2{bottom:154.999500px;}
.y167{bottom:156.298500px;}
.y85{bottom:159.484500px;}
.y2d{bottom:164.448000px;}
.y100{bottom:168.619500px;}
.y61{bottom:172.444500px;}
.y114{bottom:172.504500px;}
.y134{bottom:172.836000px;}
.yb1{bottom:175.323000px;}
.y166{bottom:176.622000px;}
.y84{bottom:179.808000px;}
.y2c{bottom:180.933000px;}
.y12a{bottom:186.205500px;}
.yff{bottom:188.943000px;}
.y60{bottom:192.768000px;}
.y113{bottom:192.829500px;}
.yb0{bottom:195.648000px;}
.y165{bottom:196.945500px;}
.y83{bottom:200.131500px;}
.y2b{bottom:202.675500px;}
.y129{bottom:206.529000px;}
.yfe{bottom:209.266500px;}
.y133{bottom:209.307000px;}
.y5f{bottom:213.091500px;}
.y112{bottom:213.153000px;}
.y2a{bottom:214.071000px;}
.yaf{bottom:215.971500px;}
.y164{bottom:217.269000px;}
.y82{bottom:220.455000px;}
.y128{bottom:226.852500px;}
.yfd{bottom:229.590000px;}
.y5e{bottom:233.415000px;}
.y111{bottom:233.476500px;}
.yae{bottom:236.295000px;}
.y163{bottom:237.592500px;}
.yd3{bottom:240.451500px;}
.y81{bottom:240.778500px;}
.y127{bottom:247.176000px;}
.yfc{bottom:249.913500px;}
.y5d{bottom:253.738500px;}
.y110{bottom:253.800000px;}
.yad{bottom:256.618500px;}
.y162{bottom:257.917500px;}
.yd2{bottom:260.775000px;}
.y80{bottom:261.103500px;}
.y126{bottom:267.501000px;}
.y29{bottom:269.365500px;}
.yfb{bottom:270.238500px;}
.y5c{bottom:274.063500px;}
.y10f{bottom:274.123500px;}
.yac{bottom:276.942000px;}
.y161{bottom:278.241000px;}
.yd1{bottom:281.098500px;}
.y7f{bottom:281.427000px;}
.y125{bottom:287.824500px;}
.y28{bottom:289.689000px;}
.yfa{bottom:290.562000px;}
.y5b{bottom:294.387000px;}
.y10e{bottom:294.448500px;}
.yab{bottom:297.267000px;}
.y160{bottom:298.564500px;}
.yd0{bottom:301.423500px;}
.y7e{bottom:301.750500px;}
.y124{bottom:308.148000px;}
.y26{bottom:310.012500px;}
.yf9{bottom:310.885500px;}
.y5a{bottom:314.710500px;}
.y10d{bottom:314.772000px;}
.y27{bottom:316.149000px;}
.y132{bottom:317.569500px;}
.yaa{bottom:317.590500px;}
.y15f{bottom:318.888000px;}
.ycf{bottom:321.747000px;}
.y7d{bottom:322.074000px;}
.y25{bottom:330.337500px;}
.yf8{bottom:331.209000px;}
.y59{bottom:335.034000px;}
.y10c{bottom:335.095500px;}
.ya9{bottom:337.914000px;}
.y123{bottom:339.001500px;}
.y15e{bottom:339.211500px;}
.yce{bottom:342.070500px;}
.y7c{bottom:342.397500px;}
.y24{bottom:350.661000px;}
.yf7{bottom:351.532500px;}
.y58{bottom:355.357500px;}
.y10b{bottom:355.419000px;}
.ya8{bottom:358.237500px;}
.y15d{bottom:359.536500px;}
.y131{bottom:369.037500px;}
.y23{bottom:370.984500px;}
.yf6{bottom:371.857500px;}
.y7b{bottom:373.252500px;}
.y57{bottom:375.682500px;}
.y10a{bottom:375.742500px;}
.ycd{bottom:378.540000px;}
.ya7{bottom:378.561000px;}
.y15c{bottom:379.860000px;}
.y122{bottom:382.738500px;}
.y130{bottom:389.362500px;}
.y22{bottom:391.308000px;}
.yf5{bottom:392.181000px;}
.y56{bottom:396.006000px;}
.y109{bottom:396.067500px;}
.ya6{bottom:398.886000px;}
.y15b{bottom:400.183500px;}
.y121{bottom:403.062000px;}
.y12f{bottom:409.686000px;}
.y21{bottom:411.631500px;}
.yf4{bottom:412.504500px;}
.y55{bottom:416.329500px;}
.y7a{bottom:416.391000px;}
.ya5{bottom:419.209500px;}
.y15a{bottom:420.507000px;}
.y120{bottom:423.385500px;}
.ycc{bottom:430.009500px;}
.y20{bottom:431.956500px;}
.y54{bottom:436.653000px;}
.y79{bottom:436.714500px;}
.ya4{bottom:439.533000px;}
.y159{bottom:440.830500px;}
.yf3{bottom:443.358000px;}
.y11f{bottom:443.709000px;}
.ycb{bottom:450.333000px;}
.y1f{bottom:452.280000px;}
.y53{bottom:456.976500px;}
.y78{bottom:457.038000px;}
.ya3{bottom:459.856500px;}
.y158{bottom:461.155500px;}
.y11e{bottom:464.034000px;}
.yca{bottom:470.656500px;}
.y1e{bottom:472.603500px;}
.y52{bottom:477.301500px;}
.y77{bottom:477.361500px;}
.ya2{bottom:480.180000px;}
.y157{bottom:481.479000px;}
.y11d{bottom:484.357500px;}
.yf2{bottom:487.095000px;}
.yc9{bottom:490.981500px;}
.y1d{bottom:492.927000px;}
.y51{bottom:497.625000px;}
.y76{bottom:497.686500px;}
.ya1{bottom:500.505000px;}
.y156{bottom:501.802500px;}
.y11c{bottom:504.681000px;}
.yf1{bottom:507.418500px;}
.yc8{bottom:511.305000px;}
.y1c{bottom:513.250500px;}
.y50{bottom:517.948500px;}
.y75{bottom:518.010000px;}
.ya0{bottom:520.828500px;}
.y155{bottom:522.126000px;}
.yf0{bottom:527.742000px;}
.yc7{bottom:531.628500px;}
.y1b{bottom:533.575500px;}
.y11b{bottom:535.534500px;}
.y4f{bottom:538.272000px;}
.y74{bottom:538.333500px;}
.y9f{bottom:541.152000px;}
.y154{bottom:542.449500px;}
.yef{bottom:548.065500px;}
.yc6{bottom:551.952000px;}
.y1a{bottom:553.899000px;}
.y4e{bottom:558.595500px;}
.y73{bottom:558.657000px;}
.y153{bottom:562.774500px;}
.yee{bottom:568.390500px;}
.y9e{bottom:572.005500px;}
.yc5{bottom:572.275500px;}
.y19{bottom:574.222500px;}
.y4d{bottom:578.920500px;}
.y72{bottom:578.980500px;}
.y11a{bottom:579.271500px;}
.y152{bottom:583.098000px;}
.yed{bottom:588.714000px;}
.yc4{bottom:592.600500px;}
.y4c{bottom:599.244000px;}
.y71{bottom:599.305500px;}
.y119{bottom:599.595000px;}
.y151{bottom:603.421500px;}
.yec{bottom:609.037500px;}
.y18{bottom:610.692000px;}
.yc3{bottom:612.924000px;}
.y9d{bottom:615.742500px;}
.y16a{bottom:619.567500px;}
.y70{bottom:619.629000px;}
.y118{bottom:619.918500px;}
.y150{bottom:623.745000px;}
.yeb{bottom:629.361000px;}
.yc2{bottom:633.247500px;}
.y9c{bottom:636.066000px;}
.y4b{bottom:639.891000px;}
.y6f{bottom:639.952500px;}
.y117{bottom:640.243500px;}
.y14f{bottom:644.068500px;}
.yea{bottom:649.684500px;}
.yc1{bottom:653.571000px;}
.y9b{bottom:656.389500px;}
.y4a{bottom:660.214500px;}
.y6e{bottom:660.276000px;}
.y14e{bottom:664.393500px;}
.ye9{bottom:670.009500px;}
.yc0{bottom:673.894500px;}
.y9a{bottom:676.713000px;}
.y49{bottom:680.539500px;}
.y6d{bottom:680.599500px;}
.y14d{bottom:684.717000px;}
.y17{bottom:684.865500px;}
.ye8{bottom:690.333000px;}
.ybf{bottom:694.219500px;}
.y99{bottom:697.038000px;}
.y116{bottom:699.091500px;}
.y48{bottom:700.863000px;}
.y6c{bottom:700.923000px;}
.y16{bottom:701.304000px;}
.y14c{bottom:705.040500px;}
.ye7{bottom:710.656500px;}
.ybe{bottom:714.543000px;}
.y98{bottom:717.361500px;}
.y47{bottom:721.186500px;}
.y108{bottom:721.248000px;}
.y14b{bottom:725.364000px;}
.y15{bottom:729.165000px;}
.ye6{bottom:730.980000px;}
.y6b{bottom:731.778000px;}
.ybd{bottom:734.866500px;}
.y97{bottom:737.685000px;}
.y46{bottom:741.510000px;}
.y107{bottom:741.571500px;}
.y14{bottom:745.603500px;}
.y14a{bottom:745.687500px;}
.ye5{bottom:751.303500px;}
.ybc{bottom:755.190000px;}
.y96{bottom:758.008500px;}
.y45{bottom:761.833500px;}
.y106{bottom:761.895000px;}
.y13{bottom:762.042000px;}
.y149{bottom:766.012500px;}
.ye4{bottom:771.628500px;}
.y6a{bottom:775.513500px;}
.y95{bottom:778.332000px;}
.y12{bottom:778.479000px;}
.y44{bottom:782.158500px;}
.y105{bottom:782.218500px;}
.y148{bottom:786.336000px;}
.ye3{bottom:791.952000px;}
.y11{bottom:794.917500px;}
.y69{bottom:795.838500px;}
.y94{bottom:798.657000px;}
.y43{bottom:802.482000px;}
.y147{bottom:806.659500px;}
.y10{bottom:811.356000px;}
.ye2{bottom:812.275500px;}
.y104{bottom:813.072000px;}
.y68{bottom:816.162000px;}
.y93{bottom:818.980500px;}
.y42{bottom:822.805500px;}
.y146{bottom:826.983000px;}
.yf{bottom:827.794500px;}
.ye1{bottom:832.599000px;}
.y67{bottom:836.485500px;}
.y92{bottom:839.304000px;}
.y41{bottom:843.129000px;}
.ye{bottom:844.233000px;}
.y145{bottom:847.306500px;}
.ye0{bottom:852.922500px;}
.y66{bottom:856.809000px;}
.y91{bottom:859.627500px;}
.yd{bottom:860.671500px;}
.y40{bottom:863.452500px;}
.y144{bottom:867.631500px;}
.ydf{bottom:873.247500px;}
.yc{bottom:877.110000px;}
.y65{bottom:877.132500px;}
.y90{bottom:879.951000px;}
.y3f{bottom:883.777500px;}
.y143{bottom:887.955000px;}
.y12e{bottom:893.278500px;}
.yb{bottom:893.548500px;}
.yde{bottom:893.571000px;}
.ybb{bottom:897.457500px;}
.y8f{bottom:900.276000px;}
.y3e{bottom:904.101000px;}
.y142{bottom:908.278500px;}
.ya{bottom:909.987000px;}
.y64{bottom:913.603500px;}
.ydd{bottom:913.894500px;}
.yba{bottom:917.781000px;}
.y8e{bottom:920.599500px;}
.y3d{bottom:924.424500px;}
.y9{bottom:926.425500px;}
.y141{bottom:928.602000px;}
.ydc{bottom:934.218000px;}
.yb9{bottom:938.104500px;}
.y8d{bottom:940.923000px;}
.y8{bottom:942.862500px;}
.y3c{bottom:944.748000px;}
.y140{bottom:948.925500px;}
.ydb{bottom:954.541500px;}
.yb8{bottom:958.428000px;}
.y7{bottom:959.301000px;}
.y3b{bottom:965.071500px;}
.y13f{bottom:969.250500px;}
.y8c{bottom:971.776500px;}
.y103{bottom:974.574000px;}
.yda{bottom:974.866500px;}
.y6{bottom:975.739500px;}
.yb7{bottom:978.751500px;}
.y3a{bottom:985.396500px;}
.y13e{bottom:989.574000px;}
.yd8{bottom:995.190000px;}
.yb6{bottom:999.076500px;}
.yd9{bottom:1001.326500px;}
.y39{bottom:1005.720000px;}
.y13d{bottom:1009.897500px;}
.y8b{bottom:1015.513500px;}
.y5{bottom:1025.914500px;}
.y38{bottom:1026.043500px;}
.y13c{bottom:1030.221000px;}
.yb5{bottom:1035.546000px;}
.y8a{bottom:1035.837000px;}
.yd7{bottom:1041.973500px;}
.y4{bottom:1045.341000px;}
.y37{bottom:1046.367000px;}
.y13b{bottom:1050.544500px;}
.y89{bottom:1056.160500px;}
.y36{bottom:1066.690500px;}
.y13a{bottom:1070.869500px;}
.y3{bottom:1074.669000px;}
.y88{bottom:1076.485500px;}
.y35{bottom:1087.015500px;}
.y139{bottom:1091.193000px;}
.y87{bottom:1096.809000px;}
.y34{bottom:1107.339000px;}
.y138{bottom:1111.516500px;}
.y2{bottom:1113.523500px;}
.y86{bottom:1117.132500px;}
.y33{bottom:1127.662500px;}
.y102{bottom:1133.799000px;}
.y1{bottom:1146.400500px;}
.y32{bottom:1147.986000px;}
.hb{height:25.034105px;}
.h4{height:25.392760px;}
.he{height:26.396993px;}
.ha{height:38.089182px;}
.h9{height:38.539624px;}
.h6{height:39.595534px;}
.h13{height:41.240747px;}
.h11{height:43.935242px;}
.hd{height:46.212723px;}
.hc{height:47.073495px;}
.h5{height:48.109087px;}
.h8{height:48.174541px;}
.h10{height:52.722300px;}
.h3{height:62.094006px;}
.h12{height:63.079624px;}
.hf{height:63.085624px;}
.h7{height:63.266742px;}
.h2{height:75.920090px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:107.122500px;}
.xd{left:108.579000px;}
.xf{left:112.747500px;}
.x35{left:113.941500px;}
.x78{left:115.609500px;}
.x8{left:124.363500px;}
.x36{left:129.160500px;}
.x79{left:143.050500px;}
.x70{left:148.056000px;}
.x71{left:163.275000px;}
.x63{left:165.115500px;}
.x16{left:167.407500px;}
.xe{left:172.576500px;}
.x2{left:175.122000px;}
.x64{left:180.334500px;}
.x17{left:182.626500px;}
.x50{left:187.321500px;}
.x3{left:195.870000px;}
.x51{left:198.204000px;}
.x93{left:206.002500px;}
.x6a{left:214.890000px;}
.x54{left:216.472500px;}
.x6b{left:230.109000px;}
.x55{left:231.691500px;}
.x56{left:239.652000px;}
.x7d{left:249.006000px;}
.x85{left:253.473000px;}
.x57{left:254.871000px;}
.x1a{left:260.973000px;}
.x58{left:262.831500px;}
.x3d{left:264.958500px;}
.x65{left:271.753500px;}
.x1b{left:276.192000px;}
.x59{left:278.050500px;}
.x3e{left:280.176000px;}
.x1c{left:283.921500px;}
.x7e{left:286.167000px;}
.x3f{left:287.803500px;}
.x82{left:292.198500px;}
.x52{left:298.110000px;}
.x1d{left:299.140500px;}
.x8b{left:301.386000px;}
.x40{left:303.022500px;}
.x1e{left:306.870000px;}
.x8a{left:309.240000px;}
.x41{left:310.650000px;}
.x53{left:313.329000px;}
.x8c{left:318.370500px;}
.x6c{left:319.959000px;}
.x1f{left:322.087500px;}
.x5a{left:323.241000px;}
.x42{left:325.867500px;}
.x20{left:329.916000px;}
.x6d{left:335.176500px;}
.x5b{left:338.458500px;}
.x21{left:345.133500px;}
.x61{left:356.566500px;}
.x72{left:359.497500px;}
.x62{left:364.176000px;}
.x73{left:367.105500px;}
.x81{left:371.173500px;}
.x5d{left:373.128000px;}
.x74{left:375.552000px;}
.x37{left:377.910000px;}
.x94{left:385.714500px;}
.x5e{left:388.347000px;}
.x75{left:390.769500px;}
.x38{left:393.129000px;}
.x5f{left:396.094500px;}
.x80{left:400.239000px;}
.x10{left:409.674000px;}
.x60{left:411.312000px;}
.x11{left:424.891500px;}
.x23{left:428.106000px;}
.x43{left:429.450000px;}
.x12{left:432.592500px;}
.x4a{left:434.692500px;}
.x4b{left:442.302000px;}
.x24{left:443.323500px;}
.x44{left:444.667500px;}
.x13{left:447.811500px;}
.x25{left:451.029000px;}
.x14{left:455.511000px;}
.x66{left:457.587000px;}
.x49{left:459.610500px;}
.x8f{left:461.727000px;}
.x67{left:465.195000px;}
.x26{left:466.248000px;}
.x97{left:468.310500px;}
.x15{left:470.730000px;}
.x91{left:474.676500px;}
.x5c{left:486.084000px;}
.x6e{left:488.886000px;}
.x86{left:493.416000px;}
.x8d{left:500.194500px;}
.x6f{left:504.103500px;}
.x95{left:510.856500px;}
.x87{left:514.087500px;}
.x96{left:521.034000px;}
.x2b{left:524.251500px;}
.x98{left:525.730500px;}
.x39{left:534.171000px;}
.x2c{left:539.470500px;}
.x84{left:547.695000px;}
.x3a{left:549.388500px;}
.x88{left:555.136500px;}
.x3b{left:557.131500px;}
.x2d{left:565.531500px;}
.x3c{left:572.349000px;}
.x2e{left:580.750500px;}
.x90{left:592.050000px;}
.x2f{left:596.235000px;}
.x7a{left:598.810500px;}
.x4f{left:600.010500px;}
.x27{left:601.225500px;}
.x47{left:614.593500px;}
.x28{left:616.444500px;}
.x45{left:619.662000px;}
.x68{left:621.163500px;}
.x29{left:624.073500px;}
.x7f{left:626.487000px;}
.x48{left:629.811000px;}
.x9{left:633.432000px;}
.x46{left:634.879500px;}
.x69{left:636.381000px;}
.x92{left:638.050500px;}
.x2a{left:639.291000px;}
.xa{left:641.040000px;}
.x76{left:645.070500px;}
.xb{left:650.655000px;}
.x77{left:652.680000px;}
.x8e{left:653.998500px;}
.xc{left:665.035500px;}
.x4c{left:715.956000px;}
.x30{left:719.074500px;}
.x7c{left:721.197000px;}
.x4e{left:730.114500px;}
.x4d{left:731.173500px;}
.x18{left:734.401500px;}
.x7b{left:737.679000px;}
.x34{left:739.396500px;}
.x31{left:741.025500px;}
.x89{left:743.017500px;}
.x22{left:747.378000px;}
.x19{left:749.619000px;}
.x4{left:754.173000px;}
.x32{left:756.244500px;}
.x5{left:761.781000px;}
.x33{left:762.978000px;}
.x83{left:766.125000px;}
.x6{left:770.211000px;}
.x7{left:777.819000px;}
@media print{
.v2{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.818667pt;}
.v1{vertical-align:23.909333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001457pt;}
.ls7{letter-spacing:0.620935pt;}
.ls3{letter-spacing:2.053855pt;}
.ls9{letter-spacing:2.055602pt;}
.ls0{letter-spacing:2.058424pt;}
.lsa{letter-spacing:3.227153pt;}
.ls4{letter-spacing:11.955307pt;}
.ls2{letter-spacing:14.544001pt;}
.ls6{letter-spacing:14.549334pt;}
.ls8{letter-spacing:17.049704pt;}
.ws90{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws11{word-spacing:-58.181813pt;}
.ws48{word-spacing:-57.384800pt;}
.ws93{word-spacing:-53.651420pt;}
.ws4d{word-spacing:-47.820680pt;}
.ws2d{word-spacing:-44.567269pt;}
.ws37{word-spacing:-44.509087pt;}
.ws75{word-spacing:-44.159996pt;}
.ws6b{word-spacing:-43.810905pt;}
.ws53{word-spacing:-43.636360pt;}
.ws68{word-spacing:-43.461815pt;}
.ws66{word-spacing:-43.345451pt;}
.ws3{word-spacing:-42.507253pt;}
.ws1d{word-spacing:-41.425451pt;}
.ws69{word-spacing:-41.101266pt;}
.ws6a{word-spacing:-41.074022pt;}
.ws70{word-spacing:-40.436360pt;}
.ws3d{word-spacing:-39.970906pt;}
.ws81{word-spacing:-39.638024pt;}
.ws12{word-spacing:-38.256533pt;}
.wsb{word-spacing:-35.961161pt;}
.ws26{word-spacing:-35.913341pt;}
.ws5{word-spacing:-35.865520pt;}
.ws83{word-spacing:-31.880453pt;}
.ws2{word-spacing:-27.735994pt;}
.ws3c{word-spacing:-27.158233pt;}
.ws29{word-spacing:-25.309089pt;}
.ws45{word-spacing:-20.802002pt;}
.ws4{word-spacing:-18.490655pt;}
.ws8d{word-spacing:-15.359999pt;}
.wsa1{word-spacing:-14.952726pt;}
.wsa8{word-spacing:-14.836362pt;}
.ws65{word-spacing:-14.603635pt;}
.ws8b{word-spacing:-14.079999pt;}
.wsac{word-spacing:-13.905453pt;}
.ws44{word-spacing:-13.847272pt;}
.ws79{word-spacing:-13.789090pt;}
.ws51{word-spacing:-13.730908pt;}
.ws58{word-spacing:-13.672726pt;}
.ws9a{word-spacing:-13.614544pt;}
.ws40{word-spacing:-13.381817pt;}
.ws2f{word-spacing:-13.323635pt;}
.ws49{word-spacing:-13.090908pt;}
.ws60{word-spacing:-13.032726pt;}
.ws57{word-spacing:-12.916363pt;}
.ws22{word-spacing:-12.863767pt;}
.ws33{word-spacing:-12.858181pt;}
.ws4b{word-spacing:-12.799999pt;}
.wsa3{word-spacing:-12.625453pt;}
.ws54{word-spacing:-12.567272pt;}
.ws92{word-spacing:-12.509090pt;}
.ws46{word-spacing:-12.392726pt;}
.ws85{word-spacing:-12.334544pt;}
.ws10{word-spacing:-12.289918pt;}
.ws52{word-spacing:-12.276363pt;}
.ws4c{word-spacing:-12.218181pt;}
.ws91{word-spacing:-12.159999pt;}
.ws5f{word-spacing:-12.101817pt;}
.ws64{word-spacing:-12.043635pt;}
.ws2b{word-spacing:-11.927272pt;}
.ws62{word-spacing:-11.869090pt;}
.ws7c{word-spacing:-11.810908pt;}
.ws1{word-spacing:-11.795768pt;}
.ws35{word-spacing:-11.752726pt;}
.ws2c{word-spacing:-11.694544pt;}
.ws2e{word-spacing:-11.636363pt;}
.ws38{word-spacing:-11.578181pt;}
.ws96{word-spacing:-11.519999pt;}
.ws20{word-spacing:-11.461817pt;}
.ws7e{word-spacing:-11.345454pt;}
.ws74{word-spacing:-11.287272pt;}
.ws7b{word-spacing:-11.229090pt;}
.ws84{word-spacing:-11.170908pt;}
.ws63{word-spacing:-11.112726pt;}
.ws1c{word-spacing:-11.054545pt;}
.ws4f{word-spacing:-11.053511pt;}
.ws17{word-spacing:-10.996363pt;}
.ws1b{word-spacing:-10.938181pt;}
.ws16{word-spacing:-10.879999pt;}
.ws28{word-spacing:-10.821817pt;}
.ws82{word-spacing:-10.764103pt;}
.ws18{word-spacing:-10.763635pt;}
.wsa7{word-spacing:-10.760231pt;}
.ws2a{word-spacing:-10.705454pt;}
.ws36{word-spacing:-10.647272pt;}
.ws41{word-spacing:-10.589090pt;}
.ws3b{word-spacing:-10.530908pt;}
.ws30{word-spacing:-10.472726pt;}
.ws71{word-spacing:-10.414545pt;}
.ws55{word-spacing:-10.356363pt;}
.wsc{word-spacing:-10.329270pt;}
.ws5a{word-spacing:-10.298181pt;}
.ws7d{word-spacing:-10.239999pt;}
.ws13{word-spacing:-10.181817pt;}
.ws94{word-spacing:-10.123636pt;}
.ws5c{word-spacing:-10.007272pt;}
.ws5e{word-spacing:-9.949090pt;}
.ws61{word-spacing:-9.890908pt;}
.ws59{word-spacing:-9.832726pt;}
.ws8a{word-spacing:-9.658181pt;}
.wsf{word-spacing:-9.611959pt;}
.ws80{word-spacing:-9.599999pt;}
.wsa0{word-spacing:-9.541817pt;}
.ws19{word-spacing:-9.483636pt;}
.ws3f{word-spacing:-9.425454pt;}
.ws8e{word-spacing:-9.367272pt;}
.ws89{word-spacing:-9.309090pt;}
.ws77{word-spacing:-9.192727pt;}
.ws76{word-spacing:-9.134545pt;}
.ws8f{word-spacing:-9.076363pt;}
.ws7{word-spacing:-8.990290pt;}
.wsa{word-spacing:-8.942470pt;}
.ws5d{word-spacing:-8.901817pt;}
.ws25{word-spacing:-8.894649pt;}
.wsd{word-spacing:-8.857161pt;}
.ws23{word-spacing:-8.848810pt;}
.ws9{word-spacing:-8.846828pt;}
.ws7f{word-spacing:-8.843636pt;}
.ws21{word-spacing:-8.800856pt;}
.ws4e{word-spacing:-8.785454pt;}
.ws15{word-spacing:-8.727272pt;}
.ws6{word-spacing:-8.703366pt;}
.ws86{word-spacing:-8.669090pt;}
.ws1e{word-spacing:-8.610908pt;}
.ws1f{word-spacing:-8.552727pt;}
.ws32{word-spacing:-8.544640pt;}
.wse{word-spacing:-8.512083pt;}
.ws34{word-spacing:-8.494545pt;}
.ws4a{word-spacing:-8.436363pt;}
.ws78{word-spacing:-8.378181pt;}
.wsa2{word-spacing:-8.319999pt;}
.ws1a{word-spacing:-8.145454pt;}
.ws9d{word-spacing:-8.087272pt;}
.wsab{word-spacing:-8.029090pt;}
.ws6d{word-spacing:-7.970908pt;}
.wsa4{word-spacing:-7.912727pt;}
.ws88{word-spacing:-7.796363pt;}
.ws95{word-spacing:-7.738181pt;}
.ws42{word-spacing:-7.679999pt;}
.ws72{word-spacing:-7.621818pt;}
.ws6f{word-spacing:-7.563636pt;}
.ws9f{word-spacing:-7.330908pt;}
.ws6c{word-spacing:-7.214545pt;}
.wsaa{word-spacing:-7.156363pt;}
.ws3e{word-spacing:-7.039999pt;}
.ws5b{word-spacing:-6.981818pt;}
.wsa5{word-spacing:-6.923636pt;}
.ws9e{word-spacing:-6.807272pt;}
.ws73{word-spacing:-6.632727pt;}
.ws8{word-spacing:-6.599256pt;}
.ws3a{word-spacing:-6.516363pt;}
.ws6e{word-spacing:-6.283636pt;}
.ws14{word-spacing:-6.225454pt;}
.ws8c{word-spacing:-6.167272pt;}
.ws87{word-spacing:-6.025407pt;}
.ws24{word-spacing:-5.897879pt;}
.wsa6{word-spacing:-5.818181pt;}
.ws99{word-spacing:-5.701818pt;}
.ws98{word-spacing:-5.643636pt;}
.ws31{word-spacing:-5.585454pt;}
.ws39{word-spacing:-5.469090pt;}
.wsa9{word-spacing:-5.236363pt;}
.ws50{word-spacing:-5.061818pt;}
.ws47{word-spacing:-4.712727pt;}
.ws7a{word-spacing:-4.538181pt;}
.ws9c{word-spacing:-4.480000pt;}
.ws56{word-spacing:-4.189091pt;}
.ws9b{word-spacing:-3.898181pt;}
.ws67{word-spacing:-1.625904pt;}
.ws97{word-spacing:-1.221818pt;}
.ws27{word-spacing:0.000000pt;}
.ws43{word-spacing:3.781818pt;}
._13{margin-left:-7.860123pt;}
._1c{margin-left:-6.733150pt;}
._1{margin-left:-5.508941pt;}
._e{margin-left:-4.596363pt;}
._8{margin-left:-3.443090pt;}
._4{margin-left:-2.391035pt;}
._3{margin-left:-1.099876pt;}
._2{width:1.083935pt;}
._11{width:2.008469pt;}
._15{width:3.516401pt;}
._22{width:9.450726pt;}
._12{width:10.616182pt;}
._1a{width:11.602881pt;}
._7{width:12.720304pt;}
._6{width:14.155149pt;}
._5{width:15.111339pt;}
._d{width:16.750784pt;}
._c{width:18.512180pt;}
._a{width:20.189089pt;}
._9{width:21.130361pt;}
._17{width:22.278056pt;}
._f{width:23.732601pt;}
._23{width:24.732849pt;}
._19{width:25.890907pt;}
._10{width:27.467393pt;}
._0{width:29.931912pt;}
._16{width:31.186202pt;}
._1b{width:32.108392pt;}
._b{width:33.221815pt;}
._14{width:35.199997pt;}
._21{width:37.178179pt;}
._18{width:38.256533pt;}
._1e{width:41.187941pt;}
._20{width:45.318054pt;}
._1f{width:49.173995pt;}
._1d{width:59.409212pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs7{font-size:46.545440pt;}
.fs4{font-size:47.820693pt;}
.fs9{font-size:50.424267pt;}
.fs8{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:99.086667pt;}
.y31{bottom:99.134667pt;}
.y12d{bottom:99.140000pt;}
.yd6{bottom:99.242667pt;}
.y137{bottom:99.436000pt;}
.yb4{bottom:101.646667pt;}
.y169{bottom:102.800000pt;}
.y63{bottom:103.589333pt;}
.y115{bottom:103.628000pt;}
.y30{bottom:113.746667pt;}
.y12c{bottom:113.752000pt;}
.yd5{bottom:113.854667pt;}
.y16b{bottom:117.152000pt;}
.y136{bottom:117.501333pt;}
.y101{bottom:118.201333pt;}
.y2f{bottom:118.229333pt;}
.y12b{bottom:118.234667pt;}
.yd4{bottom:118.337333pt;}
.yb3{bottom:119.712000pt;}
.y168{bottom:120.865333pt;}
.y2e{bottom:131.010667pt;}
.y62{bottom:135.217333pt;}
.y135{bottom:135.566667pt;}
.yb2{bottom:137.777333pt;}
.y167{bottom:138.932000pt;}
.y85{bottom:141.764000pt;}
.y2d{bottom:146.176000pt;}
.y100{bottom:149.884000pt;}
.y61{bottom:153.284000pt;}
.y114{bottom:153.337333pt;}
.y134{bottom:153.632000pt;}
.yb1{bottom:155.842667pt;}
.y166{bottom:156.997333pt;}
.y84{bottom:159.829333pt;}
.y2c{bottom:160.829333pt;}
.y12a{bottom:165.516000pt;}
.yff{bottom:167.949333pt;}
.y60{bottom:171.349333pt;}
.y113{bottom:171.404000pt;}
.yb0{bottom:173.909333pt;}
.y165{bottom:175.062667pt;}
.y83{bottom:177.894667pt;}
.y2b{bottom:180.156000pt;}
.y129{bottom:183.581333pt;}
.yfe{bottom:186.014667pt;}
.y133{bottom:186.050667pt;}
.y5f{bottom:189.414667pt;}
.y112{bottom:189.469333pt;}
.y2a{bottom:190.285333pt;}
.yaf{bottom:191.974667pt;}
.y164{bottom:193.128000pt;}
.y82{bottom:195.960000pt;}
.y128{bottom:201.646667pt;}
.yfd{bottom:204.080000pt;}
.y5e{bottom:207.480000pt;}
.y111{bottom:207.534667pt;}
.yae{bottom:210.040000pt;}
.y163{bottom:211.193333pt;}
.yd3{bottom:213.734667pt;}
.y81{bottom:214.025333pt;}
.y127{bottom:219.712000pt;}
.yfc{bottom:222.145333pt;}
.y5d{bottom:225.545333pt;}
.y110{bottom:225.600000pt;}
.yad{bottom:228.105333pt;}
.y162{bottom:229.260000pt;}
.yd2{bottom:231.800000pt;}
.y80{bottom:232.092000pt;}
.y126{bottom:237.778667pt;}
.y29{bottom:239.436000pt;}
.yfb{bottom:240.212000pt;}
.y5c{bottom:243.612000pt;}
.y10f{bottom:243.665333pt;}
.yac{bottom:246.170667pt;}
.y161{bottom:247.325333pt;}
.yd1{bottom:249.865333pt;}
.y7f{bottom:250.157333pt;}
.y125{bottom:255.844000pt;}
.y28{bottom:257.501333pt;}
.yfa{bottom:258.277333pt;}
.y5b{bottom:261.677333pt;}
.y10e{bottom:261.732000pt;}
.yab{bottom:264.237333pt;}
.y160{bottom:265.390667pt;}
.yd0{bottom:267.932000pt;}
.y7e{bottom:268.222667pt;}
.y124{bottom:273.909333pt;}
.y26{bottom:275.566667pt;}
.yf9{bottom:276.342667pt;}
.y5a{bottom:279.742667pt;}
.y10d{bottom:279.797333pt;}
.y27{bottom:281.021333pt;}
.y132{bottom:282.284000pt;}
.yaa{bottom:282.302667pt;}
.y15f{bottom:283.456000pt;}
.ycf{bottom:285.997333pt;}
.y7d{bottom:286.288000pt;}
.y25{bottom:293.633333pt;}
.yf8{bottom:294.408000pt;}
.y59{bottom:297.808000pt;}
.y10c{bottom:297.862667pt;}
.ya9{bottom:300.368000pt;}
.y123{bottom:301.334667pt;}
.y15e{bottom:301.521333pt;}
.yce{bottom:304.062667pt;}
.y7c{bottom:304.353333pt;}
.y24{bottom:311.698667pt;}
.yf7{bottom:312.473333pt;}
.y58{bottom:315.873333pt;}
.y10b{bottom:315.928000pt;}
.ya8{bottom:318.433333pt;}
.y15d{bottom:319.588000pt;}
.y131{bottom:328.033333pt;}
.y23{bottom:329.764000pt;}
.yf6{bottom:330.540000pt;}
.y7b{bottom:331.780000pt;}
.y57{bottom:333.940000pt;}
.y10a{bottom:333.993333pt;}
.ycd{bottom:336.480000pt;}
.ya7{bottom:336.498667pt;}
.y15c{bottom:337.653333pt;}
.y122{bottom:340.212000pt;}
.y130{bottom:346.100000pt;}
.y22{bottom:347.829333pt;}
.yf5{bottom:348.605333pt;}
.y56{bottom:352.005333pt;}
.y109{bottom:352.060000pt;}
.ya6{bottom:354.565333pt;}
.y15b{bottom:355.718667pt;}
.y121{bottom:358.277333pt;}
.y12f{bottom:364.165333pt;}
.y21{bottom:365.894667pt;}
.yf4{bottom:366.670667pt;}
.y55{bottom:370.070667pt;}
.y7a{bottom:370.125333pt;}
.ya5{bottom:372.630667pt;}
.y15a{bottom:373.784000pt;}
.y120{bottom:376.342667pt;}
.ycc{bottom:382.230667pt;}
.y20{bottom:383.961333pt;}
.y54{bottom:388.136000pt;}
.y79{bottom:388.190667pt;}
.ya4{bottom:390.696000pt;}
.y159{bottom:391.849333pt;}
.yf3{bottom:394.096000pt;}
.y11f{bottom:394.408000pt;}
.ycb{bottom:400.296000pt;}
.y1f{bottom:402.026667pt;}
.y53{bottom:406.201333pt;}
.y78{bottom:406.256000pt;}
.ya3{bottom:408.761333pt;}
.y158{bottom:409.916000pt;}
.y11e{bottom:412.474667pt;}
.yca{bottom:418.361333pt;}
.y1e{bottom:420.092000pt;}
.y52{bottom:424.268000pt;}
.y77{bottom:424.321333pt;}
.ya2{bottom:426.826667pt;}
.y157{bottom:427.981333pt;}
.y11d{bottom:430.540000pt;}
.yf2{bottom:432.973333pt;}
.yc9{bottom:436.428000pt;}
.y1d{bottom:438.157333pt;}
.y51{bottom:442.333333pt;}
.y76{bottom:442.388000pt;}
.ya1{bottom:444.893333pt;}
.y156{bottom:446.046667pt;}
.y11c{bottom:448.605333pt;}
.yf1{bottom:451.038667pt;}
.yc8{bottom:454.493333pt;}
.y1c{bottom:456.222667pt;}
.y50{bottom:460.398667pt;}
.y75{bottom:460.453333pt;}
.ya0{bottom:462.958667pt;}
.y155{bottom:464.112000pt;}
.yf0{bottom:469.104000pt;}
.yc7{bottom:472.558667pt;}
.y1b{bottom:474.289333pt;}
.y11b{bottom:476.030667pt;}
.y4f{bottom:478.464000pt;}
.y74{bottom:478.518667pt;}
.y9f{bottom:481.024000pt;}
.y154{bottom:482.177333pt;}
.yef{bottom:487.169333pt;}
.yc6{bottom:490.624000pt;}
.y1a{bottom:492.354667pt;}
.y4e{bottom:496.529333pt;}
.y73{bottom:496.584000pt;}
.y153{bottom:500.244000pt;}
.yee{bottom:505.236000pt;}
.y9e{bottom:508.449333pt;}
.yc5{bottom:508.689333pt;}
.y19{bottom:510.420000pt;}
.y4d{bottom:514.596000pt;}
.y72{bottom:514.649333pt;}
.y11a{bottom:514.908000pt;}
.y152{bottom:518.309333pt;}
.yed{bottom:523.301333pt;}
.yc4{bottom:526.756000pt;}
.y4c{bottom:532.661333pt;}
.y71{bottom:532.716000pt;}
.y119{bottom:532.973333pt;}
.y151{bottom:536.374667pt;}
.yec{bottom:541.366667pt;}
.y18{bottom:542.837333pt;}
.yc3{bottom:544.821333pt;}
.y9d{bottom:547.326667pt;}
.y16a{bottom:550.726667pt;}
.y70{bottom:550.781333pt;}
.y118{bottom:551.038667pt;}
.y150{bottom:554.440000pt;}
.yeb{bottom:559.432000pt;}
.yc2{bottom:562.886667pt;}
.y9c{bottom:565.392000pt;}
.y4b{bottom:568.792000pt;}
.y6f{bottom:568.846667pt;}
.y117{bottom:569.105333pt;}
.y14f{bottom:572.505333pt;}
.yea{bottom:577.497333pt;}
.yc1{bottom:580.952000pt;}
.y9b{bottom:583.457333pt;}
.y4a{bottom:586.857333pt;}
.y6e{bottom:586.912000pt;}
.y14e{bottom:590.572000pt;}
.ye9{bottom:595.564000pt;}
.yc0{bottom:599.017333pt;}
.y9a{bottom:601.522667pt;}
.y49{bottom:604.924000pt;}
.y6d{bottom:604.977333pt;}
.y14d{bottom:608.637333pt;}
.y17{bottom:608.769333pt;}
.ye8{bottom:613.629333pt;}
.ybf{bottom:617.084000pt;}
.y99{bottom:619.589333pt;}
.y116{bottom:621.414667pt;}
.y48{bottom:622.989333pt;}
.y6c{bottom:623.042667pt;}
.y16{bottom:623.381333pt;}
.y14c{bottom:626.702667pt;}
.ye7{bottom:631.694667pt;}
.ybe{bottom:635.149333pt;}
.y98{bottom:637.654667pt;}
.y47{bottom:641.054667pt;}
.y108{bottom:641.109333pt;}
.y14b{bottom:644.768000pt;}
.y15{bottom:648.146667pt;}
.ye6{bottom:649.760000pt;}
.y6b{bottom:650.469333pt;}
.ybd{bottom:653.214667pt;}
.y97{bottom:655.720000pt;}
.y46{bottom:659.120000pt;}
.y107{bottom:659.174667pt;}
.y14{bottom:662.758667pt;}
.y14a{bottom:662.833333pt;}
.ye5{bottom:667.825333pt;}
.ybc{bottom:671.280000pt;}
.y96{bottom:673.785333pt;}
.y45{bottom:677.185333pt;}
.y106{bottom:677.240000pt;}
.y13{bottom:677.370667pt;}
.y149{bottom:680.900000pt;}
.ye4{bottom:685.892000pt;}
.y6a{bottom:689.345333pt;}
.y95{bottom:691.850667pt;}
.y12{bottom:691.981333pt;}
.y44{bottom:695.252000pt;}
.y105{bottom:695.305333pt;}
.y148{bottom:698.965333pt;}
.ye3{bottom:703.957333pt;}
.y11{bottom:706.593333pt;}
.y69{bottom:707.412000pt;}
.y94{bottom:709.917333pt;}
.y43{bottom:713.317333pt;}
.y147{bottom:717.030667pt;}
.y10{bottom:721.205333pt;}
.ye2{bottom:722.022667pt;}
.y104{bottom:722.730667pt;}
.y68{bottom:725.477333pt;}
.y93{bottom:727.982667pt;}
.y42{bottom:731.382667pt;}
.y146{bottom:735.096000pt;}
.yf{bottom:735.817333pt;}
.ye1{bottom:740.088000pt;}
.y67{bottom:743.542667pt;}
.y92{bottom:746.048000pt;}
.y41{bottom:749.448000pt;}
.ye{bottom:750.429333pt;}
.y145{bottom:753.161333pt;}
.ye0{bottom:758.153333pt;}
.y66{bottom:761.608000pt;}
.y91{bottom:764.113333pt;}
.yd{bottom:765.041333pt;}
.y40{bottom:767.513333pt;}
.y144{bottom:771.228000pt;}
.ydf{bottom:776.220000pt;}
.yc{bottom:779.653333pt;}
.y65{bottom:779.673333pt;}
.y90{bottom:782.178667pt;}
.y3f{bottom:785.580000pt;}
.y143{bottom:789.293333pt;}
.y12e{bottom:794.025333pt;}
.yb{bottom:794.265333pt;}
.yde{bottom:794.285333pt;}
.ybb{bottom:797.740000pt;}
.y8f{bottom:800.245333pt;}
.y3e{bottom:803.645333pt;}
.y142{bottom:807.358667pt;}
.ya{bottom:808.877333pt;}
.y64{bottom:812.092000pt;}
.ydd{bottom:812.350667pt;}
.yba{bottom:815.805333pt;}
.y8e{bottom:818.310667pt;}
.y3d{bottom:821.710667pt;}
.y9{bottom:823.489333pt;}
.y141{bottom:825.424000pt;}
.ydc{bottom:830.416000pt;}
.yb9{bottom:833.870667pt;}
.y8d{bottom:836.376000pt;}
.y8{bottom:838.100000pt;}
.y3c{bottom:839.776000pt;}
.y140{bottom:843.489333pt;}
.ydb{bottom:848.481333pt;}
.yb8{bottom:851.936000pt;}
.y7{bottom:852.712000pt;}
.y3b{bottom:857.841333pt;}
.y13f{bottom:861.556000pt;}
.y8c{bottom:863.801333pt;}
.y103{bottom:866.288000pt;}
.yda{bottom:866.548000pt;}
.y6{bottom:867.324000pt;}
.yb7{bottom:870.001333pt;}
.y3a{bottom:875.908000pt;}
.y13e{bottom:879.621333pt;}
.yd8{bottom:884.613333pt;}
.yb6{bottom:888.068000pt;}
.yd9{bottom:890.068000pt;}
.y39{bottom:893.973333pt;}
.y13d{bottom:897.686667pt;}
.y8b{bottom:902.678667pt;}
.y5{bottom:911.924000pt;}
.y38{bottom:912.038667pt;}
.y13c{bottom:915.752000pt;}
.yb5{bottom:920.485333pt;}
.y8a{bottom:920.744000pt;}
.yd7{bottom:926.198667pt;}
.y4{bottom:929.192000pt;}
.y37{bottom:930.104000pt;}
.y13b{bottom:933.817333pt;}
.y89{bottom:938.809333pt;}
.y36{bottom:948.169333pt;}
.y13a{bottom:951.884000pt;}
.y3{bottom:955.261333pt;}
.y88{bottom:956.876000pt;}
.y35{bottom:966.236000pt;}
.y139{bottom:969.949333pt;}
.y87{bottom:974.941333pt;}
.y34{bottom:984.301333pt;}
.y138{bottom:988.014667pt;}
.y2{bottom:989.798667pt;}
.y86{bottom:993.006667pt;}
.y33{bottom:1002.366667pt;}
.y102{bottom:1007.821333pt;}
.y1{bottom:1019.022667pt;}
.y32{bottom:1020.432000pt;}
.hb{height:22.252538pt;}
.h4{height:22.571342pt;}
.he{height:23.463994pt;}
.ha{height:33.857051pt;}
.h9{height:34.257444pt;}
.h6{height:35.196030pt;}
.h13{height:36.658442pt;}
.h11{height:39.053549pt;}
.hd{height:41.077976pt;}
.hc{height:41.843107pt;}
.h5{height:42.763633pt;}
.h8{height:42.821815pt;}
.h10{height:46.864266pt;}
.h3{height:55.194672pt;}
.h12{height:56.070777pt;}
.hf{height:56.076111pt;}
.h7{height:56.237104pt;}
.h2{height:67.484525pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.220000pt;}
.xd{left:96.514667pt;}
.xf{left:100.220000pt;}
.x35{left:101.281333pt;}
.x78{left:102.764000pt;}
.x8{left:110.545333pt;}
.x36{left:114.809333pt;}
.x79{left:127.156000pt;}
.x70{left:131.605333pt;}
.x71{left:145.133333pt;}
.x63{left:146.769333pt;}
.x16{left:148.806667pt;}
.xe{left:153.401333pt;}
.x2{left:155.664000pt;}
.x64{left:160.297333pt;}
.x17{left:162.334667pt;}
.x50{left:166.508000pt;}
.x3{left:174.106667pt;}
.x51{left:176.181333pt;}
.x93{left:183.113333pt;}
.x6a{left:191.013333pt;}
.x54{left:192.420000pt;}
.x6b{left:204.541333pt;}
.x55{left:205.948000pt;}
.x56{left:213.024000pt;}
.x7d{left:221.338667pt;}
.x85{left:225.309333pt;}
.x57{left:226.552000pt;}
.x1a{left:231.976000pt;}
.x58{left:233.628000pt;}
.x3d{left:235.518667pt;}
.x65{left:241.558667pt;}
.x1b{left:245.504000pt;}
.x59{left:247.156000pt;}
.x3e{left:249.045333pt;}
.x1c{left:252.374667pt;}
.x7e{left:254.370667pt;}
.x3f{left:255.825333pt;}
.x82{left:259.732000pt;}
.x52{left:264.986667pt;}
.x1d{left:265.902667pt;}
.x8b{left:267.898667pt;}
.x40{left:269.353333pt;}
.x1e{left:272.773333pt;}
.x8a{left:274.880000pt;}
.x41{left:276.133333pt;}
.x53{left:278.514667pt;}
.x8c{left:282.996000pt;}
.x6c{left:284.408000pt;}
.x1f{left:286.300000pt;}
.x5a{left:287.325333pt;}
.x42{left:289.660000pt;}
.x20{left:293.258667pt;}
.x6d{left:297.934667pt;}
.x5b{left:300.852000pt;}
.x21{left:306.785333pt;}
.x61{left:316.948000pt;}
.x72{left:319.553333pt;}
.x62{left:323.712000pt;}
.x73{left:326.316000pt;}
.x81{left:329.932000pt;}
.x5d{left:331.669333pt;}
.x74{left:333.824000pt;}
.x37{left:335.920000pt;}
.x94{left:342.857333pt;}
.x5e{left:345.197333pt;}
.x75{left:347.350667pt;}
.x38{left:349.448000pt;}
.x5f{left:352.084000pt;}
.x80{left:355.768000pt;}
.x10{left:364.154667pt;}
.x60{left:365.610667pt;}
.x11{left:377.681333pt;}
.x23{left:380.538667pt;}
.x43{left:381.733333pt;}
.x12{left:384.526667pt;}
.x4a{left:386.393333pt;}
.x4b{left:393.157333pt;}
.x24{left:394.065333pt;}
.x44{left:395.260000pt;}
.x13{left:398.054667pt;}
.x25{left:400.914667pt;}
.x14{left:404.898667pt;}
.x66{left:406.744000pt;}
.x49{left:408.542667pt;}
.x8f{left:410.424000pt;}
.x67{left:413.506667pt;}
.x26{left:414.442667pt;}
.x97{left:416.276000pt;}
.x15{left:418.426667pt;}
.x91{left:421.934667pt;}
.x5c{left:432.074667pt;}
.x6e{left:434.565333pt;}
.x86{left:438.592000pt;}
.x8d{left:444.617333pt;}
.x6f{left:448.092000pt;}
.x95{left:454.094667pt;}
.x87{left:456.966667pt;}
.x96{left:463.141333pt;}
.x2b{left:466.001333pt;}
.x98{left:467.316000pt;}
.x39{left:474.818667pt;}
.x2c{left:479.529333pt;}
.x84{left:486.840000pt;}
.x3a{left:488.345333pt;}
.x88{left:493.454667pt;}
.x3b{left:495.228000pt;}
.x2d{left:502.694667pt;}
.x3c{left:508.754667pt;}
.x2e{left:516.222667pt;}
.x90{left:526.266667pt;}
.x2f{left:529.986667pt;}
.x7a{left:532.276000pt;}
.x4f{left:533.342667pt;}
.x27{left:534.422667pt;}
.x47{left:546.305333pt;}
.x28{left:547.950667pt;}
.x45{left:550.810667pt;}
.x68{left:552.145333pt;}
.x29{left:554.732000pt;}
.x7f{left:556.877333pt;}
.x48{left:559.832000pt;}
.x9{left:563.050667pt;}
.x46{left:564.337333pt;}
.x69{left:565.672000pt;}
.x92{left:567.156000pt;}
.x2a{left:568.258667pt;}
.xa{left:569.813333pt;}
.x76{left:573.396000pt;}
.xb{left:578.360000pt;}
.x77{left:580.160000pt;}
.x8e{left:581.332000pt;}
.xc{left:591.142667pt;}
.x4c{left:636.405333pt;}
.x30{left:639.177333pt;}
.x7c{left:641.064000pt;}
.x4e{left:648.990667pt;}
.x4d{left:649.932000pt;}
.x18{left:652.801333pt;}
.x7b{left:655.714667pt;}
.x34{left:657.241333pt;}
.x31{left:658.689333pt;}
.x89{left:660.460000pt;}
.x22{left:664.336000pt;}
.x19{left:666.328000pt;}
.x4{left:670.376000pt;}
.x32{left:672.217333pt;}
.x5{left:677.138667pt;}
.x33{left:678.202667pt;}
.x83{left:681.000000pt;}
.x6{left:684.632000pt;}
.x7{left:691.394667pt;}
}




    .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; }
  