
    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_c02f72e66f9caf899017b213.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_1d0d4a1b1013f1618434047d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_895d516b7cdf0257d3f6bc64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_e5007770cba9ea2b97fd9bfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.019531;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_74efb101f197ca140c7b47b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls19{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.252720px;}
.lsa{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.084240px;}
.ls8{letter-spacing:-0.059760px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132480px;}
.ls14{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.358560px;}
.lse{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.511200px;}
.ls3{letter-spacing:1.440000px;}
.ls10{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.872800px;}
.ls16{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.600000px;}
.ls1b{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.040000px;}
.ls11{letter-spacing:7.200000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws16{word-spacing:-18.144000px;}
.ws2e{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws19{word-spacing:-15.298560px;}
.ws18{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.446000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws17{word-spacing:-9.720000px;}
.ws24{word-spacing:-4.320000px;}
.ws1a{word-spacing:-3.600000px;}
.ws3a{word-spacing:-3.384000px;}
.ws37{word-spacing:-3.312000px;}
.ws1d{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.160000px;}
.ws22{word-spacing:-1.872000px;}
.ws3b{word-spacing:-1.613520px;}
.ws3d{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.440000px;}
.ws3c{word-spacing:-1.374480px;}
.ws3e{word-spacing:-1.152000px;}
.ws34{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.432000px;}
.ws2d{word-spacing:-0.179280px;}
.ws32{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.ws2c{word-spacing:0.059760px;}
.wsa{word-spacing:0.084240px;}
.ws2f{word-spacing:0.144000px;}
.ws3{word-spacing:0.162000px;}
.ws2a{word-spacing:0.216000px;}
.ws9{word-spacing:0.252720px;}
.ws7{word-spacing:0.264960px;}
.ws8{word-spacing:0.270000px;}
.ws20{word-spacing:0.288000px;}
.ws28{word-spacing:0.576000px;}
.wsf{word-spacing:0.720000px;}
.ws35{word-spacing:0.936000px;}
.wse{word-spacing:1.008000px;}
.ws11{word-spacing:1.440000px;}
.ws12{word-spacing:1.728000px;}
.ws38{word-spacing:2.016000px;}
.ws13{word-spacing:2.160000px;}
.ws39{word-spacing:2.376000px;}
.ws21{word-spacing:2.448000px;}
.wsc{word-spacing:2.880000px;}
.ws36{word-spacing:3.168000px;}
.wsb{word-spacing:3.600000px;}
.wsd{word-spacing:3.888000px;}
.ws26{word-spacing:4.320000px;}
.ws14{word-spacing:4.608000px;}
.ws1e{word-spacing:5.040000px;}
.ws1f{word-spacing:5.328000px;}
.ws1c{word-spacing:5.760000px;}
.ws1b{word-spacing:6.048000px;}
.ws31{word-spacing:6.480000px;}
.ws27{word-spacing:6.768000px;}
.ws29{word-spacing:7.056000px;}
.ws23{word-spacing:7.200000px;}
.ws3f{word-spacing:7.488000px;}
.ws25{word-spacing:7.920000px;}
.ws2b{word-spacing:10.800000px;}
._4{margin-left:-5.072760px;}
._3{margin-left:-2.448000px;}
._0{margin-left:-1.063800px;}
._1{width:1.312560px;}
._2{width:2.975040px;}
._5{width:4.680000px;}
._6{width:5.760000px;}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.200000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.040000px;}
.y5{bottom:145.440000px;}
.y40{bottom:170.640000px;}
.y54{bottom:171.000000px;}
.y7d{bottom:181.260000px;}
.y53{bottom:194.760000px;}
.y18{bottom:194.940000px;}
.y3f{bottom:195.660000px;}
.y98{bottom:203.760000px;}
.y7c{bottom:205.020000px;}
.y3e{bottom:216.360000px;}
.y52{bottom:218.520000px;}
.y17{bottom:218.700000px;}
.y7b{bottom:228.780000px;}
.y97{bottom:236.520000px;}
.y51{bottom:242.280000px;}
.y16{bottom:242.460000px;}
.y3d{bottom:251.280000px;}
.y6f{bottom:252.720000px;}
.y96{bottom:260.280000px;}
.y15{bottom:266.400000px;}
.y3c{bottom:275.220000px;}
.y6e{bottom:276.480000px;}
.y95{bottom:284.220000px;}
.y14{bottom:290.160000px;}
.y3b{bottom:298.980000px;}
.y6d{bottom:300.240000px;}
.y94{bottom:307.980000px;}
.y7a{bottom:309.240000px;}
.y13{bottom:313.920000px;}
.y3a{bottom:322.740000px;}
.y6c{bottom:324.000000px;}
.y93{bottom:331.740000px;}
.y79{bottom:333.000000px;}
.y12{bottom:337.680000px;}
.y39{bottom:346.500000px;}
.y6b{bottom:347.940000px;}
.y92{bottom:355.500000px;}
.y78{bottom:356.940000px;}
.y11{bottom:361.620000px;}
.y38{bottom:370.440000px;}
.y6a{bottom:371.700000px;}
.y91{bottom:379.440000px;}
.y77{bottom:380.700000px;}
.y10{bottom:385.380000px;}
.y37{bottom:394.200000px;}
.y69{bottom:395.460000px;}
.y90{bottom:403.200000px;}
.y76{bottom:404.460000px;}
.yf{bottom:409.140000px;}
.y36{bottom:417.960000px;}
.y68{bottom:428.220000px;}
.y8f{bottom:435.960000px;}
.ye{bottom:437.940000px;}
.y35{bottom:441.720000px;}
.y50{bottom:450.720000px;}
.y67{bottom:452.160000px;}
.y8e{bottom:459.720000px;}
.y34{bottom:465.660000px;}
.y4f{bottom:474.660000px;}
.y66{bottom:475.920000px;}
.y8d{bottom:483.660000px;}
.y33{bottom:489.420000px;}
.y4e{bottom:498.420000px;}
.y65{bottom:499.680000px;}
.y8c{bottom:507.420000px;}
.y32{bottom:513.180000px;}
.y4d{bottom:522.180000px;}
.y64{bottom:523.440000px;}
.y8b{bottom:531.180000px;}
.y31{bottom:545.940000px;}
.y63{bottom:547.380000px;}
.y8a{bottom:554.940000px;}
.y30{bottom:569.880000px;}
.y62{bottom:571.140000px;}
.y89{bottom:578.880000px;}
.y2f{bottom:593.640000px;}
.y61{bottom:594.900000px;}
.y88{bottom:602.640000px;}
.y2e{bottom:617.400000px;}
.y60{bottom:618.660000px;}
.y87{bottom:626.400000px;}
.y2d{bottom:641.160000px;}
.y5f{bottom:642.600000px;}
.y4c{bottom:650.160000px;}
.y2c{bottom:665.100000px;}
.y5e{bottom:666.360000px;}
.y4b{bottom:674.100000px;}
.y2b{bottom:688.860000px;}
.y5d{bottom:690.120000px;}
.y4a{bottom:697.860000px;}
.y2a{bottom:712.620000px;}
.y5c{bottom:713.880000px;}
.y49{bottom:721.620000px;}
.y29{bottom:736.380000px;}
.y5b{bottom:737.640000px;}
.y48{bottom:745.380000px;}
.y86{bottom:754.380000px;}
.y28{bottom:760.140000px;}
.y5a{bottom:761.580000px;}
.y75{bottom:766.080000px;}
.y47{bottom:769.140000px;}
.y85{bottom:778.140000px;}
.y59{bottom:785.340000px;}
.y27{bottom:793.080000px;}
.y74{bottom:794.340000px;}
.y84{bottom:802.080000px;}
.y58{bottom:813.600000px;}
.y26{bottom:816.840000px;}
.y73{bottom:822.600000px;}
.y83{bottom:825.840000px;}
.y25{bottom:840.600000px;}
.y57{bottom:841.860000px;}
.y82{bottom:849.600000px;}
.y72{bottom:855.360000px;}
.y24{bottom:864.360000px;}
.y56{bottom:870.300000px;}
.y81{bottom:873.360000px;}
.y71{bottom:879.300000px;}
.y23{bottom:888.300000px;}
.y80{bottom:897.300000px;}
.y55{bottom:903.060000px;}
.y22{bottom:912.060000px;}
.y7f{bottom:921.060000px;}
.y70{bottom:926.820000px;}
.y21{bottom:935.820000px;}
.y7e{bottom:944.820000px;}
.y46{bottom:959.580000px;}
.y20{bottom:968.580000px;}
.y45{bottom:983.520000px;}
.y1f{bottom:992.520000px;}
.y44{bottom:1007.280000px;}
.y1e{bottom:1016.280000px;}
.y43{bottom:1031.040000px;}
.y1d{bottom:1040.040000px;}
.yd{bottom:1045.800000px;}
.y42{bottom:1054.800000px;}
.y1c{bottom:1063.800000px;}
.yc{bottom:1069.560000px;}
.y41{bottom:1078.740000px;}
.y1b{bottom:1087.740000px;}
.yb{bottom:1105.193160px;}
.y1a{bottom:1111.500000px;}
.ya{bottom:1130.760000px;}
.y19{bottom:1135.260000px;}
.y4{bottom:1168.020000px;}
.y3{bottom:1189.260000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.ha{height:31.701797px;}
.h5{height:32.940000px;}
.h3{height:38.759766px;}
.h2{height:47.545312px;}
.h4{height:50.027344px;}
.h9{height:60.878320px;}
.h8{height:63.351562px;}
.h6{height:68.938594px;}
.h7{height:68.965954px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.401500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:5.580000px;}
.x3{left:127.620000px;}
.x1{left:180.000000px;}
.xc{left:233.820000px;}
.x9{left:253.265940px;}
.x4{left:288.720000px;}
.xb{left:343.620000px;}
.x6{left:450.000000px;}
.x5{left:478.260000px;}
.x8{left:528.120000px;}
.x2{left:567.900000px;}
.xa{left:671.760000px;}
.xd{left:685.080000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.224640pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.074880pt;}
.ls8{letter-spacing:-0.053120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117760pt;}
.ls14{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.454400pt;}
.ls3{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:2.553600pt;}
.ls16{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.840000pt;}
.lsf{letter-spacing:4.480000pt;}
.ls11{letter-spacing:6.400000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws2e{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws19{word-spacing:-13.598720pt;}
.ws18{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.952000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws17{word-spacing:-8.640000pt;}
.ws24{word-spacing:-3.840000pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws3a{word-spacing:-3.008000pt;}
.ws37{word-spacing:-2.944000pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws33{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.664000pt;}
.ws3b{word-spacing:-1.434240pt;}
.ws3d{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.280000pt;}
.ws3c{word-spacing:-1.221760pt;}
.ws3e{word-spacing:-1.024000pt;}
.ws34{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.384000pt;}
.ws2d{word-spacing:-0.159360pt;}
.ws32{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.053120pt;}
.wsa{word-spacing:0.074880pt;}
.ws2f{word-spacing:0.128000pt;}
.ws3{word-spacing:0.144000pt;}
.ws2a{word-spacing:0.192000pt;}
.ws9{word-spacing:0.224640pt;}
.ws7{word-spacing:0.235520pt;}
.ws8{word-spacing:0.240000pt;}
.ws20{word-spacing:0.256000pt;}
.ws28{word-spacing:0.512000pt;}
.wsf{word-spacing:0.640000pt;}
.ws35{word-spacing:0.832000pt;}
.wse{word-spacing:0.896000pt;}
.ws11{word-spacing:1.280000pt;}
.ws12{word-spacing:1.536000pt;}
.ws38{word-spacing:1.792000pt;}
.ws13{word-spacing:1.920000pt;}
.ws39{word-spacing:2.112000pt;}
.ws21{word-spacing:2.176000pt;}
.wsc{word-spacing:2.560000pt;}
.ws36{word-spacing:2.816000pt;}
.wsb{word-spacing:3.200000pt;}
.wsd{word-spacing:3.456000pt;}
.ws26{word-spacing:3.840000pt;}
.ws14{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.480000pt;}
.ws1f{word-spacing:4.736000pt;}
.ws1c{word-spacing:5.120000pt;}
.ws1b{word-spacing:5.376000pt;}
.ws31{word-spacing:5.760000pt;}
.ws27{word-spacing:6.016000pt;}
.ws29{word-spacing:6.272000pt;}
.ws23{word-spacing:6.400000pt;}
.ws3f{word-spacing:6.656000pt;}
.ws25{word-spacing:7.040000pt;}
.ws2b{word-spacing:9.600000pt;}
._4{margin-left:-4.509120pt;}
._3{margin-left:-2.176000pt;}
._0{margin-left:-0.945600pt;}
._1{width:1.166720pt;}
._2{width:2.644480pt;}
._5{width:4.160000pt;}
._6{width:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.400000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:100.480000pt;}
.y5{bottom:129.280000pt;}
.y40{bottom:151.680000pt;}
.y54{bottom:152.000000pt;}
.y7d{bottom:161.120000pt;}
.y53{bottom:173.120000pt;}
.y18{bottom:173.280000pt;}
.y3f{bottom:173.920000pt;}
.y98{bottom:181.120000pt;}
.y7c{bottom:182.240000pt;}
.y3e{bottom:192.320000pt;}
.y52{bottom:194.240000pt;}
.y17{bottom:194.400000pt;}
.y7b{bottom:203.360000pt;}
.y97{bottom:210.240000pt;}
.y51{bottom:215.360000pt;}
.y16{bottom:215.520000pt;}
.y3d{bottom:223.360000pt;}
.y6f{bottom:224.640000pt;}
.y96{bottom:231.360000pt;}
.y15{bottom:236.800000pt;}
.y3c{bottom:244.640000pt;}
.y6e{bottom:245.760000pt;}
.y95{bottom:252.640000pt;}
.y14{bottom:257.920000pt;}
.y3b{bottom:265.760000pt;}
.y6d{bottom:266.880000pt;}
.y94{bottom:273.760000pt;}
.y7a{bottom:274.880000pt;}
.y13{bottom:279.040000pt;}
.y3a{bottom:286.880000pt;}
.y6c{bottom:288.000000pt;}
.y93{bottom:294.880000pt;}
.y79{bottom:296.000000pt;}
.y12{bottom:300.160000pt;}
.y39{bottom:308.000000pt;}
.y6b{bottom:309.280000pt;}
.y92{bottom:316.000000pt;}
.y78{bottom:317.280000pt;}
.y11{bottom:321.440000pt;}
.y38{bottom:329.280000pt;}
.y6a{bottom:330.400000pt;}
.y91{bottom:337.280000pt;}
.y77{bottom:338.400000pt;}
.y10{bottom:342.560000pt;}
.y37{bottom:350.400000pt;}
.y69{bottom:351.520000pt;}
.y90{bottom:358.400000pt;}
.y76{bottom:359.520000pt;}
.yf{bottom:363.680000pt;}
.y36{bottom:371.520000pt;}
.y68{bottom:380.640000pt;}
.y8f{bottom:387.520000pt;}
.ye{bottom:389.280000pt;}
.y35{bottom:392.640000pt;}
.y50{bottom:400.640000pt;}
.y67{bottom:401.920000pt;}
.y8e{bottom:408.640000pt;}
.y34{bottom:413.920000pt;}
.y4f{bottom:421.920000pt;}
.y66{bottom:423.040000pt;}
.y8d{bottom:429.920000pt;}
.y33{bottom:435.040000pt;}
.y4e{bottom:443.040000pt;}
.y65{bottom:444.160000pt;}
.y8c{bottom:451.040000pt;}
.y32{bottom:456.160000pt;}
.y4d{bottom:464.160000pt;}
.y64{bottom:465.280000pt;}
.y8b{bottom:472.160000pt;}
.y31{bottom:485.280000pt;}
.y63{bottom:486.560000pt;}
.y8a{bottom:493.280000pt;}
.y30{bottom:506.560000pt;}
.y62{bottom:507.680000pt;}
.y89{bottom:514.560000pt;}
.y2f{bottom:527.680000pt;}
.y61{bottom:528.800000pt;}
.y88{bottom:535.680000pt;}
.y2e{bottom:548.800000pt;}
.y60{bottom:549.920000pt;}
.y87{bottom:556.800000pt;}
.y2d{bottom:569.920000pt;}
.y5f{bottom:571.200000pt;}
.y4c{bottom:577.920000pt;}
.y2c{bottom:591.200000pt;}
.y5e{bottom:592.320000pt;}
.y4b{bottom:599.200000pt;}
.y2b{bottom:612.320000pt;}
.y5d{bottom:613.440000pt;}
.y4a{bottom:620.320000pt;}
.y2a{bottom:633.440000pt;}
.y5c{bottom:634.560000pt;}
.y49{bottom:641.440000pt;}
.y29{bottom:654.560000pt;}
.y5b{bottom:655.680000pt;}
.y48{bottom:662.560000pt;}
.y86{bottom:670.560000pt;}
.y28{bottom:675.680000pt;}
.y5a{bottom:676.960000pt;}
.y75{bottom:680.960000pt;}
.y47{bottom:683.680000pt;}
.y85{bottom:691.680000pt;}
.y59{bottom:698.080000pt;}
.y27{bottom:704.960000pt;}
.y74{bottom:706.080000pt;}
.y84{bottom:712.960000pt;}
.y58{bottom:723.200000pt;}
.y26{bottom:726.080000pt;}
.y73{bottom:731.200000pt;}
.y83{bottom:734.080000pt;}
.y25{bottom:747.200000pt;}
.y57{bottom:748.320000pt;}
.y82{bottom:755.200000pt;}
.y72{bottom:760.320000pt;}
.y24{bottom:768.320000pt;}
.y56{bottom:773.600000pt;}
.y81{bottom:776.320000pt;}
.y71{bottom:781.600000pt;}
.y23{bottom:789.600000pt;}
.y80{bottom:797.600000pt;}
.y55{bottom:802.720000pt;}
.y22{bottom:810.720000pt;}
.y7f{bottom:818.720000pt;}
.y70{bottom:823.840000pt;}
.y21{bottom:831.840000pt;}
.y7e{bottom:839.840000pt;}
.y46{bottom:852.960000pt;}
.y20{bottom:860.960000pt;}
.y45{bottom:874.240000pt;}
.y1f{bottom:882.240000pt;}
.y44{bottom:895.360000pt;}
.y1e{bottom:903.360000pt;}
.y43{bottom:916.480000pt;}
.y1d{bottom:924.480000pt;}
.yd{bottom:929.600000pt;}
.y42{bottom:937.600000pt;}
.y1c{bottom:945.600000pt;}
.yc{bottom:950.720000pt;}
.y41{bottom:958.880000pt;}
.y1b{bottom:966.880000pt;}
.yb{bottom:982.393920pt;}
.y1a{bottom:988.000000pt;}
.ya{bottom:1005.120000pt;}
.y19{bottom:1009.120000pt;}
.y4{bottom:1038.240000pt;}
.y3{bottom:1057.120000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.ha{height:28.179375pt;}
.h5{height:29.280000pt;}
.h3{height:34.453125pt;}
.h2{height:42.262500pt;}
.h4{height:44.468750pt;}
.h9{height:54.114063pt;}
.h8{height:56.312500pt;}
.h6{height:61.278750pt;}
.h7{height:61.303070pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.801333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.960000pt;}
.x3{left:113.440000pt;}
.x1{left:160.000000pt;}
.xc{left:207.840000pt;}
.x9{left:225.125280pt;}
.x4{left:256.640000pt;}
.xb{left:305.440000pt;}
.x6{left:400.000000pt;}
.x5{left:425.120000pt;}
.x8{left:469.440000pt;}
.x2{left:504.800000pt;}
.xa{left:597.120000pt;}
.xd{left:608.960000pt;}
}




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