
    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_27ecb649bf9beb584b25b551.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_8906cdc7c0b4472f86e9ba8b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_29f7b763f6edc7c43ac25e29.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_025da6f32c52186e7a9efa78.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c2a57f0237eb7223f1b6cff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac1e5aa8bbe4771673fafae0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4e7867b9300571f212edac34.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.414000px;}
.lsd{letter-spacing:43.866720px;}
.lsa{letter-spacing:46.026720px;}
.lse{letter-spacing:64.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.076400px;}
._8{width:2.115360px;}
._7{width:3.402000px;}
._f{width:4.503600px;}
._5{width:5.508000px;}
._6{width:6.642000px;}
._b{width:8.329680px;}
._a{width:9.468000px;}
._d{width:11.232000px;}
._4{width:12.366000px;}
._13{width:13.533840px;}
._9{width:14.580000px;}
._e{width:15.717600px;}
._10{width:17.334000px;}
._14{width:18.452160px;}
._c{width:20.707920px;}
._3{width:21.897360px;}
._2{width:22.950000px;}
._11{width:24.680880px;}
._12{width:25.959600px;}
._15{width:30.656880px;}
._16{width:33.050400px;}
.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;}
.fs8{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{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;}
.y50{bottom:2.160000px;}
.y45{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5e{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4f{bottom:10.260000px;}
.yb8{bottom:20.385000px;}
.y44{bottom:20.520000px;}
.y5b{bottom:20.700000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:37.620000px;}
.y43{bottom:37.800000px;}
.y4e{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4d{bottom:51.120000px;}
.y42{bottom:55.080000px;}
.y59{bottom:55.260000px;}
.y4c{bottom:62.820000px;}
.y58{bottom:70.950000px;}
.y8{bottom:71.820000px;}
.y41{bottom:72.360000px;}
.y4b{bottom:75.810000px;}
.y57{bottom:86.430000px;}
.y4a{bottom:88.950000px;}
.y40{bottom:89.460000px;}
.y7{bottom:90.720000px;}
.y56{bottom:99.390000px;}
.y55{bottom:105.870000px;}
.y3f{bottom:106.785000px;}
.y49{bottom:110.910000px;}
.yef{bottom:117.900000px;}
.yc6{bottom:119.880000px;}
.y54{bottom:121.350000px;}
.y97{bottom:123.300000px;}
.y3e{bottom:123.705000px;}
.y46{bottom:134.640000px;}
.yee{bottom:135.180000px;}
.y53{bottom:137.010000px;}
.yc5{bottom:137.160000px;}
.y9b{bottom:137.340000px;}
.y3d{bottom:139.365000px;}
.y96{bottom:140.580000px;}
.yed{bottom:152.460000px;}
.y52{bottom:152.490000px;}
.yc4{bottom:154.440000px;}
.y3c{bottom:154.845000px;}
.y9a{bottom:155.700000px;}
.y95{bottom:157.860000px;}
.y51{bottom:167.970000px;}
.yec{bottom:169.740000px;}
.y3b{bottom:170.325000px;}
.yc3{bottom:171.540000px;}
.y48{bottom:172.830000px;}
.y99{bottom:172.980000px;}
.y94{bottom:175.140000px;}
.y47{bottom:183.450000px;}
.y3a{bottom:185.805000px;}
.yeb{bottom:187.020000px;}
.yc2{bottom:188.820000px;}
.y98{bottom:191.340000px;}
.y93{bottom:192.420000px;}
.y5c{bottom:200.190000px;}
.y39{bottom:201.465000px;}
.yea{bottom:204.330000px;}
.yc1{bottom:207.210000px;}
.y92{bottom:209.550000px;}
.y38{bottom:216.945000px;}
.ye9{bottom:221.430000px;}
.yc0{bottom:225.570000px;}
.y91{bottom:226.830000px;}
.y37{bottom:232.425000px;}
.ye8{bottom:238.710000px;}
.ybf{bottom:243.930000px;}
.y90{bottom:244.110000px;}
.y21{bottom:247.365000px;}
.y36{bottom:247.905000px;}
.ye7{bottom:255.990000px;}
.y8f{bottom:261.390000px;}
.ybe{bottom:262.110000px;}
.y35{bottom:263.565000px;}
.y20{bottom:271.485000px;}
.ye6{bottom:273.270000px;}
.y8e{bottom:278.670000px;}
.y34{bottom:279.045000px;}
.ybd{bottom:280.470000px;}
.ye5{bottom:290.550000px;}
.y33{bottom:294.525000px;}
.y1f{bottom:295.605000px;}
.y8d{bottom:295.950000px;}
.ybc{bottom:298.830000px;}
.ye4{bottom:307.830000px;}
.y32{bottom:310.005000px;}
.y8c{bottom:313.050000px;}
.ybb{bottom:313.590000px;}
.y1e{bottom:319.905000px;}
.ye3{bottom:324.930000px;}
.y31{bottom:325.515000px;}
.y8b{bottom:330.330000px;}
.y30{bottom:341.175000px;}
.ye2{bottom:342.210000px;}
.y1d{bottom:344.055000px;}
.y8a{bottom:347.610000px;}
.y13{bottom:348.150000px;}
.yba{bottom:348.870000px;}
.y2f{bottom:356.655000px;}
.ye1{bottom:359.490000px;}
.y89{bottom:364.890000px;}
.y1c{bottom:368.175000px;}
.y2e{bottom:372.135000px;}
.ye0{bottom:376.770000px;}
.y88{bottom:382.170000px;}
.yb9{bottom:384.150000px;}
.y2d{bottom:387.615000px;}
.y1b{bottom:392.295000px;}
.ydf{bottom:394.050000px;}
.y87{bottom:399.450000px;}
.y2c{bottom:403.275000px;}
.yde{bottom:411.150000px;}
.y1a{bottom:416.415000px;}
.y86{bottom:416.550000px;}
.y2b{bottom:418.755000px;}
.yb7{bottom:419.430000px;}
.ydd{bottom:428.430000px;}
.y85{bottom:433.830000px;}
.y2a{bottom:434.235000px;}
.y19{bottom:440.535000px;}
.ydc{bottom:445.755000px;}
.y29{bottom:449.715000px;}
.y84{bottom:451.155000px;}
.yb6{bottom:454.575000px;}
.ydb{bottom:463.035000px;}
.y18{bottom:464.835000px;}
.y28{bottom:465.375000px;}
.y83{bottom:468.435000px;}
.yb5{bottom:472.575000px;}
.yda{bottom:480.315000px;}
.y27{bottom:480.855000px;}
.y82{bottom:485.715000px;}
.y17{bottom:488.955000px;}
.y26{bottom:496.335000px;}
.yd9{bottom:497.595000px;}
.y81{bottom:502.995000px;}
.yb4{bottom:507.855000px;}
.y25{bottom:511.815000px;}
.y16{bottom:513.075000px;}
.yd8{bottom:514.695000px;}
.y80{bottom:520.095000px;}
.y24{bottom:527.475000px;}
.yd7{bottom:531.975000px;}
.y15{bottom:537.195000px;}
.y7f{bottom:537.375000px;}
.y23{bottom:542.955000px;}
.yb3{bottom:543.135000px;}
.yd6{bottom:549.255000px;}
.y7e{bottom:554.655000px;}
.y22{bottom:558.435000px;}
.y14{bottom:561.360000px;}
.yb2{bottom:564.375000px;}
.yd5{bottom:566.535000px;}
.y7d{bottom:571.935000px;}
.yb1{bottom:581.655000px;}
.yd4{bottom:583.815000px;}
.y7c{bottom:589.215000px;}
.yb0{bottom:598.935000px;}
.yd3{bottom:601.095000px;}
.y7b{bottom:606.315000px;}
.yaf{bottom:616.035000px;}
.yd2{bottom:618.195000px;}
.y7a{bottom:623.595000px;}
.yae{bottom:633.315000px;}
.yd1{bottom:635.475000px;}
.y79{bottom:640.875000px;}
.yad{bottom:650.595000px;}
.yd0{bottom:652.755000px;}
.y78{bottom:658.155000px;}
.yac{bottom:667.875000px;}
.ycf{bottom:670.035000px;}
.y77{bottom:675.465000px;}
.yab{bottom:685.185000px;}
.yce{bottom:687.345000px;}
.y76{bottom:692.745000px;}
.yaa{bottom:703.545000px;}
.ycd{bottom:704.625000px;}
.y75{bottom:709.845000px;}
.ya9{bottom:720.645000px;}
.ycc{bottom:721.725000px;}
.y74{bottom:727.125000px;}
.ya8{bottom:739.005000px;}
.y73{bottom:744.405000px;}
.ycb{bottom:756.285000px;}
.ya7{bottom:757.365000px;}
.y72{bottom:761.685000px;}
.yca{bottom:773.565000px;}
.ya6{bottom:775.725000px;}
.y71{bottom:778.965000px;}
.yc9{bottom:791.925000px;}
.ya5{bottom:793.005000px;}
.y70{bottom:796.245000px;}
.ya4{bottom:810.105000px;}
.y6f{bottom:813.345000px;}
.ya3{bottom:827.385000px;}
.yc8{bottom:828.465000px;}
.y6e{bottom:830.625000px;}
.ya2{bottom:844.665000px;}
.yc7{bottom:846.825000px;}
.y6d{bottom:847.905000px;}
.ya1{bottom:861.945000px;}
.y6c{bottom:865.185000px;}
.ya0{bottom:879.225000px;}
.y6b{bottom:882.465000px;}
.y9f{bottom:896.505000px;}
.y6a{bottom:899.565000px;}
.y9e{bottom:913.650000px;}
.y69{bottom:916.890000px;}
.y12{bottom:921.750000px;}
.y11{bottom:925.530000px;}
.y9d{bottom:932.010000px;}
.y68{bottom:934.170000px;}
.y10{bottom:938.490000px;}
.y9c{bottom:950.370000px;}
.y67{bottom:951.450000px;}
.yf{bottom:955.770000px;}
.y66{bottom:968.730000px;}
.ye{bottom:973.050000px;}
.y65{bottom:986.010000px;}
.yd{bottom:990.330000px;}
.y64{bottom:1003.110000px;}
.yc{bottom:1007.610000px;}
.y63{bottom:1020.390000px;}
.yb{bottom:1024.710000px;}
.y62{bottom:1037.670000px;}
.ya{bottom:1043.250000px;}
.y61{bottom:1054.950000px;}
.y9{bottom:1071.870000px;}
.y60{bottom:1072.230000px;}
.y5d{bottom:1075.140000px;}
.y5f{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.021875px;}
.h14{height:4.747500px;}
.h19{height:17.280000px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h15{height:27.720000px;}
.ha{height:29.158594px;}
.hd{height:29.464453px;}
.h1c{height:34.380000px;}
.h1b{height:34.416000px;}
.h1a{height:34.560000px;}
.h13{height:38.100586px;}
.he{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h17{height:43.506914px;}
.hf{height:44.507812px;}
.h5{height:46.251562px;}
.h18{height:49.255313px;}
.h8{height:59.436914px;}
.h16{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:212.790000px;}
.hc{height:571.065000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:77.580000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w9{width:159.690000px;}
.w8{width:162.900000px;}
.wb{width:218.010000px;}
.wa{width:283.350000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x17{left:17.316000px;}
.x6{left:18.720000px;}
.x19{left:20.016000px;}
.x18{left:29.016000px;}
.x11{left:43.776000px;}
.x1e{left:47.736000px;}
.x12{left:50.796000px;}
.x10{left:54.936000px;}
.x1f{left:57.096000px;}
.x16{left:67.170000px;}
.x15{left:73.290000px;}
.x14{left:75.270000px;}
.x1{left:78.300000px;}
.x8{left:86.399987px;}
.x2{left:95.790000px;}
.x20{left:102.810000px;}
.x1d{left:106.770000px;}
.x24{left:108.395987px;}
.x22{left:113.435987px;}
.x25{left:115.416000px;}
.x23{left:118.475987px;}
.x13{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.x26{left:275.835000px;}
.xd{left:440.354987px;}
.x27{left:559.905000px;}
.xe{left:593.204987px;}
.xb{left:622.724987px;}
.xc{left:666.509987px;}
.xa{left:674.789987px;}
.x9{left:766.049987px;}
.x7{left:784.409987px;}
.xf{left:806.939987px;}
.x1c{left:815.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.368000pt;}
.lsd{letter-spacing:38.992640pt;}
.lsa{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.956800pt;}
._8{width:1.880320pt;}
._7{width:3.024000pt;}
._f{width:4.003200pt;}
._5{width:4.896000pt;}
._6{width:5.904000pt;}
._b{width:7.404160pt;}
._a{width:8.416000pt;}
._d{width:9.984000pt;}
._4{width:10.992000pt;}
._13{width:12.030080pt;}
._9{width:12.960000pt;}
._e{width:13.971200pt;}
._10{width:15.408000pt;}
._14{width:16.401920pt;}
._c{width:18.407040pt;}
._3{width:19.464320pt;}
._2{width:20.400000pt;}
._11{width:21.938560pt;}
._12{width:23.075200pt;}
._15{width:27.250560pt;}
._16{width:29.378133pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{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;}
.y50{bottom:1.920000pt;}
.y45{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5e{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4f{bottom:9.120000pt;}
.yb8{bottom:18.120000pt;}
.y44{bottom:18.240000pt;}
.y5b{bottom:18.400000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:33.440000pt;}
.y43{bottom:33.600000pt;}
.y4e{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4d{bottom:45.440000pt;}
.y42{bottom:48.960000pt;}
.y59{bottom:49.120000pt;}
.y4c{bottom:55.840000pt;}
.y58{bottom:63.066667pt;}
.y8{bottom:63.840000pt;}
.y41{bottom:64.320000pt;}
.y4b{bottom:67.386667pt;}
.y57{bottom:76.826667pt;}
.y4a{bottom:79.066667pt;}
.y40{bottom:79.520000pt;}
.y7{bottom:80.640000pt;}
.y56{bottom:88.346667pt;}
.y55{bottom:94.106667pt;}
.y3f{bottom:94.920000pt;}
.y49{bottom:98.586667pt;}
.yef{bottom:104.800000pt;}
.yc6{bottom:106.560000pt;}
.y54{bottom:107.866667pt;}
.y97{bottom:109.600000pt;}
.y3e{bottom:109.960000pt;}
.y46{bottom:119.680000pt;}
.yee{bottom:120.160000pt;}
.y53{bottom:121.786667pt;}
.yc5{bottom:121.920000pt;}
.y9b{bottom:122.080000pt;}
.y3d{bottom:123.880000pt;}
.y96{bottom:124.960000pt;}
.yed{bottom:135.520000pt;}
.y52{bottom:135.546667pt;}
.yc4{bottom:137.280000pt;}
.y3c{bottom:137.640000pt;}
.y9a{bottom:138.400000pt;}
.y95{bottom:140.320000pt;}
.y51{bottom:149.306667pt;}
.yec{bottom:150.880000pt;}
.y3b{bottom:151.400000pt;}
.yc3{bottom:152.480000pt;}
.y48{bottom:153.626667pt;}
.y99{bottom:153.760000pt;}
.y94{bottom:155.680000pt;}
.y47{bottom:163.066667pt;}
.y3a{bottom:165.160000pt;}
.yeb{bottom:166.240000pt;}
.yc2{bottom:167.840000pt;}
.y98{bottom:170.080000pt;}
.y93{bottom:171.040000pt;}
.y5c{bottom:177.946667pt;}
.y39{bottom:179.080000pt;}
.yea{bottom:181.626667pt;}
.yc1{bottom:184.186667pt;}
.y92{bottom:186.266667pt;}
.y38{bottom:192.840000pt;}
.ye9{bottom:196.826667pt;}
.yc0{bottom:200.506667pt;}
.y91{bottom:201.626667pt;}
.y37{bottom:206.600000pt;}
.ye8{bottom:212.186667pt;}
.ybf{bottom:216.826667pt;}
.y90{bottom:216.986667pt;}
.y21{bottom:219.880000pt;}
.y36{bottom:220.360000pt;}
.ye7{bottom:227.546667pt;}
.y8f{bottom:232.346667pt;}
.ybe{bottom:232.986667pt;}
.y35{bottom:234.280000pt;}
.y20{bottom:241.320000pt;}
.ye6{bottom:242.906667pt;}
.y8e{bottom:247.706667pt;}
.y34{bottom:248.040000pt;}
.ybd{bottom:249.306667pt;}
.ye5{bottom:258.266667pt;}
.y33{bottom:261.800000pt;}
.y1f{bottom:262.760000pt;}
.y8d{bottom:263.066667pt;}
.ybc{bottom:265.626667pt;}
.ye4{bottom:273.626667pt;}
.y32{bottom:275.560000pt;}
.y8c{bottom:278.266667pt;}
.ybb{bottom:278.746667pt;}
.y1e{bottom:284.360000pt;}
.ye3{bottom:288.826667pt;}
.y31{bottom:289.346667pt;}
.y8b{bottom:293.626667pt;}
.y30{bottom:303.266667pt;}
.ye2{bottom:304.186667pt;}
.y1d{bottom:305.826667pt;}
.y8a{bottom:308.986667pt;}
.y13{bottom:309.466667pt;}
.yba{bottom:310.106667pt;}
.y2f{bottom:317.026667pt;}
.ye1{bottom:319.546667pt;}
.y89{bottom:324.346667pt;}
.y1c{bottom:327.266667pt;}
.y2e{bottom:330.786667pt;}
.ye0{bottom:334.906667pt;}
.y88{bottom:339.706667pt;}
.yb9{bottom:341.466667pt;}
.y2d{bottom:344.546667pt;}
.y1b{bottom:348.706667pt;}
.ydf{bottom:350.266667pt;}
.y87{bottom:355.066667pt;}
.y2c{bottom:358.466667pt;}
.yde{bottom:365.466667pt;}
.y1a{bottom:370.146667pt;}
.y86{bottom:370.266667pt;}
.y2b{bottom:372.226667pt;}
.yb7{bottom:372.826667pt;}
.ydd{bottom:380.826667pt;}
.y85{bottom:385.626667pt;}
.y2a{bottom:385.986667pt;}
.y19{bottom:391.586667pt;}
.ydc{bottom:396.226667pt;}
.y29{bottom:399.746667pt;}
.y84{bottom:401.026667pt;}
.yb6{bottom:404.066667pt;}
.ydb{bottom:411.586667pt;}
.y18{bottom:413.186667pt;}
.y28{bottom:413.666667pt;}
.y83{bottom:416.386667pt;}
.yb5{bottom:420.066667pt;}
.yda{bottom:426.946667pt;}
.y27{bottom:427.426667pt;}
.y82{bottom:431.746667pt;}
.y17{bottom:434.626667pt;}
.y26{bottom:441.186667pt;}
.yd9{bottom:442.306667pt;}
.y81{bottom:447.106667pt;}
.yb4{bottom:451.426667pt;}
.y25{bottom:454.946667pt;}
.y16{bottom:456.066667pt;}
.yd8{bottom:457.506667pt;}
.y80{bottom:462.306667pt;}
.y24{bottom:468.866667pt;}
.yd7{bottom:472.866667pt;}
.y15{bottom:477.506667pt;}
.y7f{bottom:477.666667pt;}
.y23{bottom:482.626667pt;}
.yb3{bottom:482.786667pt;}
.yd6{bottom:488.226667pt;}
.y7e{bottom:493.026667pt;}
.y22{bottom:496.386667pt;}
.y14{bottom:498.986667pt;}
.yb2{bottom:501.666667pt;}
.yd5{bottom:503.586667pt;}
.y7d{bottom:508.386667pt;}
.yb1{bottom:517.026667pt;}
.yd4{bottom:518.946667pt;}
.y7c{bottom:523.746667pt;}
.yb0{bottom:532.386667pt;}
.yd3{bottom:534.306667pt;}
.y7b{bottom:538.946667pt;}
.yaf{bottom:547.586667pt;}
.yd2{bottom:549.506667pt;}
.y7a{bottom:554.306667pt;}
.yae{bottom:562.946667pt;}
.yd1{bottom:564.866667pt;}
.y79{bottom:569.666667pt;}
.yad{bottom:578.306667pt;}
.yd0{bottom:580.226667pt;}
.y78{bottom:585.026667pt;}
.yac{bottom:593.666667pt;}
.ycf{bottom:595.586667pt;}
.y77{bottom:600.413333pt;}
.yab{bottom:609.053333pt;}
.yce{bottom:610.973333pt;}
.y76{bottom:615.773333pt;}
.yaa{bottom:625.373333pt;}
.ycd{bottom:626.333333pt;}
.y75{bottom:630.973333pt;}
.ya9{bottom:640.573333pt;}
.ycc{bottom:641.533333pt;}
.y74{bottom:646.333333pt;}
.ya8{bottom:656.893333pt;}
.y73{bottom:661.693333pt;}
.ycb{bottom:672.253333pt;}
.ya7{bottom:673.213333pt;}
.y72{bottom:677.053333pt;}
.yca{bottom:687.613333pt;}
.ya6{bottom:689.533333pt;}
.y71{bottom:692.413333pt;}
.yc9{bottom:703.933333pt;}
.ya5{bottom:704.893333pt;}
.y70{bottom:707.773333pt;}
.ya4{bottom:720.093333pt;}
.y6f{bottom:722.973333pt;}
.ya3{bottom:735.453333pt;}
.yc8{bottom:736.413333pt;}
.y6e{bottom:738.333333pt;}
.ya2{bottom:750.813333pt;}
.yc7{bottom:752.733333pt;}
.y6d{bottom:753.693333pt;}
.ya1{bottom:766.173333pt;}
.y6c{bottom:769.053333pt;}
.ya0{bottom:781.533333pt;}
.y6b{bottom:784.413333pt;}
.y9f{bottom:796.893333pt;}
.y6a{bottom:799.613333pt;}
.y9e{bottom:812.133333pt;}
.y69{bottom:815.013333pt;}
.y12{bottom:819.333333pt;}
.y11{bottom:822.693333pt;}
.y9d{bottom:828.453333pt;}
.y68{bottom:830.373333pt;}
.y10{bottom:834.213333pt;}
.y9c{bottom:844.773333pt;}
.y67{bottom:845.733333pt;}
.yf{bottom:849.573333pt;}
.y66{bottom:861.093333pt;}
.ye{bottom:864.933333pt;}
.y65{bottom:876.453333pt;}
.yd{bottom:880.293333pt;}
.y64{bottom:891.653333pt;}
.yc{bottom:895.653333pt;}
.y63{bottom:907.013333pt;}
.yb{bottom:910.853333pt;}
.y62{bottom:922.373333pt;}
.ya{bottom:927.333333pt;}
.y61{bottom:937.733333pt;}
.y9{bottom:952.773333pt;}
.y60{bottom:953.093333pt;}
.y5d{bottom:955.680000pt;}
.y5f{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.575000pt;}
.h14{height:4.220000pt;}
.h19{height:15.360000pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h15{height:24.640000pt;}
.ha{height:25.918750pt;}
.hd{height:26.190625pt;}
.h1c{height:30.560000pt;}
.h1b{height:30.592000pt;}
.h1a{height:30.720000pt;}
.h13{height:33.867188pt;}
.he{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h17{height:38.672812pt;}
.hf{height:39.562500pt;}
.h5{height:41.112500pt;}
.h18{height:43.782500pt;}
.h8{height:52.832812pt;}
.h16{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:189.146667pt;}
.hc{height:507.613333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:68.960000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w9{width:141.946667pt;}
.w8{width:144.800000pt;}
.wb{width:193.786667pt;}
.wa{width:251.866667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x17{left:15.392000pt;}
.x6{left:16.640000pt;}
.x19{left:17.792000pt;}
.x18{left:25.792000pt;}
.x11{left:38.912000pt;}
.x1e{left:42.432000pt;}
.x12{left:45.152000pt;}
.x10{left:48.832000pt;}
.x1f{left:50.752000pt;}
.x16{left:59.706667pt;}
.x15{left:65.146667pt;}
.x14{left:66.906667pt;}
.x1{left:69.600000pt;}
.x8{left:76.799988pt;}
.x2{left:85.146667pt;}
.x20{left:91.386667pt;}
.x1d{left:94.906667pt;}
.x24{left:96.351988pt;}
.x22{left:100.831988pt;}
.x25{left:102.592000pt;}
.x23{left:105.311988pt;}
.x13{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.x26{left:245.186667pt;}
.xd{left:391.426655pt;}
.x27{left:497.693333pt;}
.xe{left:527.293322pt;}
.xb{left:553.533322pt;}
.xc{left:592.453322pt;}
.xa{left:599.813322pt;}
.x9{left:680.933322pt;}
.x7{left:697.253322pt;}
.xf{left:717.279988pt;}
.x1c{left:724.960000pt;}
}




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