
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef659935c087ae61604a5168.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_515cce5fbbdab0b6901dac36.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-71.730000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:4.841856px;}
.ls3{letter-spacing:5.326042px;}
.ls0{letter-spacing:94.124354px;}
.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;}
}
.ws24{word-spacing:-0.059776px;}
.ws6{word-spacing:0.000000px;}
.ws40{word-spacing:10.867277px;}
.ws23{word-spacing:14.405920px;}
.ws4a{word-spacing:14.525471px;}
.ws31{word-spacing:14.645022px;}
.ws26{word-spacing:15.900310px;}
.ws46{word-spacing:16.079636px;}
.wsa{word-spacing:16.623706px;}
.wse{word-spacing:16.731302px;}
.ws30{word-spacing:16.796944px;}
.ws47{word-spacing:16.856719px;}
.ws5{word-spacing:17.054093px;}
.ws12{word-spacing:17.269286px;}
.wsd{word-spacing:17.430682px;}
.wsc{word-spacing:17.484480px;}
.wsb{word-spacing:17.753472px;}
.ws7{word-spacing:18.183859px;}
.ws25{word-spacing:18.291334px;}
.ws11{word-spacing:18.345254px;}
.ws16{word-spacing:18.399053px;}
.ws10{word-spacing:18.506650px;}
.ws2e{word-spacing:18.829314px;}
.ws18{word-spacing:19.307519px;}
.ws14{word-spacing:19.690214px;}
.ws1a{word-spacing:19.905275px;}
.ws33{word-spacing:20.263928px;}
.ws1e{word-spacing:20.562806px;}
.ws4{word-spacing:20.712384px;}
.ws9{word-spacing:20.927578px;}
.ws29{word-spacing:20.981236px;}
.ws2f{word-spacing:21.339889px;}
.ws2d{word-spacing:21.638767px;}
.ws8{word-spacing:22.057344px;}
.ws13{word-spacing:22.111142px;}
.ws45{word-spacing:22.296299px;}
.ws19{word-spacing:22.475626px;}
.ws27{word-spacing:22.894055px;}
.ws32{word-spacing:23.312484px;}
.ws3{word-spacing:23.384371px;}
.ws2{word-spacing:23.456102px;}
.ws49{word-spacing:23.491811px;}
.ws22{word-spacing:23.611362px;}
.ws2c{word-spacing:24.747098px;}
.ws20{word-spacing:25.524181px;}
.wsf{word-spacing:25.554240px;}
.ws15{word-spacing:25.661837px;}
.ws48{word-spacing:26.600142px;}
.ws3e{word-spacing:26.827469px;}
.ws1f{word-spacing:26.899200px;}
.ws21{word-spacing:27.138122px;}
.ws2a{word-spacing:28.453186px;}
.ws28{word-spacing:28.692288px;}
.ws41{word-spacing:31.256870px;}
.ws1c{word-spacing:31.322414px;}
.ws1b{word-spacing:31.382190px;}
.ws35{word-spacing:31.504255px;}
.ws17{word-spacing:31.590332px;}
.ws3c{word-spacing:33.570202px;}
.ws2b{word-spacing:36.224014px;}
.ws1{word-spacing:37.081972px;}
.ws0{word-spacing:37.185264px;}
.ws3d{word-spacing:39.541824px;}
.ws3a{word-spacing:39.972211px;}
.ws42{word-spacing:40.456397px;}
.ws3b{word-spacing:40.617792px;}
.ws38{word-spacing:40.940582px;}
.ws3f{word-spacing:41.532365px;}
.ws36{word-spacing:41.639962px;}
.ws37{word-spacing:43.092518px;}
.ws39{word-spacing:43.253914px;}
.ws43{word-spacing:43.953293px;}
.ws1d{word-spacing:80.697600px;}
.ws44{word-spacing:94.684920px;}
.ws34{word-spacing:175.350312px;}
._1{margin-left:-9.399608px;}
._19{margin-left:-7.919102px;}
._3{margin-left:-5.953690px;}
._6{margin-left:-4.519066px;}
._0{margin-left:-3.098772px;}
._4{margin-left:-2.008474px;}
._8{margin-left:-1.004237px;}
._5{width:1.506355px;}
._2{width:2.995480px;}
._1d{width:4.303843px;}
._29{width:5.595062px;}
._2f{width:6.759319px;}
._2d{width:7.854653px;}
._2e{width:8.984275px;}
._30{width:11.280520px;}
._1c{width:16.426342px;}
._e{width:20.766182px;}
._7{width:24.101683px;}
._c{width:25.105920px;}
._a{width:27.275789px;}
._32{width:29.122853px;}
._9{width:32.171443px;}
._d{width:34.696366px;}
._1b{width:35.793869px;}
._31{width:38.340326px;}
._2b{width:40.204895px;}
._18{width:41.678587px;}
._2c{width:42.731160px;}
._2a{width:44.007091px;}
._b{width:45.782438px;}
._26{width:72.093315px;}
._1a{width:80.697600px;}
._f{width:94.684920px;}
._28{width:124.152005px;}
._14{width:125.588536px;}
._22{width:149.108222px;}
._17{width:156.970726px;}
._1f{width:179.455194px;}
._24{width:183.789964px;}
._12{width:188.352916px;}
._1e{width:294.360635px;}
._23{width:320.766031px;}
._15{width:407.908694px;}
._27{width:444.853758px;}
._20{width:483.002868px;}
._10{width:502.055264px;}
._21{width:529.574990px;}
._13{width:533.437454px;}
._25{width:584.674636px;}
._16{width:658.906439px;}
._11{width:752.993233px;}
.fc3{color:rgb(0,102,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y43{bottom:169.009500px;}
.y21{bottom:169.011000px;}
.y20{bottom:213.841500px;}
.y8c{bottom:226.936500px;}
.y1f{bottom:231.775500px;}
.y8b{bottom:244.869000px;}
.y54{bottom:247.924500px;}
.y1e{bottom:249.708000px;}
.y42{bottom:259.378500px;}
.y41{bottom:277.312500px;}
.y8a{bottom:277.597500px;}
.y71{bottom:277.795500px;}
.y1d{bottom:285.573000px;}
.y70{bottom:294.234000px;}
.y40{bottom:295.245000px;}
.y6f{bottom:310.672500px;}
.y1c{bottom:318.301500px;}
.y3f{bottom:322.849500px;}
.y89{bottom:327.010500px;}
.y3e{bottom:340.782000px;}
.y6e{bottom:343.548000px;}
.y88{bottom:344.943000px;}
.y6d{bottom:359.986500px;}
.y87{bottom:362.875500px;}
.y3d{bottom:366.102000px;}
.y1b{bottom:367.540500px;}
.y86{bottom:380.809500px;}
.y1a{bottom:385.473000px;}
.y3c{bottom:393.684000px;}
.y6c{bottom:396.684000px;}
.y85{bottom:398.742000px;}
.y19{bottom:403.405500px;}
.y84{bottom:416.674500px;}
.y3b{bottom:434.529000px;}
.y83{bottom:434.607000px;}
.y18{bottom:436.134000px;}
.y6b{bottom:452.410500px;}
.y3a{bottom:452.461500px;}
.y82{bottom:452.539500px;}
.y6a{bottom:468.849000px;}
.y39{bottom:480.066000px;}
.y81{bottom:482.428500px;}
.y69{bottom:485.286000px;}
.y17{bottom:485.374500px;}
.y38{bottom:501.693000px;}
.y68{bottom:501.724500px;}
.y16{bottom:501.811500px;}
.y80{bottom:515.155500px;}
.y67{bottom:518.163000px;}
.y15{bottom:518.250000px;}
.y37{bottom:523.318500px;}
.y66{bottom:534.601500px;}
.y14{bottom:534.688500px;}
.y36{bottom:544.945500px;}
.y65{bottom:551.040000px;}
.y13{bottom:551.127000px;}
.y7f{bottom:562.893000px;}
.y64{bottom:567.478500px;}
.y12{bottom:567.565500px;}
.y35{bottom:572.550000px;}
.y11{bottom:584.004000px;}
.y53{bottom:586.804500px;}
.y34{bottom:600.154500px;}
.y10{bottom:600.442500px;}
.y63{bottom:604.176000px;}
.y52{bottom:610.714500px;}
.yf{bottom:616.881000px;}
.y33{bottom:618.087000px;}
.ye{bottom:633.319500px;}
.y51{bottom:634.624500px;}
.y32{bottom:645.691500px;}
.y62{bottom:646.003500px;}
.yd{bottom:649.758000px;}
.y31{bottom:663.624000px;}
.y50{bottom:664.512000px;}
.yc{bottom:666.195000px;}
.y61{bottom:675.891000px;}
.y4f{bottom:682.444500px;}
.yb{bottom:682.633500px;}
.y30{bottom:688.944000px;}
.y7e{bottom:693.171000px;}
.ya{bottom:699.072000px;}
.y60{bottom:705.780000px;}
.y2f{bottom:706.878000px;}
.y7d{bottom:711.103500px;}
.y4e{bottom:712.333500px;}
.y9{bottom:715.510500px;}
.y7c{bottom:729.036000px;}
.y8{bottom:731.949000px;}
.y2e{bottom:734.458500px;}
.y5f{bottom:735.667500px;}
.y4d{bottom:736.243500px;}
.y7{bottom:748.387500px;}
.y7b{bottom:756.618000px;}
.y4c{bottom:760.153500px;}
.y5e{bottom:763.249500px;}
.y6{bottom:770.805000px;}
.y2d{bottom:775.303500px;}
.y4b{bottom:784.063500px;}
.y2c{bottom:793.236000px;}
.y7a{bottom:798.445500px;}
.y5d{bottom:798.966000px;}
.y4a{bottom:813.952500px;}
.y79{bottom:814.137000px;}
.y78{bottom:816.378000px;}
.y2b{bottom:820.818000px;}
.y5{bottom:823.590000px;}
.y77{bottom:834.310500px;}
.y5c{bottom:840.660000px;}
.y49{bottom:843.840000px;}
.y2a{bottom:856.534500px;}
.y4{bottom:858.652500px;}
.y76{bottom:861.892500px;}
.y48{bottom:871.422000px;}
.y5b{bottom:888.396000px;}
.y75{bottom:897.609000px;}
.y3{bottom:901.984500px;}
.y29{bottom:904.965000px;}
.y47{bottom:913.249500px;}
.y5a{bottom:921.105000px;}
.y28{bottom:922.897500px;}
.y2{bottom:934.860000px;}
.y59{bottom:939.636000px;}
.y27{bottom:940.831500px;}
.y46{bottom:943.137000px;}
.y58{bottom:958.165500px;}
.y26{bottom:958.764000px;}
.y74{bottom:960.921000px;}
.y1{bottom:967.737000px;}
.y45{bottom:973.024500px;}
.y25{bottom:976.696500px;}
.y73{bottom:977.359500px;}
.y72{bottom:993.796500px;}
.y24{bottom:994.629000px;}
.y57{bottom:995.227500px;}
.y44{bottom:1002.913500px;}
.y23{bottom:1012.561500px;}
.y56{bottom:1013.757000px;}
.y22{bottom:1030.494000px;}
.y55{bottom:1032.288000px;}
.h7{height:27.783619px;}
.h6{height:40.826735px;}
.h3{height:51.108480px;}
.h5{height:56.786820px;}
.h2{height:68.144640px;}
.h4{height:81.773340px;}
.h1{height:98.127780px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:137.701500px;}
.x36{left:138.760500px;}
.x1{left:145.014000px;}
.x2{left:146.310000px;}
.x37{left:148.251000px;}
.x43{left:149.337000px;}
.x47{left:153.388500px;}
.x26{left:155.968500px;}
.x12{left:160.119000px;}
.x10{left:169.075500px;}
.x7{left:175.062000px;}
.x38{left:176.482500px;}
.x39{left:188.451000px;}
.x35{left:190.584000px;}
.x1c{left:191.875500px;}
.x33{left:192.996000px;}
.x6{left:195.790500px;}
.xf{left:200.451000px;}
.x1d{left:207.937500px;}
.x34{left:220.276500px;}
.x2f{left:222.123000px;}
.x23{left:238.474500px;}
.x46{left:259.879500px;}
.x16{left:262.435500px;}
.x24{left:280.777500px;}
.x9{left:287.341500px;}
.x32{left:297.138000px;}
.x13{left:306.720000px;}
.x2b{left:314.815500px;}
.x2d{left:316.488000px;}
.x1e{left:320.115000px;}
.x3{left:323.145000px;}
.x44{left:335.685000px;}
.x1b{left:341.739000px;}
.x25{left:348.774000px;}
.x27{left:363.400500px;}
.x17{left:366.591000px;}
.xa{left:371.079000px;}
.x3f{left:373.297500px;}
.x1f{left:376.306500px;}
.x40{left:380.001000px;}
.x4{left:390.246000px;}
.x45{left:394.689000px;}
.x41{left:396.186000px;}
.x42{left:402.891000px;}
.x20{left:423.369000px;}
.x28{left:426.150000px;}
.x5{left:428.566500px;}
.x21{left:432.499500px;}
.x30{left:451.705500px;}
.x11{left:455.265000px;}
.x22{left:479.562000px;}
.x18{left:488.226000px;}
.xb{left:491.580000px;}
.x14{left:508.669500px;}
.x29{left:511.965000px;}
.x19{left:516.277500px;}
.xc{left:518.206500px;}
.x15{left:530.748000px;}
.x3a{left:539.142000px;}
.x3b{left:549.691500px;}
.x3c{left:579.520500px;}
.x2a{left:613.933500px;}
.x31{left:663.484500px;}
.x1a{left:692.818500px;}
.xd{left:703.260000px;}
.x3d{left:707.268000px;}
.x2c{left:709.705500px;}
.x8{left:710.985000px;}
.x2e{left:733.236000px;}
.x3e{left:776.148000px;}
@media print{
.v1{vertical-align:-63.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.303872pt;}
.ls3{letter-spacing:4.734259pt;}
.ls0{letter-spacing:83.666093pt;}
.ws24{word-spacing:-0.053134pt;}
.ws6{word-spacing:0.000000pt;}
.ws40{word-spacing:9.659802pt;}
.ws23{word-spacing:12.805262pt;}
.ws4a{word-spacing:12.911530pt;}
.ws31{word-spacing:13.017797pt;}
.ws26{word-spacing:14.133609pt;}
.ws46{word-spacing:14.293010pt;}
.wsa{word-spacing:14.776627pt;}
.wse{word-spacing:14.872269pt;}
.ws30{word-spacing:14.930617pt;}
.ws47{word-spacing:14.983750pt;}
.ws5{word-spacing:15.159194pt;}
.ws12{word-spacing:15.350477pt;}
.wsd{word-spacing:15.493939pt;}
.wsc{word-spacing:15.541760pt;}
.wsb{word-spacing:15.780864pt;}
.ws7{word-spacing:16.163430pt;}
.ws25{word-spacing:16.258963pt;}
.ws11{word-spacing:16.306893pt;}
.ws16{word-spacing:16.354714pt;}
.ws10{word-spacing:16.450355pt;}
.ws2e{word-spacing:16.737168pt;}
.ws18{word-spacing:17.162239pt;}
.ws14{word-spacing:17.502413pt;}
.ws1a{word-spacing:17.693578pt;}
.ws33{word-spacing:18.012381pt;}
.ws1e{word-spacing:18.278050pt;}
.ws4{word-spacing:18.411008pt;}
.ws9{word-spacing:18.602291pt;}
.ws29{word-spacing:18.649987pt;}
.ws2f{word-spacing:18.968790pt;}
.ws2d{word-spacing:19.234460pt;}
.ws8{word-spacing:19.606528pt;}
.ws13{word-spacing:19.654349pt;}
.ws45{word-spacing:19.818932pt;}
.ws19{word-spacing:19.978334pt;}
.ws27{word-spacing:20.350271pt;}
.ws32{word-spacing:20.722208pt;}
.ws3{word-spacing:20.786108pt;}
.ws2{word-spacing:20.849869pt;}
.ws49{word-spacing:20.881610pt;}
.ws22{word-spacing:20.987877pt;}
.ws2c{word-spacing:21.997421pt;}
.ws20{word-spacing:22.688161pt;}
.wsf{word-spacing:22.714880pt;}
.ws15{word-spacing:22.810522pt;}
.ws48{word-spacing:23.644571pt;}
.ws3e{word-spacing:23.846639pt;}
.ws1f{word-spacing:23.910400pt;}
.ws21{word-spacing:24.122775pt;}
.ws2a{word-spacing:25.291721pt;}
.ws28{word-spacing:25.504256pt;}
.ws41{word-spacing:27.783885pt;}
.ws1c{word-spacing:27.842146pt;}
.ws1b{word-spacing:27.895280pt;}
.ws35{word-spacing:28.003782pt;}
.ws17{word-spacing:28.080295pt;}
.ws3c{word-spacing:29.840179pt;}
.ws2b{word-spacing:32.199123pt;}
.ws1{word-spacing:32.961753pt;}
.ws0{word-spacing:33.053568pt;}
.ws3d{word-spacing:35.148288pt;}
.ws3a{word-spacing:35.530854pt;}
.ws42{word-spacing:35.961242pt;}
.ws3b{word-spacing:36.104704pt;}
.ws38{word-spacing:36.391629pt;}
.ws3f{word-spacing:36.917658pt;}
.ws36{word-spacing:37.013299pt;}
.ws37{word-spacing:38.304461pt;}
.ws39{word-spacing:38.447923pt;}
.ws43{word-spacing:39.069594pt;}
.ws1d{word-spacing:71.731200pt;}
.ws44{word-spacing:84.164373pt;}
.ws34{word-spacing:155.866944pt;}
._1{margin-left:-8.355207pt;}
._19{margin-left:-7.039202pt;}
._3{margin-left:-5.292169pt;}
._6{margin-left:-4.016947pt;}
._0{margin-left:-2.754464pt;}
._4{margin-left:-1.785310pt;}
._8{margin-left:-0.892655pt;}
._5{width:1.338982pt;}
._2{width:2.662649pt;}
._1d{width:3.825638pt;}
._29{width:4.973389pt;}
._2f{width:6.008284pt;}
._2d{width:6.981914pt;}
._2e{width:7.986022pt;}
._30{width:10.027129pt;}
._1c{width:14.601193pt;}
._e{width:18.458829pt;}
._7{width:21.423718pt;}
._c{width:22.316373pt;}
._a{width:24.245146pt;}
._32{width:25.886980pt;}
._9{width:28.596838pt;}
._d{width:30.841214pt;}
._1b{width:31.816772pt;}
._31{width:34.080290pt;}
._2b{width:35.737684pt;}
._18{width:37.047633pt;}
._2c{width:37.983253pt;}
._2a{width:39.117414pt;}
._b{width:40.695501pt;}
._26{width:64.082946pt;}
._1a{width:71.731200pt;}
._f{width:84.164373pt;}
._28{width:110.357338pt;}
._14{width:111.634254pt;}
._22{width:132.540641pt;}
._17{width:139.529534pt;}
._1f{width:159.515728pt;}
._24{width:163.368856pt;}
._12{width:167.424814pt;}
._1e{width:261.653897pt;}
._23{width:285.125361pt;}
._15{width:362.585506pt;}
._27{width:395.425563pt;}
._20{width:429.335882pt;}
._10{width:446.271346pt;}
._21{width:470.733324pt;}
._13{width:474.166626pt;}
._25{width:519.710787pt;}
._16{width:585.694612pt;}
._11{width:669.327318pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:150.230667pt;}
.y21{bottom:150.232000pt;}
.y20{bottom:190.081333pt;}
.y8c{bottom:201.721333pt;}
.y1f{bottom:206.022667pt;}
.y8b{bottom:217.661333pt;}
.y54{bottom:220.377333pt;}
.y1e{bottom:221.962667pt;}
.y42{bottom:230.558667pt;}
.y41{bottom:246.500000pt;}
.y8a{bottom:246.753333pt;}
.y71{bottom:246.929333pt;}
.y1d{bottom:253.842667pt;}
.y70{bottom:261.541333pt;}
.y40{bottom:262.440000pt;}
.y6f{bottom:276.153333pt;}
.y1c{bottom:282.934667pt;}
.y3f{bottom:286.977333pt;}
.y89{bottom:290.676000pt;}
.y3e{bottom:302.917333pt;}
.y6e{bottom:305.376000pt;}
.y88{bottom:306.616000pt;}
.y6d{bottom:319.988000pt;}
.y87{bottom:322.556000pt;}
.y3d{bottom:325.424000pt;}
.y1b{bottom:326.702667pt;}
.y86{bottom:338.497333pt;}
.y1a{bottom:342.642667pt;}
.y3c{bottom:349.941333pt;}
.y6c{bottom:352.608000pt;}
.y85{bottom:354.437333pt;}
.y19{bottom:358.582667pt;}
.y84{bottom:370.377333pt;}
.y3b{bottom:386.248000pt;}
.y83{bottom:386.317333pt;}
.y18{bottom:387.674667pt;}
.y6b{bottom:402.142667pt;}
.y3a{bottom:402.188000pt;}
.y82{bottom:402.257333pt;}
.y6a{bottom:416.754667pt;}
.y39{bottom:426.725333pt;}
.y81{bottom:428.825333pt;}
.y69{bottom:431.365333pt;}
.y17{bottom:431.444000pt;}
.y38{bottom:445.949333pt;}
.y68{bottom:445.977333pt;}
.y16{bottom:446.054667pt;}
.y80{bottom:457.916000pt;}
.y67{bottom:460.589333pt;}
.y15{bottom:460.666667pt;}
.y37{bottom:465.172000pt;}
.y66{bottom:475.201333pt;}
.y14{bottom:475.278667pt;}
.y36{bottom:484.396000pt;}
.y65{bottom:489.813333pt;}
.y13{bottom:489.890667pt;}
.y7f{bottom:500.349333pt;}
.y64{bottom:504.425333pt;}
.y12{bottom:504.502667pt;}
.y35{bottom:508.933333pt;}
.y11{bottom:519.114667pt;}
.y53{bottom:521.604000pt;}
.y34{bottom:533.470667pt;}
.y10{bottom:533.726667pt;}
.y63{bottom:537.045333pt;}
.y52{bottom:542.857333pt;}
.yf{bottom:548.338667pt;}
.y33{bottom:549.410667pt;}
.ye{bottom:562.950667pt;}
.y51{bottom:564.110667pt;}
.y32{bottom:573.948000pt;}
.y62{bottom:574.225333pt;}
.yd{bottom:577.562667pt;}
.y31{bottom:589.888000pt;}
.y50{bottom:590.677333pt;}
.yc{bottom:592.173333pt;}
.y61{bottom:600.792000pt;}
.y4f{bottom:606.617333pt;}
.yb{bottom:606.785333pt;}
.y30{bottom:612.394667pt;}
.y7e{bottom:616.152000pt;}
.ya{bottom:621.397333pt;}
.y60{bottom:627.360000pt;}
.y2f{bottom:628.336000pt;}
.y7d{bottom:632.092000pt;}
.y4e{bottom:633.185333pt;}
.y9{bottom:636.009333pt;}
.y7c{bottom:648.032000pt;}
.y8{bottom:650.621333pt;}
.y2e{bottom:652.852000pt;}
.y5f{bottom:653.926667pt;}
.y4d{bottom:654.438667pt;}
.y7{bottom:665.233333pt;}
.y7b{bottom:672.549333pt;}
.y4c{bottom:675.692000pt;}
.y5e{bottom:678.444000pt;}
.y6{bottom:685.160000pt;}
.y2d{bottom:689.158667pt;}
.y4b{bottom:696.945333pt;}
.y2c{bottom:705.098667pt;}
.y7a{bottom:709.729333pt;}
.y5d{bottom:710.192000pt;}
.y4a{bottom:723.513333pt;}
.y79{bottom:723.677333pt;}
.y78{bottom:725.669333pt;}
.y2b{bottom:729.616000pt;}
.y5{bottom:732.080000pt;}
.y77{bottom:741.609333pt;}
.y5c{bottom:747.253333pt;}
.y49{bottom:750.080000pt;}
.y2a{bottom:761.364000pt;}
.y4{bottom:763.246667pt;}
.y76{bottom:766.126667pt;}
.y48{bottom:774.597333pt;}
.y5b{bottom:789.685333pt;}
.y75{bottom:797.874667pt;}
.y3{bottom:801.764000pt;}
.y29{bottom:804.413333pt;}
.y47{bottom:811.777333pt;}
.y5a{bottom:818.760000pt;}
.y28{bottom:820.353333pt;}
.y2{bottom:830.986667pt;}
.y59{bottom:835.232000pt;}
.y27{bottom:836.294667pt;}
.y46{bottom:838.344000pt;}
.y58{bottom:851.702667pt;}
.y26{bottom:852.234667pt;}
.y74{bottom:854.152000pt;}
.y1{bottom:860.210667pt;}
.y45{bottom:864.910667pt;}
.y25{bottom:868.174667pt;}
.y73{bottom:868.764000pt;}
.y72{bottom:883.374667pt;}
.y24{bottom:884.114667pt;}
.y57{bottom:884.646667pt;}
.y44{bottom:891.478667pt;}
.y23{bottom:900.054667pt;}
.y56{bottom:901.117333pt;}
.y22{bottom:915.994667pt;}
.y55{bottom:917.589333pt;}
.h7{height:24.696550pt;}
.h6{height:36.290431pt;}
.h3{height:45.429760pt;}
.h5{height:50.477173pt;}
.h2{height:60.573013pt;}
.h4{height:72.687413pt;}
.h1{height:87.224693pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:122.401333pt;}
.x36{left:123.342667pt;}
.x1{left:128.901333pt;}
.x2{left:130.053333pt;}
.x37{left:131.778667pt;}
.x43{left:132.744000pt;}
.x47{left:136.345333pt;}
.x26{left:138.638667pt;}
.x12{left:142.328000pt;}
.x10{left:150.289333pt;}
.x7{left:155.610667pt;}
.x38{left:156.873333pt;}
.x39{left:167.512000pt;}
.x35{left:169.408000pt;}
.x1c{left:170.556000pt;}
.x33{left:171.552000pt;}
.x6{left:174.036000pt;}
.xf{left:178.178667pt;}
.x1d{left:184.833333pt;}
.x34{left:195.801333pt;}
.x2f{left:197.442667pt;}
.x23{left:211.977333pt;}
.x46{left:231.004000pt;}
.x16{left:233.276000pt;}
.x24{left:249.580000pt;}
.x9{left:255.414667pt;}
.x32{left:264.122667pt;}
.x13{left:272.640000pt;}
.x2b{left:279.836000pt;}
.x2d{left:281.322667pt;}
.x1e{left:284.546667pt;}
.x3{left:287.240000pt;}
.x44{left:298.386667pt;}
.x1b{left:303.768000pt;}
.x25{left:310.021333pt;}
.x27{left:323.022667pt;}
.x17{left:325.858667pt;}
.xa{left:329.848000pt;}
.x3f{left:331.820000pt;}
.x1f{left:334.494667pt;}
.x40{left:337.778667pt;}
.x4{left:346.885333pt;}
.x45{left:350.834667pt;}
.x41{left:352.165333pt;}
.x42{left:358.125333pt;}
.x20{left:376.328000pt;}
.x28{left:378.800000pt;}
.x5{left:380.948000pt;}
.x21{left:384.444000pt;}
.x30{left:401.516000pt;}
.x11{left:404.680000pt;}
.x22{left:426.277333pt;}
.x18{left:433.978667pt;}
.xb{left:436.960000pt;}
.x14{left:452.150667pt;}
.x29{left:455.080000pt;}
.x19{left:458.913333pt;}
.xc{left:460.628000pt;}
.x15{left:471.776000pt;}
.x3a{left:479.237333pt;}
.x3b{left:488.614667pt;}
.x3c{left:515.129333pt;}
.x2a{left:545.718667pt;}
.x31{left:589.764000pt;}
.x1a{left:615.838667pt;}
.xd{left:625.120000pt;}
.x3d{left:628.682667pt;}
.x2c{left:630.849333pt;}
.x8{left:631.986667pt;}
.x2e{left:651.765333pt;}
.x3e{left:689.909333pt;}
}




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