
    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_ad9b3c4950113b28901e69b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_bc20bd6f56349899fd194984.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_d049852ef384231dd9874538.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_222ebee5a4ef594e4ed5c97f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918375;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_9f9c95d399794d60aff16758.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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:-15.840000px;}
.v2{vertical-align:-14.366880px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:30.173040px;}
.ls4{letter-spacing:33.454080px;}
.ls1{letter-spacing:34.110720px;}
.ls3{letter-spacing:57.710880px;}
.ls5{letter-spacing:84.775680px;}
.ls6{letter-spacing:106.444800px;}
.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;}
}
.ws11{word-spacing:-29.777760px;}
.ws6{word-spacing:-27.336960px;}
.ws2{word-spacing:-21.479040px;}
.ws1f{word-spacing:-17.899200px;}
.ws1b{word-spacing:-2.534400px;}
.ws14{word-spacing:-2.108160px;}
.ws10{word-spacing:-2.080822px;}
.ws8{word-spacing:-1.764022px;}
.ws15{word-spacing:-1.550156px;}
.ws25{word-spacing:-1.416951px;}
.ws22{word-spacing:-1.376654px;}
.ws9{word-spacing:-1.346400px;}
.ws23{word-spacing:-1.140480px;}
.ws27{word-spacing:-1.054080px;}
.ws17{word-spacing:-1.045440px;}
.ws1{word-spacing:-0.990697px;}
.wsb{word-spacing:-0.901454px;}
.ws7{word-spacing:-0.806414px;}
.ws21{word-spacing:-0.760320px;}
.wsd{word-spacing:-0.740172px;}
.wse{word-spacing:-0.665280px;}
.wsf{word-spacing:-0.611978px;}
.wsa{word-spacing:-0.607686px;}
.ws26{word-spacing:-0.541532px;}
.ws13{word-spacing:-0.337012px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.190080px;}
.ws4{word-spacing:0.241920px;}
.ws12{word-spacing:0.665280px;}
.ws3{word-spacing:0.967680px;}
.ws5{word-spacing:1.088640px;}
.ws24{word-spacing:2.471040px;}
.ws1c{word-spacing:75.841920px;}
.ws19{word-spacing:104.464800px;}
.ws1e{word-spacing:124.027200px;}
.ws16{word-spacing:255.519360px;}
.ws18{word-spacing:303.177600px;}
.ws1d{word-spacing:365.555520px;}
.ws20{word-spacing:412.853760px;}
.ws1a{word-spacing:436.613760px;}
._3{margin-left:-11.811542px;}
._2{margin-left:-10.681222px;}
._f{margin-left:-9.156402px;}
._c{margin-left:-7.291467px;}
._16{margin-left:-5.964520px;}
._13{margin-left:-4.879382px;}
._4{margin-left:-3.695599px;}
._1{margin-left:-2.534440px;}
._0{margin-left:-1.094454px;}
._5{width:1.184364px;}
._10{width:2.549773px;}
._12{width:16.711200px;}
._17{width:19.046053px;}
._11{width:20.148480px;}
._18{width:22.644867px;}
._1f{width:23.950080px;}
._e{width:27.049594px;}
._7{width:28.359400px;}
._21{width:30.253788px;}
._6{width:54.680400px;}
._9{width:77.738400px;}
._1d{width:86.866560px;}
._1a{width:88.957440px;}
._14{width:130.506558px;}
._15{width:135.100118px;}
._1e{width:175.401387px;}
._1c{width:220.968000px;}
._19{width:297.659520px;}
._a{width:650.034079px;}
._8{width:710.054640px;}
._b{width:738.981454px;}
._d{width:770.050107px;}
._20{width:867.208992px;}
._1b{width:914.997600px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:79.200000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:95.040000px;}
.fs4{font-size:120.960000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:141.840000px;}
.fs0{font-size:147.600000px;}
.fs6{font-size:178.560000px;}
.fs8{font-size:184.320000px;}
.y0{bottom:0.000000px;}
.y36{bottom:152.206560px;}
.y5f{bottom:195.782400px;}
.y54{bottom:213.412320px;}
.y39{bottom:216.287280px;}
.y1f{bottom:217.190160px;}
.y5e{bottom:224.223120px;}
.y41{bottom:227.810880px;}
.y38{bottom:244.728000px;}
.y1e{bottom:245.630880px;}
.y98{bottom:245.820960px;}
.y7{bottom:251.398080px;}
.y14{bottom:252.292320px;}
.y5b{bottom:252.473760px;}
.y27{bottom:255.348720px;}
.y46{bottom:260.219520px;}
.y70{bottom:262.013400px;}
.y53{bottom:270.293760px;}
.ye{bottom:272.265840px;}
.y97{bottom:276.233760px;}
.y57{bottom:280.914480px;}
.y91{bottom:282.886560px;}
.y26{bottom:283.789440px;}
.y68{bottom:286.498080px;}
.yd{bottom:300.706560px;}
.y96{bottom:306.480240px;}
.y56{bottom:309.355200px;}
.y8b{bottom:309.521520px;}
.y2c{bottom:311.683680px;}
.y25{bottom:312.230160px;}
.y90{bottom:313.323120px;}
.y67{bottom:314.748720px;}
.y7a{bottom:316.364400px;}
.y9e{bottom:321.781680px;}
.y13{bottom:324.838080px;}
.y37{bottom:325.013040px;}
.y52{bottom:326.985120px;}
.y4e{bottom:327.357720px;}
.y95{bottom:336.893040px;}
.y8f{bottom:339.221520px;}
.y30{bottom:339.601680px;}
.y8a{bottom:339.768000px;}
.y2b{bottom:340.124400px;}
.y24{bottom:340.670880px;}
.y66{bottom:343.189440px;}
.y79{bottom:344.805120px;}
.y6{bottom:348.768720px;}
.y84{bottom:349.855740px;}
.y45{bottom:357.944400px;}
.y40{bottom:359.750160px;}
.y89{bottom:365.880240px;}
.y4d{bottom:366.786900px;}
.y94{bottom:367.139520px;}
.y2f{bottom:367.852320px;}
.y2a{bottom:368.398800px;}
.y23{bottom:368.921520px;}
.y8e{bottom:369.658080px;}
.y65{bottom:371.630160px;}
.y1d{bottom:372.889440px;}
.y9d{bottom:378.473040px;}
.y71{bottom:379.542240px;}
.y73{bottom:381.894480px;}
.y51{bottom:383.866560px;}
.y83{bottom:389.449620px;}
.y7f{bottom:392.337000px;}
.y2e{bottom:396.293040px;}
.y35{bottom:396.649440px;}
.y29{bottom:396.839520px;}
.y22{bottom:397.362240px;}
.y12{bottom:397.383840px;}
.y93{bottom:397.552320px;}
.y64{bottom:400.070880px;}
.y1c{bottom:401.330160px;}
.y78{bottom:401.686560px;}
.y55{bottom:402.251040px;}
.y85{bottom:402.949800px;}
.yc{bottom:404.038800px;}
.y4c{bottom:406.183140px;}
.y72{bottom:408.529440px;}
.y8d{bottom:410.501520px;}
.y80{bottom:412.307280px;}
.y7e{bottom:415.918800px;}
.y88{bottom:422.381520px;}
.y2d{bottom:424.733760px;}
.y28{bottom:425.280240px;}
.y21{bottom:425.802960px;}
.y63{bottom:428.511600px;}
.y82{bottom:428.878800px;}
.y77{bottom:430.127280px;}
.yb{bottom:432.479520px;}
.y6f{bottom:434.808000px;}
.y8c{bottom:436.613760px;}
.y47{bottom:438.585840px;}
.y50{bottom:440.581680px;}
.ya1{bottom:444.162960px;}
.y4b{bottom:445.777020px;}
.y5{bottom:445.974660px;}
.y92{bottom:447.424560px;}
.y3f{bottom:452.093400px;}
.y9f{bottom:453.012480px;}
.y7d{bottom:453.895200px;}
.y62{bottom:456.762240px;}
.y76{bottom:458.401680px;}
.y34{bottom:462.345840px;}
.y6e{bottom:463.082400px;}
.y9c{bottom:463.795200px;}
.y48{bottom:465.235200px;}
.y11{bottom:469.899360px;}
.y1b{bottom:470.626200px;}
.y61{bottom:485.202960px;}
.y4a{bottom:485.206200px;}
.y33{bottom:490.786560px;}
.y6d{bottom:491.523120px;}
.y7c{bottom:491.693400px;}
.y4f{bottom:497.463120px;}
.y3c{bottom:501.597360px;}
.y5d{bottom:502.500240px;}
.y5a{bottom:502.666560px;}
.y44{bottom:506.634480px;}
.y81{bottom:507.704220px;}
.y75{bottom:515.283120px;}
.y6c{bottom:519.963840px;}
.y9b{bottom:520.486560px;}
.ya0{bottom:523.021320px;}
.y18{bottom:523.195200px;}
.ya{bottom:523.551600px;}
.y2{bottom:525.898800px;}
.y7b{bottom:526.070160px;}
.y3e{bottom:529.491600px;}
.y3b{bottom:530.038080px;}
.y5c{bottom:530.940960px;}
.y59{bottom:531.107280px;}
.ya2{bottom:533.095200px;}
.y10{bottom:542.626560px;}
.y4{bottom:543.345300px;}
.y60{bottom:549.834480px;}
.y17{bottom:551.635920px;}
.y9{bottom:551.992320px;}
.y1a{bottom:553.073400px;}
.y58{bottom:559.548000px;}
.y86{bottom:563.866920px;}
.y49{bottom:564.064560px;}
.y6b{bottom:576.117360px;}
.y16{bottom:580.076640px;}
.y32{bottom:595.544400px;}
.y6a{bottom:602.042220px;}
.y9a{bottom:612.486360px;}
.y1{bottom:614.274300px;}
.y3d{bottom:618.235200px;}
.y43{bottom:618.401520px;}
.y87{bottom:636.400800px;}
.y19{bottom:641.995200px;}
.y69{bottom:651.355560px;}
.y99{bottom:651.882600px;}
.yf{bottom:654.583680px;}
.y3{bottom:663.598440px;}
.y8{bottom:668.978460px;}
.y15{bottom:675.665280px;}
.y74{bottom:676.554660px;}
.y3a{bottom:677.081700px;}
.y31{bottom:682.483860px;}
.y42{bottom:685.382580px;}
.y20{bottom:690.587100px;}
.h7{height:56.847656px;}
.hb{height:60.465234px;}
.h5{height:68.217187px;}
.h9{height:68.681250px;}
.hc{height:78.380156px;}
.h6{height:87.412500px;}
.h4{height:94.573828px;}
.h8{height:95.217187px;}
.h3{height:101.808984px;}
.h2{height:105.943359px;}
.ha{height:128.165625px;}
.hd{height:132.300000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1f{left:96.493500px;}
.x33{left:118.800000px;}
.x29{left:140.041440px;}
.x11{left:147.787200px;}
.x4{left:153.006300px;}
.x20{left:168.488100px;}
.x3d{left:169.931520px;}
.x3c{left:201.603600px;}
.x36{left:206.830260px;}
.x37{left:207.884340px;}
.x21{left:215.812080px;}
.x39{left:226.429560px;}
.x23{left:229.331520px;}
.x46{left:239.045580px;}
.xa{left:244.611360px;}
.x45{left:252.715680px;}
.x22{left:261.545760px;}
.x2a{left:293.231880px;}
.x7{left:295.740720px;}
.x2e{left:297.712800px;}
.x47{left:310.503600px;}
.x12{left:317.694960px;}
.x2d{left:324.894240px;}
.x41{left:341.818380px;}
.x3e{left:382.132080px;}
.x24{left:387.169200px;}
.x2c{left:393.127020px;}
.x28{left:397.454040px;}
.x3f{left:399.952080px;}
.x2{left:401.398200px;}
.x3b{left:411.124140px;}
.x3{left:412.364340px;}
.x1{left:414.719100px;}
.x2b{left:433.267380px;}
.xb{left:444.788820px;}
.x18{left:447.472080px;}
.x1e{left:448.565040px;}
.x44{left:455.040000px;}
.x1a{left:458.092800px;}
.xc{left:459.708480px;}
.x38{left:462.774060px;}
.xf{left:468.713520px;}
.x1c{left:469.806480px;}
.x13{left:474.843600px;}
.x19{left:481.483980px;}
.x5{left:484.909740px;}
.x32{left:501.116220px;}
.x17{left:509.944140px;}
.x9{left:539.096040px;}
.x10{left:540.907740px;}
.x1d{left:542.686500px;}
.x6{left:557.813520px;}
.x25{left:561.425040px;}
.x42{left:611.102880px;}
.x14{left:631.802160px;}
.x43{left:667.988640px;}
.x2f{left:673.928640px;}
.x26{left:713.346480px;}
.x35{left:730.441800px;}
.x8{left:792.894960px;}
.x40{left:824.044320px;}
.x30{left:831.790080px;}
.x34{left:867.430080px;}
.xd{left:883.080000px;}
.xe{left:885.238200px;}
.x1b{left:886.505400px;}
.x15{left:891.712800px;}
.x27{left:893.518560px;}
.x31{left:948.950640px;}
.x3a{left:1013.047200px;}
.x16{left:1035.722160px;}
@media print{
.v1{vertical-align:-14.080000pt;}
.v2{vertical-align:-12.770560pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:26.820480pt;}
.ls4{letter-spacing:29.736960pt;}
.ls1{letter-spacing:30.320640pt;}
.ls3{letter-spacing:51.298560pt;}
.ls5{letter-spacing:75.356160pt;}
.ls6{letter-spacing:94.617600pt;}
.ws11{word-spacing:-26.469120pt;}
.ws6{word-spacing:-24.299520pt;}
.ws2{word-spacing:-19.092480pt;}
.ws1f{word-spacing:-15.910400pt;}
.ws1b{word-spacing:-2.252800pt;}
.ws14{word-spacing:-1.873920pt;}
.ws10{word-spacing:-1.849619pt;}
.ws8{word-spacing:-1.568019pt;}
.ws15{word-spacing:-1.377917pt;}
.ws25{word-spacing:-1.259512pt;}
.ws22{word-spacing:-1.223693pt;}
.ws9{word-spacing:-1.196800pt;}
.ws23{word-spacing:-1.013760pt;}
.ws27{word-spacing:-0.936960pt;}
.ws17{word-spacing:-0.929280pt;}
.ws1{word-spacing:-0.880620pt;}
.wsb{word-spacing:-0.801293pt;}
.ws7{word-spacing:-0.716813pt;}
.ws21{word-spacing:-0.675840pt;}
.wsd{word-spacing:-0.657930pt;}
.wse{word-spacing:-0.591360pt;}
.wsf{word-spacing:-0.543981pt;}
.wsa{word-spacing:-0.540165pt;}
.ws26{word-spacing:-0.481362pt;}
.ws13{word-spacing:-0.299566pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.168960pt;}
.ws4{word-spacing:0.215040pt;}
.ws12{word-spacing:0.591360pt;}
.ws3{word-spacing:0.860160pt;}
.ws5{word-spacing:0.967680pt;}
.ws24{word-spacing:2.196480pt;}
.ws1c{word-spacing:67.415040pt;}
.ws19{word-spacing:92.857600pt;}
.ws1e{word-spacing:110.246400pt;}
.ws16{word-spacing:227.128320pt;}
.ws18{word-spacing:269.491200pt;}
.ws1d{word-spacing:324.938240pt;}
.ws20{word-spacing:366.981120pt;}
.ws1a{word-spacing:388.101120pt;}
._3{margin-left:-10.499149pt;}
._2{margin-left:-9.494419pt;}
._f{margin-left:-8.139024pt;}
._c{margin-left:-6.481304pt;}
._16{margin-left:-5.301796pt;}
._13{margin-left:-4.337229pt;}
._4{margin-left:-3.284977pt;}
._1{margin-left:-2.252835pt;}
._0{margin-left:-0.972848pt;}
._5{width:1.052768pt;}
._10{width:2.266465pt;}
._12{width:14.854400pt;}
._17{width:16.929825pt;}
._11{width:17.909760pt;}
._18{width:20.128771pt;}
._1f{width:21.288960pt;}
._e{width:24.044084pt;}
._7{width:25.208355pt;}
._21{width:26.892256pt;}
._6{width:48.604800pt;}
._9{width:69.100800pt;}
._1d{width:77.214720pt;}
._1a{width:79.073280pt;}
._14{width:116.005829pt;}
._15{width:120.088994pt;}
._1e{width:155.912344pt;}
._1c{width:196.416000pt;}
._19{width:264.586240pt;}
._a{width:577.808070pt;}
._8{width:631.159680pt;}
._b{width:656.872403pt;}
._d{width:684.488984pt;}
._20{width:770.852438pt;}
._1b{width:813.331200pt;}
.fs5{font-size:70.400000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:84.480000pt;}
.fs4{font-size:107.520000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:126.080000pt;}
.fs0{font-size:131.200000pt;}
.fs6{font-size:158.720000pt;}
.fs8{font-size:163.840000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:135.294720pt;}
.y5f{bottom:174.028800pt;}
.y54{bottom:189.699840pt;}
.y39{bottom:192.255360pt;}
.y1f{bottom:193.057920pt;}
.y5e{bottom:199.309440pt;}
.y41{bottom:202.498560pt;}
.y38{bottom:217.536000pt;}
.y1e{bottom:218.338560pt;}
.y98{bottom:218.507520pt;}
.y7{bottom:223.464960pt;}
.y14{bottom:224.259840pt;}
.y5b{bottom:224.421120pt;}
.y27{bottom:226.976640pt;}
.y46{bottom:231.306240pt;}
.y70{bottom:232.900800pt;}
.y53{bottom:240.261120pt;}
.ye{bottom:242.014080pt;}
.y97{bottom:245.541120pt;}
.y57{bottom:249.701760pt;}
.y91{bottom:251.454720pt;}
.y26{bottom:252.257280pt;}
.y68{bottom:254.664960pt;}
.yd{bottom:267.294720pt;}
.y96{bottom:272.426880pt;}
.y56{bottom:274.982400pt;}
.y8b{bottom:275.130240pt;}
.y2c{bottom:277.052160pt;}
.y25{bottom:277.537920pt;}
.y90{bottom:278.509440pt;}
.y67{bottom:279.776640pt;}
.y7a{bottom:281.212800pt;}
.y9e{bottom:286.028160pt;}
.y13{bottom:288.744960pt;}
.y37{bottom:288.900480pt;}
.y52{bottom:290.653440pt;}
.y4e{bottom:290.984640pt;}
.y95{bottom:299.460480pt;}
.y8f{bottom:301.530240pt;}
.y30{bottom:301.868160pt;}
.y8a{bottom:302.016000pt;}
.y2b{bottom:302.332800pt;}
.y24{bottom:302.818560pt;}
.y66{bottom:305.057280pt;}
.y79{bottom:306.493440pt;}
.y6{bottom:310.016640pt;}
.y84{bottom:310.982880pt;}
.y45{bottom:318.172800pt;}
.y40{bottom:319.777920pt;}
.y89{bottom:325.226880pt;}
.y4d{bottom:326.032800pt;}
.y94{bottom:326.346240pt;}
.y2f{bottom:326.979840pt;}
.y2a{bottom:327.465600pt;}
.y23{bottom:327.930240pt;}
.y8e{bottom:328.584960pt;}
.y65{bottom:330.337920pt;}
.y1d{bottom:331.457280pt;}
.y9d{bottom:336.420480pt;}
.y71{bottom:337.370880pt;}
.y73{bottom:339.461760pt;}
.y51{bottom:341.214720pt;}
.y83{bottom:346.177440pt;}
.y7f{bottom:348.744000pt;}
.y2e{bottom:352.260480pt;}
.y35{bottom:352.577280pt;}
.y29{bottom:352.746240pt;}
.y22{bottom:353.210880pt;}
.y12{bottom:353.230080pt;}
.y93{bottom:353.379840pt;}
.y64{bottom:355.618560pt;}
.y1c{bottom:356.737920pt;}
.y78{bottom:357.054720pt;}
.y55{bottom:357.556480pt;}
.y85{bottom:358.177600pt;}
.yc{bottom:359.145600pt;}
.y4c{bottom:361.051680pt;}
.y72{bottom:363.137280pt;}
.y8d{bottom:364.890240pt;}
.y80{bottom:366.495360pt;}
.y7e{bottom:369.705600pt;}
.y88{bottom:375.450240pt;}
.y2d{bottom:377.541120pt;}
.y28{bottom:378.026880pt;}
.y21{bottom:378.491520pt;}
.y63{bottom:380.899200pt;}
.y82{bottom:381.225600pt;}
.y77{bottom:382.335360pt;}
.yb{bottom:384.426240pt;}
.y6f{bottom:386.496000pt;}
.y8c{bottom:388.101120pt;}
.y47{bottom:389.854080pt;}
.y50{bottom:391.628160pt;}
.ya1{bottom:394.811520pt;}
.y4b{bottom:396.246240pt;}
.y5{bottom:396.421920pt;}
.y92{bottom:397.710720pt;}
.y3f{bottom:401.860800pt;}
.y9f{bottom:402.677760pt;}
.y7d{bottom:403.462400pt;}
.y62{bottom:406.010880pt;}
.y76{bottom:407.468160pt;}
.y34{bottom:410.974080pt;}
.y6e{bottom:411.628800pt;}
.y9c{bottom:412.262400pt;}
.y48{bottom:413.542400pt;}
.y11{bottom:417.688320pt;}
.y1b{bottom:418.334400pt;}
.y61{bottom:431.291520pt;}
.y4a{bottom:431.294400pt;}
.y33{bottom:436.254720pt;}
.y6d{bottom:436.909440pt;}
.y7c{bottom:437.060800pt;}
.y4f{bottom:442.189440pt;}
.y3c{bottom:445.864320pt;}
.y5d{bottom:446.666880pt;}
.y5a{bottom:446.814720pt;}
.y44{bottom:450.341760pt;}
.y81{bottom:451.292640pt;}
.y75{bottom:458.029440pt;}
.y6c{bottom:462.190080pt;}
.y9b{bottom:462.654720pt;}
.ya0{bottom:464.907840pt;}
.y18{bottom:465.062400pt;}
.ya{bottom:465.379200pt;}
.y2{bottom:467.465600pt;}
.y7b{bottom:467.617920pt;}
.y3e{bottom:470.659200pt;}
.y3b{bottom:471.144960pt;}
.y5c{bottom:471.947520pt;}
.y59{bottom:472.095360pt;}
.ya2{bottom:473.862400pt;}
.y10{bottom:482.334720pt;}
.y4{bottom:482.973600pt;}
.y60{bottom:488.741760pt;}
.y17{bottom:490.343040pt;}
.y9{bottom:490.659840pt;}
.y1a{bottom:491.620800pt;}
.y58{bottom:497.376000pt;}
.y86{bottom:501.215040pt;}
.y49{bottom:501.390720pt;}
.y6b{bottom:512.104320pt;}
.y16{bottom:515.623680pt;}
.y32{bottom:529.372800pt;}
.y6a{bottom:535.148640pt;}
.y9a{bottom:544.432320pt;}
.y1{bottom:546.021600pt;}
.y3d{bottom:549.542400pt;}
.y43{bottom:549.690240pt;}
.y87{bottom:565.689600pt;}
.y19{bottom:570.662400pt;}
.y69{bottom:578.982720pt;}
.y99{bottom:579.451200pt;}
.yf{bottom:581.852160pt;}
.y3{bottom:589.865280pt;}
.y8{bottom:594.647520pt;}
.y15{bottom:600.591360pt;}
.y74{bottom:601.381920pt;}
.y3a{bottom:601.850400pt;}
.y31{bottom:606.652320pt;}
.y42{bottom:609.228960pt;}
.y20{bottom:613.855200pt;}
.h7{height:50.531250pt;}
.hb{height:53.746875pt;}
.h5{height:60.637500pt;}
.h9{height:61.050000pt;}
.hc{height:69.671250pt;}
.h6{height:77.700000pt;}
.h4{height:84.065625pt;}
.h8{height:84.637500pt;}
.h3{height:90.496875pt;}
.h2{height:94.171875pt;}
.ha{height:113.925000pt;}
.hd{height:117.600000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:85.772000pt;}
.x33{left:105.600000pt;}
.x29{left:124.481280pt;}
.x11{left:131.366400pt;}
.x4{left:136.005600pt;}
.x20{left:149.767200pt;}
.x3d{left:151.050240pt;}
.x3c{left:179.203200pt;}
.x36{left:183.849120pt;}
.x37{left:184.786080pt;}
.x21{left:191.832960pt;}
.x39{left:201.270720pt;}
.x23{left:203.850240pt;}
.x46{left:212.484960pt;}
.xa{left:217.432320pt;}
.x45{left:224.636160pt;}
.x22{left:232.485120pt;}
.x2a{left:260.650560pt;}
.x7{left:262.880640pt;}
.x2e{left:264.633600pt;}
.x47{left:276.003200pt;}
.x12{left:282.395520pt;}
.x2d{left:288.794880pt;}
.x41{left:303.838560pt;}
.x3e{left:339.672960pt;}
.x24{left:344.150400pt;}
.x2c{left:349.446240pt;}
.x28{left:353.292480pt;}
.x3f{left:355.512960pt;}
.x2{left:356.798400pt;}
.x3b{left:365.443680pt;}
.x3{left:366.546080pt;}
.x1{left:368.639200pt;}
.x2b{left:385.126560pt;}
.xb{left:395.367840pt;}
.x18{left:397.752960pt;}
.x1e{left:398.724480pt;}
.x44{left:404.480000pt;}
.x1a{left:407.193600pt;}
.xc{left:408.629760pt;}
.x38{left:411.354720pt;}
.xf{left:416.634240pt;}
.x1c{left:417.605760pt;}
.x13{left:422.083200pt;}
.x19{left:427.985760pt;}
.x5{left:431.030880pt;}
.x32{left:445.436640pt;}
.x17{left:453.283680pt;}
.x9{left:479.196480pt;}
.x10{left:480.806880pt;}
.x1d{left:482.388000pt;}
.x6{left:495.834240pt;}
.x25{left:499.044480pt;}
.x42{left:543.202560pt;}
.x14{left:561.601920pt;}
.x43{left:593.767680pt;}
.x2f{left:599.047680pt;}
.x26{left:634.085760pt;}
.x35{left:649.281600pt;}
.x8{left:704.795520pt;}
.x40{left:732.483840pt;}
.x30{left:739.368960pt;}
.x34{left:771.048960pt;}
.xd{left:784.960000pt;}
.xe{left:786.878400pt;}
.x1b{left:788.004800pt;}
.x15{left:792.633600pt;}
.x27{left:794.238720pt;}
.x31{left:843.511680pt;}
.x3a{left:900.486400pt;}
.x16{left:920.641920pt;}
}




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