
    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_ecf081e8be7c40fa482c26ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2102f2a009e22dd789cb8224.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_ee50351d318e7e1e858f2311.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_f1d7e5535526d8af66245e1f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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);}
.v1{vertical-align:-70.740000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.100200px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.153360px;}
.ls5{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.314400px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.613440px;}
.ls4{letter-spacing:1.008000px;}
.lse{letter-spacing:3.060000px;}
.ls1b{letter-spacing:3.600000px;}
.ls1d{letter-spacing:5.040000px;}
.ls14{letter-spacing:5.940000px;}
.ls13{letter-spacing:7.380000px;}
.ls1c{letter-spacing:10.980000px;}
.ls17{letter-spacing:18.180000px;}
.ls12{letter-spacing:23.940000px;}
.ls1f{letter-spacing:52.560000px;}
.lsc{letter-spacing:581.916000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.839800px;}
.ws3{word-spacing:-14.525400px;}
.ws4{word-spacing:-14.220000px;}
.ws8{word-spacing:-12.374400px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-4.608000px;}
._f{margin-left:-2.635200px;}
._1{margin-left:-1.350720px;}
._0{width:1.026000px;}
._6{width:2.519280px;}
._a{width:3.804960px;}
._5{width:5.225760px;}
._4{width:6.274800px;}
._3{width:8.232480px;}
._2{width:9.546480px;}
._18{width:10.575840px;}
._8{width:11.727120px;}
._7{width:12.967920px;}
._1a{width:14.904000px;}
._9{width:16.015680px;}
._b{width:17.330400px;}
._d{width:18.465840px;}
._19{width:19.872000px;}
._1d{width:21.200400px;}
._13{width:22.464000px;}
._12{width:23.616000px;}
._11{width:24.678720px;}
._1b{width:26.280000px;}
._1c{width:27.372000px;}
._1f{width:28.428000px;}
._c{width:29.535120px;}
._e{width:31.374000px;}
._17{width:32.746320px;}
._20{width:33.787440px;}
._14{width:35.064000px;}
._1e{width:36.198000px;}
._23{width:37.854720px;}
._15{width:39.168000px;}
._16{width:40.392000px;}
._26{width:41.976000px;}
._24{width:44.172720px;}
._25{width:45.251280px;}
._22{width:46.638720px;}
._21{width:47.880000px;}
._27{width:49.320000px;}
._28{width:50.328000px;}
._2f{width:51.600000px;}
._29{width:60.876720px;}
._2a{width:62.171280px;}
._2d{width:63.720000px;}
._2e{width:65.028000px;}
._2b{width:97.752000px;}
._2c{width:98.892000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.600000px;}
.y2c{bottom:49.536000px;}
.y3{bottom:56.016000px;}
.y2{bottom:69.696000px;}
.y6e{bottom:97.956000px;}
.y4d{bottom:99.396000px;}
.y7e{bottom:103.176000px;}
.y28{bottom:105.516000px;}
.y96{bottom:106.236000px;}
.y6d{bottom:115.236000px;}
.y4c{bottom:120.096000px;}
.y7d{bottom:120.456000px;}
.y27{bottom:122.796000px;}
.y95{bottom:126.936000px;}
.y6c{bottom:132.516000px;}
.y6b{bottom:137.736000px;}
.y26{bottom:140.076000px;}
.y4b{bottom:140.796000px;}
.y94{bottom:147.636000px;}
.y6a{bottom:149.796000px;}
.y74{bottom:155.010000px;}
.y25{bottom:157.350000px;}
.y4a{bottom:161.490000px;}
.y69{bottom:166.890000px;}
.y85{bottom:168.330000px;}
.y73{bottom:172.110000px;}
.y24{bottom:174.450000px;}
.y98{bottom:175.170000px;}
.y49{bottom:182.190000px;}
.y68{bottom:184.170000px;}
.y7c{bottom:189.030000px;}
.y67{bottom:189.390000px;}
.y23{bottom:191.730000px;}
.y93{bottom:195.870000px;}
.y66{bottom:201.450000px;}
.y48{bottom:202.890000px;}
.y22{bottom:209.010000px;}
.y92{bottom:209.370000px;}
.y7b{bottom:209.730000px;}
.y8f{bottom:218.730000px;}
.y47{bottom:223.590000px;}
.y8e{bottom:223.950000px;}
.y21{bottom:225.930000px;}
.y65{bottom:230.070000px;}
.y72{bottom:230.430000px;}
.y8d{bottom:236.055000px;}
.y84{bottom:237.315000px;}
.y20{bottom:243.615000px;}
.y46{bottom:244.335000px;}
.y64{bottom:250.815000px;}
.y70{bottom:251.175000px;}
.y8c{bottom:253.335000px;}
.y71{bottom:258.015000px;}
.y8b{bottom:258.555000px;}
.y1f{bottom:260.895000px;}
.y45{bottom:265.035000px;}
.y8a{bottom:270.435000px;}
.y63{bottom:271.875000px;}
.y1e{bottom:277.995000px;}
.y87{bottom:278.715000px;}
.y44{bottom:285.735000px;}
.y9b{bottom:292.215000px;}
.y62{bottom:292.575000px;}
.y1d{bottom:295.275000px;}
.y43{bottom:306.435000px;}
.y1c{bottom:312.555000px;}
.y9a{bottom:312.915000px;}
.y61{bottom:313.275000px;}
.y7a{bottom:320.115000px;}
.y42{bottom:327.135000px;}
.y1b{bottom:329.835000px;}
.y99{bottom:333.615000px;}
.y60{bottom:333.975000px;}
.y6f{bottom:340.815000px;}
.y1a{bottom:347.115000px;}
.y5f{bottom:354.675000px;}
.y82{bottom:361.515000px;}
.y19{bottom:364.395000px;}
.y41{bottom:364.755000px;}
.y5e{bottom:375.375000px;}
.y18{bottom:381.495000px;}
.y40{bottom:385.095000px;}
.y5d{bottom:396.075000px;}
.y17{bottom:398.775000px;}
.y3f{bottom:402.195000px;}
.y89{bottom:402.915000px;}
.y16{bottom:416.055000px;}
.y5c{bottom:416.775000px;}
.y3e{bottom:419.475000px;}
.y15{bottom:433.365000px;}
.y3d{bottom:436.785000px;}
.y79{bottom:437.145000px;}
.y5b{bottom:437.505000px;}
.y88{bottom:444.345000px;}
.y14{bottom:450.645000px;}
.y3c{bottom:454.065000px;}
.y78{bottom:457.845000px;}
.y5a{bottom:458.205000px;}
.y83{bottom:465.045000px;}
.y13{bottom:467.745000px;}
.y3b{bottom:471.345000px;}
.y77{bottom:478.545000px;}
.y59{bottom:478.905000px;}
.y12{bottom:485.385000px;}
.y3a{bottom:488.445000px;}
.y76{bottom:499.245000px;}
.y58{bottom:499.605000px;}
.y11{bottom:505.725000px;}
.y57{bottom:520.305000px;}
.y10{bottom:523.005000px;}
.y81{bottom:527.145000px;}
.y39{bottom:540.285000px;}
.yf{bottom:540.645000px;}
.y56{bottom:541.005000px;}
.y86{bottom:547.845000px;}
.y38{bottom:557.565000px;}
.ye{bottom:561.705000px;}
.y37{bottom:574.845000px;}
.yd{bottom:582.405000px;}
.y75{bottom:589.245000px;}
.y36{bottom:591.945000px;}
.yc{bottom:603.105000px;}
.y55{bottom:609.945000px;}
.yb{bottom:623.850000px;}
.y35{bottom:626.910000px;}
.y80{bottom:630.690000px;}
.ya{bottom:644.550000px;}
.y34{bottom:647.970000px;}
.y97{bottom:651.390000px;}
.y9{bottom:665.250000px;}
.y33{bottom:667.950000px;}
.y32{bottom:685.230000px;}
.y8{bottom:685.590000px;}
.y53{bottom:685.950000px;}
.y54{bottom:692.790000px;}
.y31{bottom:702.510000px;}
.y7{bottom:706.290000px;}
.y52{bottom:706.650000px;}
.y91{bottom:713.490000px;}
.y30{bottom:719.790000px;}
.y6{bottom:726.990000px;}
.y51{bottom:727.350000px;}
.y2f{bottom:736.890000px;}
.y5{bottom:747.690000px;}
.y50{bottom:748.050000px;}
.y2e{bottom:754.170000px;}
.y7f{bottom:754.890000px;}
.y4{bottom:768.390000px;}
.y4f{bottom:768.750000px;}
.y2d{bottom:771.450000px;}
.y90{bottom:775.590000px;}
.y4e{bottom:809.100000px;}
.y2a{bottom:822.420000px;}
.y29{bottom:826.380000px;}
.y1{bottom:827.640000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.hb{height:38.158594px;}
.h3{height:47.344922px;}
.h2{height:52.998047px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.ha{height:64.546875px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:6.840000px;}
.w3{width:14.940000px;}
.w5{width:15.120000px;}
.w1{width:629.250000px;}
.w6{width:629.459981px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.xe{left:72.395991px;}
.x18{left:77.255991px;}
.x7{left:78.695991px;}
.x26{left:82.115991px;}
.x4{left:95.255991px;}
.xa{left:102.275991px;}
.x16{left:104.435991px;}
.x23{left:108.395981px;}
.x24{left:114.515991px;}
.xb{left:120.455991px;}
.x32{left:130.355981px;}
.x29{left:133.415981px;}
.xc{left:142.775991px;}
.x19{left:146.375981px;}
.x1b{left:148.535991px;}
.x5{left:150.509991px;}
.x1a{left:152.489991px;}
.x8{left:162.209991px;}
.x2a{left:163.289981px;}
.x14{left:165.269981px;}
.x15{left:171.389991px;}
.x2b{left:175.529991px;}
.x4d{left:178.409981px;}
.x25{left:183.089991px;}
.x41{left:184.349981px;}
.x56{left:187.409991px;}
.x4e{left:190.649991px;}
.x2{left:192.449991px;}
.x3b{left:195.149981px;}
.x42{left:196.589991px;}
.x9{left:201.449991px;}
.x4f{left:204.329981px;}
.x3c{left:207.389991px;}
.x37{left:213.014981px;}
.xd{left:215.714991px;}
.x10{left:222.374991px;}
.x38{left:225.254991px;}
.x54{left:236.954981px;}
.x55{left:249.194991px;}
.x1d{left:251.354981px;}
.x12{left:252.794981px;}
.x1e{left:257.474991px;}
.x13{left:258.914991px;}
.x3f{left:265.214981px;}
.x50{left:274.754981px;}
.x40{left:277.454991px;}
.x1{left:281.594991px;}
.x51{left:286.994991px;}
.x17{left:288.434991px;}
.x6{left:316.874991px;}
.x2e{left:332.354981px;}
.x1f{left:334.874981px;}
.x49{left:336.314981px;}
.x47{left:338.114981px;}
.x20{left:340.994991px;}
.x2f{left:344.594991px;}
.x39{left:345.854981px;}
.x4a{left:348.554991px;}
.x48{left:350.354991px;}
.x3a{left:358.124991px;}
.x1c{left:362.444981px;}
.xf{left:367.844991px;}
.x52{left:371.264991px;}
.x3d{left:373.424981px;}
.x53{left:375.944981px;}
.x3e{left:385.664991px;}
.x27{left:388.364981px;}
.x21{left:396.644981px;}
.x28{left:400.604991px;}
.x22{left:402.764991px;}
.x3{left:407.084991px;}
.x2c{left:413.924981px;}
.x2d{left:426.164991px;}
.x33{left:434.624981px;}
.x57{left:436.964981px;}
.x34{left:446.864991px;}
.x30{left:447.944981px;}
.x58{left:449.204991px;}
.x31{left:460.184991px;}
.x35{left:473.504981px;}
.x36{left:485.744991px;}
.x4b{left:488.084981px;}
.x4c{left:500.369991px;}
.x43{left:505.409981px;}
.x45{left:508.829981px;}
.x44{left:517.649991px;}
.x46{left:521.069991px;}
.x11{left:546.450000px;}
@media print{
.v1{vertical-align:-62.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.089067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.136320pt;}
.ls5{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.279467pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.545280pt;}
.ls4{letter-spacing:0.896000pt;}
.lse{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls1c{letter-spacing:9.760000pt;}
.ls17{letter-spacing:16.160000pt;}
.ls12{letter-spacing:21.280000pt;}
.ls1f{letter-spacing:46.720000pt;}
.lsc{letter-spacing:517.258667pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.190933pt;}
.ws3{word-spacing:-12.911467pt;}
.ws4{word-spacing:-12.640000pt;}
.ws8{word-spacing:-10.999467pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-4.096000pt;}
._f{margin-left:-2.342400pt;}
._1{margin-left:-1.200640pt;}
._0{width:0.912000pt;}
._6{width:2.239360pt;}
._a{width:3.382187pt;}
._5{width:4.645120pt;}
._4{width:5.577600pt;}
._3{width:7.317760pt;}
._2{width:8.485760pt;}
._18{width:9.400747pt;}
._8{width:10.424107pt;}
._7{width:11.527040pt;}
._1a{width:13.248000pt;}
._9{width:14.236160pt;}
._b{width:15.404800pt;}
._d{width:16.414080pt;}
._19{width:17.664000pt;}
._1d{width:18.844800pt;}
._13{width:19.968000pt;}
._12{width:20.992000pt;}
._11{width:21.936640pt;}
._1b{width:23.360000pt;}
._1c{width:24.330667pt;}
._1f{width:25.269333pt;}
._c{width:26.253440pt;}
._e{width:27.888000pt;}
._17{width:29.107840pt;}
._20{width:30.033280pt;}
._14{width:31.168000pt;}
._1e{width:32.176000pt;}
._23{width:33.648640pt;}
._15{width:34.816000pt;}
._16{width:35.904000pt;}
._26{width:37.312000pt;}
._24{width:39.264640pt;}
._25{width:40.223360pt;}
._22{width:41.456640pt;}
._21{width:42.560000pt;}
._27{width:43.840000pt;}
._28{width:44.736000pt;}
._2f{width:45.866667pt;}
._29{width:54.112640pt;}
._2a{width:55.263360pt;}
._2d{width:56.640000pt;}
._2e{width:57.802667pt;}
._2b{width:86.890667pt;}
._2c{width:87.904000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.200000pt;}
.y2c{bottom:44.032000pt;}
.y3{bottom:49.792000pt;}
.y2{bottom:61.952000pt;}
.y6e{bottom:87.072000pt;}
.y4d{bottom:88.352000pt;}
.y7e{bottom:91.712000pt;}
.y28{bottom:93.792000pt;}
.y96{bottom:94.432000pt;}
.y6d{bottom:102.432000pt;}
.y4c{bottom:106.752000pt;}
.y7d{bottom:107.072000pt;}
.y27{bottom:109.152000pt;}
.y95{bottom:112.832000pt;}
.y6c{bottom:117.792000pt;}
.y6b{bottom:122.432000pt;}
.y26{bottom:124.512000pt;}
.y4b{bottom:125.152000pt;}
.y94{bottom:131.232000pt;}
.y6a{bottom:133.152000pt;}
.y74{bottom:137.786667pt;}
.y25{bottom:139.866667pt;}
.y4a{bottom:143.546667pt;}
.y69{bottom:148.346667pt;}
.y85{bottom:149.626667pt;}
.y73{bottom:152.986667pt;}
.y24{bottom:155.066667pt;}
.y98{bottom:155.706667pt;}
.y49{bottom:161.946667pt;}
.y68{bottom:163.706667pt;}
.y7c{bottom:168.026667pt;}
.y67{bottom:168.346667pt;}
.y23{bottom:170.426667pt;}
.y93{bottom:174.106667pt;}
.y66{bottom:179.066667pt;}
.y48{bottom:180.346667pt;}
.y22{bottom:185.786667pt;}
.y92{bottom:186.106667pt;}
.y7b{bottom:186.426667pt;}
.y8f{bottom:194.426667pt;}
.y47{bottom:198.746667pt;}
.y8e{bottom:199.066667pt;}
.y21{bottom:200.826667pt;}
.y65{bottom:204.506667pt;}
.y72{bottom:204.826667pt;}
.y8d{bottom:209.826667pt;}
.y84{bottom:210.946667pt;}
.y20{bottom:216.546667pt;}
.y46{bottom:217.186667pt;}
.y64{bottom:222.946667pt;}
.y70{bottom:223.266667pt;}
.y8c{bottom:225.186667pt;}
.y71{bottom:229.346667pt;}
.y8b{bottom:229.826667pt;}
.y1f{bottom:231.906667pt;}
.y45{bottom:235.586667pt;}
.y8a{bottom:240.386667pt;}
.y63{bottom:241.666667pt;}
.y1e{bottom:247.106667pt;}
.y87{bottom:247.746667pt;}
.y44{bottom:253.986667pt;}
.y9b{bottom:259.746667pt;}
.y62{bottom:260.066667pt;}
.y1d{bottom:262.466667pt;}
.y43{bottom:272.386667pt;}
.y1c{bottom:277.826667pt;}
.y9a{bottom:278.146667pt;}
.y61{bottom:278.466667pt;}
.y7a{bottom:284.546667pt;}
.y42{bottom:290.786667pt;}
.y1b{bottom:293.186667pt;}
.y99{bottom:296.546667pt;}
.y60{bottom:296.866667pt;}
.y6f{bottom:302.946667pt;}
.y1a{bottom:308.546667pt;}
.y5f{bottom:315.266667pt;}
.y82{bottom:321.346667pt;}
.y19{bottom:323.906667pt;}
.y41{bottom:324.226667pt;}
.y5e{bottom:333.666667pt;}
.y18{bottom:339.106667pt;}
.y40{bottom:342.306667pt;}
.y5d{bottom:352.066667pt;}
.y17{bottom:354.466667pt;}
.y3f{bottom:357.506667pt;}
.y89{bottom:358.146667pt;}
.y16{bottom:369.826667pt;}
.y5c{bottom:370.466667pt;}
.y3e{bottom:372.866667pt;}
.y15{bottom:385.213333pt;}
.y3d{bottom:388.253333pt;}
.y79{bottom:388.573333pt;}
.y5b{bottom:388.893333pt;}
.y88{bottom:394.973333pt;}
.y14{bottom:400.573333pt;}
.y3c{bottom:403.613333pt;}
.y78{bottom:406.973333pt;}
.y5a{bottom:407.293333pt;}
.y83{bottom:413.373333pt;}
.y13{bottom:415.773333pt;}
.y3b{bottom:418.973333pt;}
.y77{bottom:425.373333pt;}
.y59{bottom:425.693333pt;}
.y12{bottom:431.453333pt;}
.y3a{bottom:434.173333pt;}
.y76{bottom:443.773333pt;}
.y58{bottom:444.093333pt;}
.y11{bottom:449.533333pt;}
.y57{bottom:462.493333pt;}
.y10{bottom:464.893333pt;}
.y81{bottom:468.573333pt;}
.y39{bottom:480.253333pt;}
.yf{bottom:480.573333pt;}
.y56{bottom:480.893333pt;}
.y86{bottom:486.973333pt;}
.y38{bottom:495.613333pt;}
.ye{bottom:499.293333pt;}
.y37{bottom:510.973333pt;}
.yd{bottom:517.693333pt;}
.y75{bottom:523.773333pt;}
.y36{bottom:526.173333pt;}
.yc{bottom:536.093333pt;}
.y55{bottom:542.173333pt;}
.yb{bottom:554.533333pt;}
.y35{bottom:557.253333pt;}
.y80{bottom:560.613333pt;}
.ya{bottom:572.933333pt;}
.y34{bottom:575.973333pt;}
.y97{bottom:579.013333pt;}
.y9{bottom:591.333333pt;}
.y33{bottom:593.733333pt;}
.y32{bottom:609.093333pt;}
.y8{bottom:609.413333pt;}
.y53{bottom:609.733333pt;}
.y54{bottom:615.813333pt;}
.y31{bottom:624.453333pt;}
.y7{bottom:627.813333pt;}
.y52{bottom:628.133333pt;}
.y91{bottom:634.213333pt;}
.y30{bottom:639.813333pt;}
.y6{bottom:646.213333pt;}
.y51{bottom:646.533333pt;}
.y2f{bottom:655.013333pt;}
.y5{bottom:664.613333pt;}
.y50{bottom:664.933333pt;}
.y2e{bottom:670.373333pt;}
.y7f{bottom:671.013333pt;}
.y4{bottom:683.013333pt;}
.y4f{bottom:683.333333pt;}
.y2d{bottom:685.733333pt;}
.y90{bottom:689.413333pt;}
.y4e{bottom:719.200000pt;}
.y2a{bottom:731.040000pt;}
.y29{bottom:734.560000pt;}
.y1{bottom:735.680000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.hb{height:33.918750pt;}
.h3{height:42.084375pt;}
.h2{height:47.109375pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.ha{height:57.375000pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:6.080000pt;}
.w3{width:13.280000pt;}
.w5{width:13.440000pt;}
.w1{width:559.333333pt;}
.w6{width:559.519983pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.xe{left:64.351992pt;}
.x18{left:68.671992pt;}
.x7{left:69.951992pt;}
.x26{left:72.991992pt;}
.x4{left:84.671992pt;}
.xa{left:90.911992pt;}
.x16{left:92.831992pt;}
.x23{left:96.351983pt;}
.x24{left:101.791992pt;}
.xb{left:107.071992pt;}
.x32{left:115.871983pt;}
.x29{left:118.591983pt;}
.xc{left:126.911992pt;}
.x19{left:130.111983pt;}
.x1b{left:132.031992pt;}
.x5{left:133.786658pt;}
.x1a{left:135.546658pt;}
.x8{left:144.186658pt;}
.x2a{left:145.146650pt;}
.x14{left:146.906650pt;}
.x15{left:152.346658pt;}
.x2b{left:156.026658pt;}
.x4d{left:158.586650pt;}
.x25{left:162.746658pt;}
.x41{left:163.866650pt;}
.x56{left:166.586658pt;}
.x4e{left:169.466658pt;}
.x2{left:171.066658pt;}
.x3b{left:173.466650pt;}
.x42{left:174.746658pt;}
.x9{left:179.066658pt;}
.x4f{left:181.626650pt;}
.x3c{left:184.346658pt;}
.x37{left:189.346650pt;}
.xd{left:191.746658pt;}
.x10{left:197.666658pt;}
.x38{left:200.226658pt;}
.x54{left:210.626650pt;}
.x55{left:221.506658pt;}
.x1d{left:223.426650pt;}
.x12{left:224.706650pt;}
.x1e{left:228.866658pt;}
.x13{left:230.146658pt;}
.x3f{left:235.746650pt;}
.x50{left:244.226650pt;}
.x40{left:246.626658pt;}
.x1{left:250.306658pt;}
.x51{left:255.106658pt;}
.x17{left:256.386658pt;}
.x6{left:281.666658pt;}
.x2e{left:295.426650pt;}
.x1f{left:297.666650pt;}
.x49{left:298.946650pt;}
.x47{left:300.546650pt;}
.x20{left:303.106658pt;}
.x2f{left:306.306658pt;}
.x39{left:307.426650pt;}
.x4a{left:309.826658pt;}
.x48{left:311.426658pt;}
.x3a{left:318.333325pt;}
.x1c{left:322.173317pt;}
.xf{left:326.973325pt;}
.x52{left:330.013325pt;}
.x3d{left:331.933317pt;}
.x53{left:334.173317pt;}
.x3e{left:342.813325pt;}
.x27{left:345.213317pt;}
.x21{left:352.573317pt;}
.x28{left:356.093325pt;}
.x22{left:358.013325pt;}
.x3{left:361.853325pt;}
.x2c{left:367.933317pt;}
.x2d{left:378.813325pt;}
.x33{left:386.333317pt;}
.x57{left:388.413317pt;}
.x34{left:397.213325pt;}
.x30{left:398.173317pt;}
.x58{left:399.293325pt;}
.x31{left:409.053325pt;}
.x35{left:420.893317pt;}
.x36{left:431.773325pt;}
.x4b{left:433.853317pt;}
.x4c{left:444.773325pt;}
.x43{left:449.253317pt;}
.x45{left:452.293317pt;}
.x44{left:460.133325pt;}
.x46{left:463.173325pt;}
.x11{left:485.733333pt;}
}




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