
    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_203a2b41adebce23a60387d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_daecd44290518f01a4d96ed3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_599a8dce33f7d1b8e7cfdac4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_c98e810db3e9c519c9c7d9c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_eb38d93367918b603b29b0c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.819400px;}
.v1{vertical-align:19.800000px;}
.v2{vertical-align:30.000000px;}
.ls6{letter-spacing:-0.660000px;}
.ls20{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.lse{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.810000px;}
.lsf{letter-spacing:0.960000px;}
.ls1e{letter-spacing:0.972000px;}
.ls16{letter-spacing:1.026000px;}
.ls1{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.350000px;}
.ls1d{letter-spacing:1.728000px;}
.ls9{letter-spacing:1.740000px;}
.ls18{letter-spacing:2.430000px;}
.ls14{letter-spacing:2.592000px;}
.lsd{letter-spacing:3.000000px;}
.ls15{letter-spacing:3.456000px;}
.ls7{letter-spacing:3.540000px;}
.ls4{letter-spacing:233.682000px;}
.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;}
}
.ws0{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.340000px;}
.ws1a{word-spacing:-14.040000px;}
.ws3b{word-spacing:-13.500000px;}
.ws3a{word-spacing:-13.176000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:-8.700000px;}
.ws3c{word-spacing:-7.830000px;}
.ws22{word-spacing:-3.780000px;}
.wsf{word-spacing:-3.720000px;}
.ws1b{word-spacing:-3.420000px;}
.ws3d{word-spacing:-3.402000px;}
.ws3e{word-spacing:-3.348000px;}
.wsb{word-spacing:-3.300000px;}
.ws21{word-spacing:-3.180000px;}
.ws29{word-spacing:-3.120000px;}
.ws9{word-spacing:-3.000000px;}
.wsc{word-spacing:-2.268000px;}
.ws1c{word-spacing:-2.160000px;}
.ws31{word-spacing:-2.040000px;}
.ws1d{word-spacing:-1.980000px;}
.ws16{word-spacing:-1.824000px;}
.ws34{word-spacing:-1.674000px;}
.ws3f{word-spacing:-1.350000px;}
.ws20{word-spacing:-1.320000px;}
.wsa{word-spacing:-1.080000px;}
.ws2c{word-spacing:-0.960000px;}
.ws17{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.780000px;}
.ws27{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.300000px;}
.ws7{word-spacing:0.000000px;}
.ws32{word-spacing:0.180000px;}
.ws40{word-spacing:0.432000px;}
.wse{word-spacing:1.020000px;}
.ws8{word-spacing:1.560000px;}
.ws42{word-spacing:1.674000px;}
.ws41{word-spacing:1.782000px;}
.ws13{word-spacing:1.980000px;}
.ws43{word-spacing:2.160000px;}
.ws38{word-spacing:2.700000px;}
.ws26{word-spacing:2.760000px;}
.ws28{word-spacing:2.940000px;}
.ws12{word-spacing:3.180000px;}
.ws1e{word-spacing:3.300000px;}
.ws2e{word-spacing:3.960000px;}
.ws15{word-spacing:4.140000px;}
.ws25{word-spacing:4.260000px;}
.ws37{word-spacing:4.374000px;}
.ws11{word-spacing:4.560000px;}
.ws2d{word-spacing:4.680000px;}
.ws14{word-spacing:4.860000px;}
.ws39{word-spacing:4.968000px;}
.ws2a{word-spacing:5.040000px;}
.ws1f{word-spacing:5.100000px;}
.ws23{word-spacing:5.160000px;}
.ws35{word-spacing:6.264000px;}
.ws33{word-spacing:6.750000px;}
.ws36{word-spacing:6.966000px;}
.ws30{word-spacing:7.080000px;}
.ws10{word-spacing:7.380000px;}
.ws2f{word-spacing:7.440000px;}
.wsd{word-spacing:7.500000px;}
.ws5{word-spacing:133.173000px;}
.ws6{word-spacing:136.271400px;}
.ws4{word-spacing:144.263400px;}
.ws3{word-spacing:233.303400px;}
._0{margin-left:-94.500000px;}
._6{margin-left:-8.640000px;}
._9{margin-left:-6.192000px;}
._5{margin-left:-4.800000px;}
._3{margin-left:-3.300000px;}
._4{margin-left:-2.220000px;}
._2{margin-left:-1.080000px;}
._7{width:1.080000px;}
._8{width:3.289200px;}
._22{width:7.743600px;}
._23{width:9.176400px;}
._1b{width:59.055000px;}
._1f{width:87.855000px;}
._17{width:104.319000px;}
._18{width:121.674600px;}
._b{width:136.698600px;}
._1d{width:145.173000px;}
._f{width:147.306600px;}
._e{width:156.263400px;}
._12{width:168.714600px;}
._14{width:182.010600px;}
._13{width:192.860400px;}
._19{width:200.853000px;}
._20{width:203.946600px;}
._10{width:209.994600px;}
._d{width:211.938600px;}
._1a{width:221.850600px;}
._1c{width:229.962600px;}
._16{width:238.598400px;}
._c{width:242.582400px;}
._15{width:258.879000px;}
._1e{width:271.290600px;}
._11{width:294.975000px;}
._a{width:350.991000px;}
._21{width:1399.268400px;}
._1{width:1480.293600px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs3{font-size:34.800000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:90.506400px;}
.y3d{bottom:92.110500px;}
.y67{bottom:92.274600px;}
.y66{bottom:108.474600px;}
.y3c{bottom:110.110500px;}
.y2b{bottom:123.453000px;}
.y65{bottom:124.674600px;}
.y3b{bottom:128.110500px;}
.y2a{bottom:137.253000px;}
.y64{bottom:140.874600px;}
.y3a{bottom:146.110500px;}
.y63{bottom:157.074600px;}
.y29{bottom:157.573350px;}
.y39{bottom:164.110500px;}
.y62{bottom:173.274600px;}
.y28{bottom:177.893550px;}
.y38{bottom:182.110500px;}
.y61{bottom:189.474600px;}
.y27{bottom:198.213900px;}
.y37{bottom:200.110500px;}
.y60{bottom:205.674600px;}
.y36{bottom:218.110500px;}
.y26{bottom:218.534250px;}
.y5f{bottom:221.874600px;}
.y35{bottom:236.110500px;}
.y5e{bottom:238.074600px;}
.y25{bottom:238.854600px;}
.y24{bottom:252.654600px;}
.y34{bottom:254.110500px;}
.y5d{bottom:254.274600px;}
.y33{bottom:272.110500px;}
.y23{bottom:272.974800px;}
.y22{bottom:286.774800px;}
.y5c{bottom:288.474600px;}
.y32{bottom:290.110500px;}
.y21{bottom:307.095150px;}
.y31{bottom:308.110500px;}
.y30{bottom:326.110500px;}
.y20{bottom:327.415500px;}
.y5b{bottom:342.474600px;}
.y2f{bottom:344.110500px;}
.y1f{bottom:347.735850px;}
.y5a{bottom:360.474600px;}
.y2e{bottom:362.110500px;}
.y1e{bottom:368.056050px;}
.y59{bottom:378.474600px;}
.y2d{bottom:380.110500px;}
.y1d{bottom:388.376400px;}
.y58{bottom:396.474600px;}
.y2c{bottom:398.110500px;}
.y1c{bottom:408.696750px;}
.y57{bottom:414.474600px;}
.y1b{bottom:420.696750px;}
.y19{bottom:428.100000px;}
.y56{bottom:432.474600px;}
.y6c{bottom:446.476500px;}
.y1a{bottom:447.696750px;}
.y55{bottom:450.474600px;}
.y6b{bottom:459.976500px;}
.y54{bottom:468.474600px;}
.y6a{bottom:473.476500px;}
.y53{bottom:486.474600px;}
.y69{bottom:486.976500px;}
.y11{bottom:494.819100px;}
.y17{bottom:494.833800px;}
.y68{bottom:500.476500px;}
.y52{bottom:504.474600px;}
.y10{bottom:512.819100px;}
.y16{bottom:512.833800px;}
.y51{bottom:522.474600px;}
.yf{bottom:530.819100px;}
.y15{bottom:530.833800px;}
.y50{bottom:540.474600px;}
.ye{bottom:548.819100px;}
.y14{bottom:548.833800px;}
.y4f{bottom:558.474600px;}
.yd{bottom:566.819100px;}
.y13{bottom:566.833800px;}
.y4e{bottom:576.474600px;}
.yc{bottom:584.819100px;}
.y12{bottom:584.833800px;}
.y4d{bottom:594.474600px;}
.y4c{bottom:612.474600px;}
.y4b{bottom:630.474600px;}
.yb{bottom:637.920750px;}
.y4a{bottom:648.474600px;}
.ya{bottom:666.420750px;}
.y49{bottom:666.474600px;}
.y48{bottom:684.474600px;}
.y9{bottom:694.920750px;}
.y47{bottom:702.474600px;}
.y8{bottom:709.170750px;}
.y46{bottom:738.474600px;}
.y7b{bottom:750.691050px;}
.y75{bottom:752.491050px;}
.y45{bottom:756.474600px;}
.y2{bottom:760.199550px;}
.y7a{bottom:764.191050px;}
.y74{bottom:768.691200px;}
.y44{bottom:774.474600px;}
.y79{bottom:777.691200px;}
.y73{bottom:784.891050px;}
.y78{bottom:791.191200px;}
.y7{bottom:792.459900px;}
.y43{bottom:792.474600px;}
.y72{bottom:801.091050px;}
.y77{bottom:804.691200px;}
.y6{bottom:810.459900px;}
.y42{bottom:810.474600px;}
.y71{bottom:817.291050px;}
.y76{bottom:818.191200px;}
.y41{bottom:828.474600px;}
.y70{bottom:833.491050px;}
.y5{bottom:846.459900px;}
.y40{bottom:846.474600px;}
.y6f{bottom:849.691200px;}
.y4{bottom:864.459900px;}
.y3f{bottom:864.474600px;}
.y6e{bottom:865.891050px;}
.y6d{bottom:882.091050px;}
.y3{bottom:882.459900px;}
.y3e{bottom:882.474600px;}
.y1{bottom:937.589700px;}
.h6{height:37.494141px;}
.hb{height:41.660156px;}
.h3{height:42.117188px;}
.h9{height:42.632812px;}
.h8{height:43.019812px;}
.h7{height:47.381836px;}
.h2{height:47.961914px;}
.h5{height:52.646484px;}
.h4{height:53.291016px;}
.ha{height:72.632812px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x12{left:-635.605650px;}
.x1a{left:-512.541900px;}
.x13{left:-382.956000px;}
.x1b{left:-365.735250px;}
.x14{left:-360.057600px;}
.x15{left:-284.535750px;}
.x16{left:-258.739800px;}
.x17{left:-115.126950px;}
.x18{left:-109.581000px;}
.x19{left:-90.892500px;}
.x0{left:0.000000px;}
.x11{left:63.750000px;}
.x1{left:85.050000px;}
.x7{left:87.244350px;}
.x1f{left:106.275000px;}
.x5{left:109.050000px;}
.x2{left:200.920200px;}
.x4{left:204.777150px;}
.xf{left:210.308100px;}
.x3{left:245.470500px;}
.x8{left:339.894000px;}
.x10{left:357.114750px;}
.x1c{left:361.425000px;}
.x9{left:362.792400px;}
.x6{left:382.725000px;}
.x1d{left:385.425000px;}
.x20{left:403.950000px;}
.xa{left:438.314250px;}
.x1e{left:449.185200px;}
.xb{left:464.110200px;}
.xc{left:607.723050px;}
.xd{left:613.268850px;}
.xe{left:631.957350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.839467pt;}
.v1{vertical-align:17.600000pt;}
.v2{vertical-align:26.666667pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.720000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls16{letter-spacing:0.912000pt;}
.ls1{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.200000pt;}
.ls1d{letter-spacing:1.536000pt;}
.ls9{letter-spacing:1.546667pt;}
.ls18{letter-spacing:2.160000pt;}
.ls14{letter-spacing:2.304000pt;}
.lsd{letter-spacing:2.666667pt;}
.ls15{letter-spacing:3.072000pt;}
.ls7{letter-spacing:3.146667pt;}
.ls4{letter-spacing:207.717333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws19{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.746667pt;}
.ws1a{word-spacing:-12.480000pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws3a{word-spacing:-11.712000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:-7.733333pt;}
.ws3c{word-spacing:-6.960000pt;}
.ws22{word-spacing:-3.360000pt;}
.wsf{word-spacing:-3.306667pt;}
.ws1b{word-spacing:-3.040000pt;}
.ws3d{word-spacing:-3.024000pt;}
.ws3e{word-spacing:-2.976000pt;}
.wsb{word-spacing:-2.933333pt;}
.ws21{word-spacing:-2.826667pt;}
.ws29{word-spacing:-2.773333pt;}
.ws9{word-spacing:-2.666667pt;}
.wsc{word-spacing:-2.016000pt;}
.ws1c{word-spacing:-1.920000pt;}
.ws31{word-spacing:-1.813333pt;}
.ws1d{word-spacing:-1.760000pt;}
.ws16{word-spacing:-1.621333pt;}
.ws34{word-spacing:-1.488000pt;}
.ws3f{word-spacing:-1.200000pt;}
.ws20{word-spacing:-1.173333pt;}
.wsa{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws17{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.693333pt;}
.ws27{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.266667pt;}
.ws7{word-spacing:0.000000pt;}
.ws32{word-spacing:0.160000pt;}
.ws40{word-spacing:0.384000pt;}
.wse{word-spacing:0.906667pt;}
.ws8{word-spacing:1.386667pt;}
.ws42{word-spacing:1.488000pt;}
.ws41{word-spacing:1.584000pt;}
.ws13{word-spacing:1.760000pt;}
.ws43{word-spacing:1.920000pt;}
.ws38{word-spacing:2.400000pt;}
.ws26{word-spacing:2.453333pt;}
.ws28{word-spacing:2.613333pt;}
.ws12{word-spacing:2.826667pt;}
.ws1e{word-spacing:2.933333pt;}
.ws2e{word-spacing:3.520000pt;}
.ws15{word-spacing:3.680000pt;}
.ws25{word-spacing:3.786667pt;}
.ws37{word-spacing:3.888000pt;}
.ws11{word-spacing:4.053333pt;}
.ws2d{word-spacing:4.160000pt;}
.ws14{word-spacing:4.320000pt;}
.ws39{word-spacing:4.416000pt;}
.ws2a{word-spacing:4.480000pt;}
.ws1f{word-spacing:4.533333pt;}
.ws23{word-spacing:4.586667pt;}
.ws35{word-spacing:5.568000pt;}
.ws33{word-spacing:6.000000pt;}
.ws36{word-spacing:6.192000pt;}
.ws30{word-spacing:6.293333pt;}
.ws10{word-spacing:6.560000pt;}
.ws2f{word-spacing:6.613333pt;}
.wsd{word-spacing:6.666667pt;}
.ws5{word-spacing:118.376000pt;}
.ws6{word-spacing:121.130133pt;}
.ws4{word-spacing:128.234133pt;}
.ws3{word-spacing:207.380800pt;}
._0{margin-left:-84.000000pt;}
._6{margin-left:-7.680000pt;}
._9{margin-left:-5.504000pt;}
._5{margin-left:-4.266667pt;}
._3{margin-left:-2.933333pt;}
._4{margin-left:-1.973333pt;}
._2{margin-left:-0.960000pt;}
._7{width:0.960000pt;}
._8{width:2.923733pt;}
._22{width:6.883200pt;}
._23{width:8.156800pt;}
._1b{width:52.493333pt;}
._1f{width:78.093333pt;}
._17{width:92.728000pt;}
._18{width:108.155200pt;}
._b{width:121.509867pt;}
._1d{width:129.042667pt;}
._f{width:130.939200pt;}
._e{width:138.900800pt;}
._12{width:149.968533pt;}
._14{width:161.787200pt;}
._13{width:171.431467pt;}
._19{width:178.536000pt;}
._20{width:181.285867pt;}
._10{width:186.661867pt;}
._d{width:188.389867pt;}
._1a{width:197.200533pt;}
._1c{width:204.411200pt;}
._16{width:212.087467pt;}
._c{width:215.628800pt;}
._15{width:230.114667pt;}
._1e{width:241.147200pt;}
._11{width:262.200000pt;}
._a{width:311.992000pt;}
._21{width:1243.794133pt;}
._1{width:1315.816533pt;}
.fs4{font-size:27.840000pt;}
.fs3{font-size:30.933333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:80.450133pt;}
.y3d{bottom:81.876000pt;}
.y67{bottom:82.021867pt;}
.y66{bottom:96.421867pt;}
.y3c{bottom:97.876000pt;}
.y2b{bottom:109.736000pt;}
.y65{bottom:110.821867pt;}
.y3b{bottom:113.876000pt;}
.y2a{bottom:122.002667pt;}
.y64{bottom:125.221867pt;}
.y3a{bottom:129.876000pt;}
.y63{bottom:139.621867pt;}
.y29{bottom:140.065200pt;}
.y39{bottom:145.876000pt;}
.y62{bottom:154.021867pt;}
.y28{bottom:158.127600pt;}
.y38{bottom:161.876000pt;}
.y61{bottom:168.421867pt;}
.y27{bottom:176.190133pt;}
.y37{bottom:177.876000pt;}
.y60{bottom:182.821867pt;}
.y36{bottom:193.876000pt;}
.y26{bottom:194.252667pt;}
.y5f{bottom:197.221867pt;}
.y35{bottom:209.876000pt;}
.y5e{bottom:211.621867pt;}
.y25{bottom:212.315200pt;}
.y24{bottom:224.581867pt;}
.y34{bottom:225.876000pt;}
.y5d{bottom:226.021867pt;}
.y33{bottom:241.876000pt;}
.y23{bottom:242.644267pt;}
.y22{bottom:254.910933pt;}
.y5c{bottom:256.421867pt;}
.y32{bottom:257.876000pt;}
.y21{bottom:272.973467pt;}
.y31{bottom:273.876000pt;}
.y30{bottom:289.876000pt;}
.y20{bottom:291.036000pt;}
.y5b{bottom:304.421867pt;}
.y2f{bottom:305.876000pt;}
.y1f{bottom:309.098533pt;}
.y5a{bottom:320.421867pt;}
.y2e{bottom:321.876000pt;}
.y1e{bottom:327.160933pt;}
.y59{bottom:336.421867pt;}
.y2d{bottom:337.876000pt;}
.y1d{bottom:345.223467pt;}
.y58{bottom:352.421867pt;}
.y2c{bottom:353.876000pt;}
.y1c{bottom:363.286000pt;}
.y57{bottom:368.421867pt;}
.y1b{bottom:373.952667pt;}
.y19{bottom:380.533333pt;}
.y56{bottom:384.421867pt;}
.y6c{bottom:396.868000pt;}
.y1a{bottom:397.952667pt;}
.y55{bottom:400.421867pt;}
.y6b{bottom:408.868000pt;}
.y54{bottom:416.421867pt;}
.y6a{bottom:420.868000pt;}
.y53{bottom:432.421867pt;}
.y69{bottom:432.868000pt;}
.y11{bottom:439.839200pt;}
.y17{bottom:439.852267pt;}
.y68{bottom:444.868000pt;}
.y52{bottom:448.421867pt;}
.y10{bottom:455.839200pt;}
.y16{bottom:455.852267pt;}
.y51{bottom:464.421867pt;}
.yf{bottom:471.839200pt;}
.y15{bottom:471.852267pt;}
.y50{bottom:480.421867pt;}
.ye{bottom:487.839200pt;}
.y14{bottom:487.852267pt;}
.y4f{bottom:496.421867pt;}
.yd{bottom:503.839200pt;}
.y13{bottom:503.852267pt;}
.y4e{bottom:512.421867pt;}
.yc{bottom:519.839200pt;}
.y12{bottom:519.852267pt;}
.y4d{bottom:528.421867pt;}
.y4c{bottom:544.421867pt;}
.y4b{bottom:560.421867pt;}
.yb{bottom:567.040667pt;}
.y4a{bottom:576.421867pt;}
.ya{bottom:592.374000pt;}
.y49{bottom:592.421867pt;}
.y48{bottom:608.421867pt;}
.y9{bottom:617.707333pt;}
.y47{bottom:624.421867pt;}
.y8{bottom:630.374000pt;}
.y46{bottom:656.421867pt;}
.y7b{bottom:667.280933pt;}
.y75{bottom:668.880933pt;}
.y45{bottom:672.421867pt;}
.y2{bottom:675.732933pt;}
.y7a{bottom:679.280933pt;}
.y74{bottom:683.281067pt;}
.y44{bottom:688.421867pt;}
.y79{bottom:691.281067pt;}
.y73{bottom:697.680933pt;}
.y78{bottom:703.281067pt;}
.y7{bottom:704.408800pt;}
.y43{bottom:704.421867pt;}
.y72{bottom:712.080933pt;}
.y77{bottom:715.281067pt;}
.y6{bottom:720.408800pt;}
.y42{bottom:720.421867pt;}
.y71{bottom:726.480933pt;}
.y76{bottom:727.281067pt;}
.y41{bottom:736.421867pt;}
.y70{bottom:740.880933pt;}
.y5{bottom:752.408800pt;}
.y40{bottom:752.421867pt;}
.y6f{bottom:755.281067pt;}
.y4{bottom:768.408800pt;}
.y3f{bottom:768.421867pt;}
.y6e{bottom:769.680933pt;}
.y6d{bottom:784.080933pt;}
.y3{bottom:784.408800pt;}
.y3e{bottom:784.421867pt;}
.y1{bottom:833.413067pt;}
.h6{height:33.328125pt;}
.hb{height:37.031250pt;}
.h3{height:37.437500pt;}
.h9{height:37.895833pt;}
.h8{height:38.239833pt;}
.h7{height:42.117188pt;}
.h2{height:42.632812pt;}
.h5{height:46.796875pt;}
.h4{height:47.369792pt;}
.ha{height:64.562500pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x12{left:-564.982800pt;}
.x1a{left:-455.592800pt;}
.x13{left:-340.405333pt;}
.x1b{left:-325.098000pt;}
.x14{left:-320.051200pt;}
.x15{left:-252.920667pt;}
.x16{left:-229.990933pt;}
.x17{left:-102.335067pt;}
.x18{left:-97.405333pt;}
.x19{left:-80.793333pt;}
.x0{left:0.000000pt;}
.x11{left:56.666667pt;}
.x1{left:75.600000pt;}
.x7{left:77.550533pt;}
.x1f{left:94.466667pt;}
.x5{left:96.933333pt;}
.x2{left:178.595733pt;}
.x4{left:182.024133pt;}
.xf{left:186.940533pt;}
.x3{left:218.196000pt;}
.x8{left:302.128000pt;}
.x10{left:317.435333pt;}
.x1c{left:321.266667pt;}
.x9{left:322.482133pt;}
.x6{left:340.200000pt;}
.x1d{left:342.600000pt;}
.x20{left:359.066667pt;}
.xa{left:389.612667pt;}
.x1e{left:399.275733pt;}
.xb{left:412.542400pt;}
.xc{left:540.198267pt;}
.xd{left:545.127867pt;}
.xe{left:561.739867pt;}
}




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