
    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_59184ec1f20cc772816343fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_9c1049f09b1fe6c238f2fddc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_b4f4f5a9265553c6d36e2b17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_9651c6f1abd78e18063ec802.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_1b8d517f257a8c59396da555.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.493000;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.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);}
.m23{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);}
.m28{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);}
.m24{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);}
.m4{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);}
.m1e{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);}
.m27{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);}
.m1f{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);}
.m29{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);}
.m1{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);}
.md{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m17{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);}
.m12{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);}
.m16{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);}
.m1b{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);}
.m9{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);}
.m25{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);}
.m22{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);}
.m26{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);}
.m15{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);}
.m20{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);}
.m18{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);}
.m13{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);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m6{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);}
.m5{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);}
.mc{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);}
.m7{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);}
.me{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);}
.m1a{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);}
.m1c{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);}
.m1d{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);}
.ma{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);}
.mb{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);}
.m14{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);}
.m19{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);}
.m10{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lsd{letter-spacing:13.448400px;}
.lsf{letter-spacing:13.985694px;}
.lsa{letter-spacing:14.884124px;}
.lsc{letter-spacing:15.063451px;}
.ls9{letter-spacing:15.123227px;}
.ls4{letter-spacing:17.935200px;}
.lsb{letter-spacing:19.008641px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:57.421200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.wsf{word-spacing:-28.532313px;}
.ws6d{word-spacing:-13.449600px;}
.ws13{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws66{word-spacing:-3.227882px;}
.ws59{word-spacing:-3.168107px;}
.ws38{word-spacing:-2.211697px;}
.ws55{word-spacing:-1.733492px;}
.ws5e{word-spacing:-1.673717px;}
.ws34{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.171598px;}
.ws28{word-spacing:-1.135736px;}
.ws7{word-spacing:-1.046070px;}
.ws3f{word-spacing:-0.896634px;}
.ws15{word-spacing:-0.860774px;}
.ws3d{word-spacing:-0.657532px;}
.ws4c{word-spacing:-0.478205px;}
.ws3a{word-spacing:-0.376589px;}
.ws2c{word-spacing:-0.358654px;}
.ws58{word-spacing:-0.322790px;}
.ws31{word-spacing:-0.298878px;}
.ws6a{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.ws61{word-spacing:-0.215194px;}
.ws20{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.ws3b{word-spacing:-0.107597px;}
.ws27{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.ws11{word-spacing:-0.001082px;}
.ws1{word-spacing:0.000000px;}
.ws41{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.ws12{word-spacing:0.143462px;}
.ws75{word-spacing:0.161395px;}
.ws43{word-spacing:0.179327px;}
.ws5d{word-spacing:0.215194px;}
.ws56{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.ws40{word-spacing:0.322790px;}
.ws57{word-spacing:0.358654px;}
.ws78{word-spacing:0.376589px;}
.ws3e{word-spacing:0.478205px;}
.ws64{word-spacing:0.537980px;}
.ws60{word-spacing:0.537984px;}
.ws16{word-spacing:0.645581px;}
.ws37{word-spacing:0.657532px;}
.ws6b{word-spacing:0.699379px;}
.ws2e{word-spacing:0.717307px;}
.ws3c{word-spacing:0.777083px;}
.ws5f{word-spacing:0.806976px;}
.ws5c{word-spacing:0.836858px;}
.ws6e{word-spacing:0.860774px;}
.ws25{word-spacing:0.956410px;}
.ws6{word-spacing:1.004227px;}
.ws4d{word-spacing:1.195512px;}
.ws36{word-spacing:1.315063px;}
.ws67{word-spacing:1.434614px;}
.ws46{word-spacing:1.554166px;}
.ws51{word-spacing:1.613941px;}
.ws4f{word-spacing:1.673717px;}
.ws5a{word-spacing:1.853044px;}
.ws39{word-spacing:2.092146px;}
.ws50{word-spacing:2.151922px;}
.ws29{word-spacing:2.211697px;}
.ws24{word-spacing:2.271473px;}
.ws44{word-spacing:2.331248px;}
.ws0{word-spacing:2.511541px;}
.ws30{word-spacing:2.809453px;}
.ws14{word-spacing:2.869236px;}
.ws2d{word-spacing:3.048556px;}
.ws62{word-spacing:3.168107px;}
.ws1c{word-spacing:3.219667px;}
.ws45{word-spacing:3.227882px;}
.ws77{word-spacing:3.227904px;}
.ws22{word-spacing:3.407209px;}
.ws74{word-spacing:3.443098px;}
.ws23{word-spacing:3.466985px;}
.ws1d{word-spacing:3.586536px;}
.ws68{word-spacing:3.658291px;}
.ws4a{word-spacing:3.706087px;}
.ws52{word-spacing:3.885414px;}
.ws53{word-spacing:4.004965px;}
.ws26{word-spacing:4.124516px;}
.ws4e{word-spacing:4.244068px;}
.ws42{word-spacing:4.542946px;}
.wsd{word-spacing:4.770079px;}
.ws2f{word-spacing:4.841824px;}
.wse{word-spacing:4.853765px;}
.ws5b{word-spacing:4.961375px;}
.ws69{word-spacing:5.379840px;}
.ws4b{word-spacing:5.499355px;}
.ws18{word-spacing:5.648832px;}
.ws54{word-spacing:5.858009px;}
.ws47{word-spacing:6.276438px;}
.ws63{word-spacing:7.591501px;}
.wsb{word-spacing:7.782761px;}
.ws65{word-spacing:7.890379px;}
.ws49{word-spacing:7.908365px;}
.ws48{word-spacing:8.338752px;}
.ws2a{word-spacing:11.910929px;}
.ws9{word-spacing:12.176255px;}
.ws3{word-spacing:12.929425px;}
.ws72{word-spacing:13.180608px;}
.ws73{word-spacing:13.342003px;}
.ws71{word-spacing:13.395802px;}
.ws7b{word-spacing:13.503398px;}
.ws76{word-spacing:13.557197px;}
.ws32{word-spacing:14.884124px;}
.wsa{word-spacing:16.109478px;}
.ws6f{word-spacing:16.408512px;}
.ws70{word-spacing:16.615843px;}
.ws7a{word-spacing:16.623706px;}
.ws6c{word-spacing:16.838899px;}
.ws79{word-spacing:18.183859px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
._c{margin-left:-7.908365px;}
._8{margin-left:-6.632215px;}
._1{margin-left:-5.397721px;}
._9{margin-left:-4.106648px;}
._0{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._5{width:2.301354px;}
._19{width:3.556810px;}
._4{width:12.971268px;}
._e{width:14.824386px;}
._17{width:15.942197px;}
._a{width:16.946496px;}
._d{width:18.709763px;}
._b{width:20.550989px;}
._11{width:21.710494px;}
._15{width:22.894055px;}
._16{width:24.448220px;}
._3{width:25.941685px;}
._14{width:28.805921px;}
._6{width:30.587087px;}
._13{width:31.752794px;}
._12{width:33.354785px;}
._7{width:55.114429px;}
._f{width:926.809249px;}
._18{width:2491.280700px;}
._10{width:2515.190700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y1c{bottom:1.739201px;}
.y1b{bottom:30.271042px;}
.y4c{bottom:31.890000px;}
.yab{bottom:91.665000px;}
.y4b{bottom:103.621500px;}
.y19{bottom:104.646000px;}
.y13e{bottom:107.760000px;}
.yaa{bottom:110.494500px;}
.y7e{bottom:110.767500px;}
.y4a{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y13d{bottom:125.019000px;}
.ya9{bottom:129.324000px;}
.y7d{bottom:129.597000px;}
.ya1{bottom:131.340000px;}
.yfe{bottom:138.592500px;}
.y17{bottom:140.422500px;}
.y49{bottom:141.279000px;}
.y13c{bottom:142.279500px;}
.ya8{bottom:148.153500px;}
.y7c{bottom:148.426500px;}
.ya0{bottom:150.169500px;}
.yfd{bottom:157.422000px;}
.y16{bottom:158.310000px;}
.y13b{bottom:159.540000px;}
.y48{bottom:160.108500px;}
.ya7{bottom:166.983000px;}
.y7b{bottom:167.256000px;}
.y9f{bottom:168.999000px;}
.y15{bottom:176.199000px;}
.yfc{bottom:176.251500px;}
.y13a{bottom:176.800500px;}
.y47{bottom:178.938000px;}
.ya6{bottom:185.812500px;}
.y7a{bottom:186.085500px;}
.y9e{bottom:187.828500px;}
.y139{bottom:194.061000px;}
.y14{bottom:194.086500px;}
.yfb{bottom:195.081000px;}
.y46{bottom:197.767500px;}
.y79{bottom:204.915000px;}
.y9d{bottom:206.658000px;}
.ya5{bottom:209.125500px;}
.yf3{bottom:209.379000px;}
.y138{bottom:211.321500px;}
.y13{bottom:211.974000px;}
.y45{bottom:216.597000px;}
.yfa{bottom:218.394000px;}
.y78{bottom:223.744500px;}
.y9c{bottom:225.487500px;}
.yf2{bottom:228.208500px;}
.y137{bottom:228.582000px;}
.y12{bottom:229.863000px;}
.y44{bottom:235.426500px;}
.ya4{bottom:238.705500px;}
.y118{bottom:241.104000px;}
.y77{bottom:242.574000px;}
.y9b{bottom:244.317000px;}
.yf1{bottom:247.038000px;}
.yf9{bottom:248.821500px;}
.y136{bottom:250.324500px;}
.y43{bottom:254.256000px;}
.y76{bottom:261.403500px;}
.y9a{bottom:263.146500px;}
.yf0{bottom:270.349500px;}
.y6f{bottom:270.726000px;}
.y42{bottom:273.085500px;}
.y75{bottom:280.233000px;}
.y99{bottom:281.976000px;}
.y135{bottom:283.948500px;}
.y6e{bottom:289.555500px;}
.yef{bottom:290.524500px;}
.y41{bottom:291.915000px;}
.y74{bottom:299.061000px;}
.y11{bottom:300.154500px;}
.y98{bottom:300.804000px;}
.y6d{bottom:308.385000px;}
.y134{bottom:310.489500px;}
.y40{bottom:310.744500px;}
.y10{bottom:318.043500px;}
.y97{bottom:319.633500px;}
.y73{bottom:322.374000px;}
.yee{bottom:324.148500px;}
.y6c{bottom:327.214500px;}
.y3f{bottom:329.574000px;}
.yf{bottom:335.931000px;}
.y133{bottom:337.030500px;}
.y96{bottom:338.463000px;}
.yed{bottom:342.978000px;}
.y6b{bottom:346.044000px;}
.yd2{bottom:347.493000px;}
.y3e{bottom:348.403500px;}
.y72{bottom:352.801500px;}
.ye{bottom:353.818500px;}
.y95{bottom:357.292500px;}
.yec{bottom:361.807500px;}
.y132{bottom:363.570000px;}
.y6a{bottom:364.873500px;}
.yd1{bottom:366.322500px;}
.y3d{bottom:367.233000px;}
.y71{bottom:372.034500px;}
.y94{bottom:376.122000px;}
.yeb{bottom:380.637000px;}
.yd{bottom:380.673000px;}
.y69{bottom:383.703000px;}
.yd0{bottom:385.152000px;}
.y3c{bottom:386.062500px;}
.y131{bottom:390.111000px;}
.y93{bottom:394.951500px;}
.yc{bottom:398.562000px;}
.yea{bottom:399.466500px;}
.y68{bottom:402.532500px;}
.ycf{bottom:403.981500px;}
.y3b{bottom:404.892000px;}
.y130{bottom:407.685000px;}
.y92{bottom:413.781000px;}
.yb{bottom:416.449500px;}
.ye9{bottom:418.296000px;}
.y67{bottom:421.362000px;}
.yce{bottom:422.811000px;}
.y3a{bottom:423.721500px;}
.y12f{bottom:425.259000px;}
.y91{bottom:432.610500px;}
.ye8{bottom:437.125500px;}
.y66{bottom:440.191500px;}
.ycd{bottom:441.639000px;}
.y39{bottom:442.551000px;}
.ya{bottom:444.798000px;}
.y90{bottom:451.440000px;}
.y12e{bottom:451.800000px;}
.ye7{bottom:455.955000px;}
.y65{bottom:459.021000px;}
.ycc{bottom:460.468500px;}
.y38{bottom:465.864000px;}
.y12d{bottom:469.374000px;}
.y8f{bottom:470.269500px;}
.y9{bottom:471.652500px;}
.ye6{bottom:474.784500px;}
.y64{bottom:477.850500px;}
.ycb{bottom:479.298000px;}
.y12c{bottom:486.948000px;}
.y8e{bottom:489.099000px;}
.y8{bottom:489.540000px;}
.ya3{bottom:493.303500px;}
.ye5{bottom:493.614000px;}
.y63{bottom:496.680000px;}
.yca{bottom:498.127500px;}
.y12b{bottom:504.522000px;}
.y7{bottom:507.429000px;}
.y8d{bottom:507.928500px;}
.ye4{bottom:512.442000px;}
.ya2{bottom:512.536500px;}
.y117{bottom:512.760000px;}
.y62{bottom:515.509500px;}
.yc9{bottom:516.957000px;}
.y12a{bottom:522.096000px;}
.y6{bottom:525.316500px;}
.y8c{bottom:526.758000px;}
.ye3{bottom:531.271500px;}
.y116{bottom:531.589500px;}
.y61{bottom:534.339000px;}
.yc8{bottom:535.786500px;}
.y129{bottom:539.670000px;}
.y37{bottom:541.014000px;}
.y5{bottom:543.204000px;}
.y8b{bottom:545.587500px;}
.ye2{bottom:550.101000px;}
.y115{bottom:550.419000px;}
.y60{bottom:553.168500px;}
.yc7{bottom:554.616000px;}
.y4{bottom:561.093000px;}
.y8a{bottom:564.417000px;}
.ye1{bottom:568.930500px;}
.y114{bottom:569.248500px;}
.y5f{bottom:571.998000px;}
.yc6{bottom:573.445500px;}
.y128{bottom:575.178000px;}
.y36{bottom:578.403000px;}
.y3{bottom:578.980500px;}
.y89{bottom:583.246500px;}
.ye0{bottom:587.760000px;}
.y113{bottom:588.078000px;}
.y5e{bottom:590.827500px;}
.yc5{bottom:592.275000px;}
.y127{bottom:594.007500px;}
.y2{bottom:596.868000px;}
.y35{bottom:597.861000px;}
.y88{bottom:602.076000px;}
.ydf{bottom:606.589500px;}
.y112{bottom:606.907500px;}
.y5d{bottom:609.657000px;}
.yc4{bottom:611.104500px;}
.y126{bottom:612.837000px;}
.y1{bottom:614.757000px;}
.y34{bottom:617.317500px;}
.y87{bottom:620.905500px;}
.yde{bottom:625.419000px;}
.y111{bottom:625.737000px;}
.yc3{bottom:629.934000px;}
.y125{bottom:631.666500px;}
.y5c{bottom:632.968500px;}
.yf8{bottom:633.477000px;}
.y33{bottom:636.774000px;}
.y86{bottom:644.218500px;}
.ydd{bottom:644.248500px;}
.y110{bottom:644.566500px;}
.yc2{bottom:648.763500px;}
.y124{bottom:650.496000px;}
.yf7{bottom:652.306500px;}
.y5b{bottom:653.143500px;}
.y32{bottom:656.232000px;}
.ydc{bottom:663.078000px;}
.y10f{bottom:663.396000px;}
.yc1{bottom:667.593000px;}
.y123{bottom:669.325500px;}
.yf6{bottom:671.136000px;}
.y31{bottom:675.688500px;}
.y85{bottom:677.842500px;}
.ydb{bottom:681.907500px;}
.y10e{bottom:682.225500px;}
.yc0{bottom:686.422500px;}
.y5a{bottom:686.767500px;}
.y122{bottom:688.153500px;}
.y30{bottom:695.145000px;}
.y84{bottom:696.672000px;}
.yda{bottom:700.737000px;}
.y10d{bottom:701.055000px;}
.yf5{bottom:704.701500px;}
.ybf{bottom:705.252000px;}
.y59{bottom:705.597000px;}
.y121{bottom:706.983000px;}
.y155{bottom:708.613500px;}
.y2f{bottom:714.603000px;}
.y83{bottom:715.501500px;}
.yd9{bottom:719.566500px;}
.y10c{bottom:719.884500px;}
.yf4{bottom:723.934500px;}
.ybe{bottom:724.081500px;}
.y58{bottom:724.426500px;}
.y120{bottom:725.812500px;}
.y154{bottom:725.874000px;}
.y82{bottom:734.329500px;}
.yd8{bottom:738.396000px;}
.y10b{bottom:738.714000px;}
.ybd{bottom:742.911000px;}
.y153{bottom:743.134500px;}
.y57{bottom:743.256000px;}
.y11f{bottom:744.642000px;}
.y2e{bottom:751.054500px;}
.y81{bottom:753.159000px;}
.yd7{bottom:757.225500px;}
.y10a{bottom:757.542000px;}
.y152{bottom:760.395000px;}
.ybc{bottom:761.740500px;}
.y56{bottom:762.085500px;}
.y70{bottom:763.263000px;}
.y11e{bottom:763.471500px;}
.y2d{bottom:771.534000px;}
.y109{bottom:776.371500px;}
.y151{bottom:777.655500px;}
.yd6{bottom:780.538500px;}
.y55{bottom:780.915000px;}
.y11d{bottom:782.301000px;}
.y2c{bottom:783.333000px;}
.ybb{bottom:785.053500px;}
.y80{bottom:786.726000px;}
.y150{bottom:794.916000px;}
.y108{bottom:795.201000px;}
.y54{bottom:799.744500px;}
.y11c{bottom:801.130500px;}
.y2b{bottom:803.812500px;}
.y7f{bottom:805.957500px;}
.yd5{bottom:810.966000px;}
.y14f{bottom:812.176500px;}
.y107{bottom:814.030500px;}
.y2a{bottom:815.613000px;}
.y53{bottom:818.574000px;}
.yba{bottom:818.677500px;}
.y11b{bottom:819.960000px;}
.y14e{bottom:829.437000px;}
.yd4{bottom:830.199000px;}
.y106{bottom:832.860000px;}
.y29{bottom:836.092500px;}
.y52{bottom:837.403500px;}
.yb9{bottom:837.507000px;}
.y11a{bottom:843.273000px;}
.y14d{bottom:846.697500px;}
.yd3{bottom:849.432000px;}
.y105{bottom:851.689500px;}
.y28{bottom:852.231000px;}
.y51{bottom:856.233000px;}
.yb8{bottom:856.335000px;}
.y14c{bottom:863.956500px;}
.y27{bottom:864.031500px;}
.y104{bottom:870.519000px;}
.y119{bottom:873.700500px;}
.yb7{bottom:875.164500px;}
.y26{bottom:880.171500px;}
.y14b{bottom:881.217000px;}
.y103{bottom:889.348500px;}
.y50{bottom:889.798500px;}
.yb6{bottom:893.994000px;}
.y25{bottom:896.310000px;}
.y14a{bottom:898.477500px;}
.y24{bottom:912.450000px;}
.y102{bottom:912.661500px;}
.yb5{bottom:912.823500px;}
.y149{bottom:915.738000px;}
.y23{bottom:916.789500px;}
.yb4{bottom:931.653000px;}
.y148{bottom:932.998500px;}
.y101{bottom:943.089000px;}
.y147{bottom:950.259000px;}
.yb3{bottom:950.482500px;}
.y22{bottom:959.332500px;}
.y100{bottom:962.322000px;}
.y146{bottom:967.519500px;}
.yb2{bottom:969.312000px;}
.y21{bottom:978.162000px;}
.yff{bottom:981.555000px;}
.y145{bottom:984.780000px;}
.yb1{bottom:988.141500px;}
.y20{bottom:996.991500px;}
.y144{bottom:1002.040500px;}
.yb0{bottom:1006.971000px;}
.y143{bottom:1019.299500px;}
.yaf{bottom:1025.800500px;}
.y142{bottom:1036.560000px;}
.y1f{bottom:1036.911000px;}
.yae{bottom:1044.630000px;}
.y141{bottom:1053.820500px;}
.yad{bottom:1063.459500px;}
.y1e{bottom:1065.154500px;}
.y140{bottom:1071.081000px;}
.yac{bottom:1082.289000px;}
.y4f{bottom:1086.772500px;}
.y13f{bottom:1088.341500px;}
.y1d{bottom:1093.399500px;}
.y4e{bottom:1105.602000px;}
.y1a{bottom:1136.886000px;}
.y4d{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h10{height:28.811839px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h11{height:39.434227px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h4{height:50.931027px;}
.h8{height:54.411312px;}
.h5{height:77.379634px;}
.h7{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.x2f{left:85.848000px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x3{left:252.577500px;}
.x5{left:269.914500px;}
.x4{left:272.751000px;}
.x9{left:281.479500px;}
.x26{left:291.898500px;}
.x1c{left:306.700500px;}
.x8{left:307.996500px;}
.x2d{left:309.427500px;}
.x20{left:315.178500px;}
.x18{left:336.613500px;}
.x24{left:337.908000px;}
.x19{left:344.085000px;}
.x1a{left:347.895000px;}
.x25{left:352.852500px;}
.x1b{left:355.368000px;}
.x1d{left:356.434500px;}
.xc{left:366.334500px;}
.xd{left:373.806000px;}
.xe{left:377.617500px;}
.xf{left:385.089000px;}
.x2c{left:390.696000px;}
.x27{left:399.775500px;}
.x28{left:410.664000px;}
.x14{left:437.944500px;}
.x15{left:445.417500px;}
.x16{left:449.227500px;}
.x17{left:456.700500px;}
.x21{left:460.635000px;}
.x22{left:475.578000px;}
.x2e{left:489.085500px;}
.xa{left:510.591000px;}
.xb{left:518.064000px;}
.x23{left:526.204500px;}
.x29{left:599.442000px;}
.x2a{left:610.330500px;}
.x1e{left:650.956500px;}
.x1f{left:680.841000px;}
.x10{left:739.918500px;}
.x32{left:742.113000px;}
.x11{left:747.390000px;}
.x12{left:751.201500px;}
.x13{left:758.673000px;}
.x33{left:769.012500px;}
.x2b{left:794.515500px;}
.x30{left:810.265500px;}
.x31{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lsd{letter-spacing:11.954133pt;}
.lsf{letter-spacing:12.431728pt;}
.lsa{letter-spacing:13.230333pt;}
.lsc{letter-spacing:13.389734pt;}
.ls9{letter-spacing:13.442868pt;}
.ls4{letter-spacing:15.942400pt;}
.lsb{letter-spacing:16.896570pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:51.041067pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wsf{word-spacing:-25.362056pt;}
.ws6d{word-spacing:-11.955200pt;}
.ws13{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws66{word-spacing:-2.869229pt;}
.ws59{word-spacing:-2.816095pt;}
.ws38{word-spacing:-1.965953pt;}
.ws55{word-spacing:-1.540882pt;}
.ws5e{word-spacing:-1.487748pt;}
.ws34{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.041421pt;}
.ws28{word-spacing:-1.009543pt;}
.ws7{word-spacing:-0.929840pt;}
.ws3f{word-spacing:-0.797008pt;}
.ws15{word-spacing:-0.765133pt;}
.ws3d{word-spacing:-0.584473pt;}
.ws4c{word-spacing:-0.425071pt;}
.ws3a{word-spacing:-0.334746pt;}
.ws2c{word-spacing:-0.318803pt;}
.ws58{word-spacing:-0.286925pt;}
.ws31{word-spacing:-0.265669pt;}
.ws6a{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws61{word-spacing:-0.191283pt;}
.ws20{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.ws3b{word-spacing:-0.095642pt;}
.ws27{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws11{word-spacing:-0.000962pt;}
.ws1{word-spacing:0.000000pt;}
.ws41{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.ws12{word-spacing:0.127522pt;}
.ws75{word-spacing:0.143462pt;}
.ws43{word-spacing:0.159402pt;}
.ws5d{word-spacing:0.191283pt;}
.ws56{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.ws40{word-spacing:0.286925pt;}
.ws57{word-spacing:0.318803pt;}
.ws78{word-spacing:0.334746pt;}
.ws3e{word-spacing:0.425071pt;}
.ws64{word-spacing:0.478205pt;}
.ws60{word-spacing:0.478208pt;}
.ws16{word-spacing:0.573850pt;}
.ws37{word-spacing:0.584473pt;}
.ws6b{word-spacing:0.621670pt;}
.ws2e{word-spacing:0.637606pt;}
.ws3c{word-spacing:0.690740pt;}
.ws5f{word-spacing:0.717312pt;}
.ws5c{word-spacing:0.743874pt;}
.ws6e{word-spacing:0.765133pt;}
.ws25{word-spacing:0.850142pt;}
.ws6{word-spacing:0.892646pt;}
.ws4d{word-spacing:1.062677pt;}
.ws36{word-spacing:1.168945pt;}
.ws67{word-spacing:1.275213pt;}
.ws46{word-spacing:1.381481pt;}
.ws51{word-spacing:1.434614pt;}
.ws4f{word-spacing:1.487748pt;}
.ws5a{word-spacing:1.647150pt;}
.ws39{word-spacing:1.859685pt;}
.ws50{word-spacing:1.912819pt;}
.ws29{word-spacing:1.965953pt;}
.ws24{word-spacing:2.019087pt;}
.ws44{word-spacing:2.072221pt;}
.ws0{word-spacing:2.232481pt;}
.ws30{word-spacing:2.497292pt;}
.ws14{word-spacing:2.550432pt;}
.ws2d{word-spacing:2.709827pt;}
.ws62{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.861926pt;}
.ws45{word-spacing:2.869229pt;}
.ws77{word-spacing:2.869248pt;}
.ws22{word-spacing:3.028630pt;}
.ws74{word-spacing:3.060531pt;}
.ws23{word-spacing:3.081764pt;}
.ws1d{word-spacing:3.188032pt;}
.ws68{word-spacing:3.251814pt;}
.ws4a{word-spacing:3.294300pt;}
.ws52{word-spacing:3.453701pt;}
.ws53{word-spacing:3.559969pt;}
.ws26{word-spacing:3.666237pt;}
.ws4e{word-spacing:3.772505pt;}
.ws42{word-spacing:4.038174pt;}
.wsd{word-spacing:4.240070pt;}
.ws2f{word-spacing:4.303843pt;}
.wse{word-spacing:4.314458pt;}
.ws5b{word-spacing:4.410111pt;}
.ws69{word-spacing:4.782080pt;}
.ws4b{word-spacing:4.888316pt;}
.ws18{word-spacing:5.021184pt;}
.ws54{word-spacing:5.207119pt;}
.ws47{word-spacing:5.579056pt;}
.ws63{word-spacing:6.748001pt;}
.wsb{word-spacing:6.918010pt;}
.ws65{word-spacing:7.013670pt;}
.ws49{word-spacing:7.029658pt;}
.ws48{word-spacing:7.412224pt;}
.ws2a{word-spacing:10.587492pt;}
.ws9{word-spacing:10.823338pt;}
.ws3{word-spacing:11.492822pt;}
.ws72{word-spacing:11.716096pt;}
.ws73{word-spacing:11.859558pt;}
.ws71{word-spacing:11.907379pt;}
.ws7b{word-spacing:12.003021pt;}
.ws76{word-spacing:12.050842pt;}
.ws32{word-spacing:13.230333pt;}
.wsa{word-spacing:14.319536pt;}
.ws6f{word-spacing:14.585344pt;}
.ws70{word-spacing:14.769638pt;}
.ws7a{word-spacing:14.776627pt;}
.ws6c{word-spacing:14.967910pt;}
.ws79{word-spacing:16.163430pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
._c{margin-left:-7.029658pt;}
._8{margin-left:-5.895302pt;}
._1{margin-left:-4.797974pt;}
._9{margin-left:-3.650354pt;}
._0{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._5{width:2.045648pt;}
._19{width:3.161609pt;}
._4{width:11.530016pt;}
._e{width:13.177232pt;}
._17{width:14.170842pt;}
._a{width:15.063552pt;}
._d{width:16.630900pt;}
._b{width:18.267546pt;}
._11{width:19.298217pt;}
._15{width:20.350271pt;}
._16{width:21.731751pt;}
._3{width:23.059276pt;}
._14{width:25.605263pt;}
._6{width:27.188522pt;}
._13{width:28.224706pt;}
._12{width:29.648698pt;}
._7{width:48.990604pt;}
._f{width:823.830443pt;}
._18{width:2214.471733pt;}
._10{width:2235.725067pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:1.545957pt;}
.y1b{bottom:26.907593pt;}
.y4c{bottom:28.346667pt;}
.yab{bottom:81.480000pt;}
.y4b{bottom:92.108000pt;}
.y19{bottom:93.018667pt;}
.y13e{bottom:95.786667pt;}
.yaa{bottom:98.217333pt;}
.y7e{bottom:98.460000pt;}
.y4a{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y13d{bottom:111.128000pt;}
.ya9{bottom:114.954667pt;}
.y7d{bottom:115.197333pt;}
.ya1{bottom:116.746667pt;}
.yfe{bottom:123.193333pt;}
.y17{bottom:124.820000pt;}
.y49{bottom:125.581333pt;}
.y13c{bottom:126.470667pt;}
.ya8{bottom:131.692000pt;}
.y7c{bottom:131.934667pt;}
.ya0{bottom:133.484000pt;}
.yfd{bottom:139.930667pt;}
.y16{bottom:140.720000pt;}
.y13b{bottom:141.813333pt;}
.y48{bottom:142.318667pt;}
.ya7{bottom:148.429333pt;}
.y7b{bottom:148.672000pt;}
.y9f{bottom:150.221333pt;}
.y15{bottom:156.621333pt;}
.yfc{bottom:156.668000pt;}
.y13a{bottom:157.156000pt;}
.y47{bottom:159.056000pt;}
.ya6{bottom:165.166667pt;}
.y7a{bottom:165.409333pt;}
.y9e{bottom:166.958667pt;}
.y139{bottom:172.498667pt;}
.y14{bottom:172.521333pt;}
.yfb{bottom:173.405333pt;}
.y46{bottom:175.793333pt;}
.y79{bottom:182.146667pt;}
.y9d{bottom:183.696000pt;}
.ya5{bottom:185.889333pt;}
.yf3{bottom:186.114667pt;}
.y138{bottom:187.841333pt;}
.y13{bottom:188.421333pt;}
.y45{bottom:192.530667pt;}
.yfa{bottom:194.128000pt;}
.y78{bottom:198.884000pt;}
.y9c{bottom:200.433333pt;}
.yf2{bottom:202.852000pt;}
.y137{bottom:203.184000pt;}
.y12{bottom:204.322667pt;}
.y44{bottom:209.268000pt;}
.ya4{bottom:212.182667pt;}
.y118{bottom:214.314667pt;}
.y77{bottom:215.621333pt;}
.y9b{bottom:217.170667pt;}
.yf1{bottom:219.589333pt;}
.yf9{bottom:221.174667pt;}
.y136{bottom:222.510667pt;}
.y43{bottom:226.005333pt;}
.y76{bottom:232.358667pt;}
.y9a{bottom:233.908000pt;}
.yf0{bottom:240.310667pt;}
.y6f{bottom:240.645333pt;}
.y42{bottom:242.742667pt;}
.y75{bottom:249.096000pt;}
.y99{bottom:250.645333pt;}
.y135{bottom:252.398667pt;}
.y6e{bottom:257.382667pt;}
.yef{bottom:258.244000pt;}
.y41{bottom:259.480000pt;}
.y74{bottom:265.832000pt;}
.y11{bottom:266.804000pt;}
.y98{bottom:267.381333pt;}
.y6d{bottom:274.120000pt;}
.y134{bottom:275.990667pt;}
.y40{bottom:276.217333pt;}
.y10{bottom:282.705333pt;}
.y97{bottom:284.118667pt;}
.y73{bottom:286.554667pt;}
.yee{bottom:288.132000pt;}
.y6c{bottom:290.857333pt;}
.y3f{bottom:292.954667pt;}
.yf{bottom:298.605333pt;}
.y133{bottom:299.582667pt;}
.y96{bottom:300.856000pt;}
.yed{bottom:304.869333pt;}
.y6b{bottom:307.594667pt;}
.yd2{bottom:308.882667pt;}
.y3e{bottom:309.692000pt;}
.y72{bottom:313.601333pt;}
.ye{bottom:314.505333pt;}
.y95{bottom:317.593333pt;}
.yec{bottom:321.606667pt;}
.y132{bottom:323.173333pt;}
.y6a{bottom:324.332000pt;}
.yd1{bottom:325.620000pt;}
.y3d{bottom:326.429333pt;}
.y71{bottom:330.697333pt;}
.y94{bottom:334.330667pt;}
.yeb{bottom:338.344000pt;}
.yd{bottom:338.376000pt;}
.y69{bottom:341.069333pt;}
.yd0{bottom:342.357333pt;}
.y3c{bottom:343.166667pt;}
.y131{bottom:346.765333pt;}
.y93{bottom:351.068000pt;}
.yc{bottom:354.277333pt;}
.yea{bottom:355.081333pt;}
.y68{bottom:357.806667pt;}
.ycf{bottom:359.094667pt;}
.y3b{bottom:359.904000pt;}
.y130{bottom:362.386667pt;}
.y92{bottom:367.805333pt;}
.yb{bottom:370.177333pt;}
.ye9{bottom:371.818667pt;}
.y67{bottom:374.544000pt;}
.yce{bottom:375.832000pt;}
.y3a{bottom:376.641333pt;}
.y12f{bottom:378.008000pt;}
.y91{bottom:384.542667pt;}
.ye8{bottom:388.556000pt;}
.y66{bottom:391.281333pt;}
.ycd{bottom:392.568000pt;}
.y39{bottom:393.378667pt;}
.ya{bottom:395.376000pt;}
.y90{bottom:401.280000pt;}
.y12e{bottom:401.600000pt;}
.ye7{bottom:405.293333pt;}
.y65{bottom:408.018667pt;}
.ycc{bottom:409.305333pt;}
.y38{bottom:414.101333pt;}
.y12d{bottom:417.221333pt;}
.y8f{bottom:418.017333pt;}
.y9{bottom:419.246667pt;}
.ye6{bottom:422.030667pt;}
.y64{bottom:424.756000pt;}
.ycb{bottom:426.042667pt;}
.y12c{bottom:432.842667pt;}
.y8e{bottom:434.754667pt;}
.y8{bottom:435.146667pt;}
.ya3{bottom:438.492000pt;}
.ye5{bottom:438.768000pt;}
.y63{bottom:441.493333pt;}
.yca{bottom:442.780000pt;}
.y12b{bottom:448.464000pt;}
.y7{bottom:451.048000pt;}
.y8d{bottom:451.492000pt;}
.ye4{bottom:455.504000pt;}
.ya2{bottom:455.588000pt;}
.y117{bottom:455.786667pt;}
.y62{bottom:458.230667pt;}
.yc9{bottom:459.517333pt;}
.y12a{bottom:464.085333pt;}
.y6{bottom:466.948000pt;}
.y8c{bottom:468.229333pt;}
.ye3{bottom:472.241333pt;}
.y116{bottom:472.524000pt;}
.y61{bottom:474.968000pt;}
.yc8{bottom:476.254667pt;}
.y129{bottom:479.706667pt;}
.y37{bottom:480.901333pt;}
.y5{bottom:482.848000pt;}
.y8b{bottom:484.966667pt;}
.ye2{bottom:488.978667pt;}
.y115{bottom:489.261333pt;}
.y60{bottom:491.705333pt;}
.yc7{bottom:492.992000pt;}
.y4{bottom:498.749333pt;}
.y8a{bottom:501.704000pt;}
.ye1{bottom:505.716000pt;}
.y114{bottom:505.998667pt;}
.y5f{bottom:508.442667pt;}
.yc6{bottom:509.729333pt;}
.y128{bottom:511.269333pt;}
.y36{bottom:514.136000pt;}
.y3{bottom:514.649333pt;}
.y89{bottom:518.441333pt;}
.ye0{bottom:522.453333pt;}
.y113{bottom:522.736000pt;}
.y5e{bottom:525.180000pt;}
.yc5{bottom:526.466667pt;}
.y127{bottom:528.006667pt;}
.y2{bottom:530.549333pt;}
.y35{bottom:531.432000pt;}
.y88{bottom:535.178667pt;}
.ydf{bottom:539.190667pt;}
.y112{bottom:539.473333pt;}
.y5d{bottom:541.917333pt;}
.yc4{bottom:543.204000pt;}
.y126{bottom:544.744000pt;}
.y1{bottom:546.450667pt;}
.y34{bottom:548.726667pt;}
.y87{bottom:551.916000pt;}
.yde{bottom:555.928000pt;}
.y111{bottom:556.210667pt;}
.yc3{bottom:559.941333pt;}
.y125{bottom:561.481333pt;}
.y5c{bottom:562.638667pt;}
.yf8{bottom:563.090667pt;}
.y33{bottom:566.021333pt;}
.y86{bottom:572.638667pt;}
.ydd{bottom:572.665333pt;}
.y110{bottom:572.948000pt;}
.yc2{bottom:576.678667pt;}
.y124{bottom:578.218667pt;}
.yf7{bottom:579.828000pt;}
.y5b{bottom:580.572000pt;}
.y32{bottom:583.317333pt;}
.ydc{bottom:589.402667pt;}
.y10f{bottom:589.685333pt;}
.yc1{bottom:593.416000pt;}
.y123{bottom:594.956000pt;}
.yf6{bottom:596.565333pt;}
.y31{bottom:600.612000pt;}
.y85{bottom:602.526667pt;}
.ydb{bottom:606.140000pt;}
.y10e{bottom:606.422667pt;}
.yc0{bottom:610.153333pt;}
.y5a{bottom:610.460000pt;}
.y122{bottom:611.692000pt;}
.y30{bottom:617.906667pt;}
.y84{bottom:619.264000pt;}
.yda{bottom:622.877333pt;}
.y10d{bottom:623.160000pt;}
.yf5{bottom:626.401333pt;}
.ybf{bottom:626.890667pt;}
.y59{bottom:627.197333pt;}
.y121{bottom:628.429333pt;}
.y155{bottom:629.878667pt;}
.y2f{bottom:635.202667pt;}
.y83{bottom:636.001333pt;}
.yd9{bottom:639.614667pt;}
.y10c{bottom:639.897333pt;}
.yf4{bottom:643.497333pt;}
.ybe{bottom:643.628000pt;}
.y58{bottom:643.934667pt;}
.y120{bottom:645.166667pt;}
.y154{bottom:645.221333pt;}
.y82{bottom:652.737333pt;}
.yd8{bottom:656.352000pt;}
.y10b{bottom:656.634667pt;}
.ybd{bottom:660.365333pt;}
.y153{bottom:660.564000pt;}
.y57{bottom:660.672000pt;}
.y11f{bottom:661.904000pt;}
.y2e{bottom:667.604000pt;}
.y81{bottom:669.474667pt;}
.yd7{bottom:673.089333pt;}
.y10a{bottom:673.370667pt;}
.y152{bottom:675.906667pt;}
.ybc{bottom:677.102667pt;}
.y56{bottom:677.409333pt;}
.y70{bottom:678.456000pt;}
.y11e{bottom:678.641333pt;}
.y2d{bottom:685.808000pt;}
.y109{bottom:690.108000pt;}
.y151{bottom:691.249333pt;}
.yd6{bottom:693.812000pt;}
.y55{bottom:694.146667pt;}
.y11d{bottom:695.378667pt;}
.y2c{bottom:696.296000pt;}
.ybb{bottom:697.825333pt;}
.y80{bottom:699.312000pt;}
.y150{bottom:706.592000pt;}
.y108{bottom:706.845333pt;}
.y54{bottom:710.884000pt;}
.y11c{bottom:712.116000pt;}
.y2b{bottom:714.500000pt;}
.y7f{bottom:716.406667pt;}
.yd5{bottom:720.858667pt;}
.y14f{bottom:721.934667pt;}
.y107{bottom:723.582667pt;}
.y2a{bottom:724.989333pt;}
.y53{bottom:727.621333pt;}
.yba{bottom:727.713333pt;}
.y11b{bottom:728.853333pt;}
.y14e{bottom:737.277333pt;}
.yd4{bottom:737.954667pt;}
.y106{bottom:740.320000pt;}
.y29{bottom:743.193333pt;}
.y52{bottom:744.358667pt;}
.yb9{bottom:744.450667pt;}
.y11a{bottom:749.576000pt;}
.y14d{bottom:752.620000pt;}
.yd3{bottom:755.050667pt;}
.y105{bottom:757.057333pt;}
.y28{bottom:757.538667pt;}
.y51{bottom:761.096000pt;}
.yb8{bottom:761.186667pt;}
.y14c{bottom:767.961333pt;}
.y27{bottom:768.028000pt;}
.y104{bottom:773.794667pt;}
.y119{bottom:776.622667pt;}
.yb7{bottom:777.924000pt;}
.y26{bottom:782.374667pt;}
.y14b{bottom:783.304000pt;}
.y103{bottom:790.532000pt;}
.y50{bottom:790.932000pt;}
.yb6{bottom:794.661333pt;}
.y25{bottom:796.720000pt;}
.y14a{bottom:798.646667pt;}
.y24{bottom:811.066667pt;}
.y102{bottom:811.254667pt;}
.yb5{bottom:811.398667pt;}
.y149{bottom:813.989333pt;}
.y23{bottom:814.924000pt;}
.yb4{bottom:828.136000pt;}
.y148{bottom:829.332000pt;}
.y101{bottom:838.301333pt;}
.y147{bottom:844.674667pt;}
.yb3{bottom:844.873333pt;}
.y22{bottom:852.740000pt;}
.y100{bottom:855.397333pt;}
.y146{bottom:860.017333pt;}
.yb2{bottom:861.610667pt;}
.y21{bottom:869.477333pt;}
.yff{bottom:872.493333pt;}
.y145{bottom:875.360000pt;}
.yb1{bottom:878.348000pt;}
.y20{bottom:886.214667pt;}
.y144{bottom:890.702667pt;}
.yb0{bottom:895.085333pt;}
.y143{bottom:906.044000pt;}
.yaf{bottom:911.822667pt;}
.y142{bottom:921.386667pt;}
.y1f{bottom:921.698667pt;}
.yae{bottom:928.560000pt;}
.y141{bottom:936.729333pt;}
.yad{bottom:945.297333pt;}
.y1e{bottom:946.804000pt;}
.y140{bottom:952.072000pt;}
.yac{bottom:962.034667pt;}
.y4f{bottom:966.020000pt;}
.y13f{bottom:967.414667pt;}
.y1d{bottom:971.910667pt;}
.y4e{bottom:982.757333pt;}
.y1a{bottom:1010.565333pt;}
.y4d{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h10{height:25.610524pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h11{height:35.052646pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h4{height:45.272024pt;}
.h8{height:48.365611pt;}
.h5{height:68.781897pt;}
.h7{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.x2f{left:76.309333pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x3{left:224.513333pt;}
.x5{left:239.924000pt;}
.x4{left:242.445333pt;}
.x9{left:250.204000pt;}
.x26{left:259.465333pt;}
.x1c{left:272.622667pt;}
.x8{left:273.774667pt;}
.x2d{left:275.046667pt;}
.x20{left:280.158667pt;}
.x18{left:299.212000pt;}
.x24{left:300.362667pt;}
.x19{left:305.853333pt;}
.x1a{left:309.240000pt;}
.x25{left:313.646667pt;}
.x1b{left:315.882667pt;}
.x1d{left:316.830667pt;}
.xc{left:325.630667pt;}
.xd{left:332.272000pt;}
.xe{left:335.660000pt;}
.xf{left:342.301333pt;}
.x2c{left:347.285333pt;}
.x27{left:355.356000pt;}
.x28{left:365.034667pt;}
.x14{left:389.284000pt;}
.x15{left:395.926667pt;}
.x16{left:399.313333pt;}
.x17{left:405.956000pt;}
.x21{left:409.453333pt;}
.x22{left:422.736000pt;}
.x2e{left:434.742667pt;}
.xa{left:453.858667pt;}
.xb{left:460.501333pt;}
.x23{left:467.737333pt;}
.x29{left:532.837333pt;}
.x2a{left:542.516000pt;}
.x1e{left:578.628000pt;}
.x1f{left:605.192000pt;}
.x10{left:657.705333pt;}
.x32{left:659.656000pt;}
.x11{left:664.346667pt;}
.x12{left:667.734667pt;}
.x13{left:674.376000pt;}
.x33{left:683.566667pt;}
.x2b{left:706.236000pt;}
.x30{left:720.236000pt;}
.x31{left:744.146667pt;}
}




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