
    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_72d46cf230903235815699c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_5d840cb165508a1d5502f3be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_a2cb18bb1c18f1f69093c249.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_d2f2826746f0b6da6bb8c3b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_5f5f0cb0a1780d03e8802d96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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;}
.ls7{letter-spacing:-1.368000px;}
.ls6{letter-spacing:-1.218000px;}
.ls4{letter-spacing:-0.150000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.384600px;}
.lsb{letter-spacing:0.701550px;}
.ls10{letter-spacing:0.761550px;}
.ls16{letter-spacing:0.798000px;}
.ls14{letter-spacing:0.855600px;}
.ls13{letter-spacing:0.918000px;}
.ls11{letter-spacing:1.002000px;}
.lsd{letter-spacing:1.232400px;}
.ls9{letter-spacing:1.325100px;}
.lsf{letter-spacing:1.327200px;}
.lse{letter-spacing:1.374000px;}
.lsa{letter-spacing:1.419750px;}
.lsc{letter-spacing:1.524000px;}
.ls5{letter-spacing:1.668000px;}
.ls15{letter-spacing:1.758000px;}
.ls3{letter-spacing:1.908000px;}
.ls8{letter-spacing:2.400000px;}
.ls1{letter-spacing:173.077200px;}
.ls2{letter-spacing:173.160600px;}
.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;}
}
.wsa{word-spacing:-56.378400px;}
.ws13{word-spacing:-48.278400px;}
.ws14{word-spacing:-48.128400px;}
.ws5{word-spacing:-48.038400px;}
.ws0{word-spacing:-46.370400px;}
.ws6{word-spacing:-40.115400px;}
.ws11{word-spacing:-33.860400px;}
.wsc{word-spacing:-27.836700px;}
.ws17{word-spacing:-27.732450px;}
.wse{word-spacing:-27.686700px;}
.wsf{word-spacing:-27.681600px;}
.ws18{word-spacing:-27.637800px;}
.wsd{word-spacing:-27.586800px;}
.ws16{word-spacing:-27.152400px;}
.ws10{word-spacing:-26.354400px;}
.wsb{word-spacing:-26.312700px;}
.ws7{word-spacing:-23.810700px;}
.ws1{word-spacing:-13.761000px;}
.ws8{word-spacing:-12.449700px;}
.ws4{word-spacing:-11.300700px;}
.ws9{word-spacing:-10.049700px;}
.ws19{word-spacing:-8.757000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:52.094400px;}
.ws12{word-spacing:53.084400px;}
.ws15{word-spacing:80.084400px;}
._f{margin-left:-21.684000px;}
._b{margin-left:-20.280000px;}
._d{margin-left:-13.441500px;}
._4{margin-left:-11.509200px;}
._a{margin-left:-10.008000px;}
._9{margin-left:-7.816200px;}
._c{margin-left:-6.115200px;}
._7{margin-left:-4.965600px;}
._6{margin-left:-3.823800px;}
._2{margin-left:-2.001600px;}
._1{margin-left:-1.000800px;}
._0{width:1.501200px;}
._5{width:2.502000px;}
._3{width:3.502800px;}
._8{width:4.837200px;}
._e{width:5.992200px;}
.fc3{color:rgb(28,28,28);}
.fc2{color:rgb(140,140,140);}
.fc1{color:rgb(222,222,222);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:31.500000px;}
.fs15{font-size:36.000000px;}
.fsd{font-size:36.150000px;}
.fs11{font-size:40.500000px;}
.fs5{font-size:40.650000px;}
.fs2{font-size:49.500000px;}
.fs12{font-size:49.650000px;}
.fs10{font-size:54.000000px;}
.fs8{font-size:67.500000px;}
.fs7{font-size:72.150000px;}
.fsc{font-size:85.650000px;}
.fs13{font-size:85.800000px;}
.fse{font-size:94.650000px;}
.fsf{font-size:94.800000px;}
.fs16{font-size:108.150000px;}
.fs17{font-size:108.300000px;}
.fs1{font-size:121.650000px;}
.fs6{font-size:121.800000px;}
.fs4{font-size:126.150000px;}
.fs3{font-size:126.300000px;}
.fsa{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fs0{font-size:166.800000px;}
.fs9{font-size:202.800000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:5.400000px;}
.y64{bottom:6.300000px;}
.y30{bottom:7.200000px;}
.y51{bottom:12.262500px;}
.y7d{bottom:16.725000px;}
.y45{bottom:18.337500px;}
.y26{bottom:24.412500px;}
.y38{bottom:31.500000px;}
.y10{bottom:33.637500px;}
.y50{bottom:34.537500px;}
.y7c{bottom:34.800000px;}
.y25{bottom:36.112500px;}
.y63{bottom:39.975000px;}
.y6c{bottom:44.512500px;}
.y44{bottom:47.625000px;}
.y3c{bottom:49.500000px;}
.y1b{bottom:52.762500px;}
.y5{bottom:54.337500px;}
.y24{bottom:56.400000px;}
.y5a{bottom:58.087500px;}
.y74{bottom:60.562500px;}
.y62{bottom:64.800000px;}
.y1a{bottom:75.300000px;}
.y23{bottom:75.562500px;}
.y43{bottom:75.825000px;}
.y92{bottom:76.425000px;}
.y7b{bottom:77.625000px;}
.y2f{bottom:79.537500px;}
.y59{bottom:81.000000px;}
.yf{bottom:83.175000px;}
.y84{bottom:85.350000px;}
.y6b{bottom:87.337500px;}
.y4d{bottom:90.337500px;}
.y4{bottom:90.412500px;}
.y40{bottom:91.470000px;}
.y33{bottom:91.995000px;}
.y8b{bottom:94.500000px;}
.y19{bottom:96.712500px;}
.y3f{bottom:96.750000px;}
.y73{bottom:102.262500px;}
.y61{bottom:105.375000px;}
.y2e{bottom:105.487500px;}
.y91{bottom:109.087500px;}
.y58{bottom:109.200000px;}
.y83{bottom:110.137500px;}
.y93{bottom:111.187500px;}
.y22{bottom:113.887500px;}
.y42{bottom:116.175000px;}
.y4c{bottom:126.412500px;}
.y80{bottom:130.125000px;}
.ye{bottom:130.500000px;}
.y6a{bottom:131.287500px;}
.y18{bottom:132.750000px;}
.y7a{bottom:133.987500px;}
.y41{bottom:144.337500px;}
.y8a{bottom:145.200000px;}
.y2d{bottom:146.062500px;}
.y34{bottom:147.375000px;}
.y60{bottom:149.325000px;}
.y72{bottom:152.970000px;}
.y57{bottom:153.150000px;}
.y90{bottom:157.575000px;}
.y7f{bottom:159.420000px;}
.y82{bottom:159.930000px;}
.y4b{bottom:162.480000px;}
.y21{bottom:163.500000px;}
.yd{bottom:168.825000px;}
.y4f{bottom:171.495000px;}
.y79{bottom:176.805000px;}
.y36{bottom:178.575000px;}
.y3e{bottom:179.070000px;}
.y69{bottom:186.525000px;}
.y7e{bottom:187.620000px;}
.y81{bottom:188.130000px;}
.y2c{bottom:188.880000px;}
.y5f{bottom:192.150000px;}
.y89{bottom:194.820000px;}
.y3{bottom:195.345000px;}
.y56{bottom:195.975000px;}
.y71{bottom:202.575000px;}
.y17{bottom:204.900000px;}
.yc{bottom:206.025000px;}
.y35{bottom:206.745000px;}
.y8f{bottom:207.150000px;}
.y3d{bottom:207.225000px;}
.y4a{bottom:207.570000px;}
.y20{bottom:214.200000px;}
.y68{bottom:229.350000px;}
.y78{bottom:232.050000px;}
.y2b{bottom:232.845000px;}
.y5e{bottom:236.100000px;}
.y55{bottom:239.925000px;}
.y16{bottom:240.975000px;}
.y49{bottom:243.645000px;}
.yb{bottom:244.350000px;}
.y88{bottom:245.520000px;}
.y2{bottom:246.045000px;}
.y4e{bottom:252.630000px;}
.y70{bottom:253.275000px;}
.y8e{bottom:257.895000px;}
.y37{bottom:262.125000px;}
.y1f{bottom:264.945000px;}
.y3b{bottom:265.125000px;}
.y67{bottom:272.175000px;}
.y77{bottom:274.875000px;}
.y2a{bottom:275.670000px;}
.y15{bottom:277.050000px;}
.y5d{bottom:278.925000px;}
.y54{bottom:282.750000px;}
.y48{bottom:288.705000px;}
.y3a{bottom:294.450000px;}
.ya{bottom:296.220000px;}
.y87{bottom:296.250000px;}
.y1{bottom:296.775000px;}
.y6f{bottom:304.005000px;}
.y32{bottom:306.000000px;}
.y8d{bottom:308.595000px;}
.y14{bottom:313.095000px;}
.y1e{bottom:315.645000px;}
.y29{bottom:318.495000px;}
.y5c{bottom:321.750000px;}
.y39{bottom:322.620000px;}
.y47{bottom:324.780000px;}
.y53{bottom:325.575000px;}
.y66{bottom:327.405000px;}
.y76{bottom:330.075000px;}
.y86{bottom:346.950000px;}
.y13{bottom:349.170000px;}
.y6e{bottom:354.705000px;}
.y9{bottom:359.325000px;}
.y28{bottom:362.445000px;}
.y5b{bottom:365.700000px;}
.y1d{bottom:366.375000px;}
.y52{bottom:369.570000px;}
.y65{bottom:371.370000px;}
.y46{bottom:373.245000px;}
.y75{bottom:374.070000px;}
.y12{bottom:385.245000px;}
.y85{bottom:397.695000px;}
.y6d{bottom:405.450000px;}
.y8{bottom:410.025000px;}
.y11{bottom:421.320000px;}
.y1c{bottom:433.050000px;}
.y31{bottom:448.380000px;}
.y7{bottom:483.780000px;}
.y27{bottom:509.250000px;}
.y6{bottom:600.600000px;}
.h22{height:23.025146px;}
.h23{height:26.314453px;}
.h11{height:26.424097px;}
.h1e{height:29.603760px;}
.h8{height:29.713403px;}
.h20{height:36.292017px;}
.h4{height:36.520794px;}
.h3{height:36.520848px;}
.h1c{height:39.840820px;}
.hb{height:49.801025px;}
.ha{height:53.231763px;}
.h10{height:63.191968px;}
.h21{height:63.302637px;}
.h15{height:69.185083px;}
.h19{height:69.294727px;}
.h1f{height:69.832104px;}
.h13{height:71.172363px;}
.h24{height:79.792310px;}
.h25{height:79.902979px;}
.h2{height:88.920923px;}
.h9{height:89.030566px;}
.h7{height:92.210229px;}
.h6{height:92.319873px;}
.h1d{height:94.858887px;}
.hc{height:94.971680px;}
.he{height:105.367456px;}
.hf{height:105.477100px;}
.h5{height:121.923633px;}
.h1{height:125.425781px;}
.hd{height:148.238086px;}
.h12{height:202.500000px;}
.h1a{height:273.375000px;}
.h18{height:342.000000px;}
.h1b{height:360.000000px;}
.h14{height:403.875000px;}
.h17{height:405.000000px;}
.h16{height:576.000000px;}
.h0{height:607.500000px;}
.w3{width:229.500000px;}
.w2{width:230.625000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:11.437500px;}
.xd{left:12.525000px;}
.x6{left:50.024984px;}
.x1{left:51.037484px;}
.x5{left:68.024984px;}
.x8{left:69.750000px;}
.x21{left:79.012484px;}
.x18{left:105.112484px;}
.x20{left:109.687484px;}
.x4{left:111.862484px;}
.x14{left:127.649984px;}
.x16{left:131.624984px;}
.xa{left:299.250000px;}
.x1a{left:325.244984px;}
.xe{left:366.599984px;}
.xb{left:528.750000px;}
.x11{left:589.349984px;}
.x15{left:591.599984px;}
.xf{left:596.099984px;}
.x7{left:599.249984px;}
.x1b{left:607.619984px;}
.x23{left:630.329984px;}
.x1c{left:634.349984px;}
.xc{left:757.125000px;}
.x17{left:759.854984px;}
.x12{left:806.999984px;}
.x19{left:821.999984px;}
.x10{left:825.599984px;}
.x22{left:826.754984px;}
.x1f{left:860.579984px;}
.x1d{left:865.379984px;}
.x13{left:872.324984px;}
.x1e{left:874.019984px;}
.x3{left:1049.999984px;}
.x2{left:1064.624984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.216000pt;}
.ls6{letter-spacing:-1.082667pt;}
.ls4{letter-spacing:-0.133333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.341867pt;}
.lsb{letter-spacing:0.623600pt;}
.ls10{letter-spacing:0.676933pt;}
.ls16{letter-spacing:0.709333pt;}
.ls14{letter-spacing:0.760533pt;}
.ls13{letter-spacing:0.816000pt;}
.ls11{letter-spacing:0.890667pt;}
.lsd{letter-spacing:1.095467pt;}
.ls9{letter-spacing:1.177867pt;}
.lsf{letter-spacing:1.179733pt;}
.lse{letter-spacing:1.221333pt;}
.lsa{letter-spacing:1.262000pt;}
.lsc{letter-spacing:1.354667pt;}
.ls5{letter-spacing:1.482667pt;}
.ls15{letter-spacing:1.562667pt;}
.ls3{letter-spacing:1.696000pt;}
.ls8{letter-spacing:2.133333pt;}
.ls1{letter-spacing:153.846400pt;}
.ls2{letter-spacing:153.920533pt;}
.wsa{word-spacing:-50.114133pt;}
.ws13{word-spacing:-42.914133pt;}
.ws14{word-spacing:-42.780800pt;}
.ws5{word-spacing:-42.700800pt;}
.ws0{word-spacing:-41.218133pt;}
.ws6{word-spacing:-35.658133pt;}
.ws11{word-spacing:-30.098133pt;}
.wsc{word-spacing:-24.743733pt;}
.ws17{word-spacing:-24.651067pt;}
.wse{word-spacing:-24.610400pt;}
.wsf{word-spacing:-24.605867pt;}
.ws18{word-spacing:-24.566933pt;}
.wsd{word-spacing:-24.521600pt;}
.ws16{word-spacing:-24.135467pt;}
.ws10{word-spacing:-23.426133pt;}
.wsb{word-spacing:-23.389067pt;}
.ws7{word-spacing:-21.165067pt;}
.ws1{word-spacing:-12.232000pt;}
.ws8{word-spacing:-11.066400pt;}
.ws4{word-spacing:-10.045067pt;}
.ws9{word-spacing:-8.933067pt;}
.ws19{word-spacing:-7.784000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:46.306133pt;}
.ws12{word-spacing:47.186133pt;}
.ws15{word-spacing:71.186133pt;}
._f{margin-left:-19.274667pt;}
._b{margin-left:-18.026667pt;}
._d{margin-left:-11.948000pt;}
._4{margin-left:-10.230400pt;}
._a{margin-left:-8.896000pt;}
._9{margin-left:-6.947733pt;}
._c{margin-left:-5.435733pt;}
._7{margin-left:-4.413867pt;}
._6{margin-left:-3.398933pt;}
._2{margin-left:-1.779200pt;}
._1{margin-left:-0.889600pt;}
._0{width:1.334400pt;}
._5{width:2.224000pt;}
._3{width:3.113600pt;}
._8{width:4.299733pt;}
._e{width:5.326400pt;}
.fs14{font-size:28.000000pt;}
.fs15{font-size:32.000000pt;}
.fsd{font-size:32.133333pt;}
.fs11{font-size:36.000000pt;}
.fs5{font-size:36.133333pt;}
.fs2{font-size:44.000000pt;}
.fs12{font-size:44.133333pt;}
.fs10{font-size:48.000000pt;}
.fs8{font-size:60.000000pt;}
.fs7{font-size:64.133333pt;}
.fsc{font-size:76.133333pt;}
.fs13{font-size:76.266667pt;}
.fse{font-size:84.133333pt;}
.fsf{font-size:84.266667pt;}
.fs16{font-size:96.133333pt;}
.fs17{font-size:96.266667pt;}
.fs1{font-size:108.133333pt;}
.fs6{font-size:108.266667pt;}
.fs4{font-size:112.133333pt;}
.fs3{font-size:112.266667pt;}
.fsa{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fs0{font-size:148.266667pt;}
.fs9{font-size:180.266667pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:4.800000pt;}
.y64{bottom:5.600000pt;}
.y30{bottom:6.400000pt;}
.y51{bottom:10.900000pt;}
.y7d{bottom:14.866667pt;}
.y45{bottom:16.300000pt;}
.y26{bottom:21.700000pt;}
.y38{bottom:28.000000pt;}
.y10{bottom:29.900000pt;}
.y50{bottom:30.700000pt;}
.y7c{bottom:30.933333pt;}
.y25{bottom:32.100000pt;}
.y63{bottom:35.533333pt;}
.y6c{bottom:39.566667pt;}
.y44{bottom:42.333333pt;}
.y3c{bottom:44.000000pt;}
.y1b{bottom:46.900000pt;}
.y5{bottom:48.300000pt;}
.y24{bottom:50.133333pt;}
.y5a{bottom:51.633333pt;}
.y74{bottom:53.833333pt;}
.y62{bottom:57.600000pt;}
.y1a{bottom:66.933333pt;}
.y23{bottom:67.166667pt;}
.y43{bottom:67.400000pt;}
.y92{bottom:67.933333pt;}
.y7b{bottom:69.000000pt;}
.y2f{bottom:70.700000pt;}
.y59{bottom:72.000000pt;}
.yf{bottom:73.933333pt;}
.y84{bottom:75.866667pt;}
.y6b{bottom:77.633333pt;}
.y4d{bottom:80.300000pt;}
.y4{bottom:80.366667pt;}
.y40{bottom:81.306667pt;}
.y33{bottom:81.773333pt;}
.y8b{bottom:84.000000pt;}
.y19{bottom:85.966667pt;}
.y3f{bottom:86.000000pt;}
.y73{bottom:90.900000pt;}
.y61{bottom:93.666667pt;}
.y2e{bottom:93.766667pt;}
.y91{bottom:96.966667pt;}
.y58{bottom:97.066667pt;}
.y83{bottom:97.900000pt;}
.y93{bottom:98.833333pt;}
.y22{bottom:101.233333pt;}
.y42{bottom:103.266667pt;}
.y4c{bottom:112.366667pt;}
.y80{bottom:115.666667pt;}
.ye{bottom:116.000000pt;}
.y6a{bottom:116.700000pt;}
.y18{bottom:118.000000pt;}
.y7a{bottom:119.100000pt;}
.y41{bottom:128.300000pt;}
.y8a{bottom:129.066667pt;}
.y2d{bottom:129.833333pt;}
.y34{bottom:131.000000pt;}
.y60{bottom:132.733333pt;}
.y72{bottom:135.973333pt;}
.y57{bottom:136.133333pt;}
.y90{bottom:140.066667pt;}
.y7f{bottom:141.706667pt;}
.y82{bottom:142.160000pt;}
.y4b{bottom:144.426667pt;}
.y21{bottom:145.333333pt;}
.yd{bottom:150.066667pt;}
.y4f{bottom:152.440000pt;}
.y79{bottom:157.160000pt;}
.y36{bottom:158.733333pt;}
.y3e{bottom:159.173333pt;}
.y69{bottom:165.800000pt;}
.y7e{bottom:166.773333pt;}
.y81{bottom:167.226667pt;}
.y2c{bottom:167.893333pt;}
.y5f{bottom:170.800000pt;}
.y89{bottom:173.173333pt;}
.y3{bottom:173.640000pt;}
.y56{bottom:174.200000pt;}
.y71{bottom:180.066667pt;}
.y17{bottom:182.133333pt;}
.yc{bottom:183.133333pt;}
.y35{bottom:183.773333pt;}
.y8f{bottom:184.133333pt;}
.y3d{bottom:184.200000pt;}
.y4a{bottom:184.506667pt;}
.y20{bottom:190.400000pt;}
.y68{bottom:203.866667pt;}
.y78{bottom:206.266667pt;}
.y2b{bottom:206.973333pt;}
.y5e{bottom:209.866667pt;}
.y55{bottom:213.266667pt;}
.y16{bottom:214.200000pt;}
.y49{bottom:216.573333pt;}
.yb{bottom:217.200000pt;}
.y88{bottom:218.240000pt;}
.y2{bottom:218.706667pt;}
.y4e{bottom:224.560000pt;}
.y70{bottom:225.133333pt;}
.y8e{bottom:229.240000pt;}
.y37{bottom:233.000000pt;}
.y1f{bottom:235.506667pt;}
.y3b{bottom:235.666667pt;}
.y67{bottom:241.933333pt;}
.y77{bottom:244.333333pt;}
.y2a{bottom:245.040000pt;}
.y15{bottom:246.266667pt;}
.y5d{bottom:247.933333pt;}
.y54{bottom:251.333333pt;}
.y48{bottom:256.626667pt;}
.y3a{bottom:261.733333pt;}
.ya{bottom:263.306667pt;}
.y87{bottom:263.333333pt;}
.y1{bottom:263.800000pt;}
.y6f{bottom:270.226667pt;}
.y32{bottom:272.000000pt;}
.y8d{bottom:274.306667pt;}
.y14{bottom:278.306667pt;}
.y1e{bottom:280.573333pt;}
.y29{bottom:283.106667pt;}
.y5c{bottom:286.000000pt;}
.y39{bottom:286.773333pt;}
.y47{bottom:288.693333pt;}
.y53{bottom:289.400000pt;}
.y66{bottom:291.026667pt;}
.y76{bottom:293.400000pt;}
.y86{bottom:308.400000pt;}
.y13{bottom:310.373333pt;}
.y6e{bottom:315.293333pt;}
.y9{bottom:319.400000pt;}
.y28{bottom:322.173333pt;}
.y5b{bottom:325.066667pt;}
.y1d{bottom:325.666667pt;}
.y52{bottom:328.506667pt;}
.y65{bottom:330.106667pt;}
.y46{bottom:331.773333pt;}
.y75{bottom:332.506667pt;}
.y12{bottom:342.440000pt;}
.y85{bottom:353.506667pt;}
.y6d{bottom:360.400000pt;}
.y8{bottom:364.466667pt;}
.y11{bottom:374.506667pt;}
.y1c{bottom:384.933333pt;}
.y31{bottom:398.560000pt;}
.y7{bottom:430.026667pt;}
.y27{bottom:452.666667pt;}
.y6{bottom:533.866667pt;}
.h22{height:20.466797pt;}
.h23{height:23.390625pt;}
.h11{height:23.488086pt;}
.h1e{height:26.314453pt;}
.h8{height:26.411914pt;}
.h20{height:32.259570pt;}
.h4{height:32.462928pt;}
.h3{height:32.462976pt;}
.h1c{height:35.414062pt;}
.hb{height:44.267578pt;}
.ha{height:47.317122pt;}
.h10{height:56.170638pt;}
.h21{height:56.269010pt;}
.h15{height:61.497852pt;}
.h19{height:61.595312pt;}
.h1f{height:62.072982pt;}
.h13{height:63.264323pt;}
.h24{height:70.926497pt;}
.h25{height:71.024870pt;}
.h2{height:79.040820pt;}
.h9{height:79.138281pt;}
.h7{height:81.964648pt;}
.h6{height:82.062109pt;}
.h1d{height:84.319010pt;}
.hc{height:84.419271pt;}
.he{height:93.659961pt;}
.hf{height:93.757422pt;}
.h5{height:108.376562pt;}
.h1{height:111.489583pt;}
.hd{height:131.767187pt;}
.h12{height:180.000000pt;}
.h1a{height:243.000000pt;}
.h18{height:304.000000pt;}
.h1b{height:320.000000pt;}
.h14{height:359.000000pt;}
.h17{height:360.000000pt;}
.h16{height:512.000000pt;}
.h0{height:540.000000pt;}
.w3{width:204.000000pt;}
.w2{width:205.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:10.166667pt;}
.xd{left:11.133333pt;}
.x6{left:44.466652pt;}
.x1{left:45.366652pt;}
.x5{left:60.466652pt;}
.x8{left:62.000000pt;}
.x21{left:70.233319pt;}
.x18{left:93.433319pt;}
.x20{left:97.499986pt;}
.x4{left:99.433319pt;}
.x14{left:113.466652pt;}
.x16{left:116.999986pt;}
.xa{left:266.000000pt;}
.x1a{left:289.106652pt;}
.xe{left:325.866652pt;}
.xb{left:470.000000pt;}
.x11{left:523.866652pt;}
.x15{left:525.866652pt;}
.xf{left:529.866652pt;}
.x7{left:532.666652pt;}
.x1b{left:540.106652pt;}
.x23{left:560.293319pt;}
.x1c{left:563.866652pt;}
.xc{left:673.000000pt;}
.x17{left:675.426652pt;}
.x12{left:717.333319pt;}
.x19{left:730.666652pt;}
.x10{left:733.866652pt;}
.x22{left:734.893319pt;}
.x1f{left:764.959986pt;}
.x1d{left:769.226652pt;}
.x13{left:775.399986pt;}
.x1e{left:776.906652pt;}
.x3{left:933.333319pt;}
.x2{left:946.333319pt;}
}




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