
    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_d13a91f7efb5cac0bf55e404.woff')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_27e928b3d36e3939bec417d8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_296d8917fbeff4601fe0661f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.191000;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_5040081d96f4dffe274bdb6f.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_146115cd773ee2938c0527e1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_028d8b28aca977962a2c0c4e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{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);}
.m1{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);}
.m5{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);}
.m14{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);}
.m12{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);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.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);}
.m15{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);}
.m6{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);}
.m9{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);}
.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);}
.m11{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);}
.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);}
.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);}
.m4{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);}
.md{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);}
.mf{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);}
.m7{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);}
.me{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);}
.m2{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);}
.m10{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);}
.m16{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.905275px;}
.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;}
}
.ws4d{word-spacing:-19.965050px;}
.ws47{word-spacing:-17.932800px;}
.wsb{word-spacing:-13.449600px;}
.ws3{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws2b{word-spacing:0.000000px;}
.ws3d{word-spacing:0.717307px;}
.ws39{word-spacing:1.135736px;}
.ws1c{word-spacing:1.344960px;}
.ws44{word-spacing:1.374839px;}
.ws11{word-spacing:1.398758px;}
.ws20{word-spacing:1.506355px;}
.ws40{word-spacing:1.554166px;}
.ws38{word-spacing:1.613941px;}
.ws1d{word-spacing:1.721549px;}
.ws3c{word-spacing:1.733492px;}
.ws5{word-spacing:1.829146px;}
.ws3b{word-spacing:1.912819px;}
.ws12{word-spacing:1.936742px;}
.ws13{word-spacing:1.990541px;}
.ws1{word-spacing:2.008474px;}
.ws35{word-spacing:2.032370px;}
.ws1b{word-spacing:2.044339px;}
.ws10{word-spacing:2.098138px;}
.ws7{word-spacing:2.151936px;}
.ws8{word-spacing:2.205734px;}
.ws32{word-spacing:2.211697px;}
.ws30{word-spacing:2.271473px;}
.ws33{word-spacing:2.331248px;}
.ws29{word-spacing:2.367130px;}
.ws37{word-spacing:2.391024px;}
.ws4{word-spacing:2.420928px;}
.ws18{word-spacing:2.450800px;}
.ws16{word-spacing:2.510575px;}
.wsc{word-spacing:2.528525px;}
.ws2f{word-spacing:2.570351px;}
.ws45{word-spacing:2.689902px;}
.ws3a{word-spacing:2.749678px;}
.ws17{word-spacing:2.809453px;}
.ws6{word-spacing:2.851315px;}
.ws3e{word-spacing:2.869229px;}
.ws2{word-spacing:2.940979px;}
.ws2a{word-spacing:3.120307px;}
.ws14{word-spacing:3.227904px;}
.wse{word-spacing:3.443098px;}
.ws43{word-spacing:3.706087px;}
.ws41{word-spacing:3.825638px;}
.ws34{word-spacing:3.945190px;}
.ws36{word-spacing:4.004965px;}
.ws2d{word-spacing:4.064741px;}
.ws42{word-spacing:4.080391px;}
.wsd{word-spacing:4.250074px;}
.ws3f{word-spacing:4.423394px;}
.ws2c{word-spacing:4.961375px;}
.ws2e{word-spacing:5.021150px;}
.ws31{word-spacing:5.200477px;}
.ws24{word-spacing:5.487437px;}
.ws49{word-spacing:5.798233px;}
.ws26{word-spacing:6.402010px;}
.ws15{word-spacing:6.575316px;}
.ws4a{word-spacing:6.754643px;}
.ws4b{word-spacing:6.776892px;}
.ws4c{word-spacing:12.014896px;}
.wsf{word-spacing:12.696422px;}
.ws19{word-spacing:15.440141px;}
.ws1a{word-spacing:15.493939px;}
.ws1f{word-spacing:15.601536px;}
.ws21{word-spacing:15.603667px;}
.wsa{word-spacing:15.816730px;}
.ws27{word-spacing:16.516109px;}
.ws28{word-spacing:16.892698px;}
.ws9{word-spacing:17.215488px;}
.ws22{word-spacing:19.206029px;}
.ws23{word-spacing:19.367424px;}
.ws25{word-spacing:19.797811px;}
.ws48{word-spacing:20.801626px;}
.ws0{word-spacing:20.802048px;}
.ws46{word-spacing:22.774742px;}
._17{margin-left:-19.905275px;}
._b{margin-left:-6.886195px;}
._4{margin-left:-4.841856px;}
._1{margin-left:-3.371366px;}
._0{margin-left:-1.936742px;}
._a{width:1.019476px;}
._8{width:2.312272px;}
._15{width:8.664236px;}
._9{width:14.148979px;}
._d{width:15.617757px;}
._13{width:17.239296px;}
._16{width:18.297209px;}
._2{width:19.510886px;}
._3{width:20.604787px;}
._11{width:21.659400px;}
._e{width:22.951305px;}
._7{width:24.012019px;}
._14{width:25.912181px;}
._12{width:27.401148px;}
._10{width:29.874798px;}
._5{width:31.196905px;}
._c{width:32.858215px;}
._6{width:35.399347px;}
._f{width:71.731200px;}
.fc1{color:rgb(0,51,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:45.429600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y5b{bottom:-2.311500px;}
.y0{bottom:0.000000px;}
.y27{bottom:54.898500px;}
.y26{bottom:77.314500px;}
.y5a{bottom:83.862000px;}
.y59{bottom:106.278000px;}
.y25{bottom:108.697500px;}
.y24{bottom:125.958000px;}
.y58{bottom:128.694000px;}
.y23{bottom:143.217000px;}
.y57{bottom:151.110000px;}
.y22{bottom:169.444500px;}
.y56{bottom:173.526000px;}
.y21{bottom:186.705000px;}
.y55{bottom:195.942000px;}
.y20{bottom:212.931000px;}
.y54{bottom:218.358000px;}
.y1f{bottom:239.158500px;}
.y53{bottom:240.774000px;}
.y1e{bottom:256.419000px;}
.y52{bottom:263.190000px;}
.y1d{bottom:273.679500px;}
.y51{bottom:285.606000px;}
.y4f{bottom:308.022000px;}
.y50{bottom:313.446000px;}
.y1c{bottom:316.660500px;}
.y4e{bottom:342.393000px;}
.y1b{bottom:350.284500px;}
.y1a{bottom:372.700500px;}
.y4d{bottom:390.960000px;}
.y19{bottom:395.116500px;}
.y4c{bottom:413.376000px;}
.y18{bottom:417.532500px;}
.y4b{bottom:435.792000px;}
.y17{bottom:454.891500px;}
.y4a{bottom:458.208000px;}
.y49{bottom:480.624000px;}
.y48{bottom:503.040000px;}
.y16{bottom:510.756000px;}
.y46{bottom:525.456000px;}
.y47{bottom:530.881500px;}
.y15{bottom:531.304500px;}
.y45{bottom:547.872000px;}
.y14{bottom:551.853000px;}
.y44{bottom:570.288000px;}
.y13{bottom:572.400000px;}
.y42{bottom:592.704000px;}
.y43{bottom:598.128000px;}
.y12{bottom:613.497000px;}
.y41{bottom:627.075000px;}
.y11{bottom:634.044000px;}
.y10{bottom:654.592500px;}
.y40{bottom:675.643500px;}
.yf{bottom:695.688000px;}
.y3f{bottom:698.059500px;}
.ye{bottom:716.236500px;}
.y3e{bottom:720.475500px;}
.yd{bottom:736.783500px;}
.y3d{bottom:742.891500px;}
.yc{bottom:757.332000px;}
.y3c{bottom:765.307500px;}
.yb{bottom:777.880500px;}
.y3b{bottom:787.722000px;}
.y3a{bottom:810.138000px;}
.ya{bottom:818.976000px;}
.y39{bottom:832.554000px;}
.y9{bottom:839.523000px;}
.y38{bottom:854.970000px;}
.y8{bottom:860.071500px;}
.y36{bottom:877.386000px;}
.y7{bottom:880.620000px;}
.y37{bottom:882.811500px;}
.y35{bottom:899.802000px;}
.y6{bottom:901.167000px;}
.y34{bottom:922.218000px;}
.y5{bottom:927.693000px;}
.y33{bottom:944.634000px;}
.y32{bottom:967.050000px;}
.y31{bottom:989.466000px;}
.y30{bottom:1011.882000px;}
.y4{bottom:1013.659500px;}
.y2f{bottom:1034.298000px;}
.y3{bottom:1048.315500px;}
.y2e{bottom:1056.714000px;}
.y2d{bottom:1079.130000px;}
.y2{bottom:1082.971500px;}
.y2c{bottom:1101.546000px;}
.y1{bottom:1109.124000px;}
.y2b{bottom:1123.962000px;}
.y29{bottom:1146.378000px;}
.y2a{bottom:1151.802000px;}
.y28{bottom:1180.749000px;}
.h8{height:25.930829px;}
.hb{height:28.811839px;}
.ha{height:32.709312px;}
.h9{height:39.434227px;}
.h5{height:43.038432px;}
.hd{height:44.891476px;}
.h6{height:48.848947px;}
.h2{height:51.646464px;}
.h3{height:52.578970px;}
.h7{height:54.276245px;}
.hc{height:54.411312px;}
.h4{height:65.131930px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:40.278000px;}
.x9{left:42.519000px;}
.x7{left:64.975500px;}
.x6{left:87.391500px;}
.x17{left:92.719500px;}
.xf{left:95.793000px;}
.x18{left:100.797000px;}
.x10{left:103.870500px;}
.x2{left:132.141000px;}
.x13{left:143.655000px;}
.x14{left:151.731000px;}
.x1b{left:185.638500px;}
.x15{left:195.985500px;}
.x3{left:206.122500px;}
.x16{left:214.311000px;}
.x4{left:256.782000px;}
.x19{left:269.410500px;}
.x1a{left:288.151500px;}
.xd{left:319.749000px;}
.xe{left:338.823000px;}
.x1{left:376.366500px;}
.x8{left:383.208000px;}
.x5{left:399.921000px;}
.xa{left:401.634000px;}
.x1d{left:430.272000px;}
.x11{left:439.237500px;}
.x12{left:453.226500px;}
.xb{left:746.965500px;}
.xc{left:754.234500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.693578pt;}
.ws4d{word-spacing:-17.746711pt;}
.ws47{word-spacing:-15.940267pt;}
.wsb{word-spacing:-11.955200pt;}
.ws3{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws2b{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.637606pt;}
.ws39{word-spacing:1.009543pt;}
.ws1c{word-spacing:1.195520pt;}
.ws44{word-spacing:1.222079pt;}
.ws11{word-spacing:1.243341pt;}
.ws20{word-spacing:1.338982pt;}
.ws40{word-spacing:1.381481pt;}
.ws38{word-spacing:1.434614pt;}
.ws1d{word-spacing:1.530266pt;}
.ws3c{word-spacing:1.540882pt;}
.ws5{word-spacing:1.625907pt;}
.ws3b{word-spacing:1.700284pt;}
.ws12{word-spacing:1.721549pt;}
.ws13{word-spacing:1.769370pt;}
.ws1{word-spacing:1.785310pt;}
.ws35{word-spacing:1.806551pt;}
.ws1b{word-spacing:1.817190pt;}
.ws10{word-spacing:1.865011pt;}
.ws7{word-spacing:1.912832pt;}
.ws8{word-spacing:1.960653pt;}
.ws32{word-spacing:1.965953pt;}
.ws30{word-spacing:2.019087pt;}
.ws33{word-spacing:2.072221pt;}
.ws29{word-spacing:2.104115pt;}
.ws37{word-spacing:2.125355pt;}
.ws4{word-spacing:2.151936pt;}
.ws18{word-spacing:2.178489pt;}
.ws16{word-spacing:2.231622pt;}
.wsc{word-spacing:2.247578pt;}
.ws2f{word-spacing:2.284756pt;}
.ws45{word-spacing:2.391024pt;}
.ws3a{word-spacing:2.444158pt;}
.ws17{word-spacing:2.497292pt;}
.ws6{word-spacing:2.534502pt;}
.ws3e{word-spacing:2.550426pt;}
.ws2{word-spacing:2.614204pt;}
.ws2a{word-spacing:2.773606pt;}
.ws14{word-spacing:2.869248pt;}
.wse{word-spacing:3.060531pt;}
.ws43{word-spacing:3.294300pt;}
.ws41{word-spacing:3.400567pt;}
.ws34{word-spacing:3.506835pt;}
.ws36{word-spacing:3.559969pt;}
.ws2d{word-spacing:3.613103pt;}
.ws42{word-spacing:3.627014pt;}
.wsd{word-spacing:3.777843pt;}
.ws3f{word-spacing:3.931906pt;}
.ws2c{word-spacing:4.410111pt;}
.ws2e{word-spacing:4.463245pt;}
.ws31{word-spacing:4.622646pt;}
.ws24{word-spacing:4.877722pt;}
.ws49{word-spacing:5.153985pt;}
.ws26{word-spacing:5.690675pt;}
.ws15{word-spacing:5.844725pt;}
.ws4a{word-spacing:6.004127pt;}
.ws4b{word-spacing:6.023904pt;}
.ws4c{word-spacing:10.679907pt;}
.wsf{word-spacing:11.285709pt;}
.ws19{word-spacing:13.724570pt;}
.ws1a{word-spacing:13.772390pt;}
.ws1f{word-spacing:13.868032pt;}
.ws21{word-spacing:13.869926pt;}
.wsa{word-spacing:14.059315pt;}
.ws27{word-spacing:14.680986pt;}
.ws28{word-spacing:15.015731pt;}
.ws9{word-spacing:15.302656pt;}
.ws22{word-spacing:17.072026pt;}
.ws23{word-spacing:17.215488pt;}
.ws25{word-spacing:17.598054pt;}
.ws48{word-spacing:18.490334pt;}
.ws0{word-spacing:18.490709pt;}
.ws46{word-spacing:20.244215pt;}
._17{margin-left:-17.693578pt;}
._b{margin-left:-6.121062pt;}
._4{margin-left:-4.303872pt;}
._1{margin-left:-2.996770pt;}
._0{margin-left:-1.721549pt;}
._a{width:0.906200pt;}
._8{width:2.055353pt;}
._15{width:7.701544pt;}
._9{width:12.576870pt;}
._d{width:13.882450pt;}
._13{width:15.323819pt;}
._16{width:16.264186pt;}
._2{width:17.343010pt;}
._3{width:18.315366pt;}
._11{width:19.252800pt;}
._e{width:20.401160pt;}
._7{width:21.344017pt;}
._14{width:23.033050pt;}
._12{width:24.356576pt;}
._10{width:26.555376pt;}
._5{width:27.730582pt;}
._c{width:29.207302pt;}
._6{width:31.466086pt;}
._f{width:63.761067pt;}
.fs3{font-size:40.381867pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y5b{bottom:-2.054667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:48.798667pt;}
.y26{bottom:68.724000pt;}
.y5a{bottom:74.544000pt;}
.y59{bottom:94.469333pt;}
.y25{bottom:96.620000pt;}
.y24{bottom:111.962667pt;}
.y58{bottom:114.394667pt;}
.y23{bottom:127.304000pt;}
.y57{bottom:134.320000pt;}
.y22{bottom:150.617333pt;}
.y56{bottom:154.245333pt;}
.y21{bottom:165.960000pt;}
.y55{bottom:174.170667pt;}
.y20{bottom:189.272000pt;}
.y54{bottom:194.096000pt;}
.y1f{bottom:212.585333pt;}
.y53{bottom:214.021333pt;}
.y1e{bottom:227.928000pt;}
.y52{bottom:233.946667pt;}
.y1d{bottom:243.270667pt;}
.y51{bottom:253.872000pt;}
.y4f{bottom:273.797333pt;}
.y50{bottom:278.618667pt;}
.y1c{bottom:281.476000pt;}
.y4e{bottom:304.349333pt;}
.y1b{bottom:311.364000pt;}
.y1a{bottom:331.289333pt;}
.y4d{bottom:347.520000pt;}
.y19{bottom:351.214667pt;}
.y4c{bottom:367.445333pt;}
.y18{bottom:371.140000pt;}
.y4b{bottom:387.370667pt;}
.y17{bottom:404.348000pt;}
.y4a{bottom:407.296000pt;}
.y49{bottom:427.221333pt;}
.y48{bottom:447.146667pt;}
.y16{bottom:454.005333pt;}
.y46{bottom:467.072000pt;}
.y47{bottom:471.894667pt;}
.y15{bottom:472.270667pt;}
.y45{bottom:486.997333pt;}
.y14{bottom:490.536000pt;}
.y44{bottom:506.922667pt;}
.y13{bottom:508.800000pt;}
.y42{bottom:526.848000pt;}
.y43{bottom:531.669333pt;}
.y12{bottom:545.330667pt;}
.y41{bottom:557.400000pt;}
.y11{bottom:563.594667pt;}
.y10{bottom:581.860000pt;}
.y40{bottom:600.572000pt;}
.yf{bottom:618.389333pt;}
.y3f{bottom:620.497333pt;}
.ye{bottom:636.654667pt;}
.y3e{bottom:640.422667pt;}
.yd{bottom:654.918667pt;}
.y3d{bottom:660.348000pt;}
.yc{bottom:673.184000pt;}
.y3c{bottom:680.273333pt;}
.yb{bottom:691.449333pt;}
.y3b{bottom:700.197333pt;}
.y3a{bottom:720.122667pt;}
.ya{bottom:727.978667pt;}
.y39{bottom:740.048000pt;}
.y9{bottom:746.242667pt;}
.y38{bottom:759.973333pt;}
.y8{bottom:764.508000pt;}
.y36{bottom:779.898667pt;}
.y7{bottom:782.773333pt;}
.y37{bottom:784.721333pt;}
.y35{bottom:799.824000pt;}
.y6{bottom:801.037333pt;}
.y34{bottom:819.749333pt;}
.y5{bottom:824.616000pt;}
.y33{bottom:839.674667pt;}
.y32{bottom:859.600000pt;}
.y31{bottom:879.525333pt;}
.y30{bottom:899.450667pt;}
.y4{bottom:901.030667pt;}
.y2f{bottom:919.376000pt;}
.y3{bottom:931.836000pt;}
.y2e{bottom:939.301333pt;}
.y2d{bottom:959.226667pt;}
.y2{bottom:962.641333pt;}
.y2c{bottom:979.152000pt;}
.y1{bottom:985.888000pt;}
.y2b{bottom:999.077333pt;}
.y29{bottom:1019.002667pt;}
.y2a{bottom:1023.824000pt;}
.y28{bottom:1049.554667pt;}
.h8{height:23.049626pt;}
.hb{height:25.610524pt;}
.ha{height:29.074944pt;}
.h9{height:35.052646pt;}
.h5{height:38.256384pt;}
.hd{height:39.903534pt;}
.h6{height:43.421286pt;}
.h2{height:45.907968pt;}
.h3{height:46.736862pt;}
.h7{height:48.245551pt;}
.hc{height:48.365611pt;}
.h4{height:57.895049pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:35.802667pt;}
.x9{left:37.794667pt;}
.x7{left:57.756000pt;}
.x6{left:77.681333pt;}
.x17{left:82.417333pt;}
.xf{left:85.149333pt;}
.x18{left:89.597333pt;}
.x10{left:92.329333pt;}
.x2{left:117.458667pt;}
.x13{left:127.693333pt;}
.x14{left:134.872000pt;}
.x1b{left:165.012000pt;}
.x15{left:174.209333pt;}
.x3{left:183.220000pt;}
.x16{left:190.498667pt;}
.x4{left:228.250667pt;}
.x19{left:239.476000pt;}
.x1a{left:256.134667pt;}
.xd{left:284.221333pt;}
.xe{left:301.176000pt;}
.x1{left:334.548000pt;}
.x8{left:340.629333pt;}
.x5{left:355.485333pt;}
.xa{left:357.008000pt;}
.x1d{left:382.464000pt;}
.x11{left:390.433333pt;}
.x12{left:402.868000pt;}
.xb{left:663.969333pt;}
.xc{left:670.430667pt;}
}




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