
    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_751789f522e3eb6a74d164b5.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_b68a1f883e7ef6089f56e4b1.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_b882d4166182127ac0cfd229.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_c88e95233e6325385d31e537.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.482000;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;}
.m3{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);}
.mc{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);}
.m1a{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);}
.m20{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);}
.m6{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);}
.m17{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);}
.md{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);}
.m14{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);}
.m4{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);}
.m1d{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);}
.ma{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);}
.m18{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);}
.m2{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);}
.m1e{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);}
.m24{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);}
.m7{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);}
.m8{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);}
.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);}
.m23{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);}
.m9{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);}
.m26{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);}
.mb{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);}
.mf{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);}
.m1b{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);}
.m25{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);}
.m16{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);}
.m13{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);}
.m1f{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);}
.m21{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);}
.m1c{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);}
.m5{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);}
.me{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);}
.m12{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);}
.m22{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);}
.m19{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);}
.m1{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);}
.m11{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;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000009px;}
.ls1{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.000608px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.lsf{letter-spacing:13.295459px;}
.lsc{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.454400px;}
.lsd{letter-spacing:13.463313px;}
.ls12{letter-spacing:13.562546px;}
.ls11{letter-spacing:15.326871px;}
.lsb{letter-spacing:16.676400px;}
.lse{letter-spacing:19.973929px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls9{letter-spacing:2809.241700px;}
.ls8{letter-spacing:2810.441700px;}
.ls13{letter-spacing:2811.635700px;}
.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;}
}
.ws1c{word-spacing:-14.943900px;}
.ws65{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws38{word-spacing:-3.168107px;}
.ws2d{word-spacing:-2.630126px;}
.ws6c{word-spacing:-2.528525px;}
.ws31{word-spacing:-2.450800px;}
.ws3c{word-spacing:-2.211697px;}
.ws33{word-spacing:-1.972595px;}
.ws34{word-spacing:-1.733492px;}
.ws5a{word-spacing:-1.673717px;}
.ws72{word-spacing:-1.613952px;}
.ws71{word-spacing:-1.560154px;}
.ws36{word-spacing:-1.374839px;}
.ws16{word-spacing:-1.237363px;}
.ws4{word-spacing:-1.171598px;}
.ws83{word-spacing:-1.075968px;}
.ws6{word-spacing:-1.046070px;}
.ws25{word-spacing:-0.777083px;}
.ws51{word-spacing:-0.717307px;}
.ws3b{word-spacing:-0.657532px;}
.ws21{word-spacing:-0.597756px;}
.ws5f{word-spacing:-0.537984px;}
.ws30{word-spacing:-0.358654px;}
.ws39{word-spacing:-0.298878px;}
.ws60{word-spacing:-0.268992px;}
.ws24{word-spacing:-0.239102px;}
.ws68{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws77{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws2c{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.053798px;}
.ws48{word-spacing:-0.008404px;}
.ws86{word-spacing:-0.007325px;}
.ws88{word-spacing:-0.005222px;}
.ws2{word-spacing:-0.001244px;}
.ws29{word-spacing:-0.000344px;}
.ws1{word-spacing:0.000000px;}
.ws84{word-spacing:0.000778px;}
.ws67{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.ws7f{word-spacing:0.086255px;}
.ws6f{word-spacing:0.107597px;}
.ws2e{word-spacing:0.119551px;}
.ws73{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws13{word-spacing:0.215194px;}
.ws20{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws23{word-spacing:0.358654px;}
.ws4a{word-spacing:0.418429px;}
.ws66{word-spacing:0.484186px;}
.ws40{word-spacing:0.537980px;}
.ws57{word-spacing:0.597756px;}
.ws14{word-spacing:0.645581px;}
.ws49{word-spacing:0.657532px;}
.ws4f{word-spacing:0.896634px;}
.ws5{word-spacing:1.004227px;}
.ws41{word-spacing:1.016185px;}
.ws82{word-spacing:1.022170px;}
.ws5c{word-spacing:1.075961px;}
.ws15{word-spacing:1.129766px;}
.ws32{word-spacing:1.315063px;}
.ws2f{word-spacing:1.434614px;}
.ws79{word-spacing:1.452557px;}
.ws58{word-spacing:1.494390px;}
.ws42{word-spacing:1.733492px;}
.ws11{word-spacing:1.775347px;}
.ws1d{word-spacing:1.972595px;}
.ws28{word-spacing:2.211697px;}
.ws3f{word-spacing:2.271473px;}
.ws7c{word-spacing:2.313331px;}
.ws0{word-spacing:2.511541px;}
.ws56{word-spacing:2.689902px;}
.ws10{word-spacing:2.869236px;}
.ws7d{word-spacing:2.958912px;}
.ws52{word-spacing:3.108331px;}
.ws7e{word-spacing:3.219600px;}
.ws19{word-spacing:3.219667px;}
.ws69{word-spacing:3.222067px;}
.ws7a{word-spacing:3.222163px;}
.ws7b{word-spacing:3.222346px;}
.ws61{word-spacing:3.224822px;}
.ws87{word-spacing:3.224918px;}
.ws64{word-spacing:3.225888px;}
.ws78{word-spacing:3.227194px;}
.ws74{word-spacing:3.227904px;}
.ws6a{word-spacing:3.227933px;}
.ws59{word-spacing:3.360857px;}
.ws81{word-spacing:3.389299px;}
.ws4d{word-spacing:3.394104px;}
.ws4c{word-spacing:3.402542px;}
.ws80{word-spacing:3.406100px;}
.ws4e{word-spacing:3.407209px;}
.ws1e{word-spacing:3.466985px;}
.ws1a{word-spacing:3.586536px;}
.ws35{word-spacing:3.706087px;}
.ws1b{word-spacing:3.885414px;}
.ws6e{word-spacing:4.114222px;}
.ws6d{word-spacing:4.142477px;}
.ws70{word-spacing:4.250074px;}
.ws4b{word-spacing:4.722272px;}
.wsc{word-spacing:4.770079px;}
.wsd{word-spacing:4.853765px;}
.ws44{word-spacing:4.901599px;}
.ws54{word-spacing:4.961375px;}
.ws50{word-spacing:5.021150px;}
.ws12{word-spacing:5.110848px;}
.ws75{word-spacing:5.164646px;}
.ws3e{word-spacing:5.200477px;}
.ws3a{word-spacing:5.260253px;}
.ws3d{word-spacing:5.320028px;}
.ws47{word-spacing:5.379804px;}
.ws5b{word-spacing:5.439580px;}
.ws5d{word-spacing:6.216662px;}
.ws76{word-spacing:6.509606px;}
.ws55{word-spacing:6.575316px;}
.ws5e{word-spacing:6.694867px;}
.ws46{word-spacing:6.814418px;}
.ws37{word-spacing:7.232848px;}
.ws53{word-spacing:7.591501px;}
.ws45{word-spacing:7.770828px;}
.wsa{word-spacing:7.782761px;}
.ws43{word-spacing:9.324994px;}
.ws8{word-spacing:12.176255px;}
.ws63{word-spacing:13.019213px;}
.ws85{word-spacing:15.224947px;}
.ws9{word-spacing:16.109478px;}
.ws62{word-spacing:16.354714px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.wsf{word-spacing:54.988186px;}
._10{margin-left:-7.699102px;}
._9{margin-left:-6.001477px;}
._8{margin-left:-4.614696px;}
._0{margin-left:-3.096367px;}
._1{margin-left:-1.506341px;}
._4{width:2.301354px;}
._6{width:3.678397px;}
._a{width:11.094379px;}
._3{width:12.971268px;}
._16{width:14.059217px;}
._d{width:15.601536px;}
._1c{width:16.667395px;}
._e{width:18.321311px;}
._c{width:19.361542px;}
._19{width:20.413158px;}
._17{width:21.423572px;}
._13{width:23.288567px;}
._12{width:24.890567px;}
._2{width:25.944936px;}
._f{width:29.290044px;}
._5{width:30.587087px;}
._b{width:32.063832px;}
._1a{width:33.498253px;}
._15{width:34.705716px;}
._1b{width:39.212794px;}
._14{width:40.312672px;}
._18{width:42.380900px;}
._1e{width:47.707229px;}
._7{width:54.423634px;}
._1d{width:61.868160px;}
._1f{width:62.944128px;}
._11{width:991.618343px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:31.890000px;}
.y16{bottom:104.646000px;}
.y9b{bottom:105.847500px;}
.y78{bottom:106.744500px;}
.y15{bottom:122.535000px;}
.y77{bottom:125.574000px;}
.yd2{bottom:126.157500px;}
.y42{bottom:127.728000px;}
.y9a{bottom:132.388500px;}
.y14{bottom:140.422500px;}
.yd1{bottom:143.416500px;}
.y76{bottom:144.403500px;}
.y41{bottom:146.557500px;}
.y13{bottom:158.310000px;}
.y99{bottom:158.929500px;}
.yd0{bottom:160.677000px;}
.y75{bottom:163.233000px;}
.y40{bottom:165.387000px;}
.y12{bottom:176.199000px;}
.ycf{bottom:177.937500px;}
.y74{bottom:182.062500px;}
.y3f{bottom:184.216500px;}
.y98{bottom:185.469000px;}
.y11{bottom:194.086500px;}
.yce{bottom:195.198000px;}
.y73{bottom:200.892000px;}
.y97{bottom:203.044500px;}
.y3e{bottom:203.046000px;}
.y10{bottom:211.974000px;}
.ycd{bottom:212.458500px;}
.y72{bottom:219.721500px;}
.y3d{bottom:221.875500px;}
.ycc{bottom:229.719000px;}
.yf{bottom:229.863000px;}
.y71{bottom:238.551000px;}
.y3c{bottom:240.705000px;}
.y8a{bottom:243.034500px;}
.ycb{bottom:246.979500px;}
.y70{bottom:257.380500px;}
.y3b{bottom:259.534500px;}
.yca{bottom:264.240000px;}
.y6f{bottom:276.210000px;}
.y89{bottom:276.658500px;}
.y3a{bottom:278.364000px;}
.yc9{bottom:281.500500px;}
.y96{bottom:295.039500px;}
.y88{bottom:295.488000px;}
.y39{bottom:297.193500px;}
.yc8{bottom:298.759500px;}
.y6e{bottom:299.523000px;}
.ye{bottom:300.154500px;}
.y95{bottom:313.869000px;}
.y87{bottom:314.317500px;}
.yc7{bottom:316.020000px;}
.y38{bottom:316.023000px;}
.yd{bottom:318.043500px;}
.y94{bottom:332.698500px;}
.y6d{bottom:333.145500px;}
.yc6{bottom:333.280500px;}
.y37{bottom:334.852500px;}
.yc{bottom:335.931000px;}
.yc5{bottom:350.541000px;}
.y93{bottom:351.528000px;}
.y6c{bottom:351.975000px;}
.y36{bottom:353.682000px;}
.yb{bottom:353.818500px;}
.yc4{bottom:367.801500px;}
.y92{bottom:370.357500px;}
.y6b{bottom:370.804500px;}
.y35{bottom:372.511500px;}
.ya{bottom:380.673000px;}
.yc3{bottom:385.062000px;}
.y6a{bottom:389.634000px;}
.y34{bottom:391.341000px;}
.y91{bottom:393.669000px;}
.y9{bottom:398.562000px;}
.yc2{bottom:402.322500px;}
.y69{bottom:408.463500px;}
.y33{bottom:410.170500px;}
.y8{bottom:416.449500px;}
.yc1{bottom:419.583000px;}
.y68{bottom:427.293000px;}
.y32{bottom:428.998500px;}
.yc0{bottom:436.842000px;}
.y7{bottom:444.798000px;}
.y67{bottom:446.122500px;}
.y31{bottom:447.828000px;}
.ybf{bottom:454.102500px;}
.y66{bottom:464.952000px;}
.y30{bottom:466.657500px;}
.ybe{bottom:471.363000px;}
.y6{bottom:471.652500px;}
.y65{bottom:483.781500px;}
.y2f{bottom:485.487000px;}
.ybd{bottom:488.623500px;}
.y5{bottom:489.540000px;}
.y64{bottom:502.611000px;}
.y2e{bottom:504.316500px;}
.ybc{bottom:505.884000px;}
.y4{bottom:507.429000px;}
.y63{bottom:521.440500px;}
.ybb{bottom:523.144500px;}
.y3{bottom:525.316500px;}
.y2d{bottom:527.629500px;}
.y62{bottom:540.270000px;}
.yba{bottom:540.405000px;}
.y2{bottom:543.204000px;}
.yb9{bottom:557.665500px;}
.y61{bottom:559.099500px;}
.y1{bottom:561.093000px;}
.yb8{bottom:574.926000px;}
.y60{bottom:577.929000px;}
.yb7{bottom:592.185000px;}
.y5f{bottom:596.758500px;}
.y2c{bottom:602.779500px;}
.yb6{bottom:609.445500px;}
.y5e{bottom:615.588000px;}
.yb5{bottom:626.706000px;}
.y5d{bottom:634.417500px;}
.y2b{bottom:640.170000px;}
.yb4{bottom:643.966500px;}
.y5c{bottom:653.247000px;}
.y2a{bottom:659.626500px;}
.yb3{bottom:661.227000px;}
.y5b{bottom:672.076500px;}
.yb2{bottom:678.487500px;}
.y29{bottom:679.083000px;}
.y5a{bottom:690.906000px;}
.yb1{bottom:695.748000px;}
.y28{bottom:698.541000px;}
.y59{bottom:709.735500px;}
.yb0{bottom:713.008500px;}
.y86{bottom:714.219000px;}
.y27{bottom:717.997500px;}
.y58{bottom:728.565000px;}
.yaf{bottom:730.267500px;}
.y26{bottom:737.455500px;}
.y57{bottom:747.394500px;}
.yae{bottom:747.528000px;}
.y85{bottom:747.843000px;}
.y25{bottom:756.912000px;}
.yad{bottom:764.788500px;}
.y56{bottom:766.224000px;}
.y84{bottom:766.671000px;}
.y24{bottom:776.368500px;}
.yac{bottom:782.049000px;}
.y55{bottom:785.053500px;}
.y83{bottom:785.500500px;}
.y23{bottom:795.826500px;}
.yab{bottom:799.309500px;}
.y54{bottom:803.883000px;}
.y82{bottom:804.330000px;}
.y22{bottom:815.283000px;}
.yaa{bottom:816.570000px;}
.y53{bottom:822.712500px;}
.y81{bottom:823.159500px;}
.ya9{bottom:833.830500px;}
.y52{bottom:841.540500px;}
.y80{bottom:841.989000px;}
.ya8{bottom:851.091000px;}
.y21{bottom:853.869000px;}
.y51{bottom:860.370000px;}
.y7f{bottom:860.818500px;}
.ya7{bottom:868.351500px;}
.y20{bottom:870.007500px;}
.y50{bottom:879.199500px;}
.y7e{bottom:879.648000px;}
.ya6{bottom:885.610500px;}
.y1f{bottom:890.487000px;}
.y4f{bottom:898.029000px;}
.y7d{bottom:898.477500px;}
.ya5{bottom:902.871000px;}
.y1e{bottom:906.627000px;}
.y4e{bottom:916.858500px;}
.y7c{bottom:917.307000px;}
.ya4{bottom:920.131500px;}
.y1d{bottom:922.767000px;}
.y1c{bottom:934.566000px;}
.y4d{bottom:935.688000px;}
.y7b{bottom:936.136500px;}
.ya3{bottom:937.392000px;}
.ydc{bottom:950.259000px;}
.y90{bottom:954.517500px;}
.ya2{bottom:954.652500px;}
.y7a{bottom:954.966000px;}
.y1b{bottom:955.045500px;}
.y4c{bottom:959.001000px;}
.ydb{bottom:967.519500px;}
.ya1{bottom:971.913000px;}
.y8f{bottom:973.347000px;}
.y79{bottom:973.795500px;}
.yda{bottom:984.780000px;}
.ya0{bottom:989.173500px;}
.y8e{bottom:992.176500px;}
.y4b{bottom:992.625000px;}
.y1a{bottom:999.721500px;}
.yd8{bottom:1002.039000px;}
.yd9{bottom:1002.040500px;}
.y9f{bottom:1006.434000px;}
.y8d{bottom:1011.006000px;}
.y4a{bottom:1011.454500px;}
.yd7{bottom:1019.299500px;}
.y9e{bottom:1023.693000px;}
.y8c{bottom:1029.835500px;}
.y49{bottom:1030.284000px;}
.y19{bottom:1036.485000px;}
.yd6{bottom:1036.560000px;}
.y9d{bottom:1045.437000px;}
.y48{bottom:1049.113500px;}
.y8b{bottom:1053.148500px;}
.yd5{bottom:1053.820500px;}
.y18{bottom:1064.728500px;}
.y47{bottom:1067.943000px;}
.yd4{bottom:1071.081000px;}
.y9c{bottom:1079.061000px;}
.y46{bottom:1086.772500px;}
.yd3{bottom:1088.341500px;}
.y17{bottom:1092.972000px;}
.y45{bottom:1105.602000px;}
.y44{bottom:1168.366500px;}
.h7{height:26.110157px;}
.h2{height:30.461558px;}
.hd{height:30.582721px;}
.h3{height:30.712615px;}
.h8{height:34.813397px;}
.he{height:35.100320px;}
.h9{height:38.734848px;}
.ha{height:39.165235px;}
.hf{height:39.488026px;}
.hb{height:43.038432px;}
.hc{height:43.516637px;}
.h4{height:43.875290px;}
.h6{height:54.411312px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x53{left:85.848000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x7{left:281.479500px;}
.x1a{left:283.135500px;}
.x1b{left:290.608500px;}
.x4d{left:305.599500px;}
.x6{left:309.177000px;}
.x4e{left:313.071000px;}
.x35{left:315.741000px;}
.x36{left:330.685500px;}
.x4f{left:346.878000px;}
.x37{left:348.004500px;}
.x1e{left:353.574000px;}
.x50{left:361.822500px;}
.x38{left:362.949000px;}
.xe{left:364.548000px;}
.x1f{left:368.518500px;}
.xf{left:372.021000px;}
.x10{left:375.813000px;}
.x11{left:383.284500px;}
.x52{left:390.510000px;}
.x8{left:420.871500px;}
.x20{left:426.282000px;}
.x2b{left:429.942000px;}
.x21{left:433.755000px;}
.x9{left:436.903500px;}
.x41{left:440.410500px;}
.x2c{left:444.886500px;}
.x42{left:455.353500px;}
.x43{left:459.165000px;}
.x44{left:474.109500px;}
.x2d{left:521.061000px;}
.x2e{left:536.005500px;}
.x3d{left:543.537000px;}
.x12{left:548.206500px;}
.x13{left:555.678000px;}
.x3e{left:558.481500px;}
.x14{left:563.001000px;}
.x15{left:570.472500px;}
.x22{left:576.690000px;}
.x49{left:584.857500px;}
.x23{left:591.634500px;}
.x24{left:595.414500px;}
.x39{left:600.630000px;}
.x25{left:610.359000px;}
.x3a{left:615.574500px;}
.x3b{left:623.068500px;}
.x3c{left:638.013000px;}
.xc{left:651.324000px;}
.xd{left:658.797000px;}
.x3f{left:663.586500px;}
.x4a{left:671.752500px;}
.x31{left:673.051500px;}
.x40{left:678.529500px;}
.x32{left:687.996000px;}
.x5d{left:690.175500px;}
.x33{left:691.807500px;}
.x45{left:698.757000px;}
.x34{left:706.750500px;}
.x47{left:711.114000px;}
.x46{left:713.701500px;}
.x48{left:718.585500px;}
.x58{left:725.298000px;}
.x4b{left:732.328500px;}
.x4c{left:739.800000px;}
.x56{left:743.548500px;}
.x27{left:749.850000px;}
.x59{left:752.197500px;}
.x28{left:764.793000px;}
.x29{left:768.604500px;}
.x57{left:770.448000px;}
.x51{left:776.257500px;}
.x2a{left:783.549000px;}
.x5b{left:789.208500px;}
.x16{left:793.368000px;}
.x5a{left:796.722000px;}
.x17{left:800.839500px;}
.x18{left:804.546000px;}
.x54{left:810.325500px;}
.x19{left:812.017500px;}
.x1c{left:814.384500px;}
.x5c{left:816.108000px;}
.x26{left:818.011500px;}
.x1d{left:821.857500px;}
.x2f{left:824.422500px;}
.xa{left:825.519000px;}
.x30{left:831.894000px;}
.xb{left:832.990500px;}
.x55{left:837.225000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000008pt;}
.ls1{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.000540pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.lsf{letter-spacing:11.818186pt;}
.lsc{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.959467pt;}
.lsd{letter-spacing:11.967389pt;}
.ls12{letter-spacing:12.055596pt;}
.ls11{letter-spacing:13.623885pt;}
.lsb{letter-spacing:14.823467pt;}
.lse{letter-spacing:17.754604pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls9{letter-spacing:2497.103733pt;}
.ls8{letter-spacing:2498.170400pt;}
.ls13{letter-spacing:2499.231733pt;}
.ws1c{word-spacing:-13.283467pt;}
.ws65{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws38{word-spacing:-2.816095pt;}
.ws2d{word-spacing:-2.337890pt;}
.ws6c{word-spacing:-2.247578pt;}
.ws31{word-spacing:-2.178489pt;}
.ws3c{word-spacing:-1.965953pt;}
.ws33{word-spacing:-1.753418pt;}
.ws34{word-spacing:-1.540882pt;}
.ws5a{word-spacing:-1.487748pt;}
.ws72{word-spacing:-1.434624pt;}
.ws71{word-spacing:-1.386803pt;}
.ws36{word-spacing:-1.222079pt;}
.ws16{word-spacing:-1.099878pt;}
.ws4{word-spacing:-1.041421pt;}
.ws83{word-spacing:-0.956416pt;}
.ws6{word-spacing:-0.929840pt;}
.ws25{word-spacing:-0.690740pt;}
.ws51{word-spacing:-0.637606pt;}
.ws3b{word-spacing:-0.584473pt;}
.ws21{word-spacing:-0.531339pt;}
.ws5f{word-spacing:-0.478208pt;}
.ws30{word-spacing:-0.318803pt;}
.ws39{word-spacing:-0.265669pt;}
.ws60{word-spacing:-0.239104pt;}
.ws24{word-spacing:-0.212535pt;}
.ws68{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws77{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws48{word-spacing:-0.007470pt;}
.ws86{word-spacing:-0.006511pt;}
.ws88{word-spacing:-0.004642pt;}
.ws2{word-spacing:-0.001106pt;}
.ws29{word-spacing:-0.000306pt;}
.ws1{word-spacing:0.000000pt;}
.ws84{word-spacing:0.000691pt;}
.ws67{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.ws7f{word-spacing:0.076671pt;}
.ws6f{word-spacing:0.095642pt;}
.ws2e{word-spacing:0.106268pt;}
.ws73{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws13{word-spacing:0.191283pt;}
.ws20{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws23{word-spacing:0.318803pt;}
.ws4a{word-spacing:0.371937pt;}
.ws66{word-spacing:0.430387pt;}
.ws40{word-spacing:0.478205pt;}
.ws57{word-spacing:0.531339pt;}
.ws14{word-spacing:0.573850pt;}
.ws49{word-spacing:0.584473pt;}
.ws4f{word-spacing:0.797008pt;}
.ws5{word-spacing:0.892646pt;}
.ws41{word-spacing:0.903276pt;}
.ws82{word-spacing:0.908595pt;}
.ws5c{word-spacing:0.956410pt;}
.ws15{word-spacing:1.004237pt;}
.ws32{word-spacing:1.168945pt;}
.ws2f{word-spacing:1.275213pt;}
.ws79{word-spacing:1.291162pt;}
.ws58{word-spacing:1.328347pt;}
.ws42{word-spacing:1.540882pt;}
.ws11{word-spacing:1.578086pt;}
.ws1d{word-spacing:1.753418pt;}
.ws28{word-spacing:1.965953pt;}
.ws3f{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.056294pt;}
.ws0{word-spacing:2.232481pt;}
.ws56{word-spacing:2.391024pt;}
.ws10{word-spacing:2.550432pt;}
.ws7d{word-spacing:2.630144pt;}
.ws52{word-spacing:2.762961pt;}
.ws7e{word-spacing:2.861867pt;}
.ws19{word-spacing:2.861926pt;}
.ws69{word-spacing:2.864060pt;}
.ws7a{word-spacing:2.864145pt;}
.ws7b{word-spacing:2.864307pt;}
.ws61{word-spacing:2.866509pt;}
.ws87{word-spacing:2.866594pt;}
.ws64{word-spacing:2.867456pt;}
.ws78{word-spacing:2.868617pt;}
.ws74{word-spacing:2.869248pt;}
.ws6a{word-spacing:2.869274pt;}
.ws59{word-spacing:2.987429pt;}
.ws81{word-spacing:3.012710pt;}
.ws4d{word-spacing:3.016981pt;}
.ws4c{word-spacing:3.024482pt;}
.ws80{word-spacing:3.027644pt;}
.ws4e{word-spacing:3.028630pt;}
.ws1e{word-spacing:3.081764pt;}
.ws1a{word-spacing:3.188032pt;}
.ws35{word-spacing:3.294300pt;}
.ws1b{word-spacing:3.453701pt;}
.ws6e{word-spacing:3.657086pt;}
.ws6d{word-spacing:3.682202pt;}
.ws70{word-spacing:3.777843pt;}
.ws4b{word-spacing:4.197575pt;}
.wsc{word-spacing:4.240070pt;}
.wsd{word-spacing:4.314458pt;}
.ws44{word-spacing:4.356977pt;}
.ws54{word-spacing:4.410111pt;}
.ws50{word-spacing:4.463245pt;}
.ws12{word-spacing:4.542976pt;}
.ws75{word-spacing:4.590797pt;}
.ws3e{word-spacing:4.622646pt;}
.ws3a{word-spacing:4.675780pt;}
.ws3d{word-spacing:4.728914pt;}
.ws47{word-spacing:4.782048pt;}
.ws5b{word-spacing:4.835182pt;}
.ws5d{word-spacing:5.525922pt;}
.ws76{word-spacing:5.786317pt;}
.ws55{word-spacing:5.844725pt;}
.ws5e{word-spacing:5.950993pt;}
.ws46{word-spacing:6.057261pt;}
.ws37{word-spacing:6.429198pt;}
.ws53{word-spacing:6.748001pt;}
.ws45{word-spacing:6.907403pt;}
.wsa{word-spacing:6.918010pt;}
.ws43{word-spacing:8.288883pt;}
.ws8{word-spacing:10.823338pt;}
.ws63{word-spacing:11.572634pt;}
.ws85{word-spacing:13.533286pt;}
.ws9{word-spacing:14.319536pt;}
.ws62{word-spacing:14.537523pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.wsf{word-spacing:48.878387pt;}
._10{margin-left:-6.843646pt;}
._9{margin-left:-5.334646pt;}
._8{margin-left:-4.101952pt;}
._0{margin-left:-2.752326pt;}
._1{margin-left:-1.338970pt;}
._4{width:2.045648pt;}
._6{width:3.269686pt;}
._a{width:9.861670pt;}
._3{width:11.530016pt;}
._16{width:12.497082pt;}
._d{width:13.868032pt;}
._1c{width:14.815462pt;}
._e{width:16.285610pt;}
._c{width:17.210259pt;}
._19{width:18.145029pt;}
._17{width:19.043175pt;}
._13{width:20.700948pt;}
._12{width:22.124948pt;}
._2{width:23.062165pt;}
._f{width:26.035595pt;}
._5{width:27.188522pt;}
._b{width:28.501184pt;}
._1a{width:29.776225pt;}
._15{width:30.849525pt;}
._1b{width:34.855817pt;}
._14{width:35.833486pt;}
._18{width:37.671911pt;}
._1e{width:42.406426pt;}
._7{width:48.376563pt;}
._1d{width:54.993920pt;}
._1f{width:55.950336pt;}
._11{width:881.438527pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:28.346667pt;}
.y16{bottom:93.018667pt;}
.y9b{bottom:94.086667pt;}
.y78{bottom:94.884000pt;}
.y15{bottom:108.920000pt;}
.y77{bottom:111.621333pt;}
.yd2{bottom:112.140000pt;}
.y42{bottom:113.536000pt;}
.y9a{bottom:117.678667pt;}
.y14{bottom:124.820000pt;}
.yd1{bottom:127.481333pt;}
.y76{bottom:128.358667pt;}
.y41{bottom:130.273333pt;}
.y13{bottom:140.720000pt;}
.y99{bottom:141.270667pt;}
.yd0{bottom:142.824000pt;}
.y75{bottom:145.096000pt;}
.y40{bottom:147.010667pt;}
.y12{bottom:156.621333pt;}
.ycf{bottom:158.166667pt;}
.y74{bottom:161.833333pt;}
.y3f{bottom:163.748000pt;}
.y98{bottom:164.861333pt;}
.y11{bottom:172.521333pt;}
.yce{bottom:173.509333pt;}
.y73{bottom:178.570667pt;}
.y97{bottom:180.484000pt;}
.y3e{bottom:180.485333pt;}
.y10{bottom:188.421333pt;}
.ycd{bottom:188.852000pt;}
.y72{bottom:195.308000pt;}
.y3d{bottom:197.222667pt;}
.ycc{bottom:204.194667pt;}
.yf{bottom:204.322667pt;}
.y71{bottom:212.045333pt;}
.y3c{bottom:213.960000pt;}
.y8a{bottom:216.030667pt;}
.ycb{bottom:219.537333pt;}
.y70{bottom:228.782667pt;}
.y3b{bottom:230.697333pt;}
.yca{bottom:234.880000pt;}
.y6f{bottom:245.520000pt;}
.y89{bottom:245.918667pt;}
.y3a{bottom:247.434667pt;}
.yc9{bottom:250.222667pt;}
.y96{bottom:262.257333pt;}
.y88{bottom:262.656000pt;}
.y39{bottom:264.172000pt;}
.yc8{bottom:265.564000pt;}
.y6e{bottom:266.242667pt;}
.ye{bottom:266.804000pt;}
.y95{bottom:278.994667pt;}
.y87{bottom:279.393333pt;}
.yc7{bottom:280.906667pt;}
.y38{bottom:280.909333pt;}
.yd{bottom:282.705333pt;}
.y94{bottom:295.732000pt;}
.y6d{bottom:296.129333pt;}
.yc6{bottom:296.249333pt;}
.y37{bottom:297.646667pt;}
.yc{bottom:298.605333pt;}
.yc5{bottom:311.592000pt;}
.y93{bottom:312.469333pt;}
.y6c{bottom:312.866667pt;}
.y36{bottom:314.384000pt;}
.yb{bottom:314.505333pt;}
.yc4{bottom:326.934667pt;}
.y92{bottom:329.206667pt;}
.y6b{bottom:329.604000pt;}
.y35{bottom:331.121333pt;}
.ya{bottom:338.376000pt;}
.yc3{bottom:342.277333pt;}
.y6a{bottom:346.341333pt;}
.y34{bottom:347.858667pt;}
.y91{bottom:349.928000pt;}
.y9{bottom:354.277333pt;}
.yc2{bottom:357.620000pt;}
.y69{bottom:363.078667pt;}
.y33{bottom:364.596000pt;}
.y8{bottom:370.177333pt;}
.yc1{bottom:372.962667pt;}
.y68{bottom:379.816000pt;}
.y32{bottom:381.332000pt;}
.yc0{bottom:388.304000pt;}
.y7{bottom:395.376000pt;}
.y67{bottom:396.553333pt;}
.y31{bottom:398.069333pt;}
.ybf{bottom:403.646667pt;}
.y66{bottom:413.290667pt;}
.y30{bottom:414.806667pt;}
.ybe{bottom:418.989333pt;}
.y6{bottom:419.246667pt;}
.y65{bottom:430.028000pt;}
.y2f{bottom:431.544000pt;}
.ybd{bottom:434.332000pt;}
.y5{bottom:435.146667pt;}
.y64{bottom:446.765333pt;}
.y2e{bottom:448.281333pt;}
.ybc{bottom:449.674667pt;}
.y4{bottom:451.048000pt;}
.y63{bottom:463.502667pt;}
.ybb{bottom:465.017333pt;}
.y3{bottom:466.948000pt;}
.y2d{bottom:469.004000pt;}
.y62{bottom:480.240000pt;}
.yba{bottom:480.360000pt;}
.y2{bottom:482.848000pt;}
.yb9{bottom:495.702667pt;}
.y61{bottom:496.977333pt;}
.y1{bottom:498.749333pt;}
.yb8{bottom:511.045333pt;}
.y60{bottom:513.714667pt;}
.yb7{bottom:526.386667pt;}
.y5f{bottom:530.452000pt;}
.y2c{bottom:535.804000pt;}
.yb6{bottom:541.729333pt;}
.y5e{bottom:547.189333pt;}
.yb5{bottom:557.072000pt;}
.y5d{bottom:563.926667pt;}
.y2b{bottom:569.040000pt;}
.yb4{bottom:572.414667pt;}
.y5c{bottom:580.664000pt;}
.y2a{bottom:586.334667pt;}
.yb3{bottom:587.757333pt;}
.y5b{bottom:597.401333pt;}
.yb2{bottom:603.100000pt;}
.y29{bottom:603.629333pt;}
.y5a{bottom:614.138667pt;}
.yb1{bottom:618.442667pt;}
.y28{bottom:620.925333pt;}
.y59{bottom:630.876000pt;}
.yb0{bottom:633.785333pt;}
.y86{bottom:634.861333pt;}
.y27{bottom:638.220000pt;}
.y58{bottom:647.613333pt;}
.yaf{bottom:649.126667pt;}
.y26{bottom:655.516000pt;}
.y57{bottom:664.350667pt;}
.yae{bottom:664.469333pt;}
.y85{bottom:664.749333pt;}
.y25{bottom:672.810667pt;}
.yad{bottom:679.812000pt;}
.y56{bottom:681.088000pt;}
.y84{bottom:681.485333pt;}
.y24{bottom:690.105333pt;}
.yac{bottom:695.154667pt;}
.y55{bottom:697.825333pt;}
.y83{bottom:698.222667pt;}
.y23{bottom:707.401333pt;}
.yab{bottom:710.497333pt;}
.y54{bottom:714.562667pt;}
.y82{bottom:714.960000pt;}
.y22{bottom:724.696000pt;}
.yaa{bottom:725.840000pt;}
.y53{bottom:731.300000pt;}
.y81{bottom:731.697333pt;}
.ya9{bottom:741.182667pt;}
.y52{bottom:748.036000pt;}
.y80{bottom:748.434667pt;}
.ya8{bottom:756.525333pt;}
.y21{bottom:758.994667pt;}
.y51{bottom:764.773333pt;}
.y7f{bottom:765.172000pt;}
.ya7{bottom:771.868000pt;}
.y20{bottom:773.340000pt;}
.y50{bottom:781.510667pt;}
.y7e{bottom:781.909333pt;}
.ya6{bottom:787.209333pt;}
.y1f{bottom:791.544000pt;}
.y4f{bottom:798.248000pt;}
.y7d{bottom:798.646667pt;}
.ya5{bottom:802.552000pt;}
.y1e{bottom:805.890667pt;}
.y4e{bottom:814.985333pt;}
.y7c{bottom:815.384000pt;}
.ya4{bottom:817.894667pt;}
.y1d{bottom:820.237333pt;}
.y1c{bottom:830.725333pt;}
.y4d{bottom:831.722667pt;}
.y7b{bottom:832.121333pt;}
.ya3{bottom:833.237333pt;}
.ydc{bottom:844.674667pt;}
.y90{bottom:848.460000pt;}
.ya2{bottom:848.580000pt;}
.y7a{bottom:848.858667pt;}
.y1b{bottom:848.929333pt;}
.y4c{bottom:852.445333pt;}
.ydb{bottom:860.017333pt;}
.ya1{bottom:863.922667pt;}
.y8f{bottom:865.197333pt;}
.y79{bottom:865.596000pt;}
.yda{bottom:875.360000pt;}
.ya0{bottom:879.265333pt;}
.y8e{bottom:881.934667pt;}
.y4b{bottom:882.333333pt;}
.y1a{bottom:888.641333pt;}
.yd8{bottom:890.701333pt;}
.yd9{bottom:890.702667pt;}
.y9f{bottom:894.608000pt;}
.y8d{bottom:898.672000pt;}
.y4a{bottom:899.070667pt;}
.yd7{bottom:906.044000pt;}
.y9e{bottom:909.949333pt;}
.y8c{bottom:915.409333pt;}
.y49{bottom:915.808000pt;}
.y19{bottom:921.320000pt;}
.yd6{bottom:921.386667pt;}
.y9d{bottom:929.277333pt;}
.y48{bottom:932.545333pt;}
.y8b{bottom:936.132000pt;}
.yd5{bottom:936.729333pt;}
.y18{bottom:946.425333pt;}
.y47{bottom:949.282667pt;}
.yd4{bottom:952.072000pt;}
.y9c{bottom:959.165333pt;}
.y46{bottom:966.020000pt;}
.yd3{bottom:967.414667pt;}
.y17{bottom:971.530667pt;}
.y45{bottom:982.757333pt;}
.y44{bottom:1038.548000pt;}
.h7{height:23.209028pt;}
.h2{height:27.076941pt;}
.hd{height:27.184641pt;}
.h3{height:27.300102pt;}
.h8{height:30.945242pt;}
.he{height:31.200285pt;}
.h9{height:34.430976pt;}
.ha{height:34.813542pt;}
.hf{height:35.100467pt;}
.hb{height:38.256384pt;}
.hc{height:38.681455pt;}
.h4{height:39.000258pt;}
.h6{height:48.365611pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x53{left:76.309333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x7{left:250.204000pt;}
.x1a{left:251.676000pt;}
.x1b{left:258.318667pt;}
.x4d{left:271.644000pt;}
.x6{left:274.824000pt;}
.x4e{left:278.285333pt;}
.x35{left:280.658667pt;}
.x36{left:293.942667pt;}
.x4f{left:308.336000pt;}
.x37{left:309.337333pt;}
.x1e{left:314.288000pt;}
.x50{left:321.620000pt;}
.x38{left:322.621333pt;}
.xe{left:324.042667pt;}
.x1f{left:327.572000pt;}
.xf{left:330.685333pt;}
.x10{left:334.056000pt;}
.x11{left:340.697333pt;}
.x52{left:347.120000pt;}
.x8{left:374.108000pt;}
.x20{left:378.917333pt;}
.x2b{left:382.170667pt;}
.x21{left:385.560000pt;}
.x9{left:388.358667pt;}
.x41{left:391.476000pt;}
.x2c{left:395.454667pt;}
.x42{left:404.758667pt;}
.x43{left:408.146667pt;}
.x44{left:421.430667pt;}
.x2d{left:463.165333pt;}
.x2e{left:476.449333pt;}
.x3d{left:483.144000pt;}
.x12{left:487.294667pt;}
.x13{left:493.936000pt;}
.x3e{left:496.428000pt;}
.x14{left:500.445333pt;}
.x15{left:507.086667pt;}
.x22{left:512.613333pt;}
.x49{left:519.873333pt;}
.x23{left:525.897333pt;}
.x24{left:529.257333pt;}
.x39{left:533.893333pt;}
.x25{left:542.541333pt;}
.x3a{left:547.177333pt;}
.x3b{left:553.838667pt;}
.x3c{left:567.122667pt;}
.xc{left:578.954667pt;}
.xd{left:585.597333pt;}
.x3f{left:589.854667pt;}
.x4a{left:597.113333pt;}
.x31{left:598.268000pt;}
.x40{left:603.137333pt;}
.x32{left:611.552000pt;}
.x5d{left:613.489333pt;}
.x33{left:614.940000pt;}
.x45{left:621.117333pt;}
.x34{left:628.222667pt;}
.x47{left:632.101333pt;}
.x46{left:634.401333pt;}
.x48{left:638.742667pt;}
.x58{left:644.709333pt;}
.x4b{left:650.958667pt;}
.x4c{left:657.600000pt;}
.x56{left:660.932000pt;}
.x27{left:666.533333pt;}
.x59{left:668.620000pt;}
.x28{left:679.816000pt;}
.x29{left:683.204000pt;}
.x57{left:684.842667pt;}
.x51{left:690.006667pt;}
.x2a{left:696.488000pt;}
.x5b{left:701.518667pt;}
.x16{left:705.216000pt;}
.x5a{left:708.197333pt;}
.x17{left:711.857333pt;}
.x18{left:715.152000pt;}
.x54{left:720.289333pt;}
.x19{left:721.793333pt;}
.x1c{left:723.897333pt;}
.x5c{left:725.429333pt;}
.x26{left:727.121333pt;}
.x1d{left:730.540000pt;}
.x2f{left:732.820000pt;}
.xa{left:733.794667pt;}
.x30{left:739.461333pt;}
.xb{left:740.436000pt;}
.x55{left:744.200000pt;}
}




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