
    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_258ba5db864908bf6cfb6bda.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_18eceb3f0b06d6351b704fe8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cc266b8f97eb8ead3d4c80f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_95e5ce7c5318c665be563bd4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.877930;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_b1b5532a19cb628d5b8b52ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_70317389e5361f23885727a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004219px;}
.ls4{letter-spacing:0.037441px;}
.ls5{letter-spacing:0.106523px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.390937px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-43.446223px;}
.ws1a{word-spacing:-40.031984px;}
.wsd{word-spacing:-37.913745px;}
.ws1b{word-spacing:-33.426707px;}
.ws6{word-spacing:-28.475989px;}
.ws4{word-spacing:-27.174229px;}
.ws14{word-spacing:-24.587991px;}
.wse{word-spacing:-24.407990px;}
.ws9{word-spacing:-23.110450px;}
.wsb{word-spacing:-23.106231px;}
.ws3{word-spacing:-22.032689px;}
.ws19{word-spacing:-21.641751px;}
.wsc{word-spacing:-1.545198px;}
.wsa{word-spacing:-1.543865px;}
.ws13{word-spacing:-0.900069px;}
.ws18{word-spacing:-0.612210px;}
.ws15{word-spacing:-0.576070px;}
.ws16{word-spacing:-0.575648px;}
.ws12{word-spacing:-0.180281px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.107790px;}
.wsf{word-spacing:0.143860px;}
.ws10{word-spacing:0.252000px;}
.ws11{word-spacing:0.540070px;}
.ws5{word-spacing:0.719998px;}
.ws7{word-spacing:0.804288px;}
.ws8{word-spacing:1.807710px;}
.ws0{word-spacing:54.036014px;}
._2{margin-left:-13.155083px;}
._c{margin-left:-8.426162px;}
._9{margin-left:-7.007322px;}
._7{margin-left:-5.753193px;}
._3{margin-left:-3.615121px;}
._4{margin-left:-2.070030px;}
._1{margin-left:-1.043964px;}
._0{width:1.152017px;}
._5{width:2.753931px;}
._d{width:4.539848px;}
._6{width:5.615694px;}
._e{width:21.744725px;}
._b{width:23.768307px;}
._a{width:26.048982px;}
._10{width:27.928060px;}
._f{width:54.402655px;}
._8{width:134.027551px;}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(255,192,0);}
.fc1{color:rgb(226,6,19);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:77.759969px;}
.fs2{font-size:95.759962px;}
.fs9{font-size:102.239959px;}
.fs0{font-size:107.999957px;}
.fs3{font-size:120.239952px;}
.fs6{font-size:125.999950px;}
.fsa{font-size:143.999942px;}
.fs5{font-size:167.759933px;}
.fs7{font-size:179.999928px;}
.fs1{font-size:192.239923px;}
.fs8{font-size:197.999921px;}
.fsb{font-size:215.999914px;}
.fsc{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y35{bottom:224.700267px;}
.y78{bottom:235.680263px;}
.y53{bottom:241.800260px;}
.y97{bottom:242.880260px;}
.y49{bottom:250.800257px;}
.y6c{bottom:253.500256px;}
.y8c{bottom:262.500252px;}
.y34{bottom:264.120251px;}
.y77{bottom:264.840251px;}
.y52{bottom:267.720250px;}
.ya0{bottom:269.700249px;}
.y48{bottom:276.720246px;}
.y96{bottom:279.420245px;}
.y3e{bottom:283.020244px;}
.yaa{bottom:283.380244px;}
.y8b{bottom:288.420242px;}
.y33{bottom:288.600242px;}
.y82{bottom:291.840240px;}
.y6b{bottom:297.600238px;}
.y5c{bottom:299.760237px;}
.y51{bottom:308.580234px;}
.y76{bottom:308.940233px;}
.y9f{bottom:312.900232px;}
.y95{bottom:315.780231px;}
.y47{bottom:317.580230px;}
.y81{bottom:321.000229px;}
.y3d{bottom:324.060227px;}
.y63{bottom:324.420227px;}
.y5b{bottom:325.680227px;}
.ya9{bottom:327.840226px;}
.y32{bottom:328.200226px;}
.y50{bottom:334.500223px;}
.y75{bottom:338.100222px;}
.y8a{bottom:340.260221px;}
.y6a{bottom:341.700220px;}
.y46{bottom:343.500220px;}
.y3c{bottom:349.980217px;}
.y94{bottom:352.140216px;}
.y31{bottom:352.680216px;}
.y28{bottom:357.180214px;}
.y80{bottom:365.280211px;}
.y89{bottom:366.180211px;}
.y5a{bottom:366.540210px;}
.y9e{bottom:368.160210px;}
.y69{bottom:370.860209px;}
.y62{bottom:371.940208px;}
.ya8{bottom:372.300208px;}
.y1a{bottom:375.000207px;}
.y4f{bottom:375.540207px;}
.y27{bottom:380.220205px;}
.y74{bottom:382.380204px;}
.y45{bottom:384.540203px;}
.y93{bottom:388.680202px;}
.y3b{bottom:390.840201px;}
.y30{bottom:392.100200px;}
.ya{bottom:393.180200px;}
.y5{bottom:394.080199px;}
.y7f{bottom:394.440199px;}
.y4e{bottom:401.460196px;}
.y21{bottom:402.900196px;}
.y61{bottom:404.340195px;}
.ya7{bottom:404.700195px;}
.yac{bottom:406.680194px;}
.y59{bottom:407.400194px;}
.y19{bottom:409.020193px;}
.y9d{bottom:411.360192px;}
.y73{bottom:411.540192px;}
.y68{bottom:415.140191px;}
.y2f{bottom:416.580190px;}
.y3a{bottom:416.760190px;}
.y88{bottom:418.020190px;}
.y26{bottom:418.380190px;}
.y44{bottom:425.400187px;}
.y92{bottom:426.480186px;}
.y9{bottom:427.560186px;}
.y20{bottom:432.060184px;}
.y58{bottom:433.320184px;}
.y7e{bottom:438.540182px;}
.y12{bottom:440.520181px;}
.y4d{bottom:442.320180px;}
.y4{bottom:442.680180px;}
.y87{bottom:443.940179px;}
.y67{bottom:444.300179px;}
.ya6{bottom:448.980177px;}
.y43{bottom:451.320176px;}
.y60{bottom:451.680176px;}
.y18{bottom:454.920175px;}
.y72{bottom:455.640175px;}
.y2e{bottom:456.000175px;}
.y8{bottom:456.360174px;}
.y91{bottom:463.020172px;}
.y9c{bottom:466.620170px;}
.y7d{bottom:467.700170px;}
.y4c{bottom:468.240170px;}
.yab{bottom:471.480168px;}
.y1f{bottom:473.280168px;}
.y57{bottom:474.360167px;}
.y11{bottom:474.540167px;}
.ya5{bottom:481.380164px;}
.y39{bottom:483.540164px;}
.y71{bottom:484.800163px;}
.y66{bottom:488.400162px;}
.y17{bottom:488.940161px;}
.y3{bottom:491.280160px;}
.y42{bottom:492.180160px;}
.y25{bottom:494.340159px;}
.y2d{bottom:495.600159px;}
.y86{bottom:495.780159px;}
.y5f{bottom:499.020157px;}
.y56{bottom:500.280157px;}
.y1e{bottom:502.440156px;}
.y10{bottom:508.560154px;}
.y4b{bottom:509.100153px;}
.y7c{bottom:511.800152px;}
.ya4{bottom:513.780151px;}
.y90{bottom:514.860151px;}
.y2c{bottom:520.080149px;}
.y9b{bottom:521.700148px;}
.y16{bottom:522.960148px;}
.y38{bottom:524.580147px;}
.y70{bottom:528.900145px;}
.y1d{bottom:531.600144px;}
.y24{bottom:532.500144px;}
.yd{bottom:533.040144px;}
.y41{bottom:533.220144px;}
.y4a{bottom:535.020143px;}
.y2{bottom:539.880141px;}
.y7b{bottom:540.960141px;}
.y55{bottom:541.140141px;}
.y5e{bottom:546.540138px;}
.y85{bottom:547.620138px;}
.y8f{bottom:551.220137px;}
.y23{bottom:555.540135px;}
.y15{bottom:556.980134px;}
.y6f{bottom:558.060134px;}
.ya3{bottom:558.240134px;}
.y2b{bottom:559.500133px;}
.y65{bottom:561.660132px;}
.yc{bottom:563.100132px;}
.y37{bottom:565.440131px;}
.y54{bottom:567.060130px;}
.y1c{bottom:572.820128px;}
.y40{bottom:574.080127px;}
.y5d{bottom:578.940125px;}
.y2a{bottom:583.980123px;}
.y7a{bottom:585.240123px;}
.y9a{bottom:586.320122px;}
.y8e{bottom:587.580122px;}
.y1{bottom:588.480122px;}
.ya2{bottom:590.640121px;}
.y36{bottom:591.360120px;}
.yb{bottom:593.160120px;}
.y22{bottom:593.520120px;}
.y84{bottom:599.460117px;}
.y3f{bottom:600.000117px;}
.y6e{bottom:602.340116px;}
.y64{bottom:605.940115px;}
.yf{bottom:610.440113px;}
.y79{bottom:614.400111px;}
.y99{bottom:615.660111px;}
.y1b{bottom:620.340109px;}
.y14{bottom:621.960108px;}
.y83{bottom:625.380107px;}
.y6d{bottom:631.500104px;}
.y8d{bottom:645.180099px;}
.ya1{bottom:646.440098px;}
.ye{bottom:660.840093px;}
.y98{bottom:669.660089px;}
.y29{bottom:670.200089px;}
.y13{bottom:670.740089px;}
.y6{bottom:673.980087px;}
.y7{bottom:676.320086px;}
.h6{height:64.129193px;}
.h4{height:78.973914px;}
.hb{height:84.318013px;}
.h2{height:89.068324px;}
.h5{height:99.162734px;}
.hd{height:99.874648px;}
.h8{height:103.913044px;}
.hc{height:107.999957px;}
.h9{height:123.046826px;}
.h11{height:125.406512px;}
.ha{height:135.351508px;}
.h7{height:138.352796px;}
.hf{height:150.187440px;}
.h3{height:158.541616px;}
.h12{height:163.898372px;}
.he{height:187.734300px;}
.h10{height:225.281160px;}
.h1{height:892.500000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:123.465851px;}
.x1b{left:127.065849px;}
.x12{left:131.925847px;}
.xe{left:157.666437px;}
.xc{left:176.566429px;}
.xf{left:179.266428px;}
.x26{left:183.046427px;}
.xd{left:196.906421px;}
.x2{left:199.786420px;}
.x3{left:208.606417px;}
.x10{left:233.266407px;}
.xb{left:237.406405px;}
.x20{left:241.546403px;}
.x23{left:257.026397px;}
.x1c{left:268.006393px;}
.x1{left:276.646389px;}
.x21{left:282.766387px;}
.x24{left:291.226384px;}
.x22{left:323.266371px;}
.x25{left:331.726367px;}
.x1a{left:336.046366px;}
.x1d{left:355.846358px;}
.x19{left:361.246356px;}
.x15{left:369.706352px;}
.x1e{left:374.206350px;}
.x11{left:378.346349px;}
.x18{left:386.626345px;}
.x17{left:395.086342px;}
.x13{left:412.186335px;}
.x14{left:417.946333px;}
.x16{left:437.746325px;}
.x1f{left:445.306322px;}
.x8{left:897.106141px;}
.x9{left:898.546141px;}
.x7{left:899.626140px;}
.x6{left:906.106138px;}
.x4{left:910.606136px;}
.x5{left:922.126131px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003750pt;}
.ls4{letter-spacing:0.033281pt;}
.ls5{letter-spacing:0.094688pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.347500pt;}
.ws2{word-spacing:-38.618865pt;}
.ws1a{word-spacing:-35.583986pt;}
.wsd{word-spacing:-33.701107pt;}
.ws1b{word-spacing:-29.712628pt;}
.ws6{word-spacing:-25.311990pt;}
.ws4{word-spacing:-24.154870pt;}
.ws14{word-spacing:-21.855992pt;}
.wse{word-spacing:-21.695991pt;}
.ws9{word-spacing:-20.542622pt;}
.wsb{word-spacing:-20.538872pt;}
.ws3{word-spacing:-19.584612pt;}
.ws19{word-spacing:-19.237112pt;}
.wsc{word-spacing:-1.373509pt;}
.wsa{word-spacing:-1.372325pt;}
.ws13{word-spacing:-0.800062pt;}
.ws18{word-spacing:-0.544187pt;}
.ws15{word-spacing:-0.512062pt;}
.ws16{word-spacing:-0.511687pt;}
.ws12{word-spacing:-0.160250pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.095813pt;}
.wsf{word-spacing:0.127875pt;}
.ws10{word-spacing:0.224000pt;}
.ws11{word-spacing:0.480062pt;}
.ws5{word-spacing:0.639998pt;}
.ws7{word-spacing:0.714923pt;}
.ws8{word-spacing:1.606854pt;}
.ws0{word-spacing:48.032012pt;}
._2{margin-left:-11.693407pt;}
._c{margin-left:-7.489922pt;}
._9{margin-left:-6.228731pt;}
._7{margin-left:-5.113949pt;}
._3{margin-left:-3.213441pt;}
._4{margin-left:-1.840027pt;}
._1{margin-left:-0.927968pt;}
._0{width:1.024015pt;}
._5{width:2.447939pt;}
._d{width:4.035421pt;}
._6{width:4.991728pt;}
._e{width:19.328645pt;}
._b{width:21.127384pt;}
._a{width:23.154651pt;}
._10{width:24.824942pt;}
._f{width:48.357916pt;}
._8{width:119.135601pt;}
.fs4{font-size:69.119972pt;}
.fs2{font-size:85.119966pt;}
.fs9{font-size:90.879964pt;}
.fs0{font-size:95.999962pt;}
.fs3{font-size:106.879957pt;}
.fs6{font-size:111.999955pt;}
.fsa{font-size:127.999949pt;}
.fs5{font-size:149.119940pt;}
.fs7{font-size:159.999936pt;}
.fs1{font-size:170.879932pt;}
.fs8{font-size:175.999930pt;}
.fsb{font-size:191.999923pt;}
.fsc{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:199.733571pt;}
.y78{bottom:209.493567pt;}
.y53{bottom:214.933565pt;}
.y97{bottom:215.893564pt;}
.y49{bottom:222.933561pt;}
.y6c{bottom:225.333561pt;}
.y8c{bottom:233.333557pt;}
.y34{bottom:234.773557pt;}
.y77{bottom:235.413557pt;}
.y52{bottom:237.973555pt;}
.ya0{bottom:239.733555pt;}
.y48{bottom:245.973552pt;}
.y96{bottom:248.373551pt;}
.y3e{bottom:251.573550pt;}
.yaa{bottom:251.893550pt;}
.y8b{bottom:256.373548pt;}
.y33{bottom:256.533548pt;}
.y82{bottom:259.413547pt;}
.y6b{bottom:264.533545pt;}
.y5c{bottom:266.453544pt;}
.y51{bottom:274.293541pt;}
.y76{bottom:274.613541pt;}
.y9f{bottom:278.133539pt;}
.y95{bottom:280.693538pt;}
.y47{bottom:282.293538pt;}
.y81{bottom:285.333537pt;}
.y3d{bottom:288.053535pt;}
.y63{bottom:288.373535pt;}
.y5b{bottom:289.493535pt;}
.ya9{bottom:291.413534pt;}
.y32{bottom:291.733534pt;}
.y50{bottom:297.333532pt;}
.y75{bottom:300.533530pt;}
.y8a{bottom:302.453530pt;}
.y6a{bottom:303.733529pt;}
.y46{bottom:305.333529pt;}
.y3c{bottom:311.093526pt;}
.y94{bottom:313.013525pt;}
.y31{bottom:313.493525pt;}
.y28{bottom:317.493524pt;}
.y80{bottom:324.693521pt;}
.y89{bottom:325.493520pt;}
.y5a{bottom:325.813520pt;}
.y9e{bottom:327.253520pt;}
.y69{bottom:329.653519pt;}
.y62{bottom:330.613518pt;}
.ya8{bottom:330.933518pt;}
.y1a{bottom:333.333517pt;}
.y4f{bottom:333.813517pt;}
.y27{bottom:337.973515pt;}
.y74{bottom:339.893515pt;}
.y45{bottom:341.813514pt;}
.y93{bottom:345.493512pt;}
.y3b{bottom:347.413512pt;}
.y30{bottom:348.533511pt;}
.ya{bottom:349.493511pt;}
.y5{bottom:350.293511pt;}
.y7f{bottom:350.613510pt;}
.y4e{bottom:356.853508pt;}
.y21{bottom:358.133507pt;}
.y61{bottom:359.413507pt;}
.ya7{bottom:359.733507pt;}
.yac{bottom:361.493506pt;}
.y59{bottom:362.133506pt;}
.y19{bottom:363.573505pt;}
.y9d{bottom:365.653504pt;}
.y73{bottom:365.813504pt;}
.y68{bottom:369.013503pt;}
.y2f{bottom:370.293503pt;}
.y3a{bottom:370.453502pt;}
.y88{bottom:371.573502pt;}
.y26{bottom:371.893502pt;}
.y44{bottom:378.133499pt;}
.y92{bottom:379.093499pt;}
.y9{bottom:380.053499pt;}
.y20{bottom:384.053497pt;}
.y58{bottom:385.173497pt;}
.y7e{bottom:389.813495pt;}
.y12{bottom:391.573494pt;}
.y4d{bottom:393.173493pt;}
.y4{bottom:393.493493pt;}
.y87{bottom:394.613493pt;}
.y67{bottom:394.933493pt;}
.ya6{bottom:399.093491pt;}
.y43{bottom:401.173490pt;}
.y60{bottom:401.493490pt;}
.y18{bottom:404.373489pt;}
.y72{bottom:405.013489pt;}
.y2e{bottom:405.333489pt;}
.y8{bottom:405.653488pt;}
.y91{bottom:411.573486pt;}
.y9c{bottom:414.773485pt;}
.y7d{bottom:415.733484pt;}
.y4c{bottom:416.213484pt;}
.yab{bottom:419.093483pt;}
.y1f{bottom:420.693482pt;}
.y57{bottom:421.653482pt;}
.y11{bottom:421.813482pt;}
.ya5{bottom:427.893480pt;}
.y39{bottom:429.813479pt;}
.y71{bottom:430.933478pt;}
.y66{bottom:434.133477pt;}
.y17{bottom:434.613477pt;}
.y3{bottom:436.693476pt;}
.y42{bottom:437.493476pt;}
.y25{bottom:439.413475pt;}
.y2d{bottom:440.533474pt;}
.y86{bottom:440.693474pt;}
.y5f{bottom:443.573473pt;}
.y56{bottom:444.693473pt;}
.y1e{bottom:446.613472pt;}
.y10{bottom:452.053470pt;}
.y4b{bottom:452.533470pt;}
.y7c{bottom:454.933469pt;}
.ya4{bottom:456.693468pt;}
.y90{bottom:457.653468pt;}
.y2c{bottom:462.293466pt;}
.y9b{bottom:463.733465pt;}
.y16{bottom:464.853465pt;}
.y38{bottom:466.293464pt;}
.y70{bottom:470.133463pt;}
.y1d{bottom:472.533462pt;}
.y24{bottom:473.333461pt;}
.yd{bottom:473.813461pt;}
.y41{bottom:473.973461pt;}
.y4a{bottom:475.573460pt;}
.y2{bottom:479.893459pt;}
.y7b{bottom:480.853458pt;}
.y55{bottom:481.013458pt;}
.y5e{bottom:485.813456pt;}
.y85{bottom:486.773456pt;}
.y8f{bottom:489.973455pt;}
.y23{bottom:493.813453pt;}
.y15{bottom:495.093453pt;}
.y6f{bottom:496.053452pt;}
.ya3{bottom:496.213452pt;}
.y2b{bottom:497.333452pt;}
.y65{bottom:499.253451pt;}
.yc{bottom:500.533450pt;}
.y37{bottom:502.613450pt;}
.y54{bottom:504.053449pt;}
.y1c{bottom:509.173447pt;}
.y40{bottom:510.293447pt;}
.y5d{bottom:514.613445pt;}
.y2a{bottom:519.093443pt;}
.y7a{bottom:520.213443pt;}
.y9a{bottom:521.173442pt;}
.y8e{bottom:522.293442pt;}
.y1{bottom:523.093441pt;}
.ya2{bottom:525.013441pt;}
.y36{bottom:525.653440pt;}
.yb{bottom:527.253440pt;}
.y22{bottom:527.573440pt;}
.y84{bottom:532.853438pt;}
.y3f{bottom:533.333437pt;}
.y6e{bottom:535.413437pt;}
.y64{bottom:538.613435pt;}
.yf{bottom:542.613434pt;}
.y79{bottom:546.133432pt;}
.y99{bottom:547.253432pt;}
.y1b{bottom:551.413430pt;}
.y14{bottom:552.853430pt;}
.y83{bottom:555.893428pt;}
.y6d{bottom:561.333426pt;}
.y8d{bottom:573.493421pt;}
.ya1{bottom:574.613421pt;}
.ye{bottom:587.413416pt;}
.y98{bottom:595.253413pt;}
.y29{bottom:595.733412pt;}
.y13{bottom:596.213412pt;}
.y6{bottom:599.093411pt;}
.y7{bottom:601.173410pt;}
.h6{height:57.003727pt;}
.h4{height:70.199034pt;}
.hb{height:74.949345pt;}
.h2{height:79.171843pt;}
.h5{height:88.144652pt;}
.hd{height:88.777464pt;}
.h8{height:92.367151pt;}
.hc{height:95.999962pt;}
.h9{height:109.374956pt;}
.h11{height:111.472455pt;}
.ha{height:120.312452pt;}
.h7{height:122.980263pt;}
.hf{height:133.499947pt;}
.h3{height:140.925881pt;}
.h12{height:145.687442pt;}
.he{height:166.874933pt;}
.h10{height:200.249920pt;}
.h1{height:793.333333pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:109.747423pt;}
.x1b{left:112.947421pt;}
.x12{left:117.267420pt;}
.xe{left:140.147944pt;}
.xc{left:156.947937pt;}
.xf{left:159.347936pt;}
.x26{left:162.707935pt;}
.xd{left:175.027930pt;}
.x2{left:177.587929pt;}
.x3{left:185.427926pt;}
.x10{left:207.347917pt;}
.xb{left:211.027916pt;}
.x20{left:214.707914pt;}
.x23{left:228.467909pt;}
.x1c{left:238.227905pt;}
.x1{left:245.907902pt;}
.x21{left:251.347899pt;}
.x24{left:258.867896pt;}
.x22{left:287.347885pt;}
.x25{left:294.867882pt;}
.x1a{left:298.707881pt;}
.x1d{left:316.307873pt;}
.x19{left:321.107872pt;}
.x15{left:328.627869pt;}
.x1e{left:332.627867pt;}
.x11{left:336.307865pt;}
.x18{left:343.667863pt;}
.x17{left:351.187860pt;}
.x13{left:366.387853pt;}
.x14{left:371.507851pt;}
.x16{left:389.107844pt;}
.x1f{left:395.827842pt;}
.x8{left:797.427681pt;}
.x9{left:798.707681pt;}
.x7{left:799.667680pt;}
.x6{left:805.427678pt;}
.x4{left:809.427676pt;}
.x5{left:819.667672pt;}
}




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