
    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_72135cb43a47ad8912cbaa11.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8020df55b358f44987cd05e3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b8413d7ecbe615d1bfbba8e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_a8d74a18204f76dcf24ad96b.woff2')format("woff");}.ff4{font-family:ff4;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:112.320000px;}
.ls1c{letter-spacing:-0.244200px;}
.ls10{letter-spacing:-0.197400px;}
.ls20{letter-spacing:-0.171000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.130800px;}
.ls0{letter-spacing:-0.049320px;}
.ls7{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012000px;}
.lse{letter-spacing:0.018720px;}
.ls19{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.027000px;}
.ls17{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.067200px;}
.ls8{letter-spacing:0.090600px;}
.lsd{letter-spacing:0.096000px;}
.ls21{letter-spacing:0.125400px;}
.ls5{letter-spacing:0.134400px;}
.ls9{letter-spacing:0.161400px;}
.lsc{letter-spacing:0.162600px;}
.ls1a{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.335160px;}
.lsf{letter-spacing:0.378600px;}
.ls12{letter-spacing:14.909280px;}
.ls13{letter-spacing:14.976000px;}
.ls1b{letter-spacing:17.541000px;}
.ls1d{letter-spacing:17.652000px;}
.ls3{letter-spacing:22.644000px;}
.ls6{letter-spacing:55.800000px;}
.ls4{letter-spacing:111.942000px;}
.lsa{letter-spacing:112.062000px;}
.ls1e{letter-spacing:119.495040px;}
.ls16{letter-spacing:119.567520px;}
.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;}
}
.ws0{word-spacing:-26.672040px;}
.wsb{word-spacing:-23.187840px;}
.ws9{word-spacing:-23.121240px;}
.ws5{word-spacing:-22.518000px;}
.ws13{word-spacing:-22.347000px;}
.ws11{word-spacing:-22.307160px;}
.ws15{word-spacing:-20.816640px;}
.wse{word-spacing:-18.314640px;}
.ws1{word-spacing:-17.541000px;}
.wsa{word-spacing:-17.514000px;}
.ws2{word-spacing:-15.012000px;}
.ws8{word-spacing:-13.689240px;}
.ws10{word-spacing:-13.645800px;}
.ws7{word-spacing:-13.329360px;}
.ws4{word-spacing:-13.310640px;}
.ws12{word-spacing:-0.333000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:28.719120px;}
.wsc{word-spacing:61.469640px;}
.ws16{word-spacing:86.034360px;}
.ws14{word-spacing:87.474360px;}
.wsd{word-spacing:95.069640px;}
.wsf{word-spacing:95.136000px;}
._2{margin-left:-2.198160px;}
._0{margin-left:-1.045680px;}
._1{width:1.171800px;}
._3{width:2.825400px;}
._6{width:18.725400px;}
._4{width:21.258360px;}
._5{width:119.567520px;}
.fc7{color:rgb(118,146,60);}
.fc6{color:transparent;}
.fc4{color:rgb(83,140,213);}
.fc2{color:rgb(94,143,247);}
.fc1{color:rgb(58,58,59);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(136,136,136);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fsf{font-size:54.120000px;}
.fs4{font-size:60.120000px;}
.fs3{font-size:60.240000px;}
.fs5{font-size:63.000000px;}
.fs10{font-size:63.120000px;}
.fs9{font-size:65.880000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs11{font-size:74.880000px;}
.fs12{font-size:75.000000px;}
.fs1{font-size:78.120000px;}
.fs2{font-size:78.240000px;}
.fs8{font-size:81.000000px;}
.fsd{font-size:81.120000px;}
.fs7{font-size:83.880000px;}
.fse{font-size:84.000000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.730000px;}
.y48{bottom:7.860000px;}
.ya{bottom:16.020000px;}
.y8{bottom:29.880000px;}
.y3b{bottom:31.830000px;}
.y3a{bottom:35.250000px;}
.y23{bottom:39.750000px;}
.y80{bottom:44.190000px;}
.y1e{bottom:44.700000px;}
.y4b{bottom:48.690000px;}
.y95{bottom:52.050000px;}
.y22{bottom:54.150000px;}
.y26{bottom:57.810000px;}
.y6{bottom:63.420000px;}
.y4a{bottom:64.890000px;}
.y1d{bottom:66.300000px;}
.y6f{bottom:67.410000px;}
.y21{bottom:68.550000px;}
.y7f{bottom:69.390000px;}
.y94{bottom:71.940000px;}
.y49{bottom:81.120000px;}
.y5{bottom:81.420000px;}
.y6e{bottom:81.810000px;}
.y3c{bottom:91.380000px;}
.y7e{bottom:94.590000px;}
.y6d{bottom:96.210000px;}
.y1c{bottom:96.900000px;}
.y24{bottom:99.390000px;}
.y4{bottom:99.450000px;}
.y37{bottom:109.380000px;}
.y93{bottom:117.690000px;}
.y1b{bottom:118.500000px;}
.y5e{bottom:119.430000px;}
.y5d{bottom:138.330000px;}
.y45{bottom:139.410000px;}
.y92{bottom:139.470000px;}
.y1a{bottom:140.100000px;}
.y5c{bottom:158.220000px;}
.y91{bottom:161.160000px;}
.y3{bottom:163.620000px;}
.y44{bottom:163.710000px;}
.y1f{bottom:166.740000px;}
.y6c{bottom:168.060000px;}
.y90{bottom:182.940000px;}
.y7d{bottom:185.340000px;}
.y2{bottom:187.020000px;}
.ya0{bottom:189.990000px;}
.y6b{bottom:190.830000px;}
.y55{bottom:198.540000px;}
.y8f{bottom:204.630000px;}
.y19{bottom:207.090000px;}
.y7c{bottom:207.120000px;}
.y1{bottom:211.500000px;}
.y6a{bottom:213.060000px;}
.y9f{bottom:215.910000px;}
.y54{bottom:218.340000px;}
.y8e{bottom:226.410000px;}
.y18{bottom:226.890000px;}
.y7b{bottom:228.810000px;}
.y69{bottom:233.760000px;}
.y53{bottom:237.960000px;}
.y9e{bottom:241.770000px;}
.y17{bottom:246.690000px;}
.y8d{bottom:248.100000px;}
.y7a{bottom:250.590000px;}
.y43{bottom:251.490000px;}
.y68{bottom:254.460000px;}
.y52{bottom:256.860000px;}
.y16{bottom:266.490000px;}
.y8c{bottom:269.100000px;}
.y42{bottom:270.390000px;}
.y79{bottom:271.590000px;}
.y67{bottom:275.730000px;}
.y51{bottom:275.760000px;}
.y39{bottom:276.090000px;}
.y15{bottom:286.290000px;}
.y8b{bottom:287.730000px;}
.y41{bottom:289.290000px;}
.y78{bottom:290.220000px;}
.y9d{bottom:293.520000px;}
.y50{bottom:294.660000px;}
.y66{bottom:298.500000px;}
.y38{bottom:304.980000px;}
.y14{bottom:306.090000px;}
.y8a{bottom:306.360000px;}
.y40{bottom:309.180000px;}
.y77{bottom:309.570000px;}
.y4f{bottom:313.560000px;}
.y9c{bottom:319.440000px;}
.y65{bottom:321.270000px;}
.y89{bottom:324.990000px;}
.y13{bottom:325.890000px;}
.y76{bottom:330.540000px;}
.y4e{bottom:332.490000px;}
.y3f{bottom:333.480000px;}
.y88{bottom:343.620000px;}
.y64{bottom:344.040000px;}
.y9b{bottom:345.270000px;}
.y12{bottom:345.690000px;}
.y75{bottom:349.170000px;}
.y4d{bottom:351.390000px;}
.y3e{bottom:357.810000px;}
.y87{bottom:362.250000px;}
.y11{bottom:366.300000px;}
.y63{bottom:366.810000px;}
.y74{bottom:367.800000px;}
.y9a{bottom:371.190000px;}
.y4c{bottom:371.280000px;}
.y86{bottom:380.880000px;}
.y3d{bottom:382.110000px;}
.y73{bottom:386.430000px;}
.y62{bottom:389.580000px;}
.y99{bottom:397.020000px;}
.y85{bottom:400.320000px;}
.y32{bottom:403.200000px;}
.y2c{bottom:403.440000px;}
.y72{bottom:405.060000px;}
.y10{bottom:407.820000px;}
.y5b{bottom:408.330000px;}
.y84{bottom:422.010000px;}
.y98{bottom:422.940000px;}
.y31{bottom:423.000000px;}
.y2b{bottom:423.240000px;}
.y71{bottom:424.500000px;}
.y5a{bottom:427.230000px;}
.yf{bottom:427.620000px;}
.y61{bottom:436.380000px;}
.y30{bottom:442.800000px;}
.y2a{bottom:443.040000px;}
.y83{bottom:443.790000px;}
.y59{bottom:446.130000px;}
.y70{bottom:446.190000px;}
.ye{bottom:447.420000px;}
.y97{bottom:448.770000px;}
.y47{bottom:453.180000px;}
.y2f{bottom:462.600000px;}
.y34{bottom:462.630000px;}
.y29{bottom:462.840000px;}
.y60{bottom:464.370000px;}
.y58{bottom:465.030000px;}
.y82{bottom:465.480000px;}
.yd{bottom:467.220000px;}
.y36{bottom:468.420000px;}
.y46{bottom:478.380000px;}
.y2e{bottom:482.400000px;}
.y28{bottom:482.640000px;}
.y57{bottom:483.930000px;}
.yc{bottom:486.300000px;}
.y33{bottom:486.930000px;}
.ya1{bottom:487.830000px;}
.y81{bottom:488.820000px;}
.y20{bottom:490.980000px;}
.y5f{bottom:492.300000px;}
.y35{bottom:492.720000px;}
.y25{bottom:492.780000px;}
.y2d{bottom:503.010000px;}
.y27{bottom:503.250000px;}
.y56{bottom:503.820000px;}
.yb{bottom:504.030000px;}
.y96{bottom:517.020000px;}
.y9{bottom:559.200000px;}
.he{height:49.937344px;}
.h15{height:53.925996px;}
.h7{height:56.320312px;}
.h13{height:56.445469px;}
.ha{height:59.092559px;}
.h5{height:62.703281px;}
.h4{height:62.828437px;}
.h6{height:65.707031px;}
.h14{height:65.832188px;}
.h19{height:67.165312px;}
.h18{height:67.272949px;}
.h9{height:68.710781px;}
.hb{height:68.835938px;}
.h12{height:72.654785px;}
.hc{height:75.093750px;}
.h16{height:75.238066px;}
.h17{height:78.097500px;}
.h2{height:81.476719px;}
.h3{height:81.601875px;}
.h8{height:84.480469px;}
.hf{height:84.605625px;}
.hd{height:87.484219px;}
.h10{height:87.609375px;}
.h1{height:100.250156px;}
.h11{height:199.804219px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:42.509984px;}
.x24{left:47.909984px;}
.x8{left:51.869984px;}
.x12{left:53.069984px;}
.x23{left:58.529984px;}
.x1d{left:59.789984px;}
.xa{left:61.949984px;}
.x1a{left:64.379984px;}
.x25{left:74.189984px;}
.x13{left:75.569984px;}
.xc{left:82.199984px;}
.xb{left:95.699984px;}
.x1e{left:101.939984px;}
.x1f{left:116.969984px;}
.x1c{left:141.809984px;}
.x20{left:155.939984px;}
.xe{left:198.059984px;}
.x3{left:302.999984px;}
.x6{left:314.429984px;}
.x4{left:342.779984px;}
.x1{left:411.899984px;}
.x2{left:505.709984px;}
.xf{left:517.799984px;}
.x5{left:521.369984px;}
.x7{left:561.119984px;}
.x21{left:621.449984px;}
.x14{left:629.939984px;}
.x10{left:669.719984px;}
.x17{left:697.619984px;}
.x11{left:703.259984px;}
.x18{left:747.029984px;}
.x15{left:776.069984px;}
.x19{left:794.069984px;}
.x16{left:796.559984px;}
.x22{left:1010.969984px;}
.x9{left:1018.439984px;}
.x1b{left:1071.389984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:99.840000pt;}
.ls1c{letter-spacing:-0.217067pt;}
.ls10{letter-spacing:-0.175467pt;}
.ls20{letter-spacing:-0.152000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.116267pt;}
.ls0{letter-spacing:-0.043840pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.016640pt;}
.ls19{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.024000pt;}
.ls17{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.059733pt;}
.ls8{letter-spacing:0.080533pt;}
.lsd{letter-spacing:0.085333pt;}
.ls21{letter-spacing:0.111467pt;}
.ls5{letter-spacing:0.119467pt;}
.ls9{letter-spacing:0.143467pt;}
.lsc{letter-spacing:0.144533pt;}
.ls1a{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.297920pt;}
.lsf{letter-spacing:0.336533pt;}
.ls12{letter-spacing:13.252693pt;}
.ls13{letter-spacing:13.312000pt;}
.ls1b{letter-spacing:15.592000pt;}
.ls1d{letter-spacing:15.690667pt;}
.ls3{letter-spacing:20.128000pt;}
.ls6{letter-spacing:49.600000pt;}
.ls4{letter-spacing:99.504000pt;}
.lsa{letter-spacing:99.610667pt;}
.ls1e{letter-spacing:106.217813pt;}
.ls16{letter-spacing:106.282240pt;}
.ws0{word-spacing:-23.708480pt;}
.wsb{word-spacing:-20.611413pt;}
.ws9{word-spacing:-20.552213pt;}
.ws5{word-spacing:-20.016000pt;}
.ws13{word-spacing:-19.864000pt;}
.ws11{word-spacing:-19.828587pt;}
.ws15{word-spacing:-18.503680pt;}
.wse{word-spacing:-16.279680pt;}
.ws1{word-spacing:-15.592000pt;}
.wsa{word-spacing:-15.568000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws8{word-spacing:-12.168213pt;}
.ws10{word-spacing:-12.129600pt;}
.ws7{word-spacing:-11.848320pt;}
.ws4{word-spacing:-11.831680pt;}
.ws12{word-spacing:-0.296000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:25.528107pt;}
.wsc{word-spacing:54.639680pt;}
.ws16{word-spacing:76.474987pt;}
.ws14{word-spacing:77.754987pt;}
.wsd{word-spacing:84.506347pt;}
.wsf{word-spacing:84.565333pt;}
._2{margin-left:-1.953920pt;}
._0{margin-left:-0.929493pt;}
._1{width:1.041600pt;}
._3{width:2.511467pt;}
._6{width:16.644800pt;}
._4{width:18.896320pt;}
._5{width:106.282240pt;}
.fsc{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fsf{font-size:48.106667pt;}
.fs4{font-size:53.440000pt;}
.fs3{font-size:53.546667pt;}
.fs5{font-size:56.000000pt;}
.fs10{font-size:56.106667pt;}
.fs9{font-size:58.560000pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs11{font-size:66.560000pt;}
.fs12{font-size:66.666667pt;}
.fs1{font-size:69.440000pt;}
.fs2{font-size:69.546667pt;}
.fs8{font-size:72.000000pt;}
.fsd{font-size:72.106667pt;}
.fs7{font-size:74.560000pt;}
.fse{font-size:74.666667pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.093333pt;}
.y48{bottom:6.986667pt;}
.ya{bottom:14.240000pt;}
.y8{bottom:26.560000pt;}
.y3b{bottom:28.293333pt;}
.y3a{bottom:31.333333pt;}
.y23{bottom:35.333333pt;}
.y80{bottom:39.280000pt;}
.y1e{bottom:39.733333pt;}
.y4b{bottom:43.280000pt;}
.y95{bottom:46.266667pt;}
.y22{bottom:48.133333pt;}
.y26{bottom:51.386667pt;}
.y6{bottom:56.373333pt;}
.y4a{bottom:57.680000pt;}
.y1d{bottom:58.933333pt;}
.y6f{bottom:59.920000pt;}
.y21{bottom:60.933333pt;}
.y7f{bottom:61.680000pt;}
.y94{bottom:63.946667pt;}
.y49{bottom:72.106667pt;}
.y5{bottom:72.373333pt;}
.y6e{bottom:72.720000pt;}
.y3c{bottom:81.226667pt;}
.y7e{bottom:84.080000pt;}
.y6d{bottom:85.520000pt;}
.y1c{bottom:86.133333pt;}
.y24{bottom:88.346667pt;}
.y4{bottom:88.400000pt;}
.y37{bottom:97.226667pt;}
.y93{bottom:104.613333pt;}
.y1b{bottom:105.333333pt;}
.y5e{bottom:106.160000pt;}
.y5d{bottom:122.960000pt;}
.y45{bottom:123.920000pt;}
.y92{bottom:123.973333pt;}
.y1a{bottom:124.533333pt;}
.y5c{bottom:140.640000pt;}
.y91{bottom:143.253333pt;}
.y3{bottom:145.440000pt;}
.y44{bottom:145.520000pt;}
.y1f{bottom:148.213333pt;}
.y6c{bottom:149.386667pt;}
.y90{bottom:162.613333pt;}
.y7d{bottom:164.746667pt;}
.y2{bottom:166.240000pt;}
.ya0{bottom:168.880000pt;}
.y6b{bottom:169.626667pt;}
.y55{bottom:176.480000pt;}
.y8f{bottom:181.893333pt;}
.y19{bottom:184.080000pt;}
.y7c{bottom:184.106667pt;}
.y1{bottom:188.000000pt;}
.y6a{bottom:189.386667pt;}
.y9f{bottom:191.920000pt;}
.y54{bottom:194.080000pt;}
.y8e{bottom:201.253333pt;}
.y18{bottom:201.680000pt;}
.y7b{bottom:203.386667pt;}
.y69{bottom:207.786667pt;}
.y53{bottom:211.520000pt;}
.y9e{bottom:214.906667pt;}
.y17{bottom:219.280000pt;}
.y8d{bottom:220.533333pt;}
.y7a{bottom:222.746667pt;}
.y43{bottom:223.546667pt;}
.y68{bottom:226.186667pt;}
.y52{bottom:228.320000pt;}
.y16{bottom:236.880000pt;}
.y8c{bottom:239.200000pt;}
.y42{bottom:240.346667pt;}
.y79{bottom:241.413333pt;}
.y67{bottom:245.093333pt;}
.y51{bottom:245.120000pt;}
.y39{bottom:245.413333pt;}
.y15{bottom:254.480000pt;}
.y8b{bottom:255.760000pt;}
.y41{bottom:257.146667pt;}
.y78{bottom:257.973333pt;}
.y9d{bottom:260.906667pt;}
.y50{bottom:261.920000pt;}
.y66{bottom:265.333333pt;}
.y38{bottom:271.093333pt;}
.y14{bottom:272.080000pt;}
.y8a{bottom:272.320000pt;}
.y40{bottom:274.826667pt;}
.y77{bottom:275.173333pt;}
.y4f{bottom:278.720000pt;}
.y9c{bottom:283.946667pt;}
.y65{bottom:285.573333pt;}
.y89{bottom:288.880000pt;}
.y13{bottom:289.680000pt;}
.y76{bottom:293.813333pt;}
.y4e{bottom:295.546667pt;}
.y3f{bottom:296.426667pt;}
.y88{bottom:305.440000pt;}
.y64{bottom:305.813333pt;}
.y9b{bottom:306.906667pt;}
.y12{bottom:307.280000pt;}
.y75{bottom:310.373333pt;}
.y4d{bottom:312.346667pt;}
.y3e{bottom:318.053333pt;}
.y87{bottom:322.000000pt;}
.y11{bottom:325.600000pt;}
.y63{bottom:326.053333pt;}
.y74{bottom:326.933333pt;}
.y9a{bottom:329.946667pt;}
.y4c{bottom:330.026667pt;}
.y86{bottom:338.560000pt;}
.y3d{bottom:339.653333pt;}
.y73{bottom:343.493333pt;}
.y62{bottom:346.293333pt;}
.y99{bottom:352.906667pt;}
.y85{bottom:355.840000pt;}
.y32{bottom:358.400000pt;}
.y2c{bottom:358.613333pt;}
.y72{bottom:360.053333pt;}
.y10{bottom:362.506667pt;}
.y5b{bottom:362.960000pt;}
.y84{bottom:375.120000pt;}
.y98{bottom:375.946667pt;}
.y31{bottom:376.000000pt;}
.y2b{bottom:376.213333pt;}
.y71{bottom:377.333333pt;}
.y5a{bottom:379.760000pt;}
.yf{bottom:380.106667pt;}
.y61{bottom:387.893333pt;}
.y30{bottom:393.600000pt;}
.y2a{bottom:393.813333pt;}
.y83{bottom:394.480000pt;}
.y59{bottom:396.560000pt;}
.y70{bottom:396.613333pt;}
.ye{bottom:397.706667pt;}
.y97{bottom:398.906667pt;}
.y47{bottom:402.826667pt;}
.y2f{bottom:411.200000pt;}
.y34{bottom:411.226667pt;}
.y29{bottom:411.413333pt;}
.y60{bottom:412.773333pt;}
.y58{bottom:413.360000pt;}
.y82{bottom:413.760000pt;}
.yd{bottom:415.306667pt;}
.y36{bottom:416.373333pt;}
.y46{bottom:425.226667pt;}
.y2e{bottom:428.800000pt;}
.y28{bottom:429.013333pt;}
.y57{bottom:430.160000pt;}
.yc{bottom:432.266667pt;}
.y33{bottom:432.826667pt;}
.ya1{bottom:433.626667pt;}
.y81{bottom:434.506667pt;}
.y20{bottom:436.426667pt;}
.y5f{bottom:437.600000pt;}
.y35{bottom:437.973333pt;}
.y25{bottom:438.026667pt;}
.y2d{bottom:447.120000pt;}
.y27{bottom:447.333333pt;}
.y56{bottom:447.840000pt;}
.yb{bottom:448.026667pt;}
.y96{bottom:459.573333pt;}
.y9{bottom:497.066667pt;}
.he{height:44.388750pt;}
.h15{height:47.934219pt;}
.h7{height:50.062500pt;}
.h13{height:50.173750pt;}
.ha{height:52.526719pt;}
.h5{height:55.736250pt;}
.h4{height:55.847500pt;}
.h6{height:58.406250pt;}
.h14{height:58.517500pt;}
.h19{height:59.702500pt;}
.h18{height:59.798177pt;}
.h9{height:61.076250pt;}
.hb{height:61.187500pt;}
.h12{height:64.582031pt;}
.hc{height:66.750000pt;}
.h16{height:66.878281pt;}
.h17{height:69.420000pt;}
.h2{height:72.423750pt;}
.h3{height:72.535000pt;}
.h8{height:75.093750pt;}
.hf{height:75.205000pt;}
.hd{height:77.763750pt;}
.h10{height:77.875000pt;}
.h1{height:89.111250pt;}
.h11{height:177.603750pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:37.786652pt;}
.x24{left:42.586652pt;}
.x8{left:46.106652pt;}
.x12{left:47.173319pt;}
.x23{left:52.026652pt;}
.x1d{left:53.146652pt;}
.xa{left:55.066652pt;}
.x1a{left:57.226652pt;}
.x25{left:65.946652pt;}
.x13{left:67.173319pt;}
.xc{left:73.066652pt;}
.xb{left:85.066652pt;}
.x1e{left:90.613319pt;}
.x1f{left:103.973319pt;}
.x1c{left:126.053319pt;}
.x20{left:138.613319pt;}
.xe{left:176.053319pt;}
.x3{left:269.333319pt;}
.x6{left:279.493319pt;}
.x4{left:304.693319pt;}
.x1{left:366.133319pt;}
.x2{left:449.519986pt;}
.xf{left:460.266652pt;}
.x5{left:463.439986pt;}
.x7{left:498.773319pt;}
.x21{left:552.399986pt;}
.x14{left:559.946652pt;}
.x10{left:595.306652pt;}
.x17{left:620.106652pt;}
.x11{left:625.119986pt;}
.x18{left:664.026652pt;}
.x15{left:689.839986pt;}
.x19{left:705.839986pt;}
.x16{left:708.053319pt;}
.x22{left:898.639986pt;}
.x9{left:905.279986pt;}
.x1b{left:952.346652pt;}
}




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