
    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_4037ab4e763bb869233bd2b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_1d071d34017d19016aeae5eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;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_53ba2b9d2348d762d4e207c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_a30ccd8f94854306ae27cfa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_62a29a19ef36e4a428a9d445.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a594939ffc9441702b747af9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e8e8b8c6dd32724d0dba20a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_680f079cf3ae19e134524868.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.408000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_491e2a9ef5b537dac76a284f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bc4b3b6eb13f48ef76118217.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6d6d07975b054249c018af6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_29e485e992d25fd95c58e5d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.822000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v9{vertical-align:-72.696000px;}
.v8{vertical-align:-66.324000px;}
.v2{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.264000px;}
.v4{vertical-align:18.252000px;}
.v3{vertical-align:22.038000px;}
.va{vertical-align:25.572000px;}
.v5{vertical-align:34.794000px;}
.v6{vertical-align:42.024000px;}
.v7{vertical-align:108.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.002004px;}
.ls20{letter-spacing:0.003358px;}
.ls1d{letter-spacing:0.006564px;}
.ls2d{letter-spacing:0.017380px;}
.ls12{letter-spacing:0.018705px;}
.ls2c{letter-spacing:0.018758px;}
.ls1{letter-spacing:0.376589px;}
.ls27{letter-spacing:1.506355px;}
.ls23{letter-spacing:1.560154px;}
.ls19{letter-spacing:2.987543px;}
.ls14{letter-spacing:3.120330px;}
.ls2{letter-spacing:3.819686px;}
.ls11{letter-spacing:3.873485px;}
.ls13{letter-spacing:5.469569px;}
.ls22{letter-spacing:5.810227px;}
.ls28{letter-spacing:5.864026px;}
.ls6{letter-spacing:6.133018px;}
.ls2b{letter-spacing:12.266035px;}
.ls26{letter-spacing:13.126810px;}
.ls25{letter-spacing:13.288205px;}
.ls9{letter-spacing:13.449600px;}
.ls3{letter-spacing:13.610995px;}
.ls8{letter-spacing:13.826189px;}
.ls10{letter-spacing:14.633165px;}
.lsf{letter-spacing:15.009754px;}
.ls2a{letter-spacing:15.276532px;}
.lsb{letter-spacing:15.332544px;}
.ls24{letter-spacing:15.386342px;}
.ls4{letter-spacing:17.054093px;}
.lsa{letter-spacing:17.269286px;}
.ls16{letter-spacing:17.323085px;}
.ls1a{letter-spacing:17.968666px;}
.ls18{letter-spacing:18.132330px;}
.ls1b{letter-spacing:18.345254px;}
.ls1e{letter-spacing:18.347543px;}
.lsc{letter-spacing:18.775642px;}
.ls15{letter-spacing:20.430330px;}
.ls17{letter-spacing:20.481569px;}
.ls2e{letter-spacing:21.196570px;}
.lse{letter-spacing:21.304166px;}
.ls1c{letter-spacing:21.788352px;}
.ls0{letter-spacing:22.093117px;}
.ls7{letter-spacing:26.899200px;}
.lsd{letter-spacing:27.437184px;}
.ls1f{letter-spacing:69.901559px;}
.ls21{letter-spacing:82.075559px;}
.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;}
}
.ws35{word-spacing:-55.293996px;}
.ws29{word-spacing:-36.071827px;}
.ws36{word-spacing:-23.805792px;}
.ws34{word-spacing:-22.783622px;}
.ws3b{word-spacing:-17.186191px;}
.ws3c{word-spacing:-17.180191px;}
.ws3a{word-spacing:-17.168590px;}
.ws38{word-spacing:-15.464986px;}
.ws32{word-spacing:-15.359443px;}
.ws2{word-spacing:-13.449600px;}
.ws2c{word-spacing:-6.637997px;}
.ws39{word-spacing:-6.159917px;}
.ws37{word-spacing:-3.093408px;}
.ws2d{word-spacing:-2.994394px;}
.wsc{word-spacing:-2.743718px;}
.ws10{word-spacing:-2.151936px;}
.ws33{word-spacing:-2.098138px;}
.ws45{word-spacing:-1.775347px;}
.ws17{word-spacing:-1.484400px;}
.wsf{word-spacing:-0.645581px;}
.ws23{word-spacing:-0.430387px;}
.ws22{word-spacing:-0.376589px;}
.ws2b{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.026899px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.484186px;}
.ws1e{word-spacing:0.537984px;}
.ws1a{word-spacing:0.914573px;}
.ws19{word-spacing:0.968371px;}
.ws3{word-spacing:1.129766px;}
.ws26{word-spacing:1.452557px;}
.ws7{word-spacing:1.560154px;}
.ws9{word-spacing:1.613952px;}
.ws24{word-spacing:1.775347px;}
.ws4{word-spacing:1.829146px;}
.ws43{word-spacing:1.882944px;}
.ws12{word-spacing:1.936742px;}
.ws1c{word-spacing:2.367130px;}
.ws1d{word-spacing:2.420928px;}
.ws21{word-spacing:2.905114px;}
.ws20{word-spacing:2.958912px;}
.ws27{word-spacing:3.120307px;}
.ws46{word-spacing:3.227904px;}
.wsa{word-spacing:3.550694px;}
.ws28{word-spacing:3.604493px;}
.wsb{word-spacing:3.819686px;}
.ws2a{word-spacing:3.873485px;}
.ws2e{word-spacing:4.142477px;}
.ws2f{word-spacing:4.196275px;}
.ws1b{word-spacing:4.357670px;}
.ws5{word-spacing:4.519066px;}
.ws6{word-spacing:4.680461px;}
.ws16{word-spacing:5.272243px;}
.ws25{word-spacing:6.832397px;}
.ws13{word-spacing:6.886195px;}
.ws14{word-spacing:6.939994px;}
.ws11{word-spacing:7.208986px;}
.ws30{word-spacing:8.284954px;}
.ws42{word-spacing:8.392550px;}
.ws41{word-spacing:8.500147px;}
.ws15{word-spacing:8.822938px;}
.ws48{word-spacing:9.952704px;}
.wsd{word-spacing:10.060301px;}
.ws3e{word-spacing:13.395802px;}
.wse{word-spacing:16.354714px;}
.ws40{word-spacing:16.946496px;}
.ws3d{word-spacing:20.281997px;}
.ws47{word-spacing:20.658586px;}
.ws1{word-spacing:25.719808px;}
.ws44{word-spacing:28.644539px;}
.ws3f{word-spacing:32.225242px;}
.ws49{word-spacing:40.348800px;}
._e{margin-left:-8.093441px;}
._2{margin-left:-5.284213px;}
._1{margin-left:-3.538724px;}
._0{margin-left:-1.859263px;}
._4{width:2.031746px;}
._6{width:3.033523px;}
._3{width:4.057327px;}
._7{width:5.073377px;}
._9{width:12.457548px;}
._f{width:14.310374px;}
._b{width:15.325592px;}
._10{width:16.503874px;}
._8{width:17.928566px;}
._a{width:22.552948px;}
._d{width:26.899200px;}
._11{width:32.332838px;}
._5{width:53.798400px;}
._c{width:108.547453px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2e{bottom:112.183500px;}
.y5b{bottom:129.607500px;}
.y5e{bottom:129.847500px;}
.y2d{bottom:130.116000px;}
.y5c{bottom:132.402000px;}
.y2c{bottom:148.048500px;}
.y5f{bottom:156.612000px;}
.y5d{bottom:158.599500px;}
.y2b{bottom:165.981000px;}
.y5a{bottom:170.118000px;}
.y2a{bottom:183.913500px;}
.y59{bottom:188.052000px;}
.y58{bottom:213.477000px;}
.y29{bottom:220.036500px;}
.y57{bottom:237.387000px;}
.y28{bottom:237.969000px;}
.y27{bottom:255.903000px;}
.y56{bottom:261.298500px;}
.y26{bottom:273.835500px;}
.y55{bottom:285.208500px;}
.y25{bottom:291.768000px;}
.y24{bottom:309.700500px;}
.y54{bottom:310.633500px;}
.y23{bottom:327.633000px;}
.y53{bottom:334.543500px;}
.y22{bottom:345.565500px;}
.y52{bottom:358.455000px;}
.y21{bottom:372.723000px;}
.y51{bottom:376.387500px;}
.y50{bottom:398.863500px;}
.y4f{bottom:407.986500px;}
.y4e{bottom:434.412000px;}
.y4d{bottom:452.344500px;}
.y20{bottom:457.681500px;}
.y4c{bottom:469.056000px;}
.y1f{bottom:475.614000px;}
.y4b{bottom:478.177500px;}
.y1e{bottom:493.546500px;}
.y4a{bottom:505.927500px;}
.y1d{bottom:511.480500px;}
.y1c{bottom:529.413000px;}
.y49{bottom:531.354000px;}
.y48{bottom:549.286500px;}
.y47{bottom:574.711500px;}
.y1b{bottom:575.578500px;}
.y46{bottom:592.644000px;}
.y45{bottom:619.543500px;}
.y12{bottom:624.991500px;}
.y11{bottom:642.925500px;}
.y10{bottom:660.858000px;}
.y44{bottom:671.868000px;}
.y43{bottom:685.237500px;}
.y1a{bottom:687.756000px;}
.yf{bottom:687.903000px;}
.y42{bottom:689.802000px;}
.y7d{bottom:703.314000px;}
.y41{bottom:707.734500px;}
.y40{bottom:725.667000px;}
.y7c{bottom:730.212000px;}
.y19{bottom:741.555000px;}
.y3f{bottom:743.599500px;}
.ye{bottom:759.342000px;}
.y18{bottom:759.487500px;}
.y3e{bottom:770.499000px;}
.yd{bottom:777.274500px;}
.y17{bottom:777.420000px;}
.y6f{bottom:784.011000px;}
.yc{bottom:795.207000px;}
.y16{bottom:795.352500px;}
.y6e{bottom:809.415000px;}
.yb{bottom:813.139500px;}
.y15{bottom:813.286500px;}
.y3d{bottom:813.856500px;}
.y7b{bottom:817.552500px;}
.ya{bottom:831.073500px;}
.y14{bottom:831.219000px;}
.y3c{bottom:831.790500px;}
.y6d{bottom:831.831000px;}
.y7a{bottom:848.104500px;}
.y9{bottom:849.006000px;}
.y13{bottom:849.151500px;}
.y3b{bottom:849.723000px;}
.y6c{bottom:849.765000px;}
.y79{bottom:866.037000px;}
.y3a{bottom:867.655500px;}
.y6b{bottom:867.697500px;}
.y8{bottom:876.051000px;}
.y78{bottom:884.634000px;}
.y39{bottom:885.588000px;}
.y6a{bottom:885.630000px;}
.y77{bottom:902.566500px;}
.y69{bottom:903.562500px;}
.y38{bottom:912.487500px;}
.y76{bottom:920.499000px;}
.y68{bottom:921.495000px;}
.y7{bottom:931.441500px;}
.y75{bottom:938.431500px;}
.y6{bottom:946.384500px;}
.y67{bottom:946.900500px;}
.y37{bottom:955.845000px;}
.y5{bottom:961.329000px;}
.y66{bottom:964.833000px;}
.y74{bottom:971.973000px;}
.y36{bottom:973.777500px;}
.y4{bottom:976.273500px;}
.y65{bottom:990.237000px;}
.y73{bottom:990.570000px;}
.y35{bottom:991.711500px;}
.y3{bottom:994.206000px;}
.y64{bottom:1008.171000px;}
.y34{bottom:1009.644000px;}
.y72{bottom:1024.110000px;}
.y63{bottom:1026.103500px;}
.y33{bottom:1036.543500px;}
.y71{bottom:1042.707000px;}
.y62{bottom:1044.036000px;}
.y2{bottom:1054.239000px;}
.y70{bottom:1061.304000px;}
.y61{bottom:1061.968500px;}
.y32{bottom:1079.901000px;}
.y1{bottom:1084.126500px;}
.y60{bottom:1088.868000px;}
.y31{bottom:1097.833500px;}
.y30{bottom:1124.733000px;}
.y2f{bottom:1160.598000px;}
.h19{height:2.851315px;}
.h1b{height:31.944161px;}
.h5{height:32.804932px;}
.h9{height:36.744307px;}
.h8{height:36.905702px;}
.hb{height:37.008307px;}
.ha{height:37.014307px;}
.h7{height:38.358259px;}
.h12{height:38.652259px;}
.h11{height:39.000259px;}
.h10{height:39.006259px;}
.he{height:40.348800px;}
.h6{height:41.077895px;}
.h13{height:45.888624px;}
.hc{height:47.916442px;}
.hf{height:48.992410px;}
.h1a{height:49.207603px;}
.hd{height:50.622259px;}
.h14{height:54.996307px;}
.h4{height:58.790728px;}
.h17{height:66.233280px;}
.h3{height:72.201388px;}
.h2{height:73.647481px;}
.h15{height:75.142800px;}
.h16{height:75.196800px;}
.h18{height:110.869315px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.580000px;}
.x31{left:108.843000px;}
.x9{left:122.478000px;}
.x40{left:125.841000px;}
.x43{left:130.339500px;}
.x50{left:131.445000px;}
.x13{left:138.139500px;}
.x48{left:163.552500px;}
.x3d{left:164.598000px;}
.x8{left:166.828500px;}
.x38{left:177.313500px;}
.x16{left:183.433500px;}
.x10{left:189.726000px;}
.x32{left:196.954500px;}
.x33{left:200.134500px;}
.x30{left:203.914500px;}
.x29{left:237.352500px;}
.x2d{left:246.535500px;}
.x4f{left:257.638500px;}
.x3a{left:258.897000px;}
.x3f{left:275.520000px;}
.x35{left:290.970000px;}
.x51{left:303.306000px;}
.x4c{left:309.613500px;}
.x2a{left:324.172500px;}
.x21{left:332.343000px;}
.x26{left:333.649500px;}
.x1b{left:348.211500px;}
.x3e{left:377.235000px;}
.x11{left:378.988500px;}
.x3b{left:381.348000px;}
.x20{left:390.115500px;}
.x49{left:397.066500px;}
.x4e{left:403.188000px;}
.x46{left:406.716000px;}
.x4b{left:408.609000px;}
.x39{left:411.807000px;}
.x17{left:415.543500px;}
.x27{left:418.072500px;}
.x4d{left:425.862000px;}
.x42{left:443.688000px;}
.x1d{left:451.770000px;}
.x36{left:455.152500px;}
.x34{left:462.735000px;}
.x2{left:464.512500px;}
.x24{left:472.131000px;}
.x52{left:477.775500px;}
.x54{left:480.381000px;}
.xa{left:491.412000px;}
.x14{left:493.329000px;}
.x6{left:495.136500px;}
.x53{left:500.377500px;}
.x22{left:502.248000px;}
.xf{left:504.469500px;}
.x44{left:507.556500px;}
.x7{left:523.726500px;}
.x12{left:525.178500px;}
.x18{left:527.488500px;}
.xd{left:530.928000px;}
.x3c{left:534.264000px;}
.x41{left:543.795000px;}
.x1c{left:564.919500px;}
.x2b{left:571.519500px;}
.x4{left:574.098000px;}
.x1e{left:595.720500px;}
.x2e{left:599.139000px;}
.x28{left:607.632000px;}
.x15{left:609.463500px;}
.x37{left:612.189000px;}
.x4a{left:632.251500px;}
.x25{left:635.127000px;}
.x45{left:658.926000px;}
.xe{left:664.320000px;}
.x19{left:669.057000px;}
.xb{left:685.924500px;}
.x47{left:694.413000px;}
.x2f{left:711.250500px;}
.x1f{left:739.317000px;}
.xc{left:762.603000px;}
.x3{left:767.116500px;}
.x2c{left:768.448500px;}
.x1a{left:784.129500px;}
.x5{left:787.116000px;}
.x23{left:790.855500px;}
@media print{
.v9{vertical-align:-64.618667pt;}
.v8{vertical-align:-58.954667pt;}
.v2{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.901333pt;}
.v4{vertical-align:16.224000pt;}
.v3{vertical-align:19.589333pt;}
.va{vertical-align:22.730667pt;}
.v5{vertical-align:30.928000pt;}
.v6{vertical-align:37.354667pt;}
.v7{vertical-align:96.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.001782pt;}
.ls20{letter-spacing:0.002985pt;}
.ls1d{letter-spacing:0.005835pt;}
.ls2d{letter-spacing:0.015449pt;}
.ls12{letter-spacing:0.016626pt;}
.ls2c{letter-spacing:0.016674pt;}
.ls1{letter-spacing:0.334746pt;}
.ls27{letter-spacing:1.338982pt;}
.ls23{letter-spacing:1.386803pt;}
.ls19{letter-spacing:2.655594pt;}
.ls14{letter-spacing:2.773627pt;}
.ls2{letter-spacing:3.395277pt;}
.ls11{letter-spacing:3.443098pt;}
.ls13{letter-spacing:4.861839pt;}
.ls22{letter-spacing:5.164646pt;}
.ls28{letter-spacing:5.212467pt;}
.ls6{letter-spacing:5.451571pt;}
.ls2b{letter-spacing:10.903142pt;}
.ls26{letter-spacing:11.668275pt;}
.ls25{letter-spacing:11.811738pt;}
.ls9{letter-spacing:11.955200pt;}
.ls3{letter-spacing:12.098662pt;}
.ls8{letter-spacing:12.289946pt;}
.ls10{letter-spacing:13.007258pt;}
.lsf{letter-spacing:13.342003pt;}
.ls2a{letter-spacing:13.579139pt;}
.lsb{letter-spacing:13.628928pt;}
.ls24{letter-spacing:13.676749pt;}
.ls4{letter-spacing:15.159194pt;}
.lsa{letter-spacing:15.350477pt;}
.ls16{letter-spacing:15.398298pt;}
.ls1a{letter-spacing:15.972147pt;}
.ls18{letter-spacing:16.117627pt;}
.ls1b{letter-spacing:16.306893pt;}
.ls1e{letter-spacing:16.308927pt;}
.lsc{letter-spacing:16.689459pt;}
.ls15{letter-spacing:18.160294pt;}
.ls17{letter-spacing:18.205839pt;}
.ls2e{letter-spacing:18.841395pt;}
.lse{letter-spacing:18.937037pt;}
.ls1c{letter-spacing:19.367424pt;}
.ls0{letter-spacing:19.638326pt;}
.ls7{letter-spacing:23.910400pt;}
.lsd{letter-spacing:24.388608pt;}
.ls1f{letter-spacing:62.134719pt;}
.ls21{letter-spacing:72.956052pt;}
.ws35{word-spacing:-49.150218pt;}
.ws29{word-spacing:-32.063846pt;}
.ws36{word-spacing:-21.160704pt;}
.ws34{word-spacing:-20.252109pt;}
.ws3b{word-spacing:-15.276614pt;}
.ws3c{word-spacing:-15.271281pt;}
.ws3a{word-spacing:-15.260969pt;}
.ws38{word-spacing:-13.746654pt;}
.ws32{word-spacing:-13.652838pt;}
.ws2{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-5.900442pt;}
.ws39{word-spacing:-5.475482pt;}
.ws37{word-spacing:-2.749696pt;}
.ws2d{word-spacing:-2.661683pt;}
.wsc{word-spacing:-2.438861pt;}
.ws10{word-spacing:-1.912832pt;}
.ws33{word-spacing:-1.865011pt;}
.ws45{word-spacing:-1.578086pt;}
.ws17{word-spacing:-1.319467pt;}
.wsf{word-spacing:-0.573850pt;}
.ws23{word-spacing:-0.382566pt;}
.ws22{word-spacing:-0.334746pt;}
.ws2b{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.023910pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.430387pt;}
.ws1e{word-spacing:0.478208pt;}
.ws1a{word-spacing:0.812954pt;}
.ws19{word-spacing:0.860774pt;}
.ws3{word-spacing:1.004237pt;}
.ws26{word-spacing:1.291162pt;}
.ws7{word-spacing:1.386803pt;}
.ws9{word-spacing:1.434624pt;}
.ws24{word-spacing:1.578086pt;}
.ws4{word-spacing:1.625907pt;}
.ws43{word-spacing:1.673728pt;}
.ws12{word-spacing:1.721549pt;}
.ws1c{word-spacing:2.104115pt;}
.ws1d{word-spacing:2.151936pt;}
.ws21{word-spacing:2.582323pt;}
.ws20{word-spacing:2.630144pt;}
.ws27{word-spacing:2.773606pt;}
.ws46{word-spacing:2.869248pt;}
.wsa{word-spacing:3.156173pt;}
.ws28{word-spacing:3.203994pt;}
.wsb{word-spacing:3.395277pt;}
.ws2a{word-spacing:3.443098pt;}
.ws2e{word-spacing:3.682202pt;}
.ws2f{word-spacing:3.730022pt;}
.ws1b{word-spacing:3.873485pt;}
.ws5{word-spacing:4.016947pt;}
.ws6{word-spacing:4.160410pt;}
.ws16{word-spacing:4.686438pt;}
.ws25{word-spacing:6.073242pt;}
.ws13{word-spacing:6.121062pt;}
.ws14{word-spacing:6.168883pt;}
.ws11{word-spacing:6.407987pt;}
.ws30{word-spacing:7.364403pt;}
.ws42{word-spacing:7.460045pt;}
.ws41{word-spacing:7.555686pt;}
.ws15{word-spacing:7.842611pt;}
.ws48{word-spacing:8.846848pt;}
.wsd{word-spacing:8.942490pt;}
.ws3e{word-spacing:11.907379pt;}
.wse{word-spacing:14.537523pt;}
.ws40{word-spacing:15.063552pt;}
.ws3d{word-spacing:18.028442pt;}
.ws47{word-spacing:18.363187pt;}
.ws1{word-spacing:22.862051pt;}
.ws44{word-spacing:25.461813pt;}
.ws3f{word-spacing:28.644659pt;}
.ws49{word-spacing:35.865600pt;}
._e{margin-left:-7.194170pt;}
._2{margin-left:-4.697078pt;}
._1{margin-left:-3.145533pt;}
._0{margin-left:-1.652678pt;}
._4{width:1.805997pt;}
._6{width:2.696465pt;}
._3{width:3.606513pt;}
._7{width:4.509668pt;}
._9{width:11.073376pt;}
._f{width:12.720333pt;}
._b{width:13.622748pt;}
._10{width:14.670110pt;}
._8{width:15.936503pt;}
._a{width:20.047065pt;}
._d{width:23.910400pt;}
._11{width:28.740301pt;}
._5{width:47.820800pt;}
._c{width:96.486625pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:99.718667pt;}
.y5b{bottom:115.206667pt;}
.y5e{bottom:115.420000pt;}
.y2d{bottom:115.658667pt;}
.y5c{bottom:117.690667pt;}
.y2c{bottom:131.598667pt;}
.y5f{bottom:139.210667pt;}
.y5d{bottom:140.977333pt;}
.y2b{bottom:147.538667pt;}
.y5a{bottom:151.216000pt;}
.y2a{bottom:163.478667pt;}
.y59{bottom:167.157333pt;}
.y58{bottom:189.757333pt;}
.y29{bottom:195.588000pt;}
.y57{bottom:211.010667pt;}
.y28{bottom:211.528000pt;}
.y27{bottom:227.469333pt;}
.y56{bottom:232.265333pt;}
.y26{bottom:243.409333pt;}
.y55{bottom:253.518667pt;}
.y25{bottom:259.349333pt;}
.y24{bottom:275.289333pt;}
.y54{bottom:276.118667pt;}
.y23{bottom:291.229333pt;}
.y53{bottom:297.372000pt;}
.y22{bottom:307.169333pt;}
.y52{bottom:318.626667pt;}
.y21{bottom:331.309333pt;}
.y51{bottom:334.566667pt;}
.y50{bottom:354.545333pt;}
.y4f{bottom:362.654667pt;}
.y4e{bottom:386.144000pt;}
.y4d{bottom:402.084000pt;}
.y20{bottom:406.828000pt;}
.y4c{bottom:416.938667pt;}
.y1f{bottom:422.768000pt;}
.y4b{bottom:425.046667pt;}
.y1e{bottom:438.708000pt;}
.y4a{bottom:449.713333pt;}
.y1d{bottom:454.649333pt;}
.y1c{bottom:470.589333pt;}
.y49{bottom:472.314667pt;}
.y48{bottom:488.254667pt;}
.y47{bottom:510.854667pt;}
.y1b{bottom:511.625333pt;}
.y46{bottom:526.794667pt;}
.y45{bottom:550.705333pt;}
.y12{bottom:555.548000pt;}
.y11{bottom:571.489333pt;}
.y10{bottom:587.429333pt;}
.y44{bottom:597.216000pt;}
.y43{bottom:609.100000pt;}
.y1a{bottom:611.338667pt;}
.yf{bottom:611.469333pt;}
.y42{bottom:613.157333pt;}
.y7d{bottom:625.168000pt;}
.y41{bottom:629.097333pt;}
.y40{bottom:645.037333pt;}
.y7c{bottom:649.077333pt;}
.y19{bottom:659.160000pt;}
.y3f{bottom:660.977333pt;}
.ye{bottom:674.970667pt;}
.y18{bottom:675.100000pt;}
.y3e{bottom:684.888000pt;}
.yd{bottom:690.910667pt;}
.y17{bottom:691.040000pt;}
.y6f{bottom:696.898667pt;}
.yc{bottom:706.850667pt;}
.y16{bottom:706.980000pt;}
.y6e{bottom:719.480000pt;}
.yb{bottom:722.790667pt;}
.y15{bottom:722.921333pt;}
.y3d{bottom:723.428000pt;}
.y7b{bottom:726.713333pt;}
.ya{bottom:738.732000pt;}
.y14{bottom:738.861333pt;}
.y3c{bottom:739.369333pt;}
.y6d{bottom:739.405333pt;}
.y7a{bottom:753.870667pt;}
.y9{bottom:754.672000pt;}
.y13{bottom:754.801333pt;}
.y3b{bottom:755.309333pt;}
.y6c{bottom:755.346667pt;}
.y79{bottom:769.810667pt;}
.y3a{bottom:771.249333pt;}
.y6b{bottom:771.286667pt;}
.y8{bottom:778.712000pt;}
.y78{bottom:786.341333pt;}
.y39{bottom:787.189333pt;}
.y6a{bottom:787.226667pt;}
.y77{bottom:802.281333pt;}
.y69{bottom:803.166667pt;}
.y38{bottom:811.100000pt;}
.y76{bottom:818.221333pt;}
.y68{bottom:819.106667pt;}
.y7{bottom:827.948000pt;}
.y75{bottom:834.161333pt;}
.y6{bottom:841.230667pt;}
.y67{bottom:841.689333pt;}
.y37{bottom:849.640000pt;}
.y5{bottom:854.514667pt;}
.y66{bottom:857.629333pt;}
.y74{bottom:863.976000pt;}
.y36{bottom:865.580000pt;}
.y4{bottom:867.798667pt;}
.y65{bottom:880.210667pt;}
.y73{bottom:880.506667pt;}
.y35{bottom:881.521333pt;}
.y3{bottom:883.738667pt;}
.y64{bottom:896.152000pt;}
.y34{bottom:897.461333pt;}
.y72{bottom:910.320000pt;}
.y63{bottom:912.092000pt;}
.y33{bottom:921.372000pt;}
.y71{bottom:926.850667pt;}
.y62{bottom:928.032000pt;}
.y2{bottom:937.101333pt;}
.y70{bottom:943.381333pt;}
.y61{bottom:943.972000pt;}
.y32{bottom:959.912000pt;}
.y1{bottom:963.668000pt;}
.y60{bottom:967.882667pt;}
.y31{bottom:975.852000pt;}
.y30{bottom:999.762667pt;}
.y2f{bottom:1031.642667pt;}
.h19{height:2.534502pt;}
.h1b{height:28.394810pt;}
.h5{height:29.159939pt;}
.h9{height:32.661606pt;}
.h8{height:32.805069pt;}
.hb{height:32.896273pt;}
.ha{height:32.901606pt;}
.h7{height:34.096230pt;}
.h12{height:34.357564pt;}
.h11{height:34.666897pt;}
.h10{height:34.672230pt;}
.he{height:35.865600pt;}
.h6{height:36.513685pt;}
.h13{height:40.789888pt;}
.hc{height:42.592393pt;}
.hf{height:43.548809pt;}
.h1a{height:43.740092pt;}
.hd{height:44.997564pt;}
.h14{height:48.885606pt;}
.h4{height:52.258425pt;}
.h17{height:58.874027pt;}
.h3{height:64.179011pt;}
.h2{height:65.464428pt;}
.h15{height:66.793600pt;}
.h16{height:66.841600pt;}
.h18{height:98.550502pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:84.960000pt;}
.x31{left:96.749333pt;}
.x9{left:108.869333pt;}
.x40{left:111.858667pt;}
.x43{left:115.857333pt;}
.x50{left:116.840000pt;}
.x13{left:122.790667pt;}
.x48{left:145.380000pt;}
.x3d{left:146.309333pt;}
.x8{left:148.292000pt;}
.x38{left:157.612000pt;}
.x16{left:163.052000pt;}
.x10{left:168.645333pt;}
.x32{left:175.070667pt;}
.x33{left:177.897333pt;}
.x30{left:181.257333pt;}
.x29{left:210.980000pt;}
.x2d{left:219.142667pt;}
.x4f{left:229.012000pt;}
.x3a{left:230.130667pt;}
.x3f{left:244.906667pt;}
.x35{left:258.640000pt;}
.x51{left:269.605333pt;}
.x4c{left:275.212000pt;}
.x2a{left:288.153333pt;}
.x21{left:295.416000pt;}
.x26{left:296.577333pt;}
.x1b{left:309.521333pt;}
.x3e{left:335.320000pt;}
.x11{left:336.878667pt;}
.x3b{left:338.976000pt;}
.x20{left:346.769333pt;}
.x49{left:352.948000pt;}
.x4e{left:358.389333pt;}
.x46{left:361.525333pt;}
.x4b{left:363.208000pt;}
.x39{left:366.050667pt;}
.x17{left:369.372000pt;}
.x27{left:371.620000pt;}
.x4d{left:378.544000pt;}
.x42{left:394.389333pt;}
.x1d{left:401.573333pt;}
.x36{left:404.580000pt;}
.x34{left:411.320000pt;}
.x2{left:412.900000pt;}
.x24{left:419.672000pt;}
.x52{left:424.689333pt;}
.x54{left:427.005333pt;}
.xa{left:436.810667pt;}
.x14{left:438.514667pt;}
.x6{left:440.121333pt;}
.x53{left:444.780000pt;}
.x22{left:446.442667pt;}
.xf{left:448.417333pt;}
.x44{left:451.161333pt;}
.x7{left:465.534667pt;}
.x12{left:466.825333pt;}
.x18{left:468.878667pt;}
.xd{left:471.936000pt;}
.x3c{left:474.901333pt;}
.x41{left:483.373333pt;}
.x1c{left:502.150667pt;}
.x2b{left:508.017333pt;}
.x4{left:510.309333pt;}
.x1e{left:529.529333pt;}
.x2e{left:532.568000pt;}
.x28{left:540.117333pt;}
.x15{left:541.745333pt;}
.x37{left:544.168000pt;}
.x4a{left:562.001333pt;}
.x25{left:564.557333pt;}
.x45{left:585.712000pt;}
.xe{left:590.506667pt;}
.x19{left:594.717333pt;}
.xb{left:609.710667pt;}
.x47{left:617.256000pt;}
.x2f{left:632.222667pt;}
.x1f{left:657.170667pt;}
.xc{left:677.869333pt;}
.x3{left:681.881333pt;}
.x2c{left:683.065333pt;}
.x1a{left:697.004000pt;}
.x5{left:699.658667pt;}
.x23{left:702.982667pt;}
}




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