
    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_06b6f68211d5467276f40771.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_22a7c5cd4a7f32c851b50dcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_a745e529fbb4705fafff310d.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;}
.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);}
.v10{vertical-align:-95.039962px;}
.v2{vertical-align:-78.479969px;}
.v7{vertical-align:-59.759976px;}
.va{vertical-align:-46.079982px;}
.v5{vertical-align:-44.639982px;}
.v1{vertical-align:-30.239988px;}
.v4{vertical-align:-22.319991px;}
.vf{vertical-align:-5.039998px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.599999px;}
.ve{vertical-align:18.719993px;}
.v9{vertical-align:22.319991px;}
.vd{vertical-align:29.519988px;}
.vb{vertical-align:33.839986px;}
.v3{vertical-align:50.399980px;}
.vc{vertical-align:77.759969px;}
.v8{vertical-align:79.199968px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-32.543987px;}
.ws5{word-spacing:-29.777748px;}
.ws0{word-spacing:-27.174229px;}
.ws2{word-spacing:-25.709750px;}
.ws3{word-spacing:-24.407990px;}
.wsf{word-spacing:-1.439999px;}
.wse{word-spacing:-1.008000px;}
.ws6{word-spacing:-0.271218px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.467856px;}
.ws11{word-spacing:5.183998px;}
.wsd{word-spacing:9.935996px;}
.wsb{word-spacing:14.831994px;}
.ws9{word-spacing:38.159985px;}
.wsc{word-spacing:50.543980px;}
.wsa{word-spacing:62.783975px;}
.ws10{word-spacing:135.071946px;}
.ws16{word-spacing:361.475925px;}
.ws19{word-spacing:362.195573px;}
.ws15{word-spacing:362.195925px;}
.ws18{word-spacing:402.515874px;}
.ws17{word-spacing:402.515909px;}
.ws1f{word-spacing:496.835520px;}
.ws1e{word-spacing:496.835871px;}
.ws1d{word-spacing:506.915516px;}
.ws1c{word-spacing:506.915867px;}
.ws14{word-spacing:511.235865px;}
.ws13{word-spacing:511.955865px;}
.ws20{word-spacing:545.075852px;}
.ws22{word-spacing:545.795817px;}
.ws21{word-spacing:586.115801px;}
.ws1a{word-spacing:660.995806px;}
.ws1b{word-spacing:661.715805px;}
.ws8{word-spacing:809.459676px;}
.ws12{word-spacing:1735.955268px;}
._8{margin-left:-2300.428404px;}
._9{margin-left:-2216.910814px;}
._3{margin-left:-12.980521px;}
._10{margin-left:-10.799996px;}
._4{margin-left:-8.796290px;}
._f{margin-left:-7.619071px;}
._e{margin-left:-6.580763px;}
._5{margin-left:-3.748968px;}
._0{margin-left:-1.797190px;}
._1{width:1.141187px;}
._2{width:2.946625px;}
._d{width:32.831987px;}
._11{width:36.311601px;}
._b{width:71.705216px;}
._c{width:81.802131px;}
._a{width:106.703957px;}
._19{width:116.532525px;}
._18{width:151.848300px;}
._17{width:238.346885px;}
._1a{width:347.363571px;}
._13{width:354.496881px;}
._1b{width:381.311559px;}
._15{width:387.137735px;}
._16{width:398.805362px;}
._14{width:462.441151px;}
._12{width:518.681499px;}
._6{width:1300.446627px;}
._7{width:2319.934183px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:84.239966px;}
.fs5{font-size:107.999957px;}
.fs3{font-size:113.759954px;}
.fs0{font-size:120.239952px;}
.fs8{font-size:129.599948px;}
.fs7{font-size:131.759947px;}
.fs6{font-size:143.999942px;}
.fs1{font-size:167.759933px;}
.fs4{font-size:215.999914px;}
.y0{bottom:0.000000px;}
.y6{bottom:49.200337px;}
.y74{bottom:49.380337px;}
.y2f{bottom:56.220335px;}
.y2{bottom:60.720333px;}
.y36{bottom:90.240321px;}
.y1{bottom:93.120320px;}
.y2e{bottom:99.420317px;}
.y2c{bottom:121.020309px;}
.y4d{bottom:122.280308px;}
.y69{bottom:131.280304px;}
.y5e{bottom:132.900304px;}
.y63{bottom:133.080304px;}
.y35{bottom:133.440304px;}
.y2d{bottom:142.620300px;}
.y11{bottom:143.340300px;}
.y56{bottom:157.560294px;}
.y52{bottom:157.740294px;}
.y68{bottom:164.220291px;}
.y4c{bottom:165.480291px;}
.y5d{bottom:165.840291px;}
.y62{bottom:166.020291px;}
.y70{bottom:174.840287px;}
.y34{bottom:176.640286px;}
.y2b{bottom:185.820283px;}
.y55{bottom:190.500281px;}
.y51{bottom:190.680281px;}
.y67{bottom:197.160278px;}
.y6d{bottom:197.340278px;}
.y4b{bottom:197.880278px;}
.y5c{bottom:198.780277px;}
.y61{bottom:198.960277px;}
.y19{bottom:214.980271px;}
.y33{bottom:219.840269px;}
.y13{bottom:226.680266px;}
.y2a{bottom:229.020265px;}
.y66{bottom:230.280265px;}
.y24{bottom:232.980264px;}
.y43{bottom:237.660262px;}
.y49{bottom:241.080261px;}
.y4a{bottom:241.260260px;}
.y18{bottom:254.580255px;}
.y12{bottom:262.680252px;}
.y23{bottom:265.380251px;}
.y29{bottom:272.220248px;}
.y48{bottom:273.480248px;}
.y27{bottom:293.820239px;}
.y22{bottom:297.780238px;}
.y47{bottom:305.880235px;}
.y32{bottom:306.240235px;}
.y28{bottom:315.420231px;}
.y5{bottom:319.560229px;}
.y75{bottom:326.940226px;}
.y6a{bottom:327.480226px;}
.y21{bottom:330.180225px;}
.y6c{bottom:336.660222px;}
.y71{bottom:340.620221px;}
.y46{bottom:349.080217px;}
.y31{bottom:349.440217px;}
.y5f{bottom:349.800217px;}
.y59{bottom:353.940215px;}
.y26{bottom:358.620214px;}
.y57{bottom:360.420213px;}
.y54{bottom:361.140213px;}
.y14{bottom:363.840211px;}
.y64{bottom:365.460211px;}
.y4{bottom:369.960209px;}
.y3e{bottom:370.320209px;}
.y45{bottom:381.480204px;}
.y1a{bottom:383.820203px;}
.y78{bottom:385.080203px;}
.y5a{bottom:387.240202px;}
.y72{bottom:388.140202px;}
.y30{bottom:392.640200px;}
.y58{bottom:393.720200px;}
.y65{bottom:396.780198px;}
.y60{bottom:397.500198px;}
.y53{bottom:400.200197px;}
.y6e{bottom:401.100197px;}
.y25{bottom:401.820196px;}
.y3d{bottom:406.320194px;}
.y6f{bottom:409.380193px;}
.y3{bottom:420.360189px;}
.y77{bottom:426.660186px;}
.y6b{bottom:432.240184px;}
.y3c{bottom:442.320180px;}
.y4f{bottom:448.800177px;}
.y5b{bottom:449.520177px;}
.y20{bottom:480.480165px;}
.ya{bottom:500.280157px;}
.y42{bottom:532.680144px;}
.y3a{bottom:541.320140px;}
.y1f{bottom:554.820135px;}
.y41{bottom:575.880127px;}
.y39{bottom:577.320126px;}
.y10{bottom:584.520123px;}
.y1b{bottom:590.280121px;}
.y44{bottom:596.580118px;}
.y37{bottom:601.800116px;}
.yf{bottom:616.920110px;}
.y17{bottom:617.280110px;}
.y40{bottom:619.080109px;}
.y9{bottom:625.380107px;}
.y1e{bottom:634.920103px;}
.ye{bottom:649.320097px;}
.y16{bottom:649.680097px;}
.y3b{bottom:659.220093px;}
.y38{bottom:661.380092px;}
.y3f{bottom:662.280092px;}
.y1d{bottom:670.920089px;}
.yd{bottom:681.720084px;}
.y15{bottom:682.080084px;}
.y73{bottom:682.260084px;}
.y76{bottom:687.300082px;}
.yc{bottom:714.120071px;}
.y8{bottom:720.420069px;}
.yb{bottom:746.520058px;}
.y7{bottom:763.980051px;}
.y4e{bottom:771.900048px;}
.y1c{bottom:781.800044px;}
.y50{bottom:784.680043px;}
.h3{height:69.473293px;}
.ha{height:73.933564px;}
.h8{height:74.830048px;}
.hc{height:83.310787px;}
.h6{height:89.068324px;}
.h11{height:93.550041px;}
.h4{height:93.818634px;}
.he{height:97.150039px;}
.h1{height:99.162734px;}
.hb{height:99.773398px;}
.hd{height:106.881988px;}
.h9{height:108.663355px;}
.hf{height:111.550034px;}
.h7{height:118.757765px;}
.h2{height:138.352796px;}
.h10{height:152.590017px;}
.h5{height:178.136647px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:123.285851px;}
.x4{left:131.745847px;}
.x2a{left:144.706442px;}
.x3{left:146.325841px;}
.x17{left:152.085839px;}
.x29{left:153.886438px;}
.x41{left:156.766437px;}
.x53{left:164.866434px;}
.x1e{left:169.546432px;}
.x72{left:174.586430px;}
.x60{left:179.266428px;}
.x24{left:182.506427px;}
.x73{left:183.946426px;}
.x62{left:187.006425px;}
.x49{left:188.086425px;}
.x15{left:196.366421px;}
.x22{left:200.146420px;}
.x23{left:205.366418px;}
.x18{left:206.985817px;}
.x10{left:209.686416px;}
.x25{left:215.266414px;}
.x61{left:216.346413px;}
.x30{left:221.386411px;}
.x79{left:227.326409px;}
.x47{left:229.666408px;}
.x77{left:237.766405px;}
.x52{left:238.846404px;}
.x6e{left:241.906403px;}
.x4e{left:257.926397px;}
.x59{left:259.186396px;}
.x5{left:261.345795px;}
.x1f{left:304.546378px;}
.x2f{left:322.546371px;}
.x5b{left:345.586362px;}
.x5c{left:351.526359px;}
.x42{left:355.486358px;}
.x11{left:356.926357px;}
.x31{left:358.546357px;}
.x2e{left:361.785755px;}
.x63{left:363.226355px;}
.x64{left:365.026354px;}
.x7d{left:377.446349px;}
.x36{left:386.446345px;}
.x3b{left:394.366342px;}
.x7b{left:404.986338px;}
.x71{left:406.246338px;}
.x33{left:407.326337px;}
.x12{left:410.386336px;}
.x32{left:412.546335px;}
.x1a{left:414.166334px;}
.x4a{left:417.046333px;}
.x6f{left:419.926332px;}
.x48{left:429.106328px;}
.x3d{left:434.146326px;}
.x54{left:437.566325px;}
.x3a{left:440.806324px;}
.x2b{left:443.686323px;}
.x78{left:444.766322px;}
.x51{left:447.286321px;}
.x4f{left:477.886309px;}
.x7e{left:481.306307px;}
.x2c{left:497.686301px;}
.x27{left:506.326297px;}
.x20{left:519.826292px;}
.x5d{left:520.906292px;}
.x66{left:535.846286px;}
.x65{left:537.106285px;}
.x68{left:543.046283px;}
.x74{left:544.306282px;}
.x43{left:548.626281px;}
.x44{left:554.206278px;}
.x2d{left:559.965676px;}
.x26{left:564.646274px;}
.x21{left:565.726274px;}
.x67{left:574.546270px;}
.x1b{left:586.246266px;}
.x70{left:597.946261px;}
.x7c{left:601.186260px;}
.xa{left:602.266259px;}
.x9{left:624.406250px;}
.x56{left:634.846246px;}
.x3f{left:657.346237px;}
.x4b{left:666.346233px;}
.x55{left:672.106231px;}
.x3e{left:673.366231px;}
.x8{left:689.746224px;}
.x38{left:694.066222px;}
.x19{left:696.226222px;}
.x5a{left:697.306221px;}
.x34{left:698.566221px;}
.x37{left:701.806219px;}
.x6b{left:707.026217px;}
.x14{left:710.626216px;}
.x69{left:713.866214px;}
.x6a{left:721.066212px;}
.x7{left:729.706208px;}
.x75{left:732.226207px;}
.x13{left:736.546205px;}
.x28{left:738.346205px;}
.x5e{left:753.286199px;}
.x6c{left:755.086198px;}
.x7a{left:758.686197px;}
.x40{left:777.046189px;}
.x1{left:796.846181px;}
.x57{left:823.306171px;}
.x4d{left:860.206156px;}
.x2{left:862.006155px;}
.x58{left:882.706147px;}
.x76{left:885.406146px;}
.x45{left:887.206145px;}
.x4c{left:889.006144px;}
.x5f{left:893.686143px;}
.x6d{left:896.206142px;}
.x6{left:898.366141px;}
.x1d{left:913.486135px;}
.x50{left:917.626133px;}
.x1c{left:930.946128px;}
.x46{left:939.946124px;}
.x7f{left:946.786121px;}
.x35{left:950.206120px;}
.xf{left:957.406117px;}
.xb{left:962.266115px;}
.x3c{left:966.226114px;}
.xc{left:973.066111px;}
.x39{left:981.526107px;}
.xe{left:994.846102px;}
.xd{left:1000.066100px;}
@media print{
.v10{vertical-align:-84.479966pt;}
.v2{vertical-align:-69.759972pt;}
.v7{vertical-align:-53.119979pt;}
.va{vertical-align:-40.959984pt;}
.v5{vertical-align:-39.679984pt;}
.v1{vertical-align:-26.879989pt;}
.v4{vertical-align:-19.839992pt;}
.vf{vertical-align:-4.479998pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.199999pt;}
.ve{vertical-align:16.639993pt;}
.v9{vertical-align:19.839992pt;}
.vd{vertical-align:26.239990pt;}
.vb{vertical-align:30.079988pt;}
.v3{vertical-align:44.799982pt;}
.vc{vertical-align:69.119972pt;}
.v8{vertical-align:70.399972pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-28.927988pt;}
.ws5{word-spacing:-26.469109pt;}
.ws0{word-spacing:-24.154870pt;}
.ws2{word-spacing:-22.853111pt;}
.ws3{word-spacing:-21.695991pt;}
.wsf{word-spacing:-1.279999pt;}
.wse{word-spacing:-0.896000pt;}
.ws6{word-spacing:-0.241082pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.415872pt;}
.ws11{word-spacing:4.607998pt;}
.wsd{word-spacing:8.831996pt;}
.wsb{word-spacing:13.183995pt;}
.ws9{word-spacing:33.919986pt;}
.wsc{word-spacing:44.927982pt;}
.wsa{word-spacing:55.807978pt;}
.ws10{word-spacing:120.063952pt;}
.ws16{word-spacing:321.311934pt;}
.ws19{word-spacing:321.951621pt;}
.ws15{word-spacing:321.951933pt;}
.ws18{word-spacing:357.791888pt;}
.ws17{word-spacing:357.791919pt;}
.ws1f{word-spacing:441.631573pt;}
.ws1e{word-spacing:441.631886pt;}
.ws1d{word-spacing:450.591569pt;}
.ws1c{word-spacing:450.591882pt;}
.ws14{word-spacing:454.431880pt;}
.ws13{word-spacing:455.071880pt;}
.ws20{word-spacing:484.511868pt;}
.ws22{word-spacing:485.151837pt;}
.ws21{word-spacing:520.991823pt;}
.ws1a{word-spacing:587.551827pt;}
.ws1b{word-spacing:588.191827pt;}
.ws8{word-spacing:719.519712pt;}
.ws12{word-spacing:1543.071349pt;}
._8{margin-left:-2044.825248pt;}
._9{margin-left:-1970.587390pt;}
._3{margin-left:-11.538241pt;}
._10{margin-left:-9.599996pt;}
._4{margin-left:-7.818925pt;}
._f{margin-left:-6.772508pt;}
._e{margin-left:-5.849567pt;}
._5{margin-left:-3.332416pt;}
._0{margin-left:-1.597503pt;}
._1{width:1.014389pt;}
._2{width:2.619222pt;}
._d{width:29.183988pt;}
._11{width:32.276979pt;}
._b{width:63.737970pt;}
._c{width:72.713006pt;}
._a{width:94.847962pt;}
._19{width:103.584467pt;}
._18{width:134.976267pt;}
._17{width:211.863898pt;}
._1a{width:308.767619pt;}
._13{width:315.108339pt;}
._1b{width:338.943608pt;}
._15{width:344.122431pt;}
._16{width:354.493655pt;}
._14{width:411.058801pt;}
._12{width:461.050221pt;}
._6{width:1155.952557pt;}
._7{width:2062.163718pt;}
.fs2{font-size:74.879970pt;}
.fs5{font-size:95.999962pt;}
.fs3{font-size:101.119960pt;}
.fs0{font-size:106.879957pt;}
.fs8{font-size:115.199954pt;}
.fs7{font-size:117.119953pt;}
.fs6{font-size:127.999949pt;}
.fs1{font-size:149.119940pt;}
.fs4{font-size:191.999923pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:43.733633pt;}
.y74{bottom:43.893633pt;}
.y2f{bottom:49.973631pt;}
.y2{bottom:53.973629pt;}
.y36{bottom:80.213619pt;}
.y1{bottom:82.773618pt;}
.y2e{bottom:88.373615pt;}
.y2c{bottom:107.573608pt;}
.y4d{bottom:108.693607pt;}
.y69{bottom:116.693604pt;}
.y5e{bottom:118.133603pt;}
.y63{bottom:118.293603pt;}
.y35{bottom:118.613603pt;}
.y2d{bottom:126.773600pt;}
.y11{bottom:127.413600pt;}
.y56{bottom:140.053595pt;}
.y52{bottom:140.213595pt;}
.y68{bottom:145.973592pt;}
.y4c{bottom:147.093592pt;}
.y5d{bottom:147.413592pt;}
.y62{bottom:147.573592pt;}
.y70{bottom:155.413589pt;}
.y34{bottom:157.013588pt;}
.y2b{bottom:165.173585pt;}
.y55{bottom:169.333583pt;}
.y51{bottom:169.493583pt;}
.y67{bottom:175.253581pt;}
.y6d{bottom:175.413581pt;}
.y4b{bottom:175.893580pt;}
.y5c{bottom:176.693580pt;}
.y61{bottom:176.853580pt;}
.y19{bottom:191.093574pt;}
.y33{bottom:195.413573pt;}
.y13{bottom:201.493570pt;}
.y2a{bottom:203.573569pt;}
.y66{bottom:204.693569pt;}
.y24{bottom:207.093568pt;}
.y43{bottom:211.253566pt;}
.y49{bottom:214.293565pt;}
.y4a{bottom:214.453565pt;}
.y18{bottom:226.293560pt;}
.y12{bottom:233.493557pt;}
.y23{bottom:235.893556pt;}
.y29{bottom:241.973554pt;}
.y48{bottom:243.093553pt;}
.y27{bottom:261.173546pt;}
.y22{bottom:264.693545pt;}
.y47{bottom:271.893542pt;}
.y32{bottom:272.213542pt;}
.y28{bottom:280.373539pt;}
.y5{bottom:284.053537pt;}
.y75{bottom:290.613534pt;}
.y6a{bottom:291.093534pt;}
.y21{bottom:293.493533pt;}
.y6c{bottom:299.253531pt;}
.y71{bottom:302.773530pt;}
.y46{bottom:310.293527pt;}
.y31{bottom:310.613526pt;}
.y5f{bottom:310.933526pt;}
.y59{bottom:314.613525pt;}
.y26{bottom:318.773523pt;}
.y57{bottom:320.373523pt;}
.y54{bottom:321.013522pt;}
.y14{bottom:323.413521pt;}
.y64{bottom:324.853521pt;}
.y4{bottom:328.853519pt;}
.y3e{bottom:329.173519pt;}
.y45{bottom:339.093515pt;}
.y1a{bottom:341.173514pt;}
.y78{bottom:342.293514pt;}
.y5a{bottom:344.213513pt;}
.y72{bottom:345.013513pt;}
.y30{bottom:349.013511pt;}
.y58{bottom:349.973511pt;}
.y65{bottom:352.693510pt;}
.y60{bottom:353.333509pt;}
.y53{bottom:355.733508pt;}
.y6e{bottom:356.533508pt;}
.y25{bottom:357.173508pt;}
.y3d{bottom:361.173506pt;}
.y6f{bottom:363.893505pt;}
.y3{bottom:373.653501pt;}
.y77{bottom:379.253499pt;}
.y6b{bottom:384.213497pt;}
.y3c{bottom:393.173493pt;}
.y4f{bottom:398.933491pt;}
.y5b{bottom:399.573491pt;}
.y20{bottom:427.093480pt;}
.ya{bottom:444.693473pt;}
.y42{bottom:473.493461pt;}
.y3a{bottom:481.173458pt;}
.y1f{bottom:493.173453pt;}
.y41{bottom:511.893446pt;}
.y39{bottom:513.173445pt;}
.y10{bottom:519.573443pt;}
.y1b{bottom:524.693441pt;}
.y44{bottom:530.293439pt;}
.y37{bottom:534.933437pt;}
.yf{bottom:548.373431pt;}
.y17{bottom:548.693431pt;}
.y40{bottom:550.293431pt;}
.y9{bottom:555.893428pt;}
.y1e{bottom:564.373425pt;}
.ye{bottom:577.173420pt;}
.y16{bottom:577.493420pt;}
.y3b{bottom:585.973416pt;}
.y38{bottom:587.893416pt;}
.y3f{bottom:588.693415pt;}
.y1d{bottom:596.373412pt;}
.yd{bottom:605.973408pt;}
.y15{bottom:606.293408pt;}
.y73{bottom:606.453408pt;}
.y76{bottom:610.933406pt;}
.yc{bottom:634.773397pt;}
.y8{bottom:640.373395pt;}
.yb{bottom:663.573385pt;}
.y7{bottom:679.093379pt;}
.y4e{bottom:686.133376pt;}
.y1c{bottom:694.933373pt;}
.y50{bottom:697.493372pt;}
.h3{height:61.754038pt;}
.ha{height:65.718724pt;}
.h8{height:66.515598pt;}
.hc{height:74.054033pt;}
.h6{height:79.171843pt;}
.h11{height:83.155592pt;}
.h4{height:83.394342pt;}
.he{height:86.355590pt;}
.h1{height:88.144652pt;}
.hb{height:88.687465pt;}
.hd{height:95.006212pt;}
.h9{height:96.589649pt;}
.hf{height:99.155585pt;}
.h7{height:105.562458pt;}
.h2{height:122.980263pt;}
.h10{height:135.635571pt;}
.h5{height:158.343687pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:109.587423pt;}
.x4{left:117.107420pt;}
.x2a{left:128.627949pt;}
.x3{left:130.067415pt;}
.x17{left:135.187413pt;}
.x29{left:136.787945pt;}
.x41{left:139.347944pt;}
.x53{left:146.547941pt;}
.x1e{left:150.707940pt;}
.x72{left:155.187938pt;}
.x60{left:159.347936pt;}
.x24{left:162.227935pt;}
.x73{left:163.507935pt;}
.x62{left:166.227934pt;}
.x49{left:167.187933pt;}
.x15{left:174.547930pt;}
.x22{left:177.907929pt;}
.x23{left:182.547927pt;}
.x18{left:183.987393pt;}
.x10{left:186.387925pt;}
.x25{left:191.347923pt;}
.x61{left:192.307923pt;}
.x30{left:196.787921pt;}
.x79{left:202.067919pt;}
.x47{left:204.147918pt;}
.x77{left:211.347915pt;}
.x52{left:212.307915pt;}
.x6e{left:215.027914pt;}
.x4e{left:229.267908pt;}
.x59{left:230.387908pt;}
.x5{left:232.307374pt;}
.x1f{left:270.707892pt;}
.x2f{left:286.707885pt;}
.x5b{left:307.187877pt;}
.x5c{left:312.467875pt;}
.x42{left:315.987874pt;}
.x11{left:317.267873pt;}
.x31{left:318.707873pt;}
.x2e{left:321.587338pt;}
.x63{left:322.867871pt;}
.x64{left:324.467870pt;}
.x7d{left:335.507866pt;}
.x36{left:343.507863pt;}
.x3b{left:350.547860pt;}
.x7b{left:359.987856pt;}
.x71{left:361.107856pt;}
.x33{left:362.067855pt;}
.x12{left:364.787854pt;}
.x32{left:366.707853pt;}
.x1a{left:368.147853pt;}
.x4a{left:370.707852pt;}
.x6f{left:373.267851pt;}
.x48{left:381.427847pt;}
.x3d{left:385.907846pt;}
.x54{left:388.947844pt;}
.x3a{left:391.827843pt;}
.x2b{left:394.387842pt;}
.x78{left:395.347842pt;}
.x51{left:397.587841pt;}
.x4f{left:424.787830pt;}
.x7e{left:427.827829pt;}
.x2c{left:442.387823pt;}
.x27{left:450.067820pt;}
.x20{left:462.067815pt;}
.x5d{left:463.027815pt;}
.x66{left:476.307809pt;}
.x65{left:477.427809pt;}
.x68{left:482.707807pt;}
.x74{left:483.827806pt;}
.x43{left:487.667805pt;}
.x44{left:492.627803pt;}
.x2d{left:497.747268pt;}
.x26{left:501.907799pt;}
.x21{left:502.867799pt;}
.x67{left:510.707796pt;}
.x1b{left:521.107792pt;}
.x70{left:531.507787pt;}
.x7c{left:534.387786pt;}
.xa{left:535.347786pt;}
.x9{left:555.027778pt;}
.x56{left:564.307774pt;}
.x3f{left:584.307766pt;}
.x4b{left:592.307763pt;}
.x55{left:597.427761pt;}
.x3e{left:598.547761pt;}
.x8{left:613.107755pt;}
.x38{left:616.947753pt;}
.x19{left:618.867752pt;}
.x5a{left:619.827752pt;}
.x34{left:620.947752pt;}
.x37{left:623.827750pt;}
.x6b{left:628.467749pt;}
.x14{left:631.667747pt;}
.x69{left:634.547746pt;}
.x6a{left:640.947744pt;}
.x7{left:648.627741pt;}
.x75{left:650.867740pt;}
.x13{left:654.707738pt;}
.x28{left:656.307737pt;}
.x5e{left:669.587732pt;}
.x6c{left:671.187732pt;}
.x7a{left:674.387730pt;}
.x40{left:690.707724pt;}
.x1{left:708.307717pt;}
.x57{left:731.827707pt;}
.x4d{left:764.627694pt;}
.x2{left:766.227694pt;}
.x58{left:784.627686pt;}
.x76{left:787.027685pt;}
.x45{left:788.627685pt;}
.x4c{left:790.227684pt;}
.x5f{left:794.387682pt;}
.x6d{left:796.627681pt;}
.x6{left:798.547681pt;}
.x1d{left:811.987675pt;}
.x50{left:815.667674pt;}
.x1c{left:827.507669pt;}
.x46{left:835.507666pt;}
.x7f{left:841.587663pt;}
.x35{left:844.627662pt;}
.xf{left:851.027660pt;}
.xb{left:855.347658pt;}
.x3c{left:858.867656pt;}
.xc{left:864.947654pt;}
.x39{left:872.467651pt;}
.xe{left:884.307646pt;}
.xd{left:888.947644pt;}
}




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