
    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_bbae100d5d94935c3a3e9fec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109375;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_aadaeb756f45975570a7b22b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.054199;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_5ae5d42c5af3033f3a6494f2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_04dee1a7c45573a9b054a805.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059082;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_0f926bacba2f156450422305.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_ba30628873d55df2caba3f1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:56.206058px;}
.ls4{letter-spacing:61.790375px;}
.ls5{letter-spacing:94.190362px;}
.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;}
}
.ws2c{word-spacing:-59.183979px;}
.ws0{word-spacing:-53.999978px;}
.ws3a{word-spacing:-53.945978px;}
.ws2{word-spacing:-48.599981px;}
.ws3c{word-spacing:-35.153986px;}
.ws6{word-spacing:-33.695987px;}
.ws29{word-spacing:-32.399987px;}
.ws3b{word-spacing:-27.053989px;}
.ws37{word-spacing:-25.559990px;}
.ws38{word-spacing:-17.999993px;}
.ws36{word-spacing:-16.559993px;}
.ws11{word-spacing:-6.616136px;}
.wsa{word-spacing:-6.046846px;}
.ws4{word-spacing:-1.551568px;}
.ws1a{word-spacing:-1.295999px;}
.wse{word-spacing:-0.871975px;}
.ws26{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.180000px;}
.ws2f{word-spacing:-0.144000px;}
.ws20{word-spacing:-0.035964px;}
.ws9{word-spacing:-0.021561px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.017982px;}
.ws15{word-spacing:0.360000px;}
.ws1e{word-spacing:0.495124px;}
.ws23{word-spacing:0.720000px;}
.ws32{word-spacing:1.008000px;}
.ws10{word-spacing:1.287886px;}
.ws39{word-spacing:1.819473px;}
.wsf{word-spacing:4.167857px;}
.ws33{word-spacing:4.607998px;}
.ws8{word-spacing:5.812594px;}
.ws3{word-spacing:6.014803px;}
.ws21{word-spacing:7.884051px;}
.ws25{word-spacing:10.079996px;}
.ws34{word-spacing:10.367996px;}
.ws24{word-spacing:11.375995px;}
.wsb{word-spacing:11.498478px;}
.ws30{word-spacing:12.959995px;}
.ws1d{word-spacing:14.582811px;}
.ws19{word-spacing:14.831994px;}
.ws2a{word-spacing:15.936860px;}
.wsd{word-spacing:17.462938px;}
.ws31{word-spacing:18.575993px;}
.ws12{word-spacing:21.059992px;}
.ws5{word-spacing:21.873338px;}
.ws35{word-spacing:23.327991px;}
.ws13{word-spacing:24.659990px;}
.wsc{word-spacing:25.178378px;}
.ws16{word-spacing:25.185878px;}
.ws1c{word-spacing:25.972546px;}
.ws1f{word-spacing:31.949951px;}
.ws2e{word-spacing:37.007985px;}
.ws7{word-spacing:39.652602px;}
.ws17{word-spacing:48.527981px;}
.ws2d{word-spacing:52.415979px;}
.ws2b{word-spacing:52.627479px;}
.ws28{word-spacing:76.175970px;}
.ws18{word-spacing:78.047969px;}
.ws27{word-spacing:91.007964px;}
.ws1b{word-spacing:99.207829px;}
._2d{margin-left:-25.775776px;}
._2c{margin-left:-23.225356px;}
._26{margin-left:-16.074497px;}
._4{margin-left:-13.013120px;}
._1e{margin-left:-11.231996px;}
._5{margin-left:-9.154194px;}
._3{margin-left:-7.496885px;}
._1{margin-left:-6.406525px;}
._6{margin-left:-5.039943px;}
._23{margin-left:-3.887998px;}
._7{margin-left:-2.807823px;}
._0{margin-left:-1.285661px;}
._2{width:1.132031px;}
._d{width:2.224289px;}
._9{width:3.651061px;}
._8{width:4.968917px;}
._15{width:6.967966px;}
._2a{width:27.933036px;}
._21{width:29.771684px;}
._14{width:31.104512px;}
._19{width:33.073476px;}
._13{width:35.621466px;}
._22{width:37.102483px;}
._1a{width:39.781424px;}
._18{width:42.103525px;}
._a{width:43.534757px;}
._12{width:45.576612px;}
._10{width:46.604077px;}
._e{width:47.683360px;}
._2b{width:48.815916px;}
._11{width:51.488515px;}
._1c{width:52.652917px;}
._1d{width:53.946471px;}
._b{width:55.569324px;}
._17{width:57.343333px;}
._f{width:58.863881px;}
._20{width:60.005528px;}
._24{width:61.579191px;}
._16{width:63.025637px;}
._25{width:69.464511px;}
._c{width:73.211203px;}
._27{width:82.090679px;}
._29{width:102.915637px;}
._1b{width:105.027106px;}
._28{width:121.771744px;}
._1f{width:135.476916px;}
.fc3{color:rgb(211,72,23);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(105,100,100);}
.fsf{font-size:66.239974px;}
.fs11{font-size:71.999971px;}
.fs8{font-size:95.759962px;}
.fs10{font-size:102.239959px;}
.fsd{font-size:113.759954px;}
.fs12{font-size:120.239952px;}
.fs7{font-size:122.399951px;}
.fsc{font-size:125.999950px;}
.fsa{font-size:131.759947px;}
.fs4{font-size:132.479947px;}
.fs5{font-size:143.999942px;}
.fs3{font-size:149.759940px;}
.fs0{font-size:156.239938px;}
.fsb{font-size:161.999935px;}
.fse{font-size:167.759933px;}
.fs6{font-size:179.999928px;}
.fs2{font-size:192.239923px;}
.fs1{font-size:215.999914px;}
.fs9{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y63{bottom:154.140295px;}
.y10{bottom:163.500292px;}
.y25{bottom:171.420288px;}
.y33{bottom:174.300287px;}
.y51{bottom:175.200287px;}
.y6d{bottom:178.440286px;}
.y62{bottom:186.540282px;}
.y77{bottom:190.500281px;}
.y47{bottom:192.120280px;}
.yf{bottom:202.200276px;}
.y84{bottom:203.100276px;}
.y6c{bottom:204.720275px;}
.y24{bottom:208.500274px;}
.y50{bottom:211.020273px;}
.y32{bottom:213.180272px;}
.y3f{bottom:216.960270px;}
.y61{bottom:219.120269px;}
.y5b{bottom:219.300269px;}
.y6b{bottom:231.180265px;}
.y46{bottom:231.900264px;}
.y83{bottom:234.060263px;}
.y27{bottom:245.220259px;}
.y23{bottom:245.760259px;}
.y4f{bottom:247.020258px;}
.y1b{bottom:249.000257px;}
.ye{bottom:249.540257px;}
.y3e{bottom:250.980257px;}
.y31{bottom:252.060256px;}
.y5a{bottom:256.380254px;}
.y6a{bottom:257.460254px;}
.y82{bottom:265.020251px;}
.y45{bottom:271.680248px;}
.y76{bottom:279.780245px;}
.y85{bottom:280.500245px;}
.y22{bottom:282.840244px;}
.y69{bottom:283.920243px;}
.y3d{bottom:285.000243px;}
.y26{bottom:291.660240px;}
.y59{bottom:293.460240px;}
.y1a{bottom:295.800239px;}
.y81{bottom:295.980239px;}
.yd{bottom:296.700238px;}
.y30{bottom:299.940237px;}
.y60{bottom:307.140234px;}
.y75{bottom:313.800231px;}
.y3c{bottom:319.020229px;}
.y71{bottom:320.460229px;}
.y4e{bottom:321.000229px;}
.y3{bottom:322.620228px;}
.y21{bottom:326.220227px;}
.y80{bottom:326.940226px;}
.y58{bottom:330.720225px;}
.y2f{bottom:338.820221px;}
.y5f{bottom:339.720221px;}
.y38{bottom:342.420220px;}
.yc{bottom:344.040219px;}
.y19{bottom:351.600216px;}
.y44{bottom:353.040216px;}
.y4d{bottom:358.080214px;}
.y57{bottom:367.800210px;}
.y20{bottom:369.420209px;}
.y70{bottom:376.260206px;}
.y2e{bottom:377.700206px;}
.y2{bottom:378.420206px;}
.y74{bottom:385.980203px;}
.y37{bottom:389.220201px;}
.y43{bottom:394.800199px;}
.y4c{bottom:395.160199px;}
.y18{bottom:398.400198px;}
.y56{bottom:404.880195px;}
.yb{bottom:412.980192px;}
.y73{bottom:420.000189px;}
.y2d{bottom:425.580187px;}
.y3b{bottom:430.080185px;}
.y6f{bottom:432.240184px;}
.y1{bottom:434.220183px;}
.y36{bottom:436.020183px;}
.y7f{bottom:441.420180px;}
.y5e{bottom:443.940179px;}
.y17{bottom:445.200179px;}
.y7b{bottom:457.080174px;}
.ya{bottom:462.480172px;}
.y55{bottom:464.100171px;}
.y7e{bottom:472.380168px;}
.y2c{bottom:473.460168px;}
.y1f{bottom:475.080167px;}
.y5d{bottom:476.520166px;}
.y35{bottom:482.820164px;}
.y6e{bottom:488.040162px;}
.y16{bottom:492.000160px;}
.y4b{bottom:499.560157px;}
.y54{bottom:501.360156px;}
.y7d{bottom:503.340156px;}
.y88{bottom:504.420155px;}
.y6{bottom:508.920153px;}
.y42{bottom:509.280153px;}
.y7a{bottom:519.000149px;}
.y2b{bottom:521.340148px;}
.y1e{bottom:521.520148px;}
.y34{bottom:529.620145px;}
.y7c{bottom:534.300143px;}
.y4a{bottom:536.820142px;}
.y53{bottom:538.440142px;}
.y15{bottom:547.800138px;}
.y41{bottom:551.040137px;}
.y2a{bottom:560.220133px;}
.y68{bottom:564.720131px;}
.y1d{bottom:567.960130px;}
.y87{bottom:569.220129px;}
.y5{bottom:573.720128px;}
.y49{bottom:573.900127px;}
.y52{bottom:575.520127px;}
.y67{bottom:588.480122px;}
.y3a{bottom:592.080120px;}
.y9{bottom:592.260120px;}
.y40{bottom:592.800120px;}
.y14{bottom:594.600119px;}
.y5c{bottom:597.120118px;}
.y66{bottom:605.580115px;}
.y29{bottom:608.100114px;}
.y48{bottom:610.980113px;}
.y1c{bottom:614.400111px;}
.y72{bottom:615.480111px;}
.y86{bottom:634.020103px;}
.y4{bottom:638.520102px;}
.y13{bottom:641.400100px;}
.y28{bottom:646.980098px;}
.y8{bottom:712.860072px;}
.y12{bottom:713.040072px;}
.y78{bottom:715.020071px;}
.y39{bottom:715.200071px;}
.y65{bottom:759.480053px;}
.y79{bottom:770.820049px;}
.y7{bottom:777.660046px;}
.y11{bottom:777.840046px;}
.y64{bottom:809.880033px;}
.hf{height:65.010911px;}
.h11{height:70.664034px;}
.hd{height:91.707854px;}
.h12{height:96.931719px;}
.h10{height:100.342929px;}
.hc{height:101.575155px;}
.h9{height:106.218590px;}
.h7{height:116.085891px;}
.h5{height:120.729327px;}
.he{height:125.819950px;}
.h1{height:125.953192px;}
.hb{height:130.596627px;}
.h6{height:145.107364px;}
.h4{height:154.974665px;}
.ha{height:161.999935px;}
.h3{height:174.128837px;}
.h2{height:189.527268px;}
.h8{height:193.283009px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:151.546439px;}
.x43{left:166.126434px;}
.x13{left:186.826425px;}
.xe{left:210.226416px;}
.x1e{left:215.266414px;}
.x30{left:216.886413px;}
.x14{left:219.226412px;}
.x5{left:221.746411px;}
.x12{left:223.186411px;}
.xc{left:225.526410px;}
.xa{left:228.766408px;}
.x1f{left:236.146406px;}
.x1a{left:237.406405px;}
.xf{left:242.626403px;}
.x11{left:246.406401px;}
.xb{left:255.766398px;}
.x42{left:257.206397px;}
.x1b{left:261.706395px;}
.x2e{left:270.886392px;}
.x9{left:282.586387px;}
.x7{left:284.206386px;}
.x24{left:300.586380px;}
.x21{left:305.806378px;}
.x2c{left:308.146377px;}
.x1d{left:315.166374px;}
.x22{left:320.926372px;}
.x26{left:327.406369px;}
.x2d{left:331.726367px;}
.x23{left:335.146366px;}
.x25{left:346.486361px;}
.x1{left:364.486354px;}
.x32{left:366.826353px;}
.x15{left:370.246352px;}
.x40{left:393.286343px;}
.x18{left:397.786341px;}
.x20{left:401.746339px;}
.x1c{left:403.726339px;}
.x2{left:404.806338px;}
.x3{left:408.226337px;}
.x19{left:411.106336px;}
.x31{left:412.186335px;}
.x6{left:419.746332px;}
.xd{left:421.186332px;}
.x33{left:425.866330px;}
.x10{left:432.706327px;}
.x34{left:439.006324px;}
.x17{left:457.366317px;}
.x2f{left:466.186314px;}
.x35{left:467.806313px;}
.x36{left:473.926310px;}
.x2b{left:487.606305px;}
.x16{left:489.046304px;}
.x41{left:490.306304px;}
.x8{left:558.346277px;}
.x3d{left:662.026235px;}
.x38{left:663.106235px;}
.x3f{left:665.446234px;}
.x3b{left:667.966233px;}
.x29{left:669.406232px;}
.x3e{left:674.251560px;}
.x28{left:680.386228px;}
.x37{left:690.826224px;}
.x39{left:696.406221px;}
.x3a{left:697.486221px;}
.x3c{left:706.486217px;}
.x2a{left:716.386213px;}
.x27{left:720.166212px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:49.960940pt;}
.ls4{letter-spacing:54.924778pt;}
.ls5{letter-spacing:83.724767pt;}
.ws2c{word-spacing:-52.607982pt;}
.ws0{word-spacing:-47.999981pt;}
.ws3a{word-spacing:-47.951981pt;}
.ws2{word-spacing:-43.199983pt;}
.ws3c{word-spacing:-31.247988pt;}
.ws6{word-spacing:-29.951988pt;}
.ws29{word-spacing:-28.799988pt;}
.ws3b{word-spacing:-24.047990pt;}
.ws37{word-spacing:-22.719991pt;}
.ws38{word-spacing:-15.999994pt;}
.ws36{word-spacing:-14.719994pt;}
.ws11{word-spacing:-5.881010pt;}
.wsa{word-spacing:-5.374974pt;}
.ws4{word-spacing:-1.379172pt;}
.ws1a{word-spacing:-1.152000pt;}
.wse{word-spacing:-0.775089pt;}
.ws26{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.160000pt;}
.ws2f{word-spacing:-0.128000pt;}
.ws20{word-spacing:-0.031968pt;}
.ws9{word-spacing:-0.019165pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.015984pt;}
.ws15{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.440111pt;}
.ws23{word-spacing:0.640000pt;}
.ws32{word-spacing:0.896000pt;}
.ws10{word-spacing:1.144787pt;}
.ws39{word-spacing:1.617309pt;}
.wsf{word-spacing:3.704761pt;}
.ws33{word-spacing:4.095998pt;}
.ws8{word-spacing:5.166751pt;}
.ws3{word-spacing:5.346491pt;}
.ws21{word-spacing:7.008045pt;}
.ws25{word-spacing:8.959996pt;}
.ws34{word-spacing:9.215996pt;}
.ws24{word-spacing:10.111996pt;}
.wsb{word-spacing:10.220870pt;}
.ws30{word-spacing:11.519995pt;}
.ws1d{word-spacing:12.962498pt;}
.ws19{word-spacing:13.183995pt;}
.ws2a{word-spacing:14.166097pt;}
.wsd{word-spacing:15.522611pt;}
.ws31{word-spacing:16.511993pt;}
.ws12{word-spacing:18.719993pt;}
.ws5{word-spacing:19.442967pt;}
.ws35{word-spacing:20.735992pt;}
.ws13{word-spacing:21.919991pt;}
.wsc{word-spacing:22.380781pt;}
.ws16{word-spacing:22.387447pt;}
.ws1c{word-spacing:23.086708pt;}
.ws1f{word-spacing:28.399957pt;}
.ws2e{word-spacing:32.895987pt;}
.ws7{word-spacing:35.246758pt;}
.ws17{word-spacing:43.135983pt;}
.ws2d{word-spacing:46.591981pt;}
.ws2b{word-spacing:46.779981pt;}
.ws28{word-spacing:67.711973pt;}
.ws18{word-spacing:69.375972pt;}
.ws27{word-spacing:80.895968pt;}
.ws1b{word-spacing:88.184737pt;}
._2d{margin-left:-22.911801pt;}
._2c{margin-left:-20.644761pt;}
._26{margin-left:-14.288442pt;}
._4{margin-left:-11.567217pt;}
._1e{margin-left:-9.983996pt;}
._5{margin-left:-8.137061pt;}
._3{margin-left:-6.663898pt;}
._1{margin-left:-5.694689pt;}
._6{margin-left:-4.479950pt;}
._23{margin-left:-3.455999pt;}
._7{margin-left:-2.495843pt;}
._0{margin-left:-1.142810pt;}
._2{width:1.006250pt;}
._d{width:1.977146pt;}
._9{width:3.245387pt;}
._8{width:4.416815pt;}
._15{width:6.193747pt;}
._2a{width:24.829365pt;}
._21{width:26.463719pt;}
._14{width:27.648455pt;}
._19{width:29.398646pt;}
._13{width:31.663525pt;}
._22{width:32.979985pt;}
._1a{width:35.361266pt;}
._18{width:37.425356pt;}
._a{width:38.697561pt;}
._12{width:40.512544pt;}
._10{width:41.425846pt;}
._e{width:42.385209pt;}
._2b{width:43.391925pt;}
._11{width:45.767569pt;}
._1c{width:46.802593pt;}
._1d{width:47.952419pt;}
._b{width:49.394955pt;}
._17{width:50.971851pt;}
._f{width:52.323450pt;}
._20{width:53.338247pt;}
._24{width:54.737059pt;}
._16{width:56.022788pt;}
._25{width:61.746232pt;}
._c{width:65.076625pt;}
._27{width:72.969492pt;}
._29{width:91.480567pt;}
._1b{width:93.357427pt;}
._28{width:108.241550pt;}
._1f{width:120.423925pt;}
.fsf{font-size:58.879976pt;}
.fs11{font-size:63.999974pt;}
.fs8{font-size:85.119966pt;}
.fs10{font-size:90.879964pt;}
.fsd{font-size:101.119960pt;}
.fs12{font-size:106.879957pt;}
.fs7{font-size:108.799956pt;}
.fsc{font-size:111.999955pt;}
.fsa{font-size:117.119953pt;}
.fs4{font-size:117.759953pt;}
.fs5{font-size:127.999949pt;}
.fs3{font-size:133.119947pt;}
.fs0{font-size:138.879944pt;}
.fsb{font-size:143.999942pt;}
.fse{font-size:149.119940pt;}
.fs6{font-size:159.999936pt;}
.fs2{font-size:170.879932pt;}
.fs1{font-size:191.999923pt;}
.fs9{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:137.013596pt;}
.y10{bottom:145.333593pt;}
.y25{bottom:152.373590pt;}
.y33{bottom:154.933589pt;}
.y51{bottom:155.733588pt;}
.y6d{bottom:158.613587pt;}
.y62{bottom:165.813584pt;}
.y77{bottom:169.333583pt;}
.y47{bottom:170.773582pt;}
.yf{bottom:179.733579pt;}
.y84{bottom:180.533578pt;}
.y6c{bottom:181.973578pt;}
.y24{bottom:185.333577pt;}
.y50{bottom:187.573576pt;}
.y32{bottom:189.493575pt;}
.y3f{bottom:192.853574pt;}
.y61{bottom:194.773573pt;}
.y5b{bottom:194.933573pt;}
.y6b{bottom:205.493568pt;}
.y46{bottom:206.133568pt;}
.y83{bottom:208.053567pt;}
.y27{bottom:217.973563pt;}
.y23{bottom:218.453563pt;}
.y4f{bottom:219.573563pt;}
.y1b{bottom:221.333562pt;}
.ye{bottom:221.813562pt;}
.y3e{bottom:223.093561pt;}
.y31{bottom:224.053561pt;}
.y5a{bottom:227.893560pt;}
.y6a{bottom:228.853559pt;}
.y82{bottom:235.573556pt;}
.y45{bottom:241.493554pt;}
.y76{bottom:248.693551pt;}
.y85{bottom:249.333551pt;}
.y22{bottom:251.413550pt;}
.y69{bottom:252.373550pt;}
.y3d{bottom:253.333549pt;}
.y26{bottom:259.253547pt;}
.y59{bottom:260.853546pt;}
.y1a{bottom:262.933545pt;}
.y81{bottom:263.093545pt;}
.yd{bottom:263.733545pt;}
.y30{bottom:266.613544pt;}
.y60{bottom:273.013541pt;}
.y75{bottom:278.933539pt;}
.y3c{bottom:283.573537pt;}
.y71{bottom:284.853537pt;}
.y4e{bottom:285.333537pt;}
.y3{bottom:286.773536pt;}
.y21{bottom:289.973535pt;}
.y80{bottom:290.613534pt;}
.y58{bottom:293.973533pt;}
.y2f{bottom:301.173530pt;}
.y5f{bottom:301.973530pt;}
.y38{bottom:304.373529pt;}
.yc{bottom:305.813528pt;}
.y19{bottom:312.533526pt;}
.y44{bottom:313.813525pt;}
.y4d{bottom:318.293523pt;}
.y57{bottom:326.933520pt;}
.y20{bottom:328.373519pt;}
.y70{bottom:334.453517pt;}
.y2e{bottom:335.733516pt;}
.y2{bottom:336.373516pt;}
.y74{bottom:343.093513pt;}
.y37{bottom:345.973512pt;}
.y43{bottom:350.933510pt;}
.y4c{bottom:351.253510pt;}
.y18{bottom:354.133509pt;}
.y56{bottom:359.893507pt;}
.yb{bottom:367.093504pt;}
.y73{bottom:373.333501pt;}
.y2d{bottom:378.293499pt;}
.y3b{bottom:382.293498pt;}
.y6f{bottom:384.213497pt;}
.y1{bottom:385.973496pt;}
.y36{bottom:387.573496pt;}
.y7f{bottom:392.373494pt;}
.y5e{bottom:394.613493pt;}
.y17{bottom:395.733492pt;}
.y7b{bottom:406.293488pt;}
.ya{bottom:411.093486pt;}
.y55{bottom:412.533486pt;}
.y7e{bottom:419.893483pt;}
.y2c{bottom:420.853482pt;}
.y1f{bottom:422.293482pt;}
.y5d{bottom:423.573481pt;}
.y35{bottom:429.173479pt;}
.y6e{bottom:433.813477pt;}
.y16{bottom:437.333476pt;}
.y4b{bottom:444.053473pt;}
.y54{bottom:445.653472pt;}
.y7d{bottom:447.413472pt;}
.y88{bottom:448.373471pt;}
.y6{bottom:452.373470pt;}
.y42{bottom:452.693470pt;}
.y7a{bottom:461.333466pt;}
.y2b{bottom:463.413465pt;}
.y1e{bottom:463.573465pt;}
.y34{bottom:470.773462pt;}
.y7c{bottom:474.933461pt;}
.y4a{bottom:477.173460pt;}
.y53{bottom:478.613459pt;}
.y15{bottom:486.933456pt;}
.y41{bottom:489.813455pt;}
.y2a{bottom:497.973451pt;}
.y68{bottom:501.973450pt;}
.y1d{bottom:504.853449pt;}
.y87{bottom:505.973448pt;}
.y5{bottom:509.973447pt;}
.y49{bottom:510.133447pt;}
.y52{bottom:511.573446pt;}
.y67{bottom:523.093441pt;}
.y3a{bottom:526.293440pt;}
.y9{bottom:526.453440pt;}
.y40{bottom:526.933440pt;}
.y14{bottom:528.533439pt;}
.y5c{bottom:530.773438pt;}
.y66{bottom:538.293435pt;}
.y29{bottom:540.533434pt;}
.y48{bottom:543.093433pt;}
.y1c{bottom:546.133432pt;}
.y72{bottom:547.093432pt;}
.y86{bottom:563.573425pt;}
.y4{bottom:567.573424pt;}
.y13{bottom:570.133423pt;}
.y28{bottom:575.093421pt;}
.y8{bottom:633.653397pt;}
.y12{bottom:633.813397pt;}
.y78{bottom:635.573396pt;}
.y39{bottom:635.733396pt;}
.y65{bottom:675.093381pt;}
.y79{bottom:685.173377pt;}
.y7{bottom:691.253374pt;}
.y11{bottom:691.413374pt;}
.y64{bottom:719.893363pt;}
.hf{height:57.787477pt;}
.h11{height:62.812475pt;}
.hd{height:81.518092pt;}
.h12{height:86.161528pt;}
.h10{height:89.193714pt;}
.hc{height:90.289026pt;}
.h9{height:94.416525pt;}
.h7{height:103.187459pt;}
.h5{height:107.314957pt;}
.he{height:111.839955pt;}
.h1{height:111.958393pt;}
.hb{height:116.085891pt;}
.h6{height:128.984323pt;}
.h4{height:137.755257pt;}
.ha{height:143.999942pt;}
.h3{height:154.781188pt;}
.h2{height:168.468683pt;}
.h8{height:171.807119pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:134.707946pt;}
.x43{left:147.667941pt;}
.x13{left:166.067934pt;}
.xe{left:186.867925pt;}
.x1e{left:191.347923pt;}
.x30{left:192.787923pt;}
.x14{left:194.867922pt;}
.x5{left:197.107921pt;}
.x12{left:198.387921pt;}
.xc{left:200.467920pt;}
.xa{left:203.347919pt;}
.x1f{left:209.907916pt;}
.x1a{left:211.027916pt;}
.xf{left:215.667914pt;}
.x11{left:219.027912pt;}
.xb{left:227.347909pt;}
.x42{left:228.627909pt;}
.x1b{left:232.627907pt;}
.x2e{left:240.787904pt;}
.x9{left:251.187900pt;}
.x7{left:252.627899pt;}
.x24{left:267.187893pt;}
.x21{left:271.827891pt;}
.x2c{left:273.907890pt;}
.x1d{left:280.147888pt;}
.x22{left:285.267886pt;}
.x26{left:291.027884pt;}
.x2d{left:294.867882pt;}
.x23{left:297.907881pt;}
.x25{left:307.987877pt;}
.x1{left:323.987870pt;}
.x32{left:326.067870pt;}
.x15{left:329.107868pt;}
.x40{left:349.587860pt;}
.x18{left:353.587859pt;}
.x20{left:357.107857pt;}
.x1c{left:358.867856pt;}
.x2{left:359.827856pt;}
.x3{left:362.867855pt;}
.x19{left:365.427854pt;}
.x31{left:366.387853pt;}
.x6{left:373.107851pt;}
.xd{left:374.387850pt;}
.x33{left:378.547849pt;}
.x10{left:384.627846pt;}
.x34{left:390.227844pt;}
.x17{left:406.547837pt;}
.x2f{left:414.387834pt;}
.x35{left:415.827834pt;}
.x36{left:421.267831pt;}
.x2b{left:433.427827pt;}
.x16{left:434.707826pt;}
.x41{left:435.827826pt;}
.x8{left:496.307801pt;}
.x3d{left:588.467765pt;}
.x38{left:589.427764pt;}
.x3f{left:591.507763pt;}
.x3b{left:593.747763pt;}
.x29{left:595.027762pt;}
.x3e{left:599.334720pt;}
.x28{left:604.787758pt;}
.x37{left:614.067754pt;}
.x39{left:619.027752pt;}
.x3a{left:619.987752pt;}
.x3c{left:627.987749pt;}
.x2a{left:636.787745pt;}
.x27{left:640.147744pt;}
}




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