
    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_bad4ad1ff6e986d04ecd395f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_274bba16ab89d6010c0622bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_70cbdf770911407b51fb6b0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a4a2ce02e94b56086a9ebbf9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_7da75b08eb6b5de5528eea53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919434;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;}
.ls8{letter-spacing:-4.190400px;}
.ls13{letter-spacing:-2.354400px;}
.lsf{letter-spacing:-1.296000px;}
.lsb{letter-spacing:-1.087200px;}
.lsa{letter-spacing:-1.051200px;}
.ls14{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.345600px;}
.ls10{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.028800px;}
.ls7{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.014400px;}
.ls6{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.015840px;}
.ls1{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.028800px;}
.ls12{letter-spacing:0.034560px;}
.lsc{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.043200px;}
.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;}
}
.ws12{word-spacing:-0.115200px;}
.wsf{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.100800px;}
.ws1{word-spacing:-0.093600px;}
.ws2{word-spacing:-0.086400px;}
.ws5{word-spacing:-0.079200px;}
.ws4{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.064800px;}
.ws8{word-spacing:-0.057600px;}
.ws6{word-spacing:-0.050400px;}
.wsc{word-spacing:-0.043200px;}
.ws10{word-spacing:-0.036000px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:0.273600px;}
.ws13{word-spacing:0.612000px;}
.ws9{word-spacing:0.979200px;}
.wsa{word-spacing:1.015200px;}
.wse{word-spacing:1.224000px;}
.ws11{word-spacing:2.282400px;}
.ws7{word-spacing:4.118400px;}
._3{margin-left:-7.349760px;}
._0{margin-left:-6.336000px;}
._5{margin-left:-5.184000px;}
._9{margin-left:-3.225600px;}
._2{margin-left:-2.030400px;}
._1{margin-left:-1.008000px;}
._4{width:1.958400px;}
._7{width:3.168000px;}
._6{width:4.176000px;}
._8{width:5.184000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:4.200000px;}
.y60{bottom:4.500000px;}
.y9{bottom:4.680000px;}
.y59{bottom:4.800000px;}
.y25{bottom:4.860000px;}
.ybd{bottom:4.980000px;}
.y42{bottom:5.160000px;}
.y3c{bottom:5.220000px;}
.y45{bottom:13.080000px;}
.y1c{bottom:15.720000px;}
.y18{bottom:18.360000px;}
.y9f{bottom:25.080000px;}
.yd4{bottom:25.380000px;}
.y2d{bottom:25.560000px;}
.y5f{bottom:25.740000px;}
.ybc{bottom:25.860000px;}
.y8{bottom:25.920000px;}
.y58{bottom:26.040000px;}
.y24{bottom:26.100000px;}
.y41{bottom:26.400000px;}
.yd8{bottom:27.420000px;}
.y2{bottom:29.820000px;}
.y32{bottom:30.240000px;}
.y44{bottom:34.320000px;}
.y17{bottom:42.480000px;}
.y2f{bottom:42.720000px;}
.y9e{bottom:46.320000px;}
.yd3{bottom:46.620000px;}
.y7{bottom:46.800000px;}
.y57{bottom:46.920000px;}
.y23{bottom:46.980000px;}
.ybb{bottom:47.100000px;}
.y3b{bottom:47.340000px;}
.y40{bottom:47.640000px;}
.yd7{bottom:48.300000px;}
.y43{bottom:55.560000px;}
.y16{bottom:66.960000px;}
.y9d{bottom:67.200000px;}
.y5e{bottom:67.860000px;}
.yba{bottom:67.980000px;}
.y2c{bottom:68.040000px;}
.y56{bottom:68.160000px;}
.y22{bottom:68.220000px;}
.y3f{bottom:68.520000px;}
.yd6{bottom:69.540000px;}
.y9c{bottom:88.440000px;}
.yd2{bottom:88.740000px;}
.y2b{bottom:88.920000px;}
.y55{bottom:89.040000px;}
.y5d{bottom:89.100000px;}
.yb9{bottom:89.220000px;}
.y21{bottom:89.460000px;}
.y3e{bottom:89.760000px;}
.y15{bottom:91.080000px;}
.y9b{bottom:109.680000px;}
.y5c{bottom:109.980000px;}
.y2a{bottom:110.160000px;}
.y54{bottom:110.280000px;}
.y20{bottom:110.340000px;}
.yb8{bottom:110.460000px;}
.y14{bottom:115.200000px;}
.y61{bottom:118.500000px;}
.y9a{bottom:130.560000px;}
.yd1{bottom:130.860000px;}
.y5b{bottom:131.220000px;}
.yb7{bottom:131.340000px;}
.y29{bottom:131.400000px;}
.y53{bottom:131.520000px;}
.y1f{bottom:131.580000px;}
.y8c{bottom:132.060000px;}
.y13{bottom:139.680000px;}
.y39{bottom:141.240000px;}
.y99{bottom:151.800000px;}
.yd0{bottom:152.100000px;}
.y28{bottom:152.280000px;}
.y52{bottom:152.400000px;}
.y1e{bottom:152.460000px;}
.yb6{bottom:152.580000px;}
.y8b{bottom:153.300000px;}
.y38{bottom:162.480000px;}
.y12{bottom:163.800000px;}
.y98{bottom:172.680000px;}
.y5a{bottom:173.340000px;}
.yb5{bottom:173.460000px;}
.y27{bottom:173.520000px;}
.y51{bottom:173.640000px;}
.y30{bottom:174.240000px;}
.y8a{bottom:174.540000px;}
.y37{bottom:183.720000px;}
.y11{bottom:188.280000px;}
.y2e{bottom:192.000000px;}
.y46{bottom:193.500000px;}
.y97{bottom:193.920000px;}
.ycf{bottom:194.220000px;}
.y26{bottom:194.400000px;}
.y50{bottom:194.520000px;}
.yb4{bottom:194.700000px;}
.y89{bottom:195.420000px;}
.y36{bottom:204.600000px;}
.y10{bottom:212.400000px;}
.y96{bottom:215.160000px;}
.yd9{bottom:215.280000px;}
.yce{bottom:215.460000px;}
.y4f{bottom:215.760000px;}
.yb3{bottom:215.940000px;}
.y88{bottom:216.660000px;}
.y35{bottom:225.840000px;}
.yd5{bottom:232.500000px;}
.y95{bottom:236.040000px;}
.ycd{bottom:236.340000px;}
.yf{bottom:236.520000px;}
.yb2{bottom:236.820000px;}
.y4e{bottom:237.000000px;}
.y87{bottom:237.540000px;}
.y34{bottom:246.720000px;}
.y19{bottom:252.000000px;}
.y94{bottom:257.280000px;}
.ycc{bottom:257.580000px;}
.y4d{bottom:257.880000px;}
.yb1{bottom:258.060000px;}
.y86{bottom:258.780000px;}
.ye{bottom:261.000000px;}
.y93{bottom:278.520000px;}
.ycb{bottom:278.820000px;}
.y4c{bottom:279.120000px;}
.yb0{bottom:279.300000px;}
.y85{bottom:280.020000px;}
.yd{bottom:285.120000px;}
.y92{bottom:299.400000px;}
.yca{bottom:299.700000px;}
.yaf{bottom:300.180000px;}
.y4b{bottom:300.360000px;}
.y84{bottom:300.900000px;}
.yc{bottom:309.600000px;}
.yc2{bottom:310.020000px;}
.yb{bottom:312.840000px;}
.yc3{bottom:319.500000px;}
.y91{bottom:320.640000px;}
.yc9{bottom:320.940000px;}
.y4a{bottom:321.240000px;}
.yae{bottom:321.420000px;}
.y83{bottom:322.140000px;}
.yc1{bottom:331.260000px;}
.ya{bottom:333.720000px;}
.y90{bottom:341.520000px;}
.yc8{bottom:342.180000px;}
.yad{bottom:342.300000px;}
.y49{bottom:342.480000px;}
.y82{bottom:343.380000px;}
.yc0{bottom:352.500000px;}
.y8f{bottom:362.760000px;}
.yc7{bottom:363.060000px;}
.yac{bottom:363.540000px;}
.y81{bottom:364.260000px;}
.ybf{bottom:373.380000px;}
.y5{bottom:376.920000px;}
.y48{bottom:384.000000px;}
.yc6{bottom:384.300000px;}
.yab{bottom:384.780000px;}
.y80{bottom:385.500000px;}
.y1a{bottom:396.720000px;}
.y4{bottom:397.800000px;}
.y8e{bottom:404.880000px;}
.yc5{bottom:405.180000px;}
.yaa{bottom:405.660000px;}
.y7f{bottom:406.380000px;}
.yc4{bottom:426.420000px;}
.ya9{bottom:426.900000px;}
.y7e{bottom:427.620000px;}
.ya8{bottom:448.140000px;}
.y7d{bottom:448.860000px;}
.y1d{bottom:463.500000px;}
.ya7{bottom:469.020000px;}
.y7c{bottom:469.740000px;}
.ya6{bottom:490.260000px;}
.y7b{bottom:490.980000px;}
.ya5{bottom:511.140000px;}
.y7a{bottom:511.860000px;}
.ya4{bottom:532.380000px;}
.y47{bottom:532.980000px;}
.y79{bottom:533.100000px;}
.ya3{bottom:553.620000px;}
.y78{bottom:554.340000px;}
.ya2{bottom:574.500000px;}
.y77{bottom:575.220000px;}
.ya1{bottom:595.740000px;}
.y76{bottom:596.460000px;}
.y75{bottom:617.700000px;}
.y1b{bottom:633.000000px;}
.y74{bottom:638.580000px;}
.y73{bottom:659.820000px;}
.y3{bottom:666.000000px;}
.y72{bottom:680.700000px;}
.y71{bottom:701.940000px;}
.y70{bottom:723.180000px;}
.y8d{bottom:732.000000px;}
.y33{bottom:744.000000px;}
.y6f{bottom:744.060000px;}
.ybe{bottom:763.500000px;}
.y6e{bottom:765.300000px;}
.y6d{bottom:786.180000px;}
.y6c{bottom:807.420000px;}
.y3d{bottom:816.000000px;}
.y6b{bottom:828.660000px;}
.y6a{bottom:849.540000px;}
.y69{bottom:870.780000px;}
.y68{bottom:892.020000px;}
.y67{bottom:912.900000px;}
.y3a{bottom:922.500000px;}
.y66{bottom:934.140000px;}
.y65{bottom:955.020000px;}
.y64{bottom:976.260000px;}
.y63{bottom:997.500000px;}
.y31{bottom:1008.000000px;}
.y6{bottom:1017.000000px;}
.y62{bottom:1018.380000px;}
.y1{bottom:1081.500000px;}
.h8{height:33.000000px;}
.hc{height:47.988281px;}
.h3{height:50.484375px;}
.hb{height:60.000000px;}
.h5{height:64.500000px;}
.h2{height:73.500000px;}
.he{height:85.500000px;}
.h18{height:87.000000px;}
.hf{height:108.000000px;}
.h9{height:171.000000px;}
.h12{height:190.500000px;}
.ha{height:213.000000px;}
.hd{height:264.000000px;}
.h6{height:351.000000px;}
.h11{height:360.000000px;}
.h16{height:391.500000px;}
.h7{height:414.000000px;}
.h4{height:415.500000px;}
.h14{height:423.000000px;}
.h17{height:444.000000px;}
.h10{height:550.500000px;}
.h15{height:613.500000px;}
.h13{height:1036.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:160.500000px;}
.w2{width:171.000000px;}
.w3{width:181.500000px;}
.w7{width:213.000000px;}
.w8{width:405.000000px;}
.w4{width:426.000000px;}
.w5{width:777.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:8.700072px;}
.xb{left:21.296628px;}
.x1{left:43.500000px;}
.x2{left:52.188000px;}
.x9{left:54.000000px;}
.x4{left:67.746084px;}
.xc{left:71.734884px;}
.xf{left:80.662356px;}
.x10{left:106.192392px;}
.x8{left:108.000000px;}
.xe{left:161.771280px;}
.x6{left:189.916080px;}
.xa{left:202.564836px;}
.x3{left:214.500000px;}
.x5{left:394.500000px;}
.xd{left:426.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-3.724800pt;}
.ls13{letter-spacing:-2.092800pt;}
.lsf{letter-spacing:-1.152000pt;}
.lsb{letter-spacing:-0.966400pt;}
.lsa{letter-spacing:-0.934400pt;}
.ls14{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.307200pt;}
.ls10{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.025600pt;}
.ls7{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.014080pt;}
.ls1{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.025600pt;}
.ls12{letter-spacing:0.030720pt;}
.lsc{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.038400pt;}
.ws12{word-spacing:-0.102400pt;}
.wsf{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.089600pt;}
.ws1{word-spacing:-0.083200pt;}
.ws2{word-spacing:-0.076800pt;}
.ws5{word-spacing:-0.070400pt;}
.ws4{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.057600pt;}
.ws8{word-spacing:-0.051200pt;}
.ws6{word-spacing:-0.044800pt;}
.wsc{word-spacing:-0.038400pt;}
.ws10{word-spacing:-0.032000pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:0.243200pt;}
.ws13{word-spacing:0.544000pt;}
.ws9{word-spacing:0.870400pt;}
.wsa{word-spacing:0.902400pt;}
.wse{word-spacing:1.088000pt;}
.ws11{word-spacing:2.028800pt;}
.ws7{word-spacing:3.660800pt;}
._3{margin-left:-6.533120pt;}
._0{margin-left:-5.632000pt;}
._5{margin-left:-4.608000pt;}
._9{margin-left:-2.867200pt;}
._2{margin-left:-1.804800pt;}
._1{margin-left:-0.896000pt;}
._4{width:1.740800pt;}
._7{width:2.816000pt;}
._6{width:3.712000pt;}
._8{width:4.608000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:3.733333pt;}
.y60{bottom:4.000000pt;}
.y9{bottom:4.160000pt;}
.y59{bottom:4.266667pt;}
.y25{bottom:4.320000pt;}
.ybd{bottom:4.426667pt;}
.y42{bottom:4.586667pt;}
.y3c{bottom:4.640000pt;}
.y45{bottom:11.626667pt;}
.y1c{bottom:13.973333pt;}
.y18{bottom:16.320000pt;}
.y9f{bottom:22.293333pt;}
.yd4{bottom:22.560000pt;}
.y2d{bottom:22.720000pt;}
.y5f{bottom:22.880000pt;}
.ybc{bottom:22.986667pt;}
.y8{bottom:23.040000pt;}
.y58{bottom:23.146667pt;}
.y24{bottom:23.200000pt;}
.y41{bottom:23.466667pt;}
.yd8{bottom:24.373333pt;}
.y2{bottom:26.506667pt;}
.y32{bottom:26.880000pt;}
.y44{bottom:30.506667pt;}
.y17{bottom:37.760000pt;}
.y2f{bottom:37.973333pt;}
.y9e{bottom:41.173333pt;}
.yd3{bottom:41.440000pt;}
.y7{bottom:41.600000pt;}
.y57{bottom:41.706667pt;}
.y23{bottom:41.760000pt;}
.ybb{bottom:41.866667pt;}
.y3b{bottom:42.080000pt;}
.y40{bottom:42.346667pt;}
.yd7{bottom:42.933333pt;}
.y43{bottom:49.386667pt;}
.y16{bottom:59.520000pt;}
.y9d{bottom:59.733333pt;}
.y5e{bottom:60.320000pt;}
.yba{bottom:60.426667pt;}
.y2c{bottom:60.480000pt;}
.y56{bottom:60.586667pt;}
.y22{bottom:60.640000pt;}
.y3f{bottom:60.906667pt;}
.yd6{bottom:61.813333pt;}
.y9c{bottom:78.613333pt;}
.yd2{bottom:78.880000pt;}
.y2b{bottom:79.040000pt;}
.y55{bottom:79.146667pt;}
.y5d{bottom:79.200000pt;}
.yb9{bottom:79.306667pt;}
.y21{bottom:79.520000pt;}
.y3e{bottom:79.786667pt;}
.y15{bottom:80.960000pt;}
.y9b{bottom:97.493333pt;}
.y5c{bottom:97.760000pt;}
.y2a{bottom:97.920000pt;}
.y54{bottom:98.026667pt;}
.y20{bottom:98.080000pt;}
.yb8{bottom:98.186667pt;}
.y14{bottom:102.400000pt;}
.y61{bottom:105.333333pt;}
.y9a{bottom:116.053333pt;}
.yd1{bottom:116.320000pt;}
.y5b{bottom:116.640000pt;}
.yb7{bottom:116.746667pt;}
.y29{bottom:116.800000pt;}
.y53{bottom:116.906667pt;}
.y1f{bottom:116.960000pt;}
.y8c{bottom:117.386667pt;}
.y13{bottom:124.160000pt;}
.y39{bottom:125.546667pt;}
.y99{bottom:134.933333pt;}
.yd0{bottom:135.200000pt;}
.y28{bottom:135.360000pt;}
.y52{bottom:135.466667pt;}
.y1e{bottom:135.520000pt;}
.yb6{bottom:135.626667pt;}
.y8b{bottom:136.266667pt;}
.y38{bottom:144.426667pt;}
.y12{bottom:145.600000pt;}
.y98{bottom:153.493333pt;}
.y5a{bottom:154.080000pt;}
.yb5{bottom:154.186667pt;}
.y27{bottom:154.240000pt;}
.y51{bottom:154.346667pt;}
.y30{bottom:154.880000pt;}
.y8a{bottom:155.146667pt;}
.y37{bottom:163.306667pt;}
.y11{bottom:167.360000pt;}
.y2e{bottom:170.666667pt;}
.y46{bottom:172.000000pt;}
.y97{bottom:172.373333pt;}
.ycf{bottom:172.640000pt;}
.y26{bottom:172.800000pt;}
.y50{bottom:172.906667pt;}
.yb4{bottom:173.066667pt;}
.y89{bottom:173.706667pt;}
.y36{bottom:181.866667pt;}
.y10{bottom:188.800000pt;}
.y96{bottom:191.253333pt;}
.yd9{bottom:191.360000pt;}
.yce{bottom:191.520000pt;}
.y4f{bottom:191.786667pt;}
.yb3{bottom:191.946667pt;}
.y88{bottom:192.586667pt;}
.y35{bottom:200.746667pt;}
.yd5{bottom:206.666667pt;}
.y95{bottom:209.813333pt;}
.ycd{bottom:210.080000pt;}
.yf{bottom:210.240000pt;}
.yb2{bottom:210.506667pt;}
.y4e{bottom:210.666667pt;}
.y87{bottom:211.146667pt;}
.y34{bottom:219.306667pt;}
.y19{bottom:224.000000pt;}
.y94{bottom:228.693333pt;}
.ycc{bottom:228.960000pt;}
.y4d{bottom:229.226667pt;}
.yb1{bottom:229.386667pt;}
.y86{bottom:230.026667pt;}
.ye{bottom:232.000000pt;}
.y93{bottom:247.573333pt;}
.ycb{bottom:247.840000pt;}
.y4c{bottom:248.106667pt;}
.yb0{bottom:248.266667pt;}
.y85{bottom:248.906667pt;}
.yd{bottom:253.440000pt;}
.y92{bottom:266.133333pt;}
.yca{bottom:266.400000pt;}
.yaf{bottom:266.826667pt;}
.y4b{bottom:266.986667pt;}
.y84{bottom:267.466667pt;}
.yc{bottom:275.200000pt;}
.yc2{bottom:275.573333pt;}
.yb{bottom:278.080000pt;}
.yc3{bottom:284.000000pt;}
.y91{bottom:285.013333pt;}
.yc9{bottom:285.280000pt;}
.y4a{bottom:285.546667pt;}
.yae{bottom:285.706667pt;}
.y83{bottom:286.346667pt;}
.yc1{bottom:294.453333pt;}
.ya{bottom:296.640000pt;}
.y90{bottom:303.573333pt;}
.yc8{bottom:304.160000pt;}
.yad{bottom:304.266667pt;}
.y49{bottom:304.426667pt;}
.y82{bottom:305.226667pt;}
.yc0{bottom:313.333333pt;}
.y8f{bottom:322.453333pt;}
.yc7{bottom:322.720000pt;}
.yac{bottom:323.146667pt;}
.y81{bottom:323.786667pt;}
.ybf{bottom:331.893333pt;}
.y5{bottom:335.040000pt;}
.y48{bottom:341.333333pt;}
.yc6{bottom:341.600000pt;}
.yab{bottom:342.026667pt;}
.y80{bottom:342.666667pt;}
.y1a{bottom:352.640000pt;}
.y4{bottom:353.600000pt;}
.y8e{bottom:359.893333pt;}
.yc5{bottom:360.160000pt;}
.yaa{bottom:360.586667pt;}
.y7f{bottom:361.226667pt;}
.yc4{bottom:379.040000pt;}
.ya9{bottom:379.466667pt;}
.y7e{bottom:380.106667pt;}
.ya8{bottom:398.346667pt;}
.y7d{bottom:398.986667pt;}
.y1d{bottom:412.000000pt;}
.ya7{bottom:416.906667pt;}
.y7c{bottom:417.546667pt;}
.ya6{bottom:435.786667pt;}
.y7b{bottom:436.426667pt;}
.ya5{bottom:454.346667pt;}
.y7a{bottom:454.986667pt;}
.ya4{bottom:473.226667pt;}
.y47{bottom:473.760000pt;}
.y79{bottom:473.866667pt;}
.ya3{bottom:492.106667pt;}
.y78{bottom:492.746667pt;}
.ya2{bottom:510.666667pt;}
.y77{bottom:511.306667pt;}
.ya1{bottom:529.546667pt;}
.y76{bottom:530.186667pt;}
.y75{bottom:549.066667pt;}
.y1b{bottom:562.666667pt;}
.y74{bottom:567.626667pt;}
.y73{bottom:586.506667pt;}
.y3{bottom:592.000000pt;}
.y72{bottom:605.066667pt;}
.y71{bottom:623.946667pt;}
.y70{bottom:642.826667pt;}
.y8d{bottom:650.666667pt;}
.y33{bottom:661.333333pt;}
.y6f{bottom:661.386667pt;}
.ybe{bottom:678.666667pt;}
.y6e{bottom:680.266667pt;}
.y6d{bottom:698.826667pt;}
.y6c{bottom:717.706667pt;}
.y3d{bottom:725.333333pt;}
.y6b{bottom:736.586667pt;}
.y6a{bottom:755.146667pt;}
.y69{bottom:774.026667pt;}
.y68{bottom:792.906667pt;}
.y67{bottom:811.466667pt;}
.y3a{bottom:820.000000pt;}
.y66{bottom:830.346667pt;}
.y65{bottom:848.906667pt;}
.y64{bottom:867.786667pt;}
.y63{bottom:886.666667pt;}
.y31{bottom:896.000000pt;}
.y6{bottom:904.000000pt;}
.y62{bottom:905.226667pt;}
.y1{bottom:961.333333pt;}
.h8{height:29.333333pt;}
.hc{height:42.656250pt;}
.h3{height:44.875000pt;}
.hb{height:53.333333pt;}
.h5{height:57.333333pt;}
.h2{height:65.333333pt;}
.he{height:76.000000pt;}
.h18{height:77.333333pt;}
.hf{height:96.000000pt;}
.h9{height:152.000000pt;}
.h12{height:169.333333pt;}
.ha{height:189.333333pt;}
.hd{height:234.666667pt;}
.h6{height:312.000000pt;}
.h11{height:320.000000pt;}
.h16{height:348.000000pt;}
.h7{height:368.000000pt;}
.h4{height:369.333333pt;}
.h14{height:376.000000pt;}
.h17{height:394.666667pt;}
.h10{height:489.333333pt;}
.h15{height:545.333333pt;}
.h13{height:921.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:142.666667pt;}
.w2{width:152.000000pt;}
.w3{width:161.333333pt;}
.w7{width:189.333333pt;}
.w8{width:360.000000pt;}
.w4{width:378.666667pt;}
.w5{width:690.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:7.733397pt;}
.xb{left:18.930336pt;}
.x1{left:38.666667pt;}
.x2{left:46.389333pt;}
.x9{left:48.000000pt;}
.x4{left:60.218741pt;}
.xc{left:63.764341pt;}
.xf{left:71.699872pt;}
.x10{left:94.393237pt;}
.x8{left:96.000000pt;}
.xe{left:143.796693pt;}
.x6{left:168.814293pt;}
.xa{left:180.057632pt;}
.x3{left:190.666667pt;}
.x5{left:350.666667pt;}
.xd{left:378.666667pt;}
}




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