
    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_8b6953e9d97e297ccca62d03.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_baf113eee355c04741b847cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_778fe83cb6292be9e96ab5b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_1634672cb5ea227fe8960467.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_1dd5957b0a5311831011a8e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38cfbf4233c6ad351cb7f14a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_6101b3cfa533f6eb823d0faa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_01ce8cbd34e42b9a86a59126.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;}
.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;}
.ls22{letter-spacing:-0.966000px;}
.ls4{letter-spacing:-0.852000px;}
.ls12{letter-spacing:-0.768000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.714000px;}
.ls21{letter-spacing:-0.420600px;}
.ls8{letter-spacing:-0.132600px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.089400px;}
.ls11{letter-spacing:0.094800px;}
.ls7{letter-spacing:0.132480px;}
.ls19{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.244800px;}
.ls3{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.391680px;}
.ls9{letter-spacing:0.409680px;}
.ls10{letter-spacing:0.596160px;}
.ls15{letter-spacing:0.869760px;}
.lsf{letter-spacing:0.875520px;}
.ls1f{letter-spacing:1.589760px;}
.ls18{letter-spacing:3.029760px;}
.ls1e{letter-spacing:4.469760px;}
.ls17{letter-spacing:5.909760px;}
.lsb{letter-spacing:10.229760px;}
.ls16{letter-spacing:12.389760px;}
.ls14{letter-spacing:15.989760px;}
.ls0{letter-spacing:39.161280px;}
.lse{letter-spacing:53.238720px;}
.lsa{letter-spacing:54.018720px;}
.lsd{letter-spacing:59.321280px;}
.ls5{letter-spacing:82.368000px;}
.ls6{letter-spacing:98.184000px;}
.ls1b{letter-spacing:849.185760px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws4{word-spacing:-21.641760px;}
.ws9{word-spacing:-17.668560px;}
.ws8{word-spacing:-17.573760px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.215040px;}
.ws6{word-spacing:-15.059640px;}
.ws1{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.837640px;}
.wsb{word-spacing:-14.549640px;}
.ws5{word-spacing:-14.256240px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-12.591840px;}
._9{margin-left:-8.740320px;}
._6{margin-left:-7.639200px;}
._8{margin-left:-6.554400px;}
._14{margin-left:-4.369440px;}
._7{margin-left:-3.274560px;}
._0{margin-left:-1.245120px;}
._1{width:1.370880px;}
._4{width:2.967360px;}
._19{width:4.204800px;}
._17{width:5.316480px;}
._e{width:6.624000px;}
._d{width:8.663040px;}
._b{width:9.803520px;}
._c{width:11.740320px;}
._15{width:13.561920px;}
._16{width:16.128000px;}
._18{width:17.326080px;}
._1b{width:19.439040px;}
._1a{width:20.741760px;}
._11{width:22.389120px;}
._12{width:23.581440px;}
._13{width:24.799680px;}
._1d{width:29.013120px;}
._3{width:30.867840px;}
._2{width:32.440320px;}
._1c{width:34.378560px;}
._f{width:118.437120px;}
._10{width:142.283520px;}
._5{width:849.185760px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y32{bottom:4.500000px;}
.y7a{bottom:6.840000px;}
.y46{bottom:6.885000px;}
.y9c{bottom:7.020000px;}
.y50{bottom:24.480000px;}
.y31{bottom:24.660000px;}
.y37{bottom:44.820000px;}
.y3{bottom:58.356000px;}
.y36{bottom:65.025000px;}
.y2{bottom:78.516000px;}
.y72{bottom:114.876000px;}
.y4d{bottom:118.656000px;}
.y71{bottom:136.656000px;}
.y4c{bottom:152.310000px;}
.y70{bottom:158.430000px;}
.ybc{bottom:167.430000px;}
.y97{bottom:172.650000px;}
.y4b{bottom:186.150000px;}
.y6f{bottom:192.990000px;}
.y96{bottom:197.310000px;}
.y4a{bottom:202.530000px;}
.ybb{bottom:203.970000px;}
.y6e{bottom:214.770000px;}
.y95{bottom:218.910000px;}
.y49{bottom:223.410000px;}
.y6d{bottom:236.550000px;}
.yba{bottom:237.810000px;}
.y94{bottom:240.690000px;}
.y48{bottom:244.290000px;}
.yb9{bottom:259.590000px;}
.y93{bottom:262.470000px;}
.y47{bottom:265.170000px;}
.y6c{bottom:270.210000px;}
.yb8{bottom:281.190000px;}
.y92{bottom:284.250000px;}
.y45{bottom:286.050000px;}
.y6b{bottom:292.035000px;}
.yb7{bottom:303.015000px;}
.y91{bottom:305.895000px;}
.y6a{bottom:314.715000px;}
.ycd{bottom:316.515000px;}
.yb6{bottom:324.795000px;}
.y44{bottom:327.495000px;}
.y90{bottom:327.675000px;}
.y69{bottom:336.315000px;}
.ycc{bottom:338.295000px;}
.yb5{bottom:346.575000px;}
.y8f{bottom:349.455000px;}
.y43{bottom:350.175000px;}
.y68{bottom:358.095000px;}
.yb4{bottom:368.175000px;}
.y8e{bottom:371.235000px;}
.ycb{bottom:378.075000px;}
.y1c{bottom:379.515000px;}
.y67{bottom:379.875000px;}
.y42{bottom:380.595000px;}
.yb3{bottom:389.955000px;}
.y8d{bottom:392.835000px;}
.yca{bottom:399.855000px;}
.y1b{bottom:401.295000px;}
.y66{bottom:401.475000px;}
.yb2{bottom:411.735000px;}
.yc9{bottom:421.455000px;}
.y1a{bottom:422.895000px;}
.y65{bottom:424.155000px;}
.y8c{bottom:426.675000px;}
.y41{bottom:427.395000px;}
.yb1{bottom:433.515000px;}
.yc8{bottom:443.235000px;}
.y19{bottom:444.675000px;}
.y64{bottom:445.935000px;}
.y40{bottom:449.175000px;}
.y8b{bottom:460.335000px;}
.y18{bottom:466.455000px;}
.yb0{bottom:467.175000px;}
.y63{bottom:467.715000px;}
.y3f{bottom:471.855000px;}
.y8a{bottom:482.115000px;}
.yc7{bottom:483.015000px;}
.y17{bottom:488.235000px;}
.y62{bottom:490.215000px;}
.y3e{bottom:494.355000px;}
.yaf{bottom:500.835000px;}
.y89{bottom:503.895000px;}
.yc6{bottom:504.795000px;}
.y16{bottom:509.835000px;}
.y61{bottom:511.995000px;}
.yae{bottom:522.615000px;}
.y88{bottom:525.495000px;}
.yc5{bottom:526.395000px;}
.y3d{bottom:529.095000px;}
.y15{bottom:543.675000px;}
.yad{bottom:544.395000px;}
.y60{bottom:546.555000px;}
.y87{bottom:547.305000px;}
.yc4{bottom:548.205000px;}
.y3c{bottom:562.785000px;}
.yac{bottom:566.205000px;}
.y5f{bottom:568.365000px;}
.y86{bottom:569.085000px;}
.y14{bottom:577.365000px;}
.y3b{bottom:579.165000px;}
.yc3{bottom:581.865000px;}
.yab{bottom:587.985000px;}
.y13{bottom:599.145000px;}
.y5e{bottom:602.205000px;}
.y85{bottom:602.745000px;}
.yc2{bottom:615.705000px;}
.y12{bottom:620.925000px;}
.yaa{bottom:621.645000px;}
.y5d{bottom:635.865000px;}
.y84{bottom:636.585000px;}
.yc1{bottom:637.485000px;}
.y3a{bottom:640.365000px;}
.y11{bottom:642.525000px;}
.y83{bottom:653.325000px;}
.ya9{bottom:655.305000px;}
.y5c{bottom:657.645000px;}
.yc0{bottom:659.085000px;}
.ya8{bottom:672.225000px;}
.y10{bottom:676.365000px;}
.y82{bottom:676.545000px;}
.y5b{bottom:679.425000px;}
.ybf{bottom:680.865000px;}
.y39{bottom:681.405000px;}
.ya7{bottom:695.445000px;}
.y81{bottom:699.765000px;}
.y29{bottom:707.505000px;}
.yf{bottom:710.025000px;}
.y5a{bottom:713.085000px;}
.ybe{bottom:714.705000px;}
.ya6{bottom:718.665000px;}
.y38{bottom:722.445000px;}
.y59{bottom:734.865000px;}
.y28{bottom:741.165000px;}
.y80{bottom:741.525000px;}
.ya5{bottom:741.885000px;}
.y35{bottom:743.325000px;}
.ye{bottom:743.865000px;}
.ybd{bottom:748.365000px;}
.ya4{bottom:765.105000px;}
.y58{bottom:768.525000px;}
.y27{bottom:774.825000px;}
.y7f{bottom:775.185000px;}
.yd{bottom:777.525000px;}
.ya3{bottom:788.325000px;}
.y7e{bottom:792.105000px;}
.y57{bottom:802.365000px;}
.y26{bottom:808.710000px;}
.yc{bottom:811.410000px;}
.ya2{bottom:811.770000px;}
.y7d{bottom:815.370000px;}
.y56{bottom:824.010000px;}
.y34{bottom:824.730000px;}
.y25{bottom:837.870000px;}
.y7c{bottom:838.590000px;}
.yb{bottom:845.070000px;}
.y55{bottom:845.790000px;}
.ya1{bottom:853.350000px;}
.y7b{bottom:861.810000px;}
.y33{bottom:865.770000px;}
.y24{bottom:867.210000px;}
.ya{bottom:878.730000px;}
.y54{bottom:879.450000px;}
.y79{bottom:885.030000px;}
.y30{bottom:886.650000px;}
.ya0{bottom:887.190000px;}
.y23{bottom:896.370000px;}
.y9f{bottom:903.930000px;}
.y9{bottom:912.570000px;}
.y53{bottom:913.290000px;}
.y22{bottom:925.710000px;}
.y78{bottom:926.790000px;}
.y9e{bottom:927.150000px;}
.y2f{bottom:945.690000px;}
.y8{bottom:946.230000px;}
.y52{bottom:946.950000px;}
.y77{bottom:949.470000px;}
.y9d{bottom:950.370000px;}
.y21{bottom:954.870000px;}
.y51{bottom:963.330000px;}
.y2e{bottom:967.470000px;}
.y7{bottom:968.010000px;}
.y9b{bottom:973.590000px;}
.y20{bottom:984.030000px;}
.y4f{bottom:984.390000px;}
.y76{bottom:986.190000px;}
.y2d{bottom:989.250000px;}
.y6{bottom:989.790000px;}
.y9a{bottom:996.990000px;}
.y2c{bottom:1011.030000px;}
.y1f{bottom:1013.370000px;}
.y75{bottom:1020.030000px;}
.y5{bottom:1023.450000px;}
.y4e{bottom:1025.430000px;}
.y2b{bottom:1032.630000px;}
.y99{bottom:1038.570000px;}
.y74{bottom:1041.630000px;}
.y1e{bottom:1042.530000px;}
.y4{bottom:1052.790000px;}
.y2a{bottom:1057.110000px;}
.y98{bottom:1061.250000px;}
.y73{bottom:1063.410000px;}
.y1d{bottom:1064.310000px;}
.y1{bottom:1086.120000px;}
.hc{height:19.980000px;}
.h7{height:20.160000px;}
.he{height:22.500000px;}
.hb{height:22.536000px;}
.hd{height:40.140000px;}
.h6{height:40.320000px;}
.h9{height:60.480000px;}
.h1{height:65.884219px;}
.h2{height:67.824844px;}
.h3{height:68.084282px;}
.h4{height:71.613281px;}
.hf{height:74.039062px;}
.ha{height:79.925027px;}
.h8{height:80.676000px;}
.h5{height:98.426190px;}
.h0{height:1188.000000px;}
.w4{width:73.800000px;}
.w5{width:126.756000px;}
.wb{width:169.050000px;}
.w8{width:169.410000px;}
.wf{width:214.230000px;}
.wc{width:232.050000px;}
.wd{width:232.230000px;}
.w9{width:232.950000px;}
.w3{width:233.130000px;}
.we{width:250.050000px;}
.w2{width:264.810000px;}
.wa{width:530.175000px;}
.w7{width:530.535000px;}
.w6{width:700.665000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.xc{left:10.260000px;}
.xb{left:17.640000px;}
.xf{left:28.440000px;}
.xe{left:32.580000px;}
.x12{left:81.045000px;}
.x13{left:82.125000px;}
.x14{left:84.645000px;}
.x1{left:108.035986px;}
.x17{left:109.116000px;}
.x6{left:124.595986px;}
.x5{left:135.035986px;}
.x7{left:140.975986px;}
.x10{left:162.029986px;}
.x4{left:168.689986px;}
.x3{left:306.974986px;}
.x15{left:342.615000px;}
.x19{left:359.895000px;}
.x9{left:374.295000px;}
.x18{left:574.845000px;}
.x16{left:576.285000px;}
.xa{left:608.145000px;}
.x11{left:640.005000px;}
.xd{left:682.665000px;}
.x2{left:801.869986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.858667pt;}
.ls4{letter-spacing:-0.757333pt;}
.ls12{letter-spacing:-0.682667pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.634667pt;}
.ls21{letter-spacing:-0.373867pt;}
.ls8{letter-spacing:-0.117867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.079467pt;}
.ls11{letter-spacing:0.084267pt;}
.ls7{letter-spacing:0.117760pt;}
.ls19{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.217600pt;}
.ls3{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.348160pt;}
.ls9{letter-spacing:0.364160pt;}
.ls10{letter-spacing:0.529920pt;}
.ls15{letter-spacing:0.773120pt;}
.lsf{letter-spacing:0.778240pt;}
.ls1f{letter-spacing:1.413120pt;}
.ls18{letter-spacing:2.693120pt;}
.ls1e{letter-spacing:3.973120pt;}
.ls17{letter-spacing:5.253120pt;}
.lsb{letter-spacing:9.093120pt;}
.ls16{letter-spacing:11.013120pt;}
.ls14{letter-spacing:14.213120pt;}
.ls0{letter-spacing:34.810027pt;}
.lse{letter-spacing:47.323307pt;}
.lsa{letter-spacing:48.016640pt;}
.lsd{letter-spacing:52.730027pt;}
.ls5{letter-spacing:73.216000pt;}
.ls6{letter-spacing:87.274667pt;}
.ls1b{letter-spacing:754.831787pt;}
.ws7{word-spacing:-58.880000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws9{word-spacing:-15.705387pt;}
.ws8{word-spacing:-15.621120pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.524480pt;}
.ws6{word-spacing:-13.386347pt;}
.ws1{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.189013pt;}
.wsb{word-spacing:-12.933013pt;}
.ws5{word-spacing:-12.672213pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-11.192747pt;}
._9{margin-left:-7.769173pt;}
._6{margin-left:-6.790400pt;}
._8{margin-left:-5.826133pt;}
._14{margin-left:-3.883947pt;}
._7{margin-left:-2.910720pt;}
._0{margin-left:-1.106773pt;}
._1{width:1.218560pt;}
._4{width:2.637653pt;}
._19{width:3.737600pt;}
._17{width:4.725760pt;}
._e{width:5.888000pt;}
._d{width:7.700480pt;}
._b{width:8.714240pt;}
._c{width:10.435840pt;}
._15{width:12.055040pt;}
._16{width:14.336000pt;}
._18{width:15.400960pt;}
._1b{width:17.279147pt;}
._1a{width:18.437120pt;}
._11{width:19.901440pt;}
._12{width:20.961280pt;}
._13{width:22.044160pt;}
._1d{width:25.789440pt;}
._3{width:27.438080pt;}
._2{width:28.835840pt;}
._1c{width:30.558720pt;}
._f{width:105.277440pt;}
._10{width:126.474240pt;}
._5{width:754.831787pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:4.000000pt;}
.y7a{bottom:6.080000pt;}
.y46{bottom:6.120000pt;}
.y9c{bottom:6.240000pt;}
.y50{bottom:21.760000pt;}
.y31{bottom:21.920000pt;}
.y37{bottom:39.840000pt;}
.y3{bottom:51.872000pt;}
.y36{bottom:57.800000pt;}
.y2{bottom:69.792000pt;}
.y72{bottom:102.112000pt;}
.y4d{bottom:105.472000pt;}
.y71{bottom:121.472000pt;}
.y4c{bottom:135.386667pt;}
.y70{bottom:140.826667pt;}
.ybc{bottom:148.826667pt;}
.y97{bottom:153.466667pt;}
.y4b{bottom:165.466667pt;}
.y6f{bottom:171.546667pt;}
.y96{bottom:175.386667pt;}
.y4a{bottom:180.026667pt;}
.ybb{bottom:181.306667pt;}
.y6e{bottom:190.906667pt;}
.y95{bottom:194.586667pt;}
.y49{bottom:198.586667pt;}
.y6d{bottom:210.266667pt;}
.yba{bottom:211.386667pt;}
.y94{bottom:213.946667pt;}
.y48{bottom:217.146667pt;}
.yb9{bottom:230.746667pt;}
.y93{bottom:233.306667pt;}
.y47{bottom:235.706667pt;}
.y6c{bottom:240.186667pt;}
.yb8{bottom:249.946667pt;}
.y92{bottom:252.666667pt;}
.y45{bottom:254.266667pt;}
.y6b{bottom:259.586667pt;}
.yb7{bottom:269.346667pt;}
.y91{bottom:271.906667pt;}
.y6a{bottom:279.746667pt;}
.ycd{bottom:281.346667pt;}
.yb6{bottom:288.706667pt;}
.y44{bottom:291.106667pt;}
.y90{bottom:291.266667pt;}
.y69{bottom:298.946667pt;}
.ycc{bottom:300.706667pt;}
.yb5{bottom:308.066667pt;}
.y8f{bottom:310.626667pt;}
.y43{bottom:311.266667pt;}
.y68{bottom:318.306667pt;}
.yb4{bottom:327.266667pt;}
.y8e{bottom:329.986667pt;}
.ycb{bottom:336.066667pt;}
.y1c{bottom:337.346667pt;}
.y67{bottom:337.666667pt;}
.y42{bottom:338.306667pt;}
.yb3{bottom:346.626667pt;}
.y8d{bottom:349.186667pt;}
.yca{bottom:355.426667pt;}
.y1b{bottom:356.706667pt;}
.y66{bottom:356.866667pt;}
.yb2{bottom:365.986667pt;}
.yc9{bottom:374.626667pt;}
.y1a{bottom:375.906667pt;}
.y65{bottom:377.026667pt;}
.y8c{bottom:379.266667pt;}
.y41{bottom:379.906667pt;}
.yb1{bottom:385.346667pt;}
.yc8{bottom:393.986667pt;}
.y19{bottom:395.266667pt;}
.y64{bottom:396.386667pt;}
.y40{bottom:399.266667pt;}
.y8b{bottom:409.186667pt;}
.y18{bottom:414.626667pt;}
.yb0{bottom:415.266667pt;}
.y63{bottom:415.746667pt;}
.y3f{bottom:419.426667pt;}
.y8a{bottom:428.546667pt;}
.yc7{bottom:429.346667pt;}
.y17{bottom:433.986667pt;}
.y62{bottom:435.746667pt;}
.y3e{bottom:439.426667pt;}
.yaf{bottom:445.186667pt;}
.y89{bottom:447.906667pt;}
.yc6{bottom:448.706667pt;}
.y16{bottom:453.186667pt;}
.y61{bottom:455.106667pt;}
.yae{bottom:464.546667pt;}
.y88{bottom:467.106667pt;}
.yc5{bottom:467.906667pt;}
.y3d{bottom:470.306667pt;}
.y15{bottom:483.266667pt;}
.yad{bottom:483.906667pt;}
.y60{bottom:485.826667pt;}
.y87{bottom:486.493333pt;}
.yc4{bottom:487.293333pt;}
.y3c{bottom:500.253333pt;}
.yac{bottom:503.293333pt;}
.y5f{bottom:505.213333pt;}
.y86{bottom:505.853333pt;}
.y14{bottom:513.213333pt;}
.y3b{bottom:514.813333pt;}
.yc3{bottom:517.213333pt;}
.yab{bottom:522.653333pt;}
.y13{bottom:532.573333pt;}
.y5e{bottom:535.293333pt;}
.y85{bottom:535.773333pt;}
.yc2{bottom:547.293333pt;}
.y12{bottom:551.933333pt;}
.yaa{bottom:552.573333pt;}
.y5d{bottom:565.213333pt;}
.y84{bottom:565.853333pt;}
.yc1{bottom:566.653333pt;}
.y3a{bottom:569.213333pt;}
.y11{bottom:571.133333pt;}
.y83{bottom:580.733333pt;}
.ya9{bottom:582.493333pt;}
.y5c{bottom:584.573333pt;}
.yc0{bottom:585.853333pt;}
.ya8{bottom:597.533333pt;}
.y10{bottom:601.213333pt;}
.y82{bottom:601.373333pt;}
.y5b{bottom:603.933333pt;}
.ybf{bottom:605.213333pt;}
.y39{bottom:605.693333pt;}
.ya7{bottom:618.173333pt;}
.y81{bottom:622.013333pt;}
.y29{bottom:628.893333pt;}
.yf{bottom:631.133333pt;}
.y5a{bottom:633.853333pt;}
.ybe{bottom:635.293333pt;}
.ya6{bottom:638.813333pt;}
.y38{bottom:642.173333pt;}
.y59{bottom:653.213333pt;}
.y28{bottom:658.813333pt;}
.y80{bottom:659.133333pt;}
.ya5{bottom:659.453333pt;}
.y35{bottom:660.733333pt;}
.ye{bottom:661.213333pt;}
.ybd{bottom:665.213333pt;}
.ya4{bottom:680.093333pt;}
.y58{bottom:683.133333pt;}
.y27{bottom:688.733333pt;}
.y7f{bottom:689.053333pt;}
.yd{bottom:691.133333pt;}
.ya3{bottom:700.733333pt;}
.y7e{bottom:704.093333pt;}
.y57{bottom:713.213333pt;}
.y26{bottom:718.853333pt;}
.yc{bottom:721.253333pt;}
.ya2{bottom:721.573333pt;}
.y7d{bottom:724.773333pt;}
.y56{bottom:732.453333pt;}
.y34{bottom:733.093333pt;}
.y25{bottom:744.773333pt;}
.y7c{bottom:745.413333pt;}
.yb{bottom:751.173333pt;}
.y55{bottom:751.813333pt;}
.ya1{bottom:758.533333pt;}
.y7b{bottom:766.053333pt;}
.y33{bottom:769.573333pt;}
.y24{bottom:770.853333pt;}
.ya{bottom:781.093333pt;}
.y54{bottom:781.733333pt;}
.y79{bottom:786.693333pt;}
.y30{bottom:788.133333pt;}
.ya0{bottom:788.613333pt;}
.y23{bottom:796.773333pt;}
.y9f{bottom:803.493333pt;}
.y9{bottom:811.173333pt;}
.y53{bottom:811.813333pt;}
.y22{bottom:822.853333pt;}
.y78{bottom:823.813333pt;}
.y9e{bottom:824.133333pt;}
.y2f{bottom:840.613333pt;}
.y8{bottom:841.093333pt;}
.y52{bottom:841.733333pt;}
.y77{bottom:843.973333pt;}
.y9d{bottom:844.773333pt;}
.y21{bottom:848.773333pt;}
.y51{bottom:856.293333pt;}
.y2e{bottom:859.973333pt;}
.y7{bottom:860.453333pt;}
.y9b{bottom:865.413333pt;}
.y20{bottom:874.693333pt;}
.y4f{bottom:875.013333pt;}
.y76{bottom:876.613333pt;}
.y2d{bottom:879.333333pt;}
.y6{bottom:879.813333pt;}
.y9a{bottom:886.213333pt;}
.y2c{bottom:898.693333pt;}
.y1f{bottom:900.773333pt;}
.y75{bottom:906.693333pt;}
.y5{bottom:909.733333pt;}
.y4e{bottom:911.493333pt;}
.y2b{bottom:917.893333pt;}
.y99{bottom:923.173333pt;}
.y74{bottom:925.893333pt;}
.y1e{bottom:926.693333pt;}
.y4{bottom:935.813333pt;}
.y2a{bottom:939.653333pt;}
.y98{bottom:943.333333pt;}
.y73{bottom:945.253333pt;}
.y1d{bottom:946.053333pt;}
.y1{bottom:965.440000pt;}
.hc{height:17.760000pt;}
.h7{height:17.920000pt;}
.he{height:20.000000pt;}
.hb{height:20.032000pt;}
.hd{height:35.680000pt;}
.h6{height:35.840000pt;}
.h9{height:53.760000pt;}
.h1{height:58.563750pt;}
.h2{height:60.288750pt;}
.h3{height:60.519362pt;}
.h4{height:63.656250pt;}
.hf{height:65.812500pt;}
.ha{height:71.044468pt;}
.h8{height:71.712000pt;}
.h5{height:87.489947pt;}
.h0{height:1056.000000pt;}
.w4{width:65.600000pt;}
.w5{width:112.672000pt;}
.wb{width:150.266667pt;}
.w8{width:150.586667pt;}
.wf{width:190.426667pt;}
.wc{width:206.266667pt;}
.wd{width:206.426667pt;}
.w9{width:207.066667pt;}
.w3{width:207.226667pt;}
.we{width:222.266667pt;}
.w2{width:235.386667pt;}
.wa{width:471.266667pt;}
.w7{width:471.586667pt;}
.w6{width:622.813333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.xc{left:9.120000pt;}
.xb{left:15.680000pt;}
.xf{left:25.280000pt;}
.xe{left:28.960000pt;}
.x12{left:72.040000pt;}
.x13{left:73.000000pt;}
.x14{left:75.240000pt;}
.x1{left:96.031988pt;}
.x17{left:96.992000pt;}
.x6{left:110.751988pt;}
.x5{left:120.031988pt;}
.x7{left:125.311988pt;}
.x10{left:144.026655pt;}
.x4{left:149.946655pt;}
.x3{left:272.866655pt;}
.x15{left:304.546667pt;}
.x19{left:319.906667pt;}
.x9{left:332.706667pt;}
.x18{left:510.973333pt;}
.x16{left:512.253333pt;}
.xa{left:540.573333pt;}
.x11{left:568.893333pt;}
.xd{left:606.813333pt;}
.x2{left:712.773321pt;}
}




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