
    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_193ddb3a8b15e51f87a94bb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_3b9a36c457f543acb0cdf3a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5dbf272903f3ba5283abdc07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_8f7f6d35187d0b0f29ff8ac5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_3fd2b4423392cf04cf70a917.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.lsb{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws6{word-spacing:-66.240000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1233.336960px;}
._4{margin-left:-1171.774080px;}
._2b{margin-left:-3.861600px;}
._12{margin-left:-2.712000px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.924880px;}
._13{width:3.981120px;}
._9{width:5.109600px;}
._a{width:6.318720px;}
._1a{width:7.393440px;}
._e{width:8.501040px;}
._8{width:9.656400px;}
._7{width:10.911120px;}
._28{width:12.370320px;}
._1c{width:13.781760px;}
._d{width:16.086720px;}
._20{width:17.595120px;}
._c{width:18.884160px;}
._b{width:20.079360px;}
._14{width:21.490800px;}
._15{width:22.529520px;}
._23{width:23.867040px;}
._1b{width:24.956880px;}
._25{width:26.055360px;}
._2a{width:27.668880px;}
._18{width:29.080320px;}
._19{width:30.178800px;}
._22{width:31.223040px;}
._27{width:32.279040px;}
._1e{width:33.704640px;}
._24{width:35.258400px;}
._16{width:36.729600px;}
._17{width:37.731360px;}
._29{width:39.142800px;}
._32{width:40.554240px;}
._33{width:41.749440px;}
._1f{width:43.086960px;}
._3a{width:44.176800px;}
._1d{width:45.739200px;}
._10{width:47.546160px;}
._f{width:48.823920px;}
._11{width:50.064960px;}
._30{width:51.274080px;}
._39{width:55.452000px;}
._38{width:57.167520px;}
._2f{width:59.557920px;}
._26{width:63.166320px;}
._3b{width:67.087680px;}
._34{width:69.836640px;}
._35{width:70.898160px;}
._41{width:72.024960px;}
._21{width:73.362480px;}
._31{width:75.095520px;}
._2c{width:78.201600px;}
._37{width:79.392480px;}
._3c{width:91.589280px;}
._3d{width:95.036160px;}
._36{width:96.728640px;}
._3e{width:113.222400px;}
._40{width:135.751920px;}
._2e{width:137.268720px;}
._3f{width:140.256720px;}
._2d{width:159.177840px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y71{bottom:5.940000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y6d{bottom:25.560000px;}
.y70{bottom:25.740000px;}
.y6f{bottom:45.540000px;}
.ya{bottom:56.880000px;}
.y6{bottom:73.620000px;}
.y8a{bottom:103.320000px;}
.y38{bottom:106.560000px;}
.y9b{bottom:113.400000px;}
.y57{bottom:113.940000px;}
.y78{bottom:118.260000px;}
.y89{bottom:123.300000px;}
.y37{bottom:126.540000px;}
.y9a{bottom:133.200000px;}
.y56{bottom:133.920000px;}
.y77{bottom:134.820000px;}
.y88{bottom:139.860000px;}
.y36{bottom:146.340000px;}
.y99{bottom:153.210000px;}
.y55{bottom:153.750000px;}
.y76{bottom:157.890000px;}
.y35{bottom:166.170000px;}
.y54{bottom:170.310000px;}
.y75{bottom:172.830000px;}
.y98{bottom:173.010000px;}
.y34{bottom:185.970000px;}
.y97{bottom:192.810000px;}
.y74{bottom:193.350000px;}
.y33{bottom:205.770000px;}
.y96{bottom:212.610000px;}
.y32{bottom:225.750000px;}
.y95{bottom:232.410000px;}
.y73{bottom:233.850000px;}
.y31{bottom:245.550000px;}
.y94{bottom:252.390000px;}
.y72{bottom:254.370000px;}
.y30{bottom:265.350000px;}
.y93{bottom:272.190000px;}
.y6e{bottom:274.890000px;}
.y2f{bottom:285.150000px;}
.y92{bottom:291.990000px;}
.y2e{bottom:304.950000px;}
.y91{bottom:311.790000px;}
.y2d{bottom:324.930000px;}
.y90{bottom:331.590000px;}
.y6c{bottom:335.190000px;}
.y2c{bottom:344.730000px;}
.y8f{bottom:351.570000px;}
.y2b{bottom:364.530000px;}
.y8e{bottom:371.370000px;}
.y6b{bottom:375.690000px;}
.y2a{bottom:384.330000px;}
.y8d{bottom:391.170000px;}
.y6a{bottom:402.015000px;}
.y29{bottom:404.175000px;}
.y8c{bottom:411.015000px;}
.y69{bottom:421.815000px;}
.y28{bottom:424.155000px;}
.y8b{bottom:430.815000px;}
.y62{bottom:441.795000px;}
.y27{bottom:443.955000px;}
.y68{bottom:450.795000px;}
.y61{bottom:461.595000px;}
.y26{bottom:463.755000px;}
.y67{bottom:470.595000px;}
.y60{bottom:481.395000px;}
.y25{bottom:483.555000px;}
.y66{bottom:490.395000px;}
.y5f{bottom:501.195000px;}
.y24{bottom:503.355000px;}
.y65{bottom:510.195000px;}
.y5e{bottom:520.995000px;}
.y23{bottom:523.335000px;}
.y64{bottom:529.995000px;}
.y5d{bottom:540.975000px;}
.y22{bottom:543.135000px;}
.y63{bottom:549.975000px;}
.y87{bottom:560.775000px;}
.y21{bottom:562.935000px;}
.y5c{bottom:569.775000px;}
.y86{bottom:580.575000px;}
.y20{bottom:585.075000px;}
.y5b{bottom:589.575000px;}
.y85{bottom:600.375000px;}
.y1f{bottom:604.875000px;}
.y5a{bottom:609.375000px;}
.y84{bottom:620.175000px;}
.y1e{bottom:624.675000px;}
.y59{bottom:629.175000px;}
.y83{bottom:640.155000px;}
.y1d{bottom:644.475000px;}
.y58{bottom:649.185000px;}
.y82{bottom:659.985000px;}
.y1c{bottom:664.305000px;}
.y53{bottom:668.985000px;}
.y81{bottom:679.785000px;}
.y1b{bottom:684.285000px;}
.y52{bottom:688.785000px;}
.y80{bottom:699.585000px;}
.y1a{bottom:704.085000px;}
.y51{bottom:708.585000px;}
.y7f{bottom:719.385000px;}
.y19{bottom:723.885000px;}
.y50{bottom:728.385000px;}
.y7e{bottom:739.365000px;}
.y18{bottom:743.685000px;}
.y4f{bottom:748.365000px;}
.y7d{bottom:759.165000px;}
.y17{bottom:763.485000px;}
.y4e{bottom:768.165000px;}
.y7c{bottom:778.965000px;}
.y16{bottom:783.465000px;}
.y4d{bottom:787.965000px;}
.y7b{bottom:798.765000px;}
.y15{bottom:803.085000px;}
.y4c{bottom:807.765000px;}
.y7a{bottom:818.565000px;}
.y14{bottom:825.405000px;}
.y4b{bottom:827.565000px;}
.y79{bottom:838.545000px;}
.y4a{bottom:847.545000px;}
.y13{bottom:850.425000px;}
.y49{bottom:867.345000px;}
.y12{bottom:870.225000px;}
.y48{bottom:887.145000px;}
.y11{bottom:890.025000px;}
.y47{bottom:906.990000px;}
.y10{bottom:909.870000px;}
.yf{bottom:925.170000px;}
.y46{bottom:926.790000px;}
.y45{bottom:946.770000px;}
.ye{bottom:946.950000px;}
.y44{bottom:966.570000px;}
.yd{bottom:968.190000px;}
.y43{bottom:986.370000px;}
.yc{bottom:991.590000px;}
.y42{bottom:1006.170000px;}
.yb{bottom:1023.450000px;}
.y41{bottom:1025.970000px;}
.y40{bottom:1045.950000px;}
.y5{bottom:1051.530000px;}
.y3f{bottom:1065.750000px;}
.y4{bottom:1082.850000px;}
.y3e{bottom:1085.550000px;}
.y3d{bottom:1105.350000px;}
.y3{bottom:1113.630000px;}
.y3c{bottom:1125.150000px;}
.y2{bottom:1144.590000px;}
.y3b{bottom:1145.130000px;}
.y3a{bottom:1164.960000px;}
.y1{bottom:1178.460000px;}
.y39{bottom:1194.300000px;}
.hd{height:19.800000px;}
.h5{height:21.240000px;}
.h8{height:27.432422px;}
.hb{height:28.115859px;}
.h7{height:29.464453px;}
.he{height:39.600000px;}
.hc{height:42.164648px;}
.h4{height:43.215117px;}
.h10{height:43.506914px;}
.h3{height:46.736719px;}
.h6{height:47.901094px;}
.h9{height:52.066406px;}
.ha{height:53.224453px;}
.hf{height:59.580000px;}
.h2{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.wc{width:88.056000px;}
.w8{width:88.776000px;}
.wd{width:131.616000px;}
.w9{width:131.976000px;}
.wb{width:132.480000px;}
.w6{width:132.696000px;}
.w7{width:133.200000px;}
.wa{width:277.995000px;}
.w5{width:278.355000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.xb{left:63.179987px;}
.x1f{left:69.479987px;}
.x16{left:77.939987px;}
.x21{left:80.999987px;}
.x10{left:93.995987px;}
.xe{left:102.635987px;}
.x11{left:107.135987px;}
.xf{left:111.815987px;}
.x4{left:120.636000px;}
.xd{left:142.415987px;}
.x1d{left:160.949987px;}
.x8{left:184.179000px;}
.x7{left:189.219000px;}
.x9{left:240.149987px;}
.x18{left:342.435000px;}
.x17{left:372.314987px;}
.x6{left:396.789000px;}
.x5{left:410.289000px;}
.xc{left:413.174987px;}
.x20{left:426.854987px;}
.x14{left:446.504987px;}
.xa{left:458.924987px;}
.x12{left:473.504987px;}
.x19{left:475.125000px;}
.x22{left:500.504987px;}
.x13{left:526.604987px;}
.x1a{left:608.325000px;}
.x1b{left:697.110000px;}
.x1e{left:747.329987px;}
.x1c{left:785.129987px;}
.x15{left:822.419987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsb{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ws6{word-spacing:-58.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1096.299520pt;}
._4{margin-left:-1041.576960pt;}
._2b{margin-left:-3.432533pt;}
._12{margin-left:-2.410667pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.599893pt;}
._13{width:3.538773pt;}
._9{width:4.541867pt;}
._a{width:5.616640pt;}
._1a{width:6.571947pt;}
._e{width:7.556480pt;}
._8{width:8.583467pt;}
._7{width:9.698773pt;}
._28{width:10.995840pt;}
._1c{width:12.250453pt;}
._d{width:14.299307pt;}
._20{width:15.640107pt;}
._c{width:16.785920pt;}
._b{width:17.848320pt;}
._14{width:19.102933pt;}
._15{width:20.026240pt;}
._23{width:21.215147pt;}
._1b{width:22.183893pt;}
._25{width:23.160320pt;}
._2a{width:24.594560pt;}
._18{width:25.849173pt;}
._19{width:26.825600pt;}
._22{width:27.753813pt;}
._27{width:28.692480pt;}
._1e{width:29.959680pt;}
._24{width:31.340800pt;}
._16{width:32.648533pt;}
._17{width:33.538987pt;}
._29{width:34.793600pt;}
._32{width:36.048213pt;}
._33{width:37.110613pt;}
._1f{width:38.299520pt;}
._3a{width:39.268267pt;}
._1d{width:40.657067pt;}
._10{width:42.263253pt;}
._f{width:43.399040pt;}
._11{width:44.502187pt;}
._30{width:45.576960pt;}
._39{width:49.290667pt;}
._38{width:50.815573pt;}
._2f{width:52.940373pt;}
._26{width:56.147840pt;}
._3b{width:59.633493pt;}
._34{width:62.077013pt;}
._35{width:63.020587pt;}
._41{width:64.022187pt;}
._21{width:65.211093pt;}
._31{width:66.751573pt;}
._2c{width:69.512533pt;}
._37{width:70.571093pt;}
._3c{width:81.412693pt;}
._3d{width:84.476587pt;}
._36{width:85.981013pt;}
._3e{width:100.642133pt;}
._40{width:120.668373pt;}
._2e{width:122.016640pt;}
._3f{width:124.672640pt;}
._2d{width:141.491413pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y71{bottom:5.280000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y6d{bottom:22.720000pt;}
.y70{bottom:22.880000pt;}
.y6f{bottom:40.480000pt;}
.ya{bottom:50.560000pt;}
.y6{bottom:65.440000pt;}
.y8a{bottom:91.840000pt;}
.y38{bottom:94.720000pt;}
.y9b{bottom:100.800000pt;}
.y57{bottom:101.280000pt;}
.y78{bottom:105.120000pt;}
.y89{bottom:109.600000pt;}
.y37{bottom:112.480000pt;}
.y9a{bottom:118.400000pt;}
.y56{bottom:119.040000pt;}
.y77{bottom:119.840000pt;}
.y88{bottom:124.320000pt;}
.y36{bottom:130.080000pt;}
.y99{bottom:136.186667pt;}
.y55{bottom:136.666667pt;}
.y76{bottom:140.346667pt;}
.y35{bottom:147.706667pt;}
.y54{bottom:151.386667pt;}
.y75{bottom:153.626667pt;}
.y98{bottom:153.786667pt;}
.y34{bottom:165.306667pt;}
.y97{bottom:171.386667pt;}
.y74{bottom:171.866667pt;}
.y33{bottom:182.906667pt;}
.y96{bottom:188.986667pt;}
.y32{bottom:200.666667pt;}
.y95{bottom:206.586667pt;}
.y73{bottom:207.866667pt;}
.y31{bottom:218.266667pt;}
.y94{bottom:224.346667pt;}
.y72{bottom:226.106667pt;}
.y30{bottom:235.866667pt;}
.y93{bottom:241.946667pt;}
.y6e{bottom:244.346667pt;}
.y2f{bottom:253.466667pt;}
.y92{bottom:259.546667pt;}
.y2e{bottom:271.066667pt;}
.y91{bottom:277.146667pt;}
.y2d{bottom:288.826667pt;}
.y90{bottom:294.746667pt;}
.y6c{bottom:297.946667pt;}
.y2c{bottom:306.426667pt;}
.y8f{bottom:312.506667pt;}
.y2b{bottom:324.026667pt;}
.y8e{bottom:330.106667pt;}
.y6b{bottom:333.946667pt;}
.y2a{bottom:341.626667pt;}
.y8d{bottom:347.706667pt;}
.y6a{bottom:357.346667pt;}
.y29{bottom:359.266667pt;}
.y8c{bottom:365.346667pt;}
.y69{bottom:374.946667pt;}
.y28{bottom:377.026667pt;}
.y8b{bottom:382.946667pt;}
.y62{bottom:392.706667pt;}
.y27{bottom:394.626667pt;}
.y68{bottom:400.706667pt;}
.y61{bottom:410.306667pt;}
.y26{bottom:412.226667pt;}
.y67{bottom:418.306667pt;}
.y60{bottom:427.906667pt;}
.y25{bottom:429.826667pt;}
.y66{bottom:435.906667pt;}
.y5f{bottom:445.506667pt;}
.y24{bottom:447.426667pt;}
.y65{bottom:453.506667pt;}
.y5e{bottom:463.106667pt;}
.y23{bottom:465.186667pt;}
.y64{bottom:471.106667pt;}
.y5d{bottom:480.866667pt;}
.y22{bottom:482.786667pt;}
.y63{bottom:488.866667pt;}
.y87{bottom:498.466667pt;}
.y21{bottom:500.386667pt;}
.y5c{bottom:506.466667pt;}
.y86{bottom:516.066667pt;}
.y20{bottom:520.066667pt;}
.y5b{bottom:524.066667pt;}
.y85{bottom:533.666667pt;}
.y1f{bottom:537.666667pt;}
.y5a{bottom:541.666667pt;}
.y84{bottom:551.266667pt;}
.y1e{bottom:555.266667pt;}
.y59{bottom:559.266667pt;}
.y83{bottom:569.026667pt;}
.y1d{bottom:572.866667pt;}
.y58{bottom:577.053333pt;}
.y82{bottom:586.653333pt;}
.y1c{bottom:590.493333pt;}
.y53{bottom:594.653333pt;}
.y81{bottom:604.253333pt;}
.y1b{bottom:608.253333pt;}
.y52{bottom:612.253333pt;}
.y80{bottom:621.853333pt;}
.y1a{bottom:625.853333pt;}
.y51{bottom:629.853333pt;}
.y7f{bottom:639.453333pt;}
.y19{bottom:643.453333pt;}
.y50{bottom:647.453333pt;}
.y7e{bottom:657.213333pt;}
.y18{bottom:661.053333pt;}
.y4f{bottom:665.213333pt;}
.y7d{bottom:674.813333pt;}
.y17{bottom:678.653333pt;}
.y4e{bottom:682.813333pt;}
.y7c{bottom:692.413333pt;}
.y16{bottom:696.413333pt;}
.y4d{bottom:700.413333pt;}
.y7b{bottom:710.013333pt;}
.y15{bottom:713.853333pt;}
.y4c{bottom:718.013333pt;}
.y7a{bottom:727.613333pt;}
.y14{bottom:733.693333pt;}
.y4b{bottom:735.613333pt;}
.y79{bottom:745.373333pt;}
.y4a{bottom:753.373333pt;}
.y13{bottom:755.933333pt;}
.y49{bottom:770.973333pt;}
.y12{bottom:773.533333pt;}
.y48{bottom:788.573333pt;}
.y11{bottom:791.133333pt;}
.y47{bottom:806.213333pt;}
.y10{bottom:808.773333pt;}
.yf{bottom:822.373333pt;}
.y46{bottom:823.813333pt;}
.y45{bottom:841.573333pt;}
.ye{bottom:841.733333pt;}
.y44{bottom:859.173333pt;}
.yd{bottom:860.613333pt;}
.y43{bottom:876.773333pt;}
.yc{bottom:881.413333pt;}
.y42{bottom:894.373333pt;}
.yb{bottom:909.733333pt;}
.y41{bottom:911.973333pt;}
.y40{bottom:929.733333pt;}
.y5{bottom:934.693333pt;}
.y3f{bottom:947.333333pt;}
.y4{bottom:962.533333pt;}
.y3e{bottom:964.933333pt;}
.y3d{bottom:982.533333pt;}
.y3{bottom:989.893333pt;}
.y3c{bottom:1000.133333pt;}
.y2{bottom:1017.413333pt;}
.y3b{bottom:1017.893333pt;}
.y3a{bottom:1035.520000pt;}
.y1{bottom:1047.520000pt;}
.y39{bottom:1061.600000pt;}
.hd{height:17.600000pt;}
.h5{height:18.880000pt;}
.h8{height:24.384375pt;}
.hb{height:24.991875pt;}
.h7{height:26.190625pt;}
.he{height:35.200000pt;}
.hc{height:37.479688pt;}
.h4{height:38.413438pt;}
.h10{height:38.672812pt;}
.h3{height:41.543750pt;}
.h6{height:42.578750pt;}
.h9{height:46.281250pt;}
.ha{height:47.310625pt;}
.hf{height:52.960000pt;}
.h2{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.wc{width:78.272000pt;}
.w8{width:78.912000pt;}
.wd{width:116.992000pt;}
.w9{width:117.312000pt;}
.wb{width:117.760000pt;}
.w6{width:117.952000pt;}
.w7{width:118.400000pt;}
.wa{width:247.106667pt;}
.w5{width:247.426667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.xb{left:56.159988pt;}
.x1f{left:61.759988pt;}
.x16{left:69.279988pt;}
.x21{left:71.999988pt;}
.x10{left:83.551988pt;}
.xe{left:91.231988pt;}
.x11{left:95.231988pt;}
.xf{left:99.391988pt;}
.x4{left:107.232000pt;}
.xd{left:126.591988pt;}
.x1d{left:143.066655pt;}
.x8{left:163.714667pt;}
.x7{left:168.194667pt;}
.x9{left:213.466655pt;}
.x18{left:304.386667pt;}
.x17{left:330.946655pt;}
.x6{left:352.701333pt;}
.x5{left:364.701333pt;}
.xc{left:367.266655pt;}
.x20{left:379.426655pt;}
.x14{left:396.893322pt;}
.xa{left:407.933322pt;}
.x12{left:420.893322pt;}
.x19{left:422.333333pt;}
.x22{left:444.893322pt;}
.x13{left:468.093322pt;}
.x1a{left:540.733333pt;}
.x1b{left:619.653333pt;}
.x1e{left:664.293322pt;}
.x1c{left:697.893322pt;}
.x15{left:731.039988pt;}
}




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