
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a8298bb6b64fc238a6240b99.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b2d63c00a82ea2304ef805f4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f5bd8bbeefd790297d46c91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8545a15f5adcac907a003b46.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a8deadf57d9944388e84be70.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_80c5d94f78b4880a5451531b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:ffb;src:url('chunks/assets/font_d82e47d7e63182f7fa88dec2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_425d0ffebd51d18c5dadaeea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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);}
.v3{vertical-align:-61.200000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.234000px;}
.lsd{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lsf{letter-spacing:9.540000px;}
.ls10{letter-spacing:46.026720px;}
.ls11{letter-spacing:64.026720px;}
.ls5{letter-spacing:64.206720px;}
.ls2{letter-spacing:126.180000px;}
.ls3{letter-spacing:155.700000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.437440px;}
._7{width:3.888000px;}
._a{width:4.968000px;}
._5{width:6.498000px;}
._4{width:7.614000px;}
._d{width:8.858160px;}
._9{width:9.882000px;}
._8{width:10.908000px;}
._6{width:11.988000px;}
._e{width:13.043280px;}
._3{width:16.650000px;}
._10{width:17.688960px;}
._11{width:18.797280px;}
._f{width:20.796480px;}
._b{width:24.300000px;}
._c{width:25.344240px;}
._12{width:172.288080px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.695500px;}
.y8e{bottom:3.225000px;}
.y7b{bottom:3.420000px;}
.y90{bottom:3.585000px;}
.y43{bottom:3.765000px;}
.y7e{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y5a{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4c{bottom:10.255500px;}
.y58{bottom:16.015500px;}
.y7a{bottom:20.700000px;}
.y42{bottom:21.045000px;}
.y7d{bottom:21.060000px;}
.y4{bottom:23.070000px;}
.y57{bottom:32.755500px;}
.y41{bottom:38.145000px;}
.y4b{bottom:40.675500px;}
.y3{bottom:48.090000px;}
.y56{bottom:49.495500px;}
.y4a{bottom:53.809500px;}
.y40{bottom:55.470000px;}
.y7{bottom:57.600000px;}
.y49{bottom:66.769500px;}
.y3f{bottom:72.750000px;}
.y48{bottom:79.729500px;}
.y55{bottom:82.789500px;}
.y3e{bottom:90.030000px;}
.y97{bottom:92.556000px;}
.y54{bottom:95.389500px;}
.y44{bottom:99.940500px;}
.y47{bottom:101.689500px;}
.y53{bottom:101.869500px;}
.y3d{bottom:107.310000px;}
.y96{bottom:110.196000px;}
.y52{bottom:117.709500px;}
.y3c{bottom:124.590000px;}
.y95{bottom:127.116000px;}
.y51{bottom:133.189500px;}
.y3b{bottom:142.770000px;}
.y94{bottom:144.396000px;}
.y50{bottom:148.849500px;}
.y3a{bottom:160.050000px;}
.y93{bottom:161.490000px;}
.y46{bottom:163.789500px;}
.y4f{bottom:164.329500px;}
.y45{bottom:174.409500px;}
.y92{bottom:176.265000px;}
.y39{bottom:178.410000px;}
.y4e{bottom:179.449500px;}
.y91{bottom:194.265000px;}
.y38{bottom:195.690000px;}
.y8f{bottom:212.265000px;}
.y37{bottom:214.050000px;}
.y8d{bottom:230.265000px;}
.y36{bottom:231.150000px;}
.y35{bottom:249.510000px;}
.y8c{bottom:251.490000px;}
.y34{bottom:266.430000px;}
.y8b{bottom:268.770000px;}
.y33{bottom:284.070000px;}
.y8a{bottom:286.410000px;}
.y32{bottom:301.350000px;}
.y89{bottom:303.330000px;}
.y10{bottom:304.245000px;}
.y1e{bottom:313.980000px;}
.y88{bottom:317.925000px;}
.y31{bottom:318.660000px;}
.y30{bottom:335.760000px;}
.y87{bottom:335.925000px;}
.y1d{bottom:338.100000px;}
.y2f{bottom:353.040000px;}
.y86{bottom:353.955000px;}
.y1c{bottom:362.220000px;}
.y2e{bottom:370.320000px;}
.y85{bottom:371.955000px;}
.y1b{bottom:386.340000px;}
.y2d{bottom:387.600000px;}
.y84{bottom:393.375000px;}
.y2c{bottom:404.880000px;}
.y1a{bottom:410.460000px;}
.y83{bottom:410.655000px;}
.yba{bottom:411.735000px;}
.y2b{bottom:421.800000px;}
.y82{bottom:428.115000px;}
.yb9{bottom:429.015000px;}
.y19{bottom:434.580000px;}
.y2a{bottom:438.900000px;}
.y81{bottom:445.395000px;}
.yb8{bottom:446.295000px;}
.y29{bottom:454.380000px;}
.y18{bottom:458.880000px;}
.y80{bottom:462.315000px;}
.yb7{bottom:463.575000px;}
.y28{bottom:469.860000px;}
.y7f{bottom:476.895000px;}
.yb6{bottom:480.855000px;}
.y17{bottom:483.000000px;}
.y27{bottom:485.520000px;}
.yb5{bottom:497.955000px;}
.y26{bottom:501.000000px;}
.y16{bottom:507.120000px;}
.y7c{bottom:512.175000px;}
.yb4{bottom:515.235000px;}
.y25{bottom:516.480000px;}
.y15{bottom:531.240000px;}
.y24{bottom:531.960000px;}
.yb3{bottom:532.515000px;}
.y23{bottom:547.440000px;}
.y79{bottom:547.455000px;}
.yb2{bottom:549.795000px;}
.y14{bottom:555.360000px;}
.y22{bottom:563.100000px;}
.yb1{bottom:567.075000px;}
.y21{bottom:578.625000px;}
.y13{bottom:579.525000px;}
.yb0{bottom:584.355000px;}
.y78{bottom:586.155000px;}
.y20{bottom:594.105000px;}
.yaf{bottom:601.455000px;}
.y77{bottom:603.255000px;}
.y12{bottom:603.825000px;}
.yae{bottom:618.765000px;}
.y76{bottom:620.565000px;}
.y1f{bottom:624.885000px;}
.y11{bottom:627.945000px;}
.yad{bottom:636.045000px;}
.y75{bottom:638.205000px;}
.yac{bottom:653.325000px;}
.y74{bottom:655.485000px;}
.yab{bottom:670.245000px;}
.y73{bottom:672.405000px;}
.yaa{bottom:687.885000px;}
.y72{bottom:689.865000px;}
.ya9{bottom:704.985000px;}
.y71{bottom:707.145000px;}
.ya8{bottom:722.265000px;}
.y70{bottom:724.425000px;}
.ya7{bottom:739.545000px;}
.y6f{bottom:741.345000px;}
.ya6{bottom:756.465000px;}
.y6e{bottom:758.985000px;}
.ya5{bottom:774.105000px;}
.y6d{bottom:777.345000px;}
.ya4{bottom:791.205000px;}
.y6c{bottom:795.525000px;}
.ya3{bottom:808.485000px;}
.y6b{bottom:813.525000px;}
.ya2{bottom:825.765000px;}
.y6a{bottom:831.165000px;}
.ya1{bottom:843.045000px;}
.y69{bottom:848.445000px;}
.ya0{bottom:859.965000px;}
.y68{bottom:865.365000px;}
.y9f{bottom:877.650000px;}
.y67{bottom:882.510000px;}
.y9e{bottom:895.830000px;}
.y66{bottom:900.150000px;}
.y9d{bottom:914.190000px;}
.y65{bottom:917.430000px;}
.y9c{bottom:932.550000px;}
.y64{bottom:934.710000px;}
.yf{bottom:944.250000px;}
.ye{bottom:949.470000px;}
.y9b{bottom:950.910000px;}
.y63{bottom:951.630000px;}
.y9a{bottom:968.910000px;}
.y62{bottom:969.270000px;}
.yd{bottom:973.410000px;}
.yc{bottom:983.850000px;}
.y61{bottom:986.370000px;}
.yb{bottom:1000.770000px;}
.y60{bottom:1003.650000px;}
.ya{bottom:1019.310000px;}
.y5f{bottom:1020.930000px;}
.y5e{bottom:1037.850000px;}
.y99{bottom:1038.210000px;}
.y9{bottom:1043.430000px;}
.y5d{bottom:1055.490000px;}
.y8{bottom:1071.870000px;}
.y5c{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.y98{bottom:1089.510000px;}
.y5b{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.hc{height:5.653125px;}
.h1c{height:17.085000px;}
.h1a{height:17.265000px;}
.h1b{height:17.301000px;}
.h17{height:27.540000px;}
.h14{height:29.678906px;}
.h19{height:34.545000px;}
.hb{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h10{height:52.971680px;}
.h15{height:54.421875px;}
.h7{height:57.324375px;}
.h6{height:58.651172px;}
.h11{height:60.226875px;}
.h12{height:61.423863px;}
.h18{height:64.002656px;}
.h5{height:65.010937px;}
.ha{height:65.518594px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h13{height:203.575500px;}
.hd{height:637.470000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:15.840000px;}
.w9{width:15.876000px;}
.wb{width:83.181000px;}
.wa{width:86.025000px;}
.w2{width:104.040000px;}
.w7{width:107.136000px;}
.wc{width:128.865000px;}
.w4{width:132.651000px;}
.wf{width:132.861000px;}
.w10{width:155.730000px;}
.w12{width:156.615000px;}
.w6{width:162.720000px;}
.we{width:182.730000px;}
.w11{width:195.150000px;}
.wd{width:205.770000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x18{left:8.100000px;}
.x1e{left:10.260000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x16{left:20.520000px;}
.x15{left:29.520000px;}
.x1a{left:35.145000px;}
.xf{left:43.740000px;}
.x1c{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:55.080000px;}
.x1d{left:56.880000px;}
.x19{left:62.145000px;}
.x14{left:67.134000px;}
.x13{left:73.254000px;}
.x12{left:75.234000px;}
.x1{left:78.327000px;}
.x9{left:86.436000px;}
.x2{left:95.763000px;}
.x1f{left:102.774000px;}
.x1b{left:106.734000px;}
.x2d{left:113.436000px;}
.x11{left:124.554000px;}
.x5{left:141.345000px;}
.x21{left:173.730000px;}
.x3{left:182.370000px;}
.x27{left:185.250000px;}
.x2a{left:192.270000px;}
.x17{left:219.090000px;}
.x22{left:281.775000px;}
.x2b{left:348.735000px;}
.x23{left:386.715000px;}
.x28{left:391.755000px;}
.x24{left:403.275000px;}
.xa{left:420.585000px;}
.xb{left:454.965000px;}
.x25{left:506.820000px;}
.xd{left:516.345000px;}
.xc{left:525.525000px;}
.x2c{left:544.620000px;}
.x29{left:575.220000px;}
.x26{left:590.730000px;}
.x8{left:766.080000px;}
.x7{left:784.440000px;}
@media print{
.v3{vertical-align:-54.400000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.208000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsf{letter-spacing:8.480000pt;}
.ls10{letter-spacing:40.912640pt;}
.ls11{letter-spacing:56.912640pt;}
.ls5{letter-spacing:57.072640pt;}
.ls2{letter-spacing:112.160000pt;}
.ls3{letter-spacing:138.400000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.166613pt;}
._7{width:3.456000pt;}
._a{width:4.416000pt;}
._5{width:5.776000pt;}
._4{width:6.768000pt;}
._d{width:7.873920pt;}
._9{width:8.784000pt;}
._8{width:9.696000pt;}
._6{width:10.656000pt;}
._e{width:11.594027pt;}
._3{width:14.800000pt;}
._10{width:15.723520pt;}
._11{width:16.708693pt;}
._f{width:18.485760pt;}
._b{width:21.600000pt;}
._c{width:22.528213pt;}
._12{width:153.144960pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.396000pt;}
.y8e{bottom:2.866667pt;}
.y7b{bottom:3.040000pt;}
.y90{bottom:3.186667pt;}
.y43{bottom:3.346667pt;}
.y7e{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y5a{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4c{bottom:9.116000pt;}
.y58{bottom:14.236000pt;}
.y7a{bottom:18.400000pt;}
.y42{bottom:18.706667pt;}
.y7d{bottom:18.720000pt;}
.y4{bottom:20.506667pt;}
.y57{bottom:29.116000pt;}
.y41{bottom:33.906667pt;}
.y4b{bottom:36.156000pt;}
.y3{bottom:42.746667pt;}
.y56{bottom:43.996000pt;}
.y4a{bottom:47.830667pt;}
.y40{bottom:49.306667pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:59.350667pt;}
.y3f{bottom:64.666667pt;}
.y48{bottom:70.870667pt;}
.y55{bottom:73.590667pt;}
.y3e{bottom:80.026667pt;}
.y97{bottom:82.272000pt;}
.y54{bottom:84.790667pt;}
.y44{bottom:88.836000pt;}
.y47{bottom:90.390667pt;}
.y53{bottom:90.550667pt;}
.y3d{bottom:95.386667pt;}
.y96{bottom:97.952000pt;}
.y52{bottom:104.630667pt;}
.y3c{bottom:110.746667pt;}
.y95{bottom:112.992000pt;}
.y51{bottom:118.390667pt;}
.y3b{bottom:126.906667pt;}
.y94{bottom:128.352000pt;}
.y50{bottom:132.310667pt;}
.y3a{bottom:142.266667pt;}
.y93{bottom:143.546667pt;}
.y46{bottom:145.590667pt;}
.y4f{bottom:146.070667pt;}
.y45{bottom:155.030667pt;}
.y92{bottom:156.680000pt;}
.y39{bottom:158.586667pt;}
.y4e{bottom:159.510667pt;}
.y91{bottom:172.680000pt;}
.y38{bottom:173.946667pt;}
.y8f{bottom:188.680000pt;}
.y37{bottom:190.266667pt;}
.y8d{bottom:204.680000pt;}
.y36{bottom:205.466667pt;}
.y35{bottom:221.786667pt;}
.y8c{bottom:223.546667pt;}
.y34{bottom:236.826667pt;}
.y8b{bottom:238.906667pt;}
.y33{bottom:252.506667pt;}
.y8a{bottom:254.586667pt;}
.y32{bottom:267.866667pt;}
.y89{bottom:269.626667pt;}
.y10{bottom:270.440000pt;}
.y1e{bottom:279.093333pt;}
.y88{bottom:282.600000pt;}
.y31{bottom:283.253333pt;}
.y30{bottom:298.453333pt;}
.y87{bottom:298.600000pt;}
.y1d{bottom:300.533333pt;}
.y2f{bottom:313.813333pt;}
.y86{bottom:314.626667pt;}
.y1c{bottom:321.973333pt;}
.y2e{bottom:329.173333pt;}
.y85{bottom:330.626667pt;}
.y1b{bottom:343.413333pt;}
.y2d{bottom:344.533333pt;}
.y84{bottom:349.666667pt;}
.y2c{bottom:359.893333pt;}
.y1a{bottom:364.853333pt;}
.y83{bottom:365.026667pt;}
.yba{bottom:365.986667pt;}
.y2b{bottom:374.933333pt;}
.y82{bottom:380.546667pt;}
.yb9{bottom:381.346667pt;}
.y19{bottom:386.293333pt;}
.y2a{bottom:390.133333pt;}
.y81{bottom:395.906667pt;}
.yb8{bottom:396.706667pt;}
.y29{bottom:403.893333pt;}
.y18{bottom:407.893333pt;}
.y80{bottom:410.946667pt;}
.yb7{bottom:412.066667pt;}
.y28{bottom:417.653333pt;}
.y7f{bottom:423.906667pt;}
.yb6{bottom:427.426667pt;}
.y17{bottom:429.333333pt;}
.y27{bottom:431.573333pt;}
.yb5{bottom:442.626667pt;}
.y26{bottom:445.333333pt;}
.y16{bottom:450.773333pt;}
.y7c{bottom:455.266667pt;}
.yb4{bottom:457.986667pt;}
.y25{bottom:459.093333pt;}
.y15{bottom:472.213333pt;}
.y24{bottom:472.853333pt;}
.yb3{bottom:473.346667pt;}
.y23{bottom:486.613333pt;}
.y79{bottom:486.626667pt;}
.yb2{bottom:488.706667pt;}
.y14{bottom:493.653333pt;}
.y22{bottom:500.533333pt;}
.yb1{bottom:504.066667pt;}
.y21{bottom:514.333333pt;}
.y13{bottom:515.133333pt;}
.yb0{bottom:519.426667pt;}
.y78{bottom:521.026667pt;}
.y20{bottom:528.093333pt;}
.yaf{bottom:534.626667pt;}
.y77{bottom:536.226667pt;}
.y12{bottom:536.733333pt;}
.yae{bottom:550.013333pt;}
.y76{bottom:551.613333pt;}
.y1f{bottom:555.453333pt;}
.y11{bottom:558.173333pt;}
.yad{bottom:565.373333pt;}
.y75{bottom:567.293333pt;}
.yac{bottom:580.733333pt;}
.y74{bottom:582.653333pt;}
.yab{bottom:595.773333pt;}
.y73{bottom:597.693333pt;}
.yaa{bottom:611.453333pt;}
.y72{bottom:613.213333pt;}
.ya9{bottom:626.653333pt;}
.y71{bottom:628.573333pt;}
.ya8{bottom:642.013333pt;}
.y70{bottom:643.933333pt;}
.ya7{bottom:657.373333pt;}
.y6f{bottom:658.973333pt;}
.ya6{bottom:672.413333pt;}
.y6e{bottom:674.653333pt;}
.ya5{bottom:688.093333pt;}
.y6d{bottom:690.973333pt;}
.ya4{bottom:703.293333pt;}
.y6c{bottom:707.133333pt;}
.ya3{bottom:718.653333pt;}
.y6b{bottom:723.133333pt;}
.ya2{bottom:734.013333pt;}
.y6a{bottom:738.813333pt;}
.ya1{bottom:749.373333pt;}
.y69{bottom:754.173333pt;}
.ya0{bottom:764.413333pt;}
.y68{bottom:769.213333pt;}
.y9f{bottom:780.133333pt;}
.y67{bottom:784.453333pt;}
.y9e{bottom:796.293333pt;}
.y66{bottom:800.133333pt;}
.y9d{bottom:812.613333pt;}
.y65{bottom:815.493333pt;}
.y9c{bottom:828.933333pt;}
.y64{bottom:830.853333pt;}
.yf{bottom:839.333333pt;}
.ye{bottom:843.973333pt;}
.y9b{bottom:845.253333pt;}
.y63{bottom:845.893333pt;}
.y9a{bottom:861.253333pt;}
.y62{bottom:861.573333pt;}
.yd{bottom:865.253333pt;}
.yc{bottom:874.533333pt;}
.y61{bottom:876.773333pt;}
.yb{bottom:889.573333pt;}
.y60{bottom:892.133333pt;}
.ya{bottom:906.053333pt;}
.y5f{bottom:907.493333pt;}
.y5e{bottom:922.533333pt;}
.y99{bottom:922.853333pt;}
.y9{bottom:927.493333pt;}
.y5d{bottom:938.213333pt;}
.y8{bottom:952.773333pt;}
.y5c{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.y98{bottom:968.453333pt;}
.y5b{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.hc{height:5.025000pt;}
.h1c{height:15.186667pt;}
.h1a{height:15.346667pt;}
.h1b{height:15.378667pt;}
.h17{height:24.480000pt;}
.h14{height:26.381250pt;}
.h19{height:30.706667pt;}
.hb{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h10{height:47.085938pt;}
.h15{height:48.375000pt;}
.h7{height:50.955000pt;}
.h6{height:52.134375pt;}
.h11{height:53.535000pt;}
.h12{height:54.598989pt;}
.h18{height:56.891250pt;}
.h5{height:57.787500pt;}
.ha{height:58.238750pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h13{height:180.956000pt;}
.hd{height:566.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:14.080000pt;}
.w9{width:14.112000pt;}
.wb{width:73.938667pt;}
.wa{width:76.466667pt;}
.w2{width:92.480000pt;}
.w7{width:95.232000pt;}
.wc{width:114.546667pt;}
.w4{width:117.912000pt;}
.wf{width:118.098667pt;}
.w10{width:138.426667pt;}
.w12{width:139.213333pt;}
.w6{width:144.640000pt;}
.we{width:162.426667pt;}
.w11{width:173.466667pt;}
.wd{width:182.906667pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x18{left:7.200000pt;}
.x1e{left:9.120000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x16{left:18.240000pt;}
.x15{left:26.240000pt;}
.x1a{left:31.240000pt;}
.xf{left:38.880000pt;}
.x1c{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.960000pt;}
.x1d{left:50.560000pt;}
.x19{left:55.240000pt;}
.x14{left:59.674667pt;}
.x13{left:65.114667pt;}
.x12{left:66.874667pt;}
.x1{left:69.624000pt;}
.x9{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1f{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x2d{left:100.832000pt;}
.x11{left:110.714667pt;}
.x5{left:125.640000pt;}
.x21{left:154.426667pt;}
.x3{left:162.106667pt;}
.x27{left:164.666667pt;}
.x2a{left:170.906667pt;}
.x17{left:194.746667pt;}
.x22{left:250.466667pt;}
.x2b{left:309.986667pt;}
.x23{left:343.746667pt;}
.x28{left:348.226667pt;}
.x24{left:358.466667pt;}
.xa{left:373.853333pt;}
.xb{left:404.413333pt;}
.x25{left:450.506667pt;}
.xd{left:458.973333pt;}
.xc{left:467.133333pt;}
.x2c{left:484.106667pt;}
.x29{left:511.306667pt;}
.x26{left:525.093333pt;}
.x8{left:680.960000pt;}
.x7{left:697.280000pt;}
}




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