
    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_f74fd1370de4c37815c21e62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.888000;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_66e868fc2b43b5a1622eabcc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_1f7e3a35c935fa88558d8b7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_ed4d2bd620249d52c7b22339.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_5d5148d34759bc66725200a6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6aac51ecea81c8df2bff74d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_be407b78172ac214481ca9c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.749000;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_40ff950897383525b6b25292.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_e3b9d76fc25065035fd5a64f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ff7941c49f2a175877b0477e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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_b86e029902fb73d255a75c99.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_49806f8eb00b18dbd38c6292.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4fa2398e2de486092dca00b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769000;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:ffe;src:url('chunks/assets/font_d9f5416166f1b0b951c592aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899000;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:fff;src:url('chunks/assets/font_0e9ebc73d38d844b6b080861.woff2')format("woff");}.fff{font-family:fff;line-height:0.046000;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);}
.v1{vertical-align:-53.022000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.572000px;}
.v2{vertical-align:25.770000px;}
.v4{vertical-align:27.024000px;}
.ls8{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.002157px;}
.ls1a{letter-spacing:0.002700px;}
.lsa{letter-spacing:2.049051px;}
.ls15{letter-spacing:2.094547px;}
.ls1d{letter-spacing:2.438851px;}
.ls1c{letter-spacing:2.983194px;}
.ls19{letter-spacing:2.989223px;}
.ls17{letter-spacing:3.796367px;}
.ls21{letter-spacing:4.647277px;}
.ls1{letter-spacing:4.712731px;}
.ls1b{letter-spacing:5.443358px;}
.ls25{letter-spacing:7.166915px;}
.ls18{letter-spacing:7.172915px;}
.ls4{letter-spacing:10.930918px;}
.ls7{letter-spacing:16.625468px;}
.ls14{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.ls1e{letter-spacing:18.589106px;}
.ls23{letter-spacing:19.440016px;}
.ls24{letter-spacing:19.505471px;}
.ls20{letter-spacing:19.963653px;}
.ls1f{letter-spacing:20.029108px;}
.ls5{letter-spacing:20.225471px;}
.ls3{letter-spacing:20.290926px;}
.lse{letter-spacing:21.076381px;}
.ls11{letter-spacing:21.665473px;}
.ls10{letter-spacing:21.730927px;}
.lsc{letter-spacing:21.927291px;}
.ls0{letter-spacing:22.581837px;}
.ls16{letter-spacing:23.760020px;}
.ls22{letter-spacing:24.152747px;}
.lsb{letter-spacing:24.545475px;}
.lsd{letter-spacing:24.807293px;}
.lsf{letter-spacing:25.396385px;}
.ls2{letter-spacing:28.865479px;}
.ls13{letter-spacing:140.107023px;}
.ls12{letter-spacing:155.054823px;}
.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;}
}
.ws27{word-spacing:-53.568045px;}
.ws19{word-spacing:-42.637126px;}
.ws20{word-spacing:-32.544027px;}
.ws18{word-spacing:-31.706208px;}
.ws46{word-spacing:-19.845835px;}
.ws14{word-spacing:-17.882197px;}
.ws21{word-spacing:-15.829597px;}
.ws15{word-spacing:-15.743520px;}
.ws44{word-spacing:-15.656740px;}
.ws2c{word-spacing:-15.591286px;}
.ws30{word-spacing:-15.394922px;}
.ws26{word-spacing:-15.329467px;}
.ws2{word-spacing:-15.236800px;}
.ws45{word-spacing:-15.002194px;}
.ws5{word-spacing:-14.818371px;}
.ws2f{word-spacing:-14.674921px;}
.wsa{word-spacing:-14.478558px;}
.ws25{word-spacing:-14.216739px;}
.ws36{word-spacing:-14.020375px;}
.ws35{word-spacing:-13.954921px;}
.wsb{word-spacing:-13.693102px;}
.ws1d{word-spacing:-13.575284px;}
.ws1e{word-spacing:-13.509829px;}
.ws3a{word-spacing:-13.104011px;}
.ws3c{word-spacing:-13.038556px;}
.ws38{word-spacing:-12.973102px;}
.ws47{word-spacing:-12.580374px;}
.ws37{word-spacing:-12.514920px;}
.ws10{word-spacing:-12.449465px;}
.ws3e{word-spacing:-12.384010px;}
.wsf{word-spacing:-12.187647px;}
.ws6{word-spacing:-12.068694px;}
.ws22{word-spacing:-11.729464px;}
.ws24{word-spacing:-11.533101px;}
.ws28{word-spacing:-11.470938px;}
.ws48{word-spacing:-11.336737px;}
.ws12{word-spacing:-11.271282px;}
.wsc{word-spacing:-10.878555px;}
.ws1c{word-spacing:-10.813100px;}
.ws8{word-spacing:-9.976548px;}
.wsd{word-spacing:-9.962190px;}
.ws31{word-spacing:-9.896736px;}
.ws1f{word-spacing:-9.634917px;}
.ws4{word-spacing:-9.319016px;}
.ws11{word-spacing:-9.307644px;}
.ws49{word-spacing:-8.914917px;}
.wse{word-spacing:-8.587644px;}
.ws16{word-spacing:-8.391280px;}
.ws3d{word-spacing:-8.260371px;}
.ws32{word-spacing:-6.820369px;}
.ws13{word-spacing:-6.427642px;}
.ws3b{word-spacing:-5.918399px;}
.ws42{word-spacing:-5.380368px;}
.ws4a{word-spacing:-4.987641px;}
.ws41{word-spacing:-4.071276px;}
.ws43{word-spacing:-3.940367px;}
.ws3{word-spacing:-3.819661px;}
.ws40{word-spacing:-3.744003px;}
.ws2d{word-spacing:-3.678549px;}
.ws2e{word-spacing:-3.220366px;}
.ws39{word-spacing:-2.434911px;}
.ws7{word-spacing:-2.205720px;}
.ws33{word-spacing:-0.065455px;}
.ws34{word-spacing:-0.047821px;}
.ws1b{word-spacing:0.000000px;}
.ws3f{word-spacing:0.837819px;}
.ws1a{word-spacing:14.465467px;}
.ws17{word-spacing:18.065470px;}
.ws23{word-spacing:18.130924px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:32.227229px;}
.ws29{word-spacing:41.844533px;}
.ws2a{word-spacing:41.846355px;}
.ws9{word-spacing:47.351068px;}
.ws2b{word-spacing:245.071536px;}
._a{margin-left:-5.738458px;}
._6{margin-left:-4.370530px;}
._2{margin-left:-3.287658px;}
._0{margin-left:-1.936742px;}
._1{width:1.876967px;}
._3{width:3.490908px;}
._5{width:4.537584px;}
._e{width:20.603271px;}
._11{width:21.665473px;}
._7{width:22.670923px;}
._10{width:24.938203px;}
._12{width:27.210313px;}
._f{width:29.095008px;}
._d{width:33.473157px;}
._8{width:86.676000px;}
._4{width:94.684920px;}
._9{width:101.608178px;}
._b{width:173.343359px;}
._c{width:334.712355px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:69.970500px;}
.y47{bottom:118.486500px;}
.y23{bottom:139.233000px;}
.y46{bottom:152.260500px;}
.y22{bottom:175.995000px;}
.y45{bottom:190.516500px;}
.y6c{bottom:194.287500px;}
.y44{bottom:210.840000px;}
.y21{bottom:212.757000px;}
.y6b{bottom:214.611000px;}
.y20{bottom:233.080500px;}
.y6a{bottom:234.936000px;}
.y43{bottom:247.365000px;}
.y69{bottom:255.259500px;}
.y1f{bottom:269.844000px;}
.y68{bottom:269.940000px;}
.y67{bottom:275.583000px;}
.y1e{bottom:290.167500px;}
.y66{bottom:295.906500px;}
.y42{bottom:305.970000px;}
.y65{bottom:316.231500px;}
.y41{bottom:327.489000px;}
.y1d{bottom:328.423500px;}
.y1c{bottom:348.747000px;}
.y40{bottom:349.009500px;}
.y64{bottom:352.755000px;}
.y3f{bottom:370.528500px;}
.y1b{bottom:385.272000px;}
.y3e{bottom:392.644500px;}
.y63{bottom:404.307000px;}
.y3d{bottom:414.762000px;}
.y62{bottom:424.630500px;}
.y1a{bottom:436.824000px;}
.y3c{bottom:439.867500px;}
.y61{bottom:444.955500px;}
.y19{bottom:457.147500px;}
.y3b{bottom:461.386500px;}
.y60{bottom:465.279000px;}
.y18{bottom:477.471000px;}
.y3a{bottom:483.504000px;}
.y5f{bottom:495.316500px;}
.y17{bottom:497.794500px;}
.y39{bottom:505.621500px;}
.y5e{bottom:515.640000px;}
.y16{bottom:518.119500px;}
.y38{bottom:525.958500px;}
.y5d{bottom:535.963500px;}
.y15{bottom:538.443000px;}
.y14{bottom:558.766500px;}
.y5c{bottom:572.488500px;}
.y37{bottom:574.875000px;}
.y13{bottom:579.090000px;}
.y36{bottom:595.198500px;}
.y83{bottom:598.929000px;}
.y12{bottom:599.413500px;}
.y35{bottom:615.522000px;}
.y82{bottom:619.252500px;}
.y11{bottom:619.738500px;}
.y5b{bottom:624.040500px;}
.y81{bottom:639.577500px;}
.y10{bottom:640.062000px;}
.y5a{bottom:644.364000px;}
.y34{bottom:644.812500px;}
.y80{bottom:659.901000px;}
.yf{bottom:660.385500px;}
.y59{bottom:664.687500px;}
.y7f{bottom:680.224500px;}
.ye{bottom:680.709000px;}
.y33{bottom:681.574500px;}
.y58{bottom:685.011000px;}
.yd{bottom:701.032500px;}
.y57{bottom:705.334500px;}
.y32{bottom:718.336500px;}
.y7e{bottom:718.480500px;}
.y56{bottom:725.659500px;}
.y7d{bottom:733.162500px;}
.yc{bottom:737.557500px;}
.y7c{bottom:738.805500px;}
.y31{bottom:752.109000px;}
.y55{bottom:755.695500px;}
.y7b{bottom:759.129000px;}
.y30{bottom:772.434000px;}
.y54{bottom:776.020500px;}
.yb{bottom:789.109500px;}
.y7a{bottom:792.901500px;}
.ya{bottom:807.042000px;}
.y2f{bottom:809.196000px;}
.y53{bottom:812.782500px;}
.y79{bottom:813.226500px;}
.y9{bottom:824.974500px;}
.y8{bottom:842.908500px;}
.y2e{bottom:845.958000px;}
.y78{bottom:846.999000px;}
.y52{bottom:849.544500px;}
.y7{bottom:860.841000px;}
.y51{bottom:864.225000px;}
.y2d{bottom:866.281500px;}
.y50{bottom:869.868000px;}
.y6{bottom:878.773500px;}
.y77{bottom:880.773000px;}
.y4f{bottom:890.191500px;}
.y5{bottom:896.706000px;}
.y2c{bottom:900.055500px;}
.y4e{bottom:910.515000px;}
.y76{bottom:914.545500px;}
.y4{bottom:923.980500px;}
.y2b{bottom:929.344500px;}
.y4d{bottom:930.840000px;}
.y2a{bottom:949.669500px;}
.y75{bottom:952.803000px;}
.y4c{bottom:967.363500px;}
.y74{bottom:967.483500px;}
.y73{bottom:973.126500px;}
.y3{bottom:984.252000px;}
.y29{bottom:986.193000px;}
.y72{bottom:993.450000px;}
.y71{bottom:1013.773500px;}
.y4b{bottom:1018.915500px;}
.y2{bottom:1020.847500px;}
.y70{bottom:1034.097000px;}
.y28{bottom:1037.745000px;}
.y4a{bottom:1039.239000px;}
.y6f{bottom:1054.422000px;}
.y27{bottom:1058.068500px;}
.y1{bottom:1066.174500px;}
.y6e{bottom:1074.745500px;}
.y49{bottom:1077.496500px;}
.y6d{bottom:1095.069000px;}
.y26{bottom:1108.086000px;}
.y48{bottom:1111.269000px;}
.y25{bottom:1131.594000px;}
.h9{height:2.618184px;}
.h5{height:42.859105px;}
.h4{height:44.891476px;}
.ha{height:45.883675px;}
.h8{height:46.210948px;}
.h7{height:49.156405px;}
.h3{height:50.570496px;}
.hb{height:57.570699px;}
.h6{height:60.340117px;}
.hd{height:60.737523px;}
.he{height:60.743523px;}
.hc{height:71.728405px;}
.h2{height:71.788218px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:114.802500px;}
.x12{left:123.769500px;}
.x8{left:140.208000px;}
.x10{left:144.129000px;}
.x9{left:147.345000px;}
.x6{left:155.712000px;}
.x5{left:178.122000px;}
.x1{left:224.353500px;}
.x16{left:320.089500px;}
.x11{left:329.286000px;}
.x2{left:352.615500px;}
.xf{left:358.182000px;}
.x3{left:375.628500px;}
.xe{left:403.132500px;}
.x4{left:412.045500px;}
.xc{left:417.813000px;}
.x14{left:427.305000px;}
.xd{left:442.389000px;}
.xb{left:451.846500px;}
.xa{left:455.937000px;}
.x13{left:648.189000px;}
.x15{left:649.963500px;}
@media print{
.v1{vertical-align:-47.130667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.064000pt;}
.v2{vertical-align:22.906667pt;}
.v4{vertical-align:24.021333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001917pt;}
.ls1a{letter-spacing:0.002400pt;}
.lsa{letter-spacing:1.821378pt;}
.ls15{letter-spacing:1.861820pt;}
.ls1d{letter-spacing:2.167867pt;}
.ls1c{letter-spacing:2.651728pt;}
.ls19{letter-spacing:2.657087pt;}
.ls17{letter-spacing:3.374548pt;}
.ls21{letter-spacing:4.130913pt;}
.ls1{letter-spacing:4.189094pt;}
.ls1b{letter-spacing:4.838541pt;}
.ls25{letter-spacing:6.370591pt;}
.ls18{letter-spacing:6.375925pt;}
.ls4{letter-spacing:9.716372pt;}
.ls7{letter-spacing:14.778194pt;}
.ls14{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.ls1e{letter-spacing:16.523650pt;}
.ls23{letter-spacing:17.280014pt;}
.ls24{letter-spacing:17.338196pt;}
.ls20{letter-spacing:17.745469pt;}
.ls1f{letter-spacing:17.803651pt;}
.ls5{letter-spacing:17.978197pt;}
.ls3{letter-spacing:18.036379pt;}
.lse{letter-spacing:18.734561pt;}
.ls11{letter-spacing:19.258198pt;}
.ls10{letter-spacing:19.316380pt;}
.lsc{letter-spacing:19.490925pt;}
.ls0{letter-spacing:20.072744pt;}
.ls16{letter-spacing:21.120018pt;}
.ls22{letter-spacing:21.469109pt;}
.lsb{letter-spacing:21.818200pt;}
.lsd{letter-spacing:22.050927pt;}
.lsf{letter-spacing:22.574564pt;}
.ls2{letter-spacing:25.658203pt;}
.ls13{letter-spacing:124.539576pt;}
.ls12{letter-spacing:137.826509pt;}
.ws27{word-spacing:-47.616040pt;}
.ws19{word-spacing:-37.899668pt;}
.ws20{word-spacing:-28.928024pt;}
.ws18{word-spacing:-28.183296pt;}
.ws46{word-spacing:-17.640742pt;}
.ws14{word-spacing:-15.895286pt;}
.ws21{word-spacing:-14.070753pt;}
.ws15{word-spacing:-13.994240pt;}
.ws44{word-spacing:-13.917103pt;}
.ws2c{word-spacing:-13.858921pt;}
.ws30{word-spacing:-13.684375pt;}
.ws26{word-spacing:-13.626193pt;}
.ws2{word-spacing:-13.543823pt;}
.ws45{word-spacing:-13.335284pt;}
.ws5{word-spacing:-13.171886pt;}
.ws2f{word-spacing:-13.044375pt;}
.wsa{word-spacing:-12.869829pt;}
.ws25{word-spacing:-12.637101pt;}
.ws36{word-spacing:-12.462556pt;}
.ws35{word-spacing:-12.404374pt;}
.wsb{word-spacing:-12.171647pt;}
.ws1d{word-spacing:-12.066919pt;}
.ws1e{word-spacing:-12.008737pt;}
.ws3a{word-spacing:-11.648010pt;}
.ws3c{word-spacing:-11.589828pt;}
.ws38{word-spacing:-11.531646pt;}
.ws47{word-spacing:-11.182555pt;}
.ws37{word-spacing:-11.124373pt;}
.ws10{word-spacing:-11.066191pt;}
.ws3e{word-spacing:-11.008009pt;}
.wsf{word-spacing:-10.833464pt;}
.ws6{word-spacing:-10.727728pt;}
.ws22{word-spacing:-10.426191pt;}
.ws24{word-spacing:-10.251645pt;}
.ws28{word-spacing:-10.196389pt;}
.ws48{word-spacing:-10.077099pt;}
.ws12{word-spacing:-10.018917pt;}
.wsc{word-spacing:-9.669826pt;}
.ws1c{word-spacing:-9.611644pt;}
.ws8{word-spacing:-8.868042pt;}
.wsd{word-spacing:-8.855280pt;}
.ws31{word-spacing:-8.797098pt;}
.ws1f{word-spacing:-8.564371pt;}
.ws4{word-spacing:-8.283570pt;}
.ws11{word-spacing:-8.273461pt;}
.ws49{word-spacing:-7.924370pt;}
.wse{word-spacing:-7.633461pt;}
.ws16{word-spacing:-7.458915pt;}
.ws3d{word-spacing:-7.342552pt;}
.ws32{word-spacing:-6.062551pt;}
.ws13{word-spacing:-5.713459pt;}
.ws3b{word-spacing:-5.260799pt;}
.ws42{word-spacing:-4.782549pt;}
.ws4a{word-spacing:-4.433458pt;}
.ws41{word-spacing:-3.618912pt;}
.ws43{word-spacing:-3.502548pt;}
.ws3{word-spacing:-3.395254pt;}
.ws40{word-spacing:-3.328003pt;}
.ws2d{word-spacing:-3.269821pt;}
.ws2e{word-spacing:-2.862548pt;}
.ws39{word-spacing:-2.164365pt;}
.ws7{word-spacing:-1.960640pt;}
.ws33{word-spacing:-0.058182pt;}
.ws34{word-spacing:-0.042507pt;}
.ws1b{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.744728pt;}
.ws1a{word-spacing:12.858193pt;}
.ws17{word-spacing:16.058195pt;}
.ws23{word-spacing:16.116377pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:28.646426pt;}
.ws29{word-spacing:37.195140pt;}
.ws2a{word-spacing:37.196760pt;}
.ws9{word-spacing:42.089838pt;}
.ws2b{word-spacing:217.841366pt;}
._a{margin-left:-5.100851pt;}
._6{margin-left:-3.884916pt;}
._2{margin-left:-2.922363pt;}
._0{margin-left:-1.721549pt;}
._1{width:1.668415pt;}
._3{width:3.103029pt;}
._5{width:4.033408pt;}
._e{width:18.314019pt;}
._11{width:19.258198pt;}
._7{width:20.151931pt;}
._10{width:22.167291pt;}
._12{width:24.186945pt;}
._f{width:25.862229pt;}
._d{width:29.753917pt;}
._8{width:77.045333pt;}
._4{width:84.164373pt;}
._9{width:90.318380pt;}
._b{width:154.082986pt;}
._c{width:297.522093pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:62.196000pt;}
.y47{bottom:105.321333pt;}
.y23{bottom:123.762667pt;}
.y46{bottom:135.342667pt;}
.y22{bottom:156.440000pt;}
.y45{bottom:169.348000pt;}
.y6c{bottom:172.700000pt;}
.y44{bottom:187.413333pt;}
.y21{bottom:189.117333pt;}
.y6b{bottom:190.765333pt;}
.y20{bottom:207.182667pt;}
.y6a{bottom:208.832000pt;}
.y43{bottom:219.880000pt;}
.y69{bottom:226.897333pt;}
.y1f{bottom:239.861333pt;}
.y68{bottom:239.946667pt;}
.y67{bottom:244.962667pt;}
.y1e{bottom:257.926667pt;}
.y66{bottom:263.028000pt;}
.y42{bottom:271.973333pt;}
.y65{bottom:281.094667pt;}
.y41{bottom:291.101333pt;}
.y1d{bottom:291.932000pt;}
.y1c{bottom:309.997333pt;}
.y40{bottom:310.230667pt;}
.y64{bottom:313.560000pt;}
.y3f{bottom:329.358667pt;}
.y1b{bottom:342.464000pt;}
.y3e{bottom:349.017333pt;}
.y63{bottom:359.384000pt;}
.y3d{bottom:368.677333pt;}
.y62{bottom:377.449333pt;}
.y1a{bottom:388.288000pt;}
.y3c{bottom:390.993333pt;}
.y61{bottom:395.516000pt;}
.y19{bottom:406.353333pt;}
.y3b{bottom:410.121333pt;}
.y60{bottom:413.581333pt;}
.y18{bottom:424.418667pt;}
.y3a{bottom:429.781333pt;}
.y5f{bottom:440.281333pt;}
.y17{bottom:442.484000pt;}
.y39{bottom:449.441333pt;}
.y5e{bottom:458.346667pt;}
.y16{bottom:460.550667pt;}
.y38{bottom:467.518667pt;}
.y5d{bottom:476.412000pt;}
.y15{bottom:478.616000pt;}
.y14{bottom:496.681333pt;}
.y5c{bottom:508.878667pt;}
.y37{bottom:511.000000pt;}
.y13{bottom:514.746667pt;}
.y36{bottom:529.065333pt;}
.y83{bottom:532.381333pt;}
.y12{bottom:532.812000pt;}
.y35{bottom:547.130667pt;}
.y82{bottom:550.446667pt;}
.y11{bottom:550.878667pt;}
.y5b{bottom:554.702667pt;}
.y81{bottom:568.513333pt;}
.y10{bottom:568.944000pt;}
.y5a{bottom:572.768000pt;}
.y34{bottom:573.166667pt;}
.y80{bottom:586.578667pt;}
.yf{bottom:587.009333pt;}
.y59{bottom:590.833333pt;}
.y7f{bottom:604.644000pt;}
.ye{bottom:605.074667pt;}
.y33{bottom:605.844000pt;}
.y58{bottom:608.898667pt;}
.yd{bottom:623.140000pt;}
.y57{bottom:626.964000pt;}
.y32{bottom:638.521333pt;}
.y7e{bottom:638.649333pt;}
.y56{bottom:645.030667pt;}
.y7d{bottom:651.700000pt;}
.yc{bottom:655.606667pt;}
.y7c{bottom:656.716000pt;}
.y31{bottom:668.541333pt;}
.y55{bottom:671.729333pt;}
.y7b{bottom:674.781333pt;}
.y30{bottom:686.608000pt;}
.y54{bottom:689.796000pt;}
.yb{bottom:701.430667pt;}
.y7a{bottom:704.801333pt;}
.ya{bottom:717.370667pt;}
.y2f{bottom:719.285333pt;}
.y53{bottom:722.473333pt;}
.y79{bottom:722.868000pt;}
.y9{bottom:733.310667pt;}
.y8{bottom:749.252000pt;}
.y2e{bottom:751.962667pt;}
.y78{bottom:752.888000pt;}
.y52{bottom:755.150667pt;}
.y7{bottom:765.192000pt;}
.y51{bottom:768.200000pt;}
.y2d{bottom:770.028000pt;}
.y50{bottom:773.216000pt;}
.y6{bottom:781.132000pt;}
.y77{bottom:782.909333pt;}
.y4f{bottom:791.281333pt;}
.y5{bottom:797.072000pt;}
.y2c{bottom:800.049333pt;}
.y4e{bottom:809.346667pt;}
.y76{bottom:812.929333pt;}
.y4{bottom:821.316000pt;}
.y2b{bottom:826.084000pt;}
.y4d{bottom:827.413333pt;}
.y2a{bottom:844.150667pt;}
.y75{bottom:846.936000pt;}
.y4c{bottom:859.878667pt;}
.y74{bottom:859.985333pt;}
.y73{bottom:865.001333pt;}
.y3{bottom:874.890667pt;}
.y29{bottom:876.616000pt;}
.y72{bottom:883.066667pt;}
.y71{bottom:901.132000pt;}
.y4b{bottom:905.702667pt;}
.y2{bottom:907.420000pt;}
.y70{bottom:919.197333pt;}
.y28{bottom:922.440000pt;}
.y4a{bottom:923.768000pt;}
.y6f{bottom:937.264000pt;}
.y27{bottom:940.505333pt;}
.y1{bottom:947.710667pt;}
.y6e{bottom:955.329333pt;}
.y49{bottom:957.774667pt;}
.y6d{bottom:973.394667pt;}
.y26{bottom:984.965333pt;}
.y48{bottom:987.794667pt;}
.y25{bottom:1005.861333pt;}
.h9{height:2.327275pt;}
.h5{height:38.096982pt;}
.h4{height:39.903534pt;}
.ha{height:40.785489pt;}
.h8{height:41.076398pt;}
.h7{height:43.694582pt;}
.h3{height:44.951552pt;}
.hb{height:51.173955pt;}
.h6{height:53.635660pt;}
.hd{height:53.988909pt;}
.he{height:53.994243pt;}
.hc{height:63.758582pt;}
.h2{height:63.811749pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:102.046667pt;}
.x12{left:110.017333pt;}
.x8{left:124.629333pt;}
.x10{left:128.114667pt;}
.x9{left:130.973333pt;}
.x6{left:138.410667pt;}
.x5{left:158.330667pt;}
.x1{left:199.425333pt;}
.x16{left:284.524000pt;}
.x11{left:292.698667pt;}
.x2{left:313.436000pt;}
.xf{left:318.384000pt;}
.x3{left:333.892000pt;}
.xe{left:358.340000pt;}
.x4{left:366.262667pt;}
.xc{left:371.389333pt;}
.x14{left:379.826667pt;}
.xd{left:393.234667pt;}
.xb{left:401.641333pt;}
.xa{left:405.277333pt;}
.x13{left:576.168000pt;}
.x15{left:577.745333pt;}
}




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