
    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_9cd3afae7e9e04d91dbec263.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_cf3c322af292abc8072efa35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_bc76dce59aeab7d1690917e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_779d4aa0e2fbf9db0fa1af4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_becde221505c5e502b4ddcb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_caab260f7e1d77341e1878c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e8209ea1719038d02cc0ffb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_f7e8d220e04b1032016d1b9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_f50a872bd7a75ff2105a4ae3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2c66e0d21263cb8a00cdf0fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.089844;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_a2a6456982187d9f7717096f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120605;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_0a7db720344c46a9a5824e9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.120605;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:25.200000px;}
.ls13{letter-spacing:-3.600000px;}
.lsa{letter-spacing:-1.710000px;}
.ls4{letter-spacing:-1.224000px;}
.ls5{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.468000px;}
.ls12{letter-spacing:-0.453600px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.912000px;}
.ls6{letter-spacing:0.984000px;}
.lsd{letter-spacing:1.224000px;}
.ls9{letter-spacing:1.782000px;}
.ls1{letter-spacing:1.800000px;}
.ls8{letter-spacing:1.962000px;}
.lse{letter-spacing:183.780000px;}
.ls11{letter-spacing:194.520000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-64.800000px;}
.wsa{word-spacing:-64.346400px;}
.ws8{word-spacing:-19.224000px;}
.ws7{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.208000px;}
.ws1{word-spacing:-16.776000px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.400000px;}
.ws0{word-spacing:-13.032000px;}
.ws5{word-spacing:-8.172000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-10.584000px;}
._21{margin-left:-9.432000px;}
._18{margin-left:-8.414400px;}
._b{margin-left:-6.768000px;}
._5{margin-left:-5.256000px;}
._7{margin-left:-3.600000px;}
._a{margin-left:-2.520000px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._c{width:2.491200px;}
._4{width:3.566400px;}
._2{width:4.806000px;}
._3{width:6.679200px;}
._9{width:7.776000px;}
._8{width:10.185600px;}
._d{width:11.193600px;}
._17{width:13.824000px;}
._6{width:14.832000px;}
._22{width:15.907200px;}
._12{width:21.429600px;}
._15{width:22.444800px;}
._29{width:24.487200px;}
._13{width:25.560000px;}
._1b{width:28.267200px;}
._11{width:29.284800px;}
._19{width:31.540800px;}
._e{width:32.904000px;}
._28{width:34.027200px;}
._14{width:35.534400px;}
._f{width:36.768000px;}
._1a{width:38.870400px;}
._10{width:40.176000px;}
._24{width:42.336000px;}
._26{width:44.092800px;}
._27{width:45.895200px;}
._25{width:47.016000px;}
._23{width:50.760000px;}
._20{width:115.920000px;}
._1f{width:119.448000px;}
._1d{width:122.616000px;}
._1c{width:126.648000px;}
._1e{width:127.680000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:25.200000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:46.800000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:56.737500px;}
.y34{bottom:77.437500px;}
.y30{bottom:99.075000px;}
.y6c{bottom:102.675000px;}
.ybc{bottom:116.175000px;}
.y2f{bottom:119.775000px;}
.y81{bottom:123.375000px;}
.y58{bottom:125.175000px;}
.y6b{bottom:134.175000px;}
.y2e{bottom:140.475000px;}
.ya2{bottom:149.512500px;}
.y80{bottom:154.905000px;}
.y57{bottom:155.805000px;}
.y2d{bottom:161.205000px;}
.ycc{bottom:163.905000px;}
.y6a{bottom:164.805000px;}
.ya1{bottom:172.920000px;}
.y2c{bottom:181.905000px;}
.y7f{bottom:185.505000px;}
.y56{bottom:187.305000px;}
.y69{bottom:196.305000px;}
.y2b{bottom:202.650000px;}
.ybb{bottom:205.350000px;}
.ya0{bottom:206.250000px;}
.y7e{bottom:217.050000px;}
.y55{bottom:217.950000px;}
.ycb{bottom:220.650000px;}
.y2a{bottom:223.350000px;}
.y68{bottom:226.950000px;}
.y9f{bottom:229.650000px;}
.y29{bottom:244.050000px;}
.y7d{bottom:247.650000px;}
.y54{bottom:249.450000px;}
.yca{bottom:253.080000px;}
.y67{bottom:258.495000px;}
.yba{bottom:262.080000px;}
.y9e{bottom:262.980000px;}
.y28{bottom:273.780000px;}
.yc9{bottom:277.380000px;}
.y7c{bottom:279.195000px;}
.y53{bottom:280.080000px;}
.y9d{bottom:286.380000px;}
.y66{bottom:289.080000px;}
.y27{bottom:294.495000px;}
.yb9{bottom:295.380000px;}
.y7b{bottom:309.825000px;}
.y52{bottom:311.625000px;}
.y9c{bottom:318.825000px;}
.y65{bottom:320.625000px;}
.y26{bottom:324.225000px;}
.yc8{bottom:334.125000px;}
.y7a{bottom:341.325000px;}
.y51{bottom:342.225000px;}
.y9b{bottom:343.125000px;}
.y64{bottom:348.525000px;}
.y91{bottom:351.225000px;}
.yb8{bottom:352.125000px;}
.y25{bottom:353.925000px;}
.yc7{bottom:357.555000px;}
.y79{bottom:371.970000px;}
.y50{bottom:373.755000px;}
.y24{bottom:374.655000px;}
.y9a{bottom:375.570000px;}
.y90{bottom:382.755000px;}
.yc6{bottom:390.855000px;}
.y23{bottom:395.370000px;}
.y99{bottom:399.870000px;}
.y63{bottom:401.655000px;}
.y78{bottom:403.455000px;}
.y4f{bottom:404.370000px;}
.y8f{bottom:413.400000px;}
.yc5{bottom:414.300000px;}
.y22{bottom:416.100000px;}
.y98{bottom:432.300000px;}
.y77{bottom:434.100000px;}
.y4e{bottom:435.900000px;}
.y21{bottom:436.800000px;}
.y8e{bottom:444.900000px;}
.yc4{bottom:447.600000px;}
.y97{bottom:456.600000px;}
.y20{bottom:457.500000px;}
.y76{bottom:465.630000px;}
.y4d{bottom:466.545000px;}
.yc3{bottom:471.030000px;}
.y8d{bottom:475.530000px;}
.y1f{bottom:478.245000px;}
.yb7{bottom:480.045000px;}
.y96{bottom:489.030000px;}
.y75{bottom:496.230000px;}
.y4c{bottom:498.030000px;}
.y1e{bottom:498.930000px;}
.yb6{bottom:503.445000px;}
.y8c{bottom:507.030000px;}
.y95{bottom:513.375000px;}
.y1d{bottom:519.675000px;}
.y74{bottom:527.775000px;}
.y4b{bottom:528.675000px;}
.yb5{bottom:536.775000px;}
.y8b{bottom:537.675000px;}
.y1c{bottom:540.375000px;}
.y94{bottom:545.775000px;}
.yc2{bottom:551.175000px;}
.y73{bottom:558.375000px;}
.y4a{bottom:560.175000px;}
.y1b{bottom:561.075000px;}
.y8a{bottom:569.205000px;}
.y1a{bottom:581.820000px;}
.yb4{bottom:584.505000px;}
.y72{bottom:589.905000px;}
.y49{bottom:590.820000px;}
.y89{bottom:599.805000px;}
.y19{bottom:602.505000px;}
.yc1{bottom:607.905000px;}
.yb3{bottom:616.950000px;}
.y71{bottom:620.550000px;}
.y48{bottom:622.350000px;}
.y18{bottom:623.250000px;}
.y93{bottom:625.950000px;}
.y88{bottom:631.350000px;}
.yb2{bottom:641.250000px;}
.y17{bottom:643.950000px;}
.y70{bottom:652.050000px;}
.y47{bottom:652.950000px;}
.y92{bottom:659.250000px;}
.y87{bottom:661.950000px;}
.yb1{bottom:664.650000px;}
.y16{bottom:673.695000px;}
.y6f{bottom:682.680000px;}
.y46{bottom:684.480000px;}
.y86{bottom:693.495000px;}
.yb0{bottom:697.980000px;}
.y15{bottom:703.380000px;}
.y6e{bottom:714.195000px;}
.y45{bottom:715.080000px;}
.yaf{bottom:721.425000px;}
.y85{bottom:724.125000px;}
.y14{bottom:731.325000px;}
.y6d{bottom:744.825000px;}
.y44{bottom:746.625000px;}
.y84{bottom:752.025000px;}
.yae{bottom:753.825000px;}
.y13{bottom:761.925000px;}
.y62{bottom:776.355000px;}
.y43{bottom:777.255000px;}
.y83{bottom:778.170000px;}
.y12{bottom:783.570000px;}
.y82{bottom:805.170000px;}
.y61{bottom:806.955000px;}
.y42{bottom:808.755000px;}
.yad{bottom:810.570000px;}
.y11{bottom:813.255000px;}
.yac{bottom:834.900000px;}
.y10{bottom:837.600000px;}
.y60{bottom:838.500000px;}
.y41{bottom:839.400000px;}
.yab{bottom:858.300000px;}
.yf{bottom:868.200000px;}
.y5f{bottom:869.100000px;}
.y40{bottom:870.900000px;}
.yaa{bottom:891.630000px;}
.ye{bottom:899.745000px;}
.y5e{bottom:900.630000px;}
.y3f{bottom:901.545000px;}
.ya9{bottom:915.045000px;}
.yc0{bottom:924.045000px;}
.yd{bottom:930.375000px;}
.y5d{bottom:931.275000px;}
.y3e{bottom:933.075000px;}
.ya8{bottom:948.375000px;}
.ycd{bottom:957.375000px;}
.yc{bottom:961.875000px;}
.y5c{bottom:962.775000px;}
.y3d{bottom:963.675000px;}
.ya7{bottom:971.775000px;}
.ybf{bottom:980.820000px;}
.y3c{bottom:984.405000px;}
.yb{bottom:992.505000px;}
.y5b{bottom:993.420000px;}
.ya6{bottom:1004.205000px;}
.y3b{bottom:1014.105000px;}
.ya{bottom:1024.005000px;}
.y5a{bottom:1024.905000px;}
.ybe{bottom:1028.505000px;}
.y3a{bottom:1034.850000px;}
.ya5{bottom:1037.550000px;}
.y9{bottom:1054.650000px;}
.y39{bottom:1055.550000px;}
.ya4{bottom:1060.950000px;}
.y38{bottom:1076.250000px;}
.ybd{bottom:1085.295000px;}
.y8{bottom:1086.195000px;}
.y59{bottom:1087.080000px;}
.ya3{bottom:1094.280000px;}
.y37{bottom:1096.995000px;}
.y7{bottom:1107.780000px;}
.y36{bottom:1117.695000px;}
.y6{bottom:1126.695000px;}
.y5{bottom:1135.725000px;}
.y4{bottom:1150.125000px;}
.y3{bottom:1165.425000px;}
.y33{bottom:1166.325000px;}
.y2{bottom:1183.425000px;}
.y32{bottom:1185.225000px;}
.y31{bottom:1195.155000px;}
.y1{bottom:1202.370000px;}
.h2{height:22.000781px;}
.h6{height:23.083594px;}
.hc{height:36.864844px;}
.h5{height:40.858594px;}
.h4{height:47.144531px;}
.h10{height:48.410156px;}
.he{height:49.464844px;}
.hd{height:54.864844px;}
.h7{height:56.060156px;}
.ha{height:58.429688px;}
.h3{height:62.859375px;}
.h8{height:63.949219px;}
.hf{height:64.451953px;}
.h9{height:64.546875px;}
.hb{height:67.155469px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xc{left:127.949987px;}
.x7{left:132.449987px;}
.x6{left:137.849987px;}
.x9{left:143.249987px;}
.x15{left:170.279987px;}
.x11{left:181.079987px;}
.x17{left:215.324987px;}
.xb{left:299.999987px;}
.x13{left:306.299987px;}
.x2{left:324.329987px;}
.x5{left:340.544987px;}
.xa{left:361.274987px;}
.x8{left:369.374987px;}
.x14{left:409.004987px;}
.x4{left:412.619987px;}
.x3{left:418.949987px;}
.xf{left:434.249987px;}
.xe{left:436.949987px;}
.x1{left:468.494987px;}
.xd{left:492.824987px;}
.x16{left:700.019987px;}
.x12{left:723.449987px;}
.x18{left:792.824987px;}
.x10{left:800.924987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:22.400000pt;}
.ls13{letter-spacing:-3.200000pt;}
.lsa{letter-spacing:-1.520000pt;}
.ls4{letter-spacing:-1.088000pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.416000pt;}
.ls12{letter-spacing:-0.403200pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.810667pt;}
.ls6{letter-spacing:0.874667pt;}
.lsd{letter-spacing:1.088000pt;}
.ls9{letter-spacing:1.584000pt;}
.ls1{letter-spacing:1.600000pt;}
.ls8{letter-spacing:1.744000pt;}
.lse{letter-spacing:163.360000pt;}
.ls11{letter-spacing:172.906667pt;}
.ws6{word-spacing:-57.600000pt;}
.wsa{word-spacing:-57.196800pt;}
.ws8{word-spacing:-17.088000pt;}
.ws7{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.296000pt;}
.ws1{word-spacing:-14.912000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-12.800000pt;}
.ws0{word-spacing:-11.584000pt;}
.ws5{word-spacing:-7.264000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-9.408000pt;}
._21{margin-left:-8.384000pt;}
._18{margin-left:-7.479467pt;}
._b{margin-left:-6.016000pt;}
._5{margin-left:-4.672000pt;}
._7{margin-left:-3.200000pt;}
._a{margin-left:-2.240000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._c{width:2.214400pt;}
._4{width:3.170133pt;}
._2{width:4.272000pt;}
._3{width:5.937067pt;}
._9{width:6.912000pt;}
._8{width:9.053867pt;}
._d{width:9.949867pt;}
._17{width:12.288000pt;}
._6{width:13.184000pt;}
._22{width:14.139733pt;}
._12{width:19.048533pt;}
._15{width:19.950933pt;}
._29{width:21.766400pt;}
._13{width:22.720000pt;}
._1b{width:25.126400pt;}
._11{width:26.030933pt;}
._19{width:28.036267pt;}
._e{width:29.248000pt;}
._28{width:30.246400pt;}
._14{width:31.586133pt;}
._f{width:32.682667pt;}
._1a{width:34.551467pt;}
._10{width:35.712000pt;}
._24{width:37.632000pt;}
._26{width:39.193600pt;}
._27{width:40.795733pt;}
._25{width:41.792000pt;}
._23{width:45.120000pt;}
._20{width:103.040000pt;}
._1f{width:106.176000pt;}
._1d{width:108.992000pt;}
._1c{width:112.576000pt;}
._1e{width:113.493333pt;}
.fs0{font-size:22.400000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:41.600000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:50.433333pt;}
.y34{bottom:68.833333pt;}
.y30{bottom:88.066667pt;}
.y6c{bottom:91.266667pt;}
.ybc{bottom:103.266667pt;}
.y2f{bottom:106.466667pt;}
.y81{bottom:109.666667pt;}
.y58{bottom:111.266667pt;}
.y6b{bottom:119.266667pt;}
.y2e{bottom:124.866667pt;}
.ya2{bottom:132.900000pt;}
.y80{bottom:137.693333pt;}
.y57{bottom:138.493333pt;}
.y2d{bottom:143.293333pt;}
.ycc{bottom:145.693333pt;}
.y6a{bottom:146.493333pt;}
.ya1{bottom:153.706667pt;}
.y2c{bottom:161.693333pt;}
.y7f{bottom:164.893333pt;}
.y56{bottom:166.493333pt;}
.y69{bottom:174.493333pt;}
.y2b{bottom:180.133333pt;}
.ybb{bottom:182.533333pt;}
.ya0{bottom:183.333333pt;}
.y7e{bottom:192.933333pt;}
.y55{bottom:193.733333pt;}
.ycb{bottom:196.133333pt;}
.y2a{bottom:198.533333pt;}
.y68{bottom:201.733333pt;}
.y9f{bottom:204.133333pt;}
.y29{bottom:216.933333pt;}
.y7d{bottom:220.133333pt;}
.y54{bottom:221.733333pt;}
.yca{bottom:224.960000pt;}
.y67{bottom:229.773333pt;}
.yba{bottom:232.960000pt;}
.y9e{bottom:233.760000pt;}
.y28{bottom:243.360000pt;}
.yc9{bottom:246.560000pt;}
.y7c{bottom:248.173333pt;}
.y53{bottom:248.960000pt;}
.y9d{bottom:254.560000pt;}
.y66{bottom:256.960000pt;}
.y27{bottom:261.773333pt;}
.yb9{bottom:262.560000pt;}
.y7b{bottom:275.400000pt;}
.y52{bottom:277.000000pt;}
.y9c{bottom:283.400000pt;}
.y65{bottom:285.000000pt;}
.y26{bottom:288.200000pt;}
.yc8{bottom:297.000000pt;}
.y7a{bottom:303.400000pt;}
.y51{bottom:304.200000pt;}
.y9b{bottom:305.000000pt;}
.y64{bottom:309.800000pt;}
.y91{bottom:312.200000pt;}
.yb8{bottom:313.000000pt;}
.y25{bottom:314.600000pt;}
.yc7{bottom:317.826667pt;}
.y79{bottom:330.640000pt;}
.y50{bottom:332.226667pt;}
.y24{bottom:333.026667pt;}
.y9a{bottom:333.840000pt;}
.y90{bottom:340.226667pt;}
.yc6{bottom:347.426667pt;}
.y23{bottom:351.440000pt;}
.y99{bottom:355.440000pt;}
.y63{bottom:357.026667pt;}
.y78{bottom:358.626667pt;}
.y4f{bottom:359.440000pt;}
.y8f{bottom:367.466667pt;}
.yc5{bottom:368.266667pt;}
.y22{bottom:369.866667pt;}
.y98{bottom:384.266667pt;}
.y77{bottom:385.866667pt;}
.y4e{bottom:387.466667pt;}
.y21{bottom:388.266667pt;}
.y8e{bottom:395.466667pt;}
.yc4{bottom:397.866667pt;}
.y97{bottom:405.866667pt;}
.y20{bottom:406.666667pt;}
.y76{bottom:413.893333pt;}
.y4d{bottom:414.706667pt;}
.yc3{bottom:418.693333pt;}
.y8d{bottom:422.693333pt;}
.y1f{bottom:425.106667pt;}
.yb7{bottom:426.706667pt;}
.y96{bottom:434.693333pt;}
.y75{bottom:441.093333pt;}
.y4c{bottom:442.693333pt;}
.y1e{bottom:443.493333pt;}
.yb6{bottom:447.506667pt;}
.y8c{bottom:450.693333pt;}
.y95{bottom:456.333333pt;}
.y1d{bottom:461.933333pt;}
.y74{bottom:469.133333pt;}
.y4b{bottom:469.933333pt;}
.yb5{bottom:477.133333pt;}
.y8b{bottom:477.933333pt;}
.y1c{bottom:480.333333pt;}
.y94{bottom:485.133333pt;}
.yc2{bottom:489.933333pt;}
.y73{bottom:496.333333pt;}
.y4a{bottom:497.933333pt;}
.y1b{bottom:498.733333pt;}
.y8a{bottom:505.960000pt;}
.y1a{bottom:517.173333pt;}
.yb4{bottom:519.560000pt;}
.y72{bottom:524.360000pt;}
.y49{bottom:525.173333pt;}
.y89{bottom:533.160000pt;}
.y19{bottom:535.560000pt;}
.yc1{bottom:540.360000pt;}
.yb3{bottom:548.400000pt;}
.y71{bottom:551.600000pt;}
.y48{bottom:553.200000pt;}
.y18{bottom:554.000000pt;}
.y93{bottom:556.400000pt;}
.y88{bottom:561.200000pt;}
.yb2{bottom:570.000000pt;}
.y17{bottom:572.400000pt;}
.y70{bottom:579.600000pt;}
.y47{bottom:580.400000pt;}
.y92{bottom:586.000000pt;}
.y87{bottom:588.400000pt;}
.yb1{bottom:590.800000pt;}
.y16{bottom:598.840000pt;}
.y6f{bottom:606.826667pt;}
.y46{bottom:608.426667pt;}
.y86{bottom:616.440000pt;}
.yb0{bottom:620.426667pt;}
.y15{bottom:625.226667pt;}
.y6e{bottom:634.840000pt;}
.y45{bottom:635.626667pt;}
.yaf{bottom:641.266667pt;}
.y85{bottom:643.666667pt;}
.y14{bottom:650.066667pt;}
.y6d{bottom:662.066667pt;}
.y44{bottom:663.666667pt;}
.y84{bottom:668.466667pt;}
.yae{bottom:670.066667pt;}
.y13{bottom:677.266667pt;}
.y62{bottom:690.093333pt;}
.y43{bottom:690.893333pt;}
.y83{bottom:691.706667pt;}
.y12{bottom:696.506667pt;}
.y82{bottom:715.706667pt;}
.y61{bottom:717.293333pt;}
.y42{bottom:718.893333pt;}
.yad{bottom:720.506667pt;}
.y11{bottom:722.893333pt;}
.yac{bottom:742.133333pt;}
.y10{bottom:744.533333pt;}
.y60{bottom:745.333333pt;}
.y41{bottom:746.133333pt;}
.yab{bottom:762.933333pt;}
.yf{bottom:771.733333pt;}
.y5f{bottom:772.533333pt;}
.y40{bottom:774.133333pt;}
.yaa{bottom:792.560000pt;}
.ye{bottom:799.773333pt;}
.y5e{bottom:800.560000pt;}
.y3f{bottom:801.373333pt;}
.ya9{bottom:813.373333pt;}
.yc0{bottom:821.373333pt;}
.yd{bottom:827.000000pt;}
.y5d{bottom:827.800000pt;}
.y3e{bottom:829.400000pt;}
.ya8{bottom:843.000000pt;}
.ycd{bottom:851.000000pt;}
.yc{bottom:855.000000pt;}
.y5c{bottom:855.800000pt;}
.y3d{bottom:856.600000pt;}
.ya7{bottom:863.800000pt;}
.ybf{bottom:871.840000pt;}
.y3c{bottom:875.026667pt;}
.yb{bottom:882.226667pt;}
.y5b{bottom:883.040000pt;}
.ya6{bottom:892.626667pt;}
.y3b{bottom:901.426667pt;}
.ya{bottom:910.226667pt;}
.y5a{bottom:911.026667pt;}
.ybe{bottom:914.226667pt;}
.y3a{bottom:919.866667pt;}
.ya5{bottom:922.266667pt;}
.y9{bottom:937.466667pt;}
.y39{bottom:938.266667pt;}
.ya4{bottom:943.066667pt;}
.y38{bottom:956.666667pt;}
.ybd{bottom:964.706667pt;}
.y8{bottom:965.506667pt;}
.y59{bottom:966.293333pt;}
.ya3{bottom:972.693333pt;}
.y37{bottom:975.106667pt;}
.y7{bottom:984.693333pt;}
.y36{bottom:993.506667pt;}
.y6{bottom:1001.506667pt;}
.y5{bottom:1009.533333pt;}
.y4{bottom:1022.333333pt;}
.y3{bottom:1035.933333pt;}
.y33{bottom:1036.733333pt;}
.y2{bottom:1051.933333pt;}
.y32{bottom:1053.533333pt;}
.y31{bottom:1062.360000pt;}
.y1{bottom:1068.773333pt;}
.h2{height:19.556250pt;}
.h6{height:20.518750pt;}
.hc{height:32.768750pt;}
.h5{height:36.318750pt;}
.h4{height:41.906250pt;}
.h10{height:43.031250pt;}
.he{height:43.968750pt;}
.hd{height:48.768750pt;}
.h7{height:49.831250pt;}
.ha{height:51.937500pt;}
.h3{height:55.875000pt;}
.h8{height:56.843750pt;}
.hf{height:57.290625pt;}
.h9{height:57.375000pt;}
.hb{height:59.693750pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xc{left:113.733322pt;}
.x7{left:117.733322pt;}
.x6{left:122.533322pt;}
.x9{left:127.333322pt;}
.x15{left:151.359988pt;}
.x11{left:160.959988pt;}
.x17{left:191.399988pt;}
.xb{left:266.666655pt;}
.x13{left:272.266655pt;}
.x2{left:288.293322pt;}
.x5{left:302.706655pt;}
.xa{left:321.133322pt;}
.x8{left:328.333322pt;}
.x14{left:363.559988pt;}
.x4{left:366.773322pt;}
.x3{left:372.399988pt;}
.xf{left:385.999988pt;}
.xe{left:388.399988pt;}
.x1{left:416.439988pt;}
.xd{left:438.066655pt;}
.x16{left:622.239988pt;}
.x12{left:643.066655pt;}
.x18{left:704.733322pt;}
.x10{left:711.933322pt;}
}




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