
    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_e9db5c9dcb6dcf863b8fdddd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_06efb95f55f4e12fd7a1498c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904785;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_482cf1bed5de5c73e99d24ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4f86205ebc9ff4962f2070d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_9c20855efe60b20295a9f1ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_281d0facaa4d2918a143e55c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_597f41131da8461da1ba736b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c80243bf14bfa7becaa3ab64.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.440000px;}
.lse{letter-spacing:6.480000px;}
.ls3{letter-spacing:7.200000px;}
.ls14{letter-spacing:12.960000px;}
.ls10{letter-spacing:14.400000px;}
.ls15{letter-spacing:17.256000px;}
.ls12{letter-spacing:17.280000px;}
.lsb{letter-spacing:18.720000px;}
.lsa{letter-spacing:19.440000px;}
.ls13{letter-spacing:23.040000px;}
.lsd{letter-spacing:23.760000px;}
.ls9{letter-spacing:29.520000px;}
.ls4{letter-spacing:30.240000px;}
.ls16{letter-spacing:54.144000px;}
.ls1{letter-spacing:59.309760px;}
.ls17{letter-spacing:65.520000px;}
.lsc{letter-spacing:91.440000px;}
.ls0{letter-spacing:93.029760px;}
.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;}
}
.ws5{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.064000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._1{width:1.053360px;}
._2{width:2.791920px;}
._12{width:4.248000px;}
._19{width:5.333280px;}
._4{width:6.552000px;}
._3{width:7.608000px;}
._1b{width:8.784000px;}
._5{width:9.912000px;}
._1a{width:11.664000px;}
._21{width:13.068000px;}
._20{width:14.472000px;}
._11{width:16.344000px;}
._1c{width:19.944000px;}
._2a{width:21.720000px;}
._22{width:23.114640px;}
._8{width:24.192000px;}
._9{width:25.212000px;}
._b{width:26.642640px;}
._a{width:27.648000px;}
._14{width:29.258640px;}
._13{width:30.276000px;}
._25{width:31.392000px;}
._26{width:32.472000px;}
._c{width:33.984000px;}
._d{width:35.208000px;}
._27{width:36.324000px;}
._24{width:37.404000px;}
._18{width:38.856000px;}
._17{width:40.440000px;}
._10{width:41.544000px;}
._f{width:42.624000px;}
._28{width:43.992000px;}
._e{width:45.408000px;}
._23{width:47.594640px;}
._2f{width:49.464000px;}
._31{width:52.776000px;}
._1f{width:53.964000px;}
._1e{width:55.368000px;}
._2b{width:57.456000px;}
._2c{width:60.408000px;}
._7{width:63.108000px;}
._6{width:64.404000px;}
._30{width:65.585280px;}
._1d{width:70.200000px;}
._2e{width:73.656000px;}
._2d{width:91.272000px;}
._16{width:97.524000px;}
._15{width:98.604000px;}
._29{width:271.872000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc7{color:rgb(34,34,34);}
.fc4{color:rgb(63,63,63);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y73{bottom:7.014000px;}
.y71{bottom:7.020000px;}
.y76{bottom:7.050000px;}
.y70{bottom:7.200000px;}
.y6e{bottom:7.740000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y6d{bottom:31.680000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y74{bottom:120.816000px;}
.y5b{bottom:127.656000px;}
.ya0{bottom:134.676000px;}
.y31{bottom:138.816000px;}
.y72{bottom:145.476000px;}
.y5a{bottom:151.590000px;}
.y9f{bottom:158.430000px;}
.y30{bottom:162.570000px;}
.y6c{bottom:169.950000px;}
.y59{bottom:175.350000px;}
.y9e{bottom:182.190000px;}
.y2f{bottom:186.510000px;}
.y6f{bottom:194.430000px;}
.y58{bottom:199.110000px;}
.y9d{bottom:206.130000px;}
.y2e{bottom:210.270000px;}
.y57{bottom:222.870000px;}
.y6b{bottom:226.110000px;}
.y9c{bottom:229.890000px;}
.y2d{bottom:234.030000px;}
.y6a{bottom:249.870000px;}
.y9b{bottom:253.650000px;}
.y56{bottom:255.810000px;}
.y2c{bottom:266.790000px;}
.y69{bottom:273.810000px;}
.y9a{bottom:277.410000px;}
.y55{bottom:279.570000px;}
.y2b{bottom:290.730000px;}
.y68{bottom:297.570000px;}
.y99{bottom:301.350000px;}
.y54{bottom:303.330000px;}
.y2a{bottom:314.490000px;}
.y67{bottom:321.330000px;}
.y98{bottom:325.110000px;}
.y53{bottom:327.090000px;}
.y29{bottom:338.295000px;}
.y66{bottom:345.135000px;}
.y97{bottom:348.915000px;}
.y52{bottom:360.075000px;}
.y28{bottom:362.055000px;}
.y65{bottom:369.075000px;}
.y96{bottom:372.675000px;}
.y51{bottom:383.835000px;}
.y27{bottom:385.995000px;}
.y64{bottom:392.835000px;}
.y95{bottom:396.615000px;}
.y50{bottom:407.595000px;}
.y26{bottom:409.755000px;}
.y63{bottom:416.595000px;}
.y94{bottom:420.375000px;}
.y4f{bottom:431.355000px;}
.y25{bottom:433.515000px;}
.y62{bottom:440.355000px;}
.y93{bottom:444.135000px;}
.y24{bottom:457.275000px;}
.y4e{bottom:464.115000px;}
.y92{bottom:467.895000px;}
.y23{bottom:481.215000px;}
.y4d{bottom:488.055000px;}
.y91{bottom:491.835000px;}
.y22{bottom:504.975000px;}
.y4c{bottom:511.815000px;}
.y90{bottom:515.595000px;}
.y21{bottom:528.735000px;}
.y4b{bottom:535.575000px;}
.y8f{bottom:539.355000px;}
.y20{bottom:552.495000px;}
.y4a{bottom:559.335000px;}
.y8e{bottom:563.115000px;}
.y1f{bottom:576.435000px;}
.y49{bottom:583.275000px;}
.y8d{bottom:587.055000px;}
.y1e{bottom:600.195000px;}
.y48{bottom:607.065000px;}
.y8c{bottom:610.845000px;}
.y1d{bottom:623.985000px;}
.y47{bottom:630.825000px;}
.y8b{bottom:634.605000px;}
.y1c{bottom:647.745000px;}
.y46{bottom:654.585000px;}
.y8a{bottom:658.365000px;}
.y1b{bottom:671.505000px;}
.y45{bottom:678.525000px;}
.y89{bottom:682.125000px;}
.y1a{bottom:695.445000px;}
.y44{bottom:702.285000px;}
.y88{bottom:706.065000px;}
.y19{bottom:719.205000px;}
.y43{bottom:726.045000px;}
.y87{bottom:729.825000px;}
.y18{bottom:742.965000px;}
.y42{bottom:749.805000px;}
.y86{bottom:753.585000px;}
.y17{bottom:766.725000px;}
.y41{bottom:773.745000px;}
.y85{bottom:777.345000px;}
.y61{bottom:782.745000px;}
.y16{bottom:790.665000px;}
.y40{bottom:797.505000px;}
.y84{bottom:801.285000px;}
.y60{bottom:806.505000px;}
.y15{bottom:814.425000px;}
.y3f{bottom:821.265000px;}
.y83{bottom:825.045000px;}
.y5f{bottom:830.265000px;}
.y14{bottom:838.185000px;}
.y3e{bottom:845.025000px;}
.y82{bottom:848.805000px;}
.y5e{bottom:854.025000px;}
.y13{bottom:861.945000px;}
.y3d{bottom:868.965000px;}
.y81{bottom:872.610000px;}
.y5d{bottom:878.010000px;}
.y12{bottom:885.930000px;}
.y3c{bottom:892.770000px;}
.y80{bottom:896.550000px;}
.y5c{bottom:901.770000px;}
.y11{bottom:909.690000px;}
.y7f{bottom:920.310000px;}
.y3b{bottom:925.530000px;}
.y10{bottom:933.450000px;}
.y7e{bottom:944.070000px;}
.y3a{bottom:949.290000px;}
.yf{bottom:957.210000px;}
.y7d{bottom:967.830000px;}
.y39{bottom:973.050000px;}
.ye{bottom:981.150000px;}
.y7c{bottom:991.770000px;}
.y38{bottom:996.990000px;}
.yd{bottom:1004.910000px;}
.y7b{bottom:1009.230000px;}
.y37{bottom:1020.750000px;}
.yc{bottom:1028.670000px;}
.y7a{bottom:1033.710000px;}
.y36{bottom:1044.510000px;}
.yb{bottom:1052.430000px;}
.y79{bottom:1058.370000px;}
.y35{bottom:1068.270000px;}
.ya{bottom:1076.370000px;}
.y78{bottom:1082.850000px;}
.y34{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y77{bottom:1107.330000px;}
.y33{bottom:1115.970000px;}
.y75{bottom:1131.990000px;}
.y8{bottom:1134.150000px;}
.y32{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:4.038750px;}
.hf{height:23.760000px;}
.h10{height:23.796000px;}
.he{height:23.940000px;}
.h3{height:27.036000px;}
.h2{height:37.204102px;}
.hd{height:48.420000px;}
.h8{height:49.605469px;}
.hc{height:49.992188px;}
.h4{height:50.484375px;}
.hb{height:51.996094px;}
.h11{height:52.417969px;}
.h9{height:56.995664px;}
.ha{height:61.184531px;}
.h5{height:65.884219px;}
.h7{height:65.975273px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:70.920000px;}
.wb{width:73.620000px;}
.w7{width:73.656000px;}
.w9{width:73.800000px;}
.wa{width:84.276000px;}
.w4{width:105.516000px;}
.w8{width:304.950000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w6{width:307.650000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x15{left:9.720000px;}
.x20{left:12.060000px;}
.x21{left:15.120000px;}
.x1e{left:16.560000px;}
.x1f{left:19.620000px;}
.x16{left:21.960000px;}
.x23{left:24.120000px;}
.x1d{left:25.740000px;}
.x1b{left:27.720000px;}
.x22{left:30.780000px;}
.x24{left:32.580000px;}
.x17{left:33.840000px;}
.x19{left:36.000000px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.x1{left:99.395987px;}
.x13{left:117.396000px;}
.x2{left:122.615987px;}
.x26{left:127.835987px;}
.x25{left:138.275987px;}
.x10{left:148.895987px;}
.xd{left:200.909987px;}
.xa{left:217.469987px;}
.xb{left:235.829987px;}
.x12{left:257.969987px;}
.xe{left:276.869987px;}
.xf{left:295.814987px;}
.x5{left:297.795000px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.x14{left:425.775000px;}
.xc{left:446.474987px;}
.x8{left:500.145000px;}
.x18{left:574.665000px;}
.x1a{left:659.670000px;}
.x11{left:719.429987px;}
.x1c{left:734.190000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.280000pt;}
.lse{letter-spacing:5.760000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls14{letter-spacing:11.520000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls15{letter-spacing:15.338667pt;}
.ls12{letter-spacing:15.360000pt;}
.lsb{letter-spacing:16.640000pt;}
.lsa{letter-spacing:17.280000pt;}
.ls13{letter-spacing:20.480000pt;}
.lsd{letter-spacing:21.120000pt;}
.ls9{letter-spacing:26.240000pt;}
.ls4{letter-spacing:26.880000pt;}
.ls16{letter-spacing:48.128000pt;}
.ls1{letter-spacing:52.719787pt;}
.ls17{letter-spacing:58.240000pt;}
.lsc{letter-spacing:81.280000pt;}
.ls0{letter-spacing:82.693120pt;}
.ws5{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.936320pt;}
._2{width:2.481707pt;}
._12{width:3.776000pt;}
._19{width:4.740693pt;}
._4{width:5.824000pt;}
._3{width:6.762667pt;}
._1b{width:7.808000pt;}
._5{width:8.810667pt;}
._1a{width:10.368000pt;}
._21{width:11.616000pt;}
._20{width:12.864000pt;}
._11{width:14.528000pt;}
._1c{width:17.728000pt;}
._2a{width:19.306667pt;}
._22{width:20.546347pt;}
._8{width:21.504000pt;}
._9{width:22.410667pt;}
._b{width:23.682347pt;}
._a{width:24.576000pt;}
._14{width:26.007680pt;}
._13{width:26.912000pt;}
._25{width:27.904000pt;}
._26{width:28.864000pt;}
._c{width:30.208000pt;}
._d{width:31.296000pt;}
._27{width:32.288000pt;}
._24{width:33.248000pt;}
._18{width:34.538667pt;}
._17{width:35.946667pt;}
._10{width:36.928000pt;}
._f{width:37.888000pt;}
._28{width:39.104000pt;}
._e{width:40.362667pt;}
._23{width:42.306347pt;}
._2f{width:43.968000pt;}
._31{width:46.912000pt;}
._1f{width:47.968000pt;}
._1e{width:49.216000pt;}
._2b{width:51.072000pt;}
._2c{width:53.696000pt;}
._7{width:56.096000pt;}
._6{width:57.248000pt;}
._30{width:58.298027pt;}
._1d{width:62.400000pt;}
._2e{width:65.472000pt;}
._2d{width:81.130667pt;}
._16{width:86.688000pt;}
._15{width:87.648000pt;}
._29{width:241.664000pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:6.234667pt;}
.y71{bottom:6.240000pt;}
.y76{bottom:6.266667pt;}
.y70{bottom:6.400000pt;}
.y6e{bottom:6.880000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y6d{bottom:28.160000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y74{bottom:107.392000pt;}
.y5b{bottom:113.472000pt;}
.ya0{bottom:119.712000pt;}
.y31{bottom:123.392000pt;}
.y72{bottom:129.312000pt;}
.y5a{bottom:134.746667pt;}
.y9f{bottom:140.826667pt;}
.y30{bottom:144.506667pt;}
.y6c{bottom:151.066667pt;}
.y59{bottom:155.866667pt;}
.y9e{bottom:161.946667pt;}
.y2f{bottom:165.786667pt;}
.y6f{bottom:172.826667pt;}
.y58{bottom:176.986667pt;}
.y9d{bottom:183.226667pt;}
.y2e{bottom:186.906667pt;}
.y57{bottom:198.106667pt;}
.y6b{bottom:200.986667pt;}
.y9c{bottom:204.346667pt;}
.y2d{bottom:208.026667pt;}
.y6a{bottom:222.106667pt;}
.y9b{bottom:225.466667pt;}
.y56{bottom:227.386667pt;}
.y2c{bottom:237.146667pt;}
.y69{bottom:243.386667pt;}
.y9a{bottom:246.586667pt;}
.y55{bottom:248.506667pt;}
.y2b{bottom:258.426667pt;}
.y68{bottom:264.506667pt;}
.y99{bottom:267.866667pt;}
.y54{bottom:269.626667pt;}
.y2a{bottom:279.546667pt;}
.y67{bottom:285.626667pt;}
.y98{bottom:288.986667pt;}
.y53{bottom:290.746667pt;}
.y29{bottom:300.706667pt;}
.y66{bottom:306.786667pt;}
.y97{bottom:310.146667pt;}
.y52{bottom:320.066667pt;}
.y28{bottom:321.826667pt;}
.y65{bottom:328.066667pt;}
.y96{bottom:331.266667pt;}
.y51{bottom:341.186667pt;}
.y27{bottom:343.106667pt;}
.y64{bottom:349.186667pt;}
.y95{bottom:352.546667pt;}
.y50{bottom:362.306667pt;}
.y26{bottom:364.226667pt;}
.y63{bottom:370.306667pt;}
.y94{bottom:373.666667pt;}
.y4f{bottom:383.426667pt;}
.y25{bottom:385.346667pt;}
.y62{bottom:391.426667pt;}
.y93{bottom:394.786667pt;}
.y24{bottom:406.466667pt;}
.y4e{bottom:412.546667pt;}
.y92{bottom:415.906667pt;}
.y23{bottom:427.746667pt;}
.y4d{bottom:433.826667pt;}
.y91{bottom:437.186667pt;}
.y22{bottom:448.866667pt;}
.y4c{bottom:454.946667pt;}
.y90{bottom:458.306667pt;}
.y21{bottom:469.986667pt;}
.y4b{bottom:476.066667pt;}
.y8f{bottom:479.426667pt;}
.y20{bottom:491.106667pt;}
.y4a{bottom:497.186667pt;}
.y8e{bottom:500.546667pt;}
.y1f{bottom:512.386667pt;}
.y49{bottom:518.466667pt;}
.y8d{bottom:521.826667pt;}
.y1e{bottom:533.506667pt;}
.y48{bottom:539.613333pt;}
.y8c{bottom:542.973333pt;}
.y1d{bottom:554.653333pt;}
.y47{bottom:560.733333pt;}
.y8b{bottom:564.093333pt;}
.y1c{bottom:575.773333pt;}
.y46{bottom:581.853333pt;}
.y8a{bottom:585.213333pt;}
.y1b{bottom:596.893333pt;}
.y45{bottom:603.133333pt;}
.y89{bottom:606.333333pt;}
.y1a{bottom:618.173333pt;}
.y44{bottom:624.253333pt;}
.y88{bottom:627.613333pt;}
.y19{bottom:639.293333pt;}
.y43{bottom:645.373333pt;}
.y87{bottom:648.733333pt;}
.y18{bottom:660.413333pt;}
.y42{bottom:666.493333pt;}
.y86{bottom:669.853333pt;}
.y17{bottom:681.533333pt;}
.y41{bottom:687.773333pt;}
.y85{bottom:690.973333pt;}
.y61{bottom:695.773333pt;}
.y16{bottom:702.813333pt;}
.y40{bottom:708.893333pt;}
.y84{bottom:712.253333pt;}
.y60{bottom:716.893333pt;}
.y15{bottom:723.933333pt;}
.y3f{bottom:730.013333pt;}
.y83{bottom:733.373333pt;}
.y5f{bottom:738.013333pt;}
.y14{bottom:745.053333pt;}
.y3e{bottom:751.133333pt;}
.y82{bottom:754.493333pt;}
.y5e{bottom:759.133333pt;}
.y13{bottom:766.173333pt;}
.y3d{bottom:772.413333pt;}
.y81{bottom:775.653333pt;}
.y5d{bottom:780.453333pt;}
.y12{bottom:787.493333pt;}
.y3c{bottom:793.573333pt;}
.y80{bottom:796.933333pt;}
.y5c{bottom:801.573333pt;}
.y11{bottom:808.613333pt;}
.y7f{bottom:818.053333pt;}
.y3b{bottom:822.693333pt;}
.y10{bottom:829.733333pt;}
.y7e{bottom:839.173333pt;}
.y3a{bottom:843.813333pt;}
.yf{bottom:850.853333pt;}
.y7d{bottom:860.293333pt;}
.y39{bottom:864.933333pt;}
.ye{bottom:872.133333pt;}
.y7c{bottom:881.573333pt;}
.y38{bottom:886.213333pt;}
.yd{bottom:893.253333pt;}
.y7b{bottom:897.093333pt;}
.y37{bottom:907.333333pt;}
.yc{bottom:914.373333pt;}
.y7a{bottom:918.853333pt;}
.y36{bottom:928.453333pt;}
.yb{bottom:935.493333pt;}
.y79{bottom:940.773333pt;}
.y35{bottom:949.573333pt;}
.ya{bottom:956.773333pt;}
.y78{bottom:962.533333pt;}
.y34{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y77{bottom:984.293333pt;}
.y33{bottom:991.973333pt;}
.y75{bottom:1006.213333pt;}
.y8{bottom:1008.133333pt;}
.y32{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.590000pt;}
.hf{height:21.120000pt;}
.h10{height:21.152000pt;}
.he{height:21.280000pt;}
.h3{height:24.032000pt;}
.h2{height:33.070312pt;}
.hd{height:43.040000pt;}
.h8{height:44.093750pt;}
.hc{height:44.437500pt;}
.h4{height:44.875000pt;}
.hb{height:46.218750pt;}
.h11{height:46.593750pt;}
.h9{height:50.662813pt;}
.ha{height:54.386250pt;}
.h5{height:58.563750pt;}
.h7{height:58.644688pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:63.040000pt;}
.wb{width:65.440000pt;}
.w7{width:65.472000pt;}
.w9{width:65.600000pt;}
.wa{width:74.912000pt;}
.w4{width:93.792000pt;}
.w8{width:271.066667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w6{width:273.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x15{left:8.640000pt;}
.x20{left:10.720000pt;}
.x21{left:13.440000pt;}
.x1e{left:14.720000pt;}
.x1f{left:17.440000pt;}
.x16{left:19.520000pt;}
.x23{left:21.440000pt;}
.x1d{left:22.880000pt;}
.x1b{left:24.640000pt;}
.x22{left:27.360000pt;}
.x24{left:28.960000pt;}
.x17{left:30.080000pt;}
.x19{left:32.000000pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.x1{left:88.351988pt;}
.x13{left:104.352000pt;}
.x2{left:108.991988pt;}
.x26{left:113.631988pt;}
.x25{left:122.911988pt;}
.x10{left:132.351988pt;}
.xd{left:178.586655pt;}
.xa{left:193.306655pt;}
.xb{left:209.626655pt;}
.x12{left:229.306655pt;}
.xe{left:246.106655pt;}
.xf{left:262.946655pt;}
.x5{left:264.706667pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.x14{left:378.466667pt;}
.xc{left:396.866655pt;}
.x8{left:444.573333pt;}
.x18{left:510.813333pt;}
.x1a{left:586.373333pt;}
.x11{left:639.493322pt;}
.x1c{left:652.613333pt;}
}




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