
    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_3f44f3dd7dcddfaf23348a5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_c89d3a616861b5e352a0d27e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_8c9b0fcd1b19f95f4b88e1aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_9190295dd211f859c25cc50f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_b44aeee19df81453f16d00c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060017px;}
.ls8{letter-spacing:0.834017px;}
.ls0{letter-spacing:2.964877px;}
.ls7{letter-spacing:2.986766px;}
.ls3{letter-spacing:2.987108px;}
.ls2{letter-spacing:2.987675px;}
.ls6{letter-spacing:2.988780px;}
.ls4{letter-spacing:35.863409px;}
.ls5{letter-spacing:35.869409px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.wse{word-spacing:-14.920027px;}
.ws2d{word-spacing:-11.955150px;}
.ws3d{word-spacing:-1.195512px;}
.ws1b{word-spacing:-0.836858px;}
.ws32{word-spacing:-0.239102px;}
.ws30{word-spacing:-0.179327px;}
.ws4{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.010652px;}
.ws39{word-spacing:-0.000369px;}
.ws2b{word-spacing:0.000000px;}
.ws48{word-spacing:0.119551px;}
.ws67{word-spacing:0.478205px;}
.ws2e{word-spacing:0.657532px;}
.ws31{word-spacing:0.717307px;}
.ws47{word-spacing:0.956410px;}
.ws52{word-spacing:1.554166px;}
.ws2f{word-spacing:1.613941px;}
.ws4e{word-spacing:1.972595px;}
.ws17{word-spacing:2.749678px;}
.ws50{word-spacing:3.526760px;}
.ws23{word-spacing:3.646312px;}
.ws6d{word-spacing:3.921289px;}
.ws6e{word-spacing:4.778197px;}
.ws18{word-spacing:4.782048px;}
.ws6f{word-spacing:4.782060px;}
.ws20{word-spacing:4.841824px;}
.ws51{word-spacing:4.901599px;}
.ws60{word-spacing:5.379804px;}
.ws4b{word-spacing:5.499355px;}
.ws40{word-spacing:5.559131px;}
.ws3a{word-spacing:5.928983px;}
.ws2c{word-spacing:5.948641px;}
.ws3{word-spacing:5.977560px;}
.ws15{word-spacing:6.037336px;}
.ws14{word-spacing:6.276438px;}
.ws21{word-spacing:6.395989px;}
.ws25{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws53{word-spacing:7.113296px;}
.ws3c{word-spacing:7.531726px;}
.ws4f{word-spacing:7.591501px;}
.ws43{word-spacing:8.189257px;}
.ws66{word-spacing:8.906564px;}
.ws10{word-spacing:9.324994px;}
.ws46{word-spacing:9.683647px;}
.ws68{word-spacing:9.743423px;}
.ws6c{word-spacing:10.185788px;}
.ws6b{word-spacing:10.329250px;}
.ws12{word-spacing:10.400954px;}
.ws11{word-spacing:10.460730px;}
.ws55{word-spacing:10.520506px;}
.ws27{word-spacing:10.759608px;}
.ws45{word-spacing:10.879159px;}
.ws19{word-spacing:10.938935px;}
.ws28{word-spacing:11.178037px;}
.ws49{word-spacing:11.357364px;}
.ws37{word-spacing:11.536691px;}
.ws3f{word-spacing:11.775793px;}
.ws5a{word-spacing:11.895344px;}
.ws70{word-spacing:11.907329px;}
.ws38{word-spacing:11.955120px;}
.ws1d{word-spacing:12.014896px;}
.ws5{word-spacing:12.319834px;}
.ws1a{word-spacing:12.373549px;}
.ws13{word-spacing:12.433325px;}
.ws3e{word-spacing:12.851754px;}
.ws29{word-spacing:12.911530px;}
.ws1f{word-spacing:13.270183px;}
.ws42{word-spacing:13.329959px;}
.wsa{word-spacing:13.342003px;}
.ws16{word-spacing:13.927715px;}
.ws35{word-spacing:13.987490px;}
.ws0{word-spacing:14.346180px;}
.ws3b{word-spacing:14.405920px;}
.ws44{word-spacing:14.585246px;}
.ws33{word-spacing:14.645022px;}
.ws4d{word-spacing:14.943900px;}
.ws22{word-spacing:15.003676px;}
.wsf{word-spacing:15.183002px;}
.ws58{word-spacing:15.302554px;}
.ws24{word-spacing:15.422105px;}
.ws62{word-spacing:15.900310px;}
.ws56{word-spacing:16.019861px;}
.ws36{word-spacing:16.079636px;}
.ws6{word-spacing:16.462310px;}
.ws41{word-spacing:16.498066px;}
.ws5d{word-spacing:16.557841px;}
.ws54{word-spacing:16.796944px;}
.ws1c{word-spacing:16.916495px;}
.ws5c{word-spacing:17.215373px;}
.ws4a{word-spacing:17.514251px;}
.ws34{word-spacing:17.633802px;}
.wsd{word-spacing:17.932680px;}
.ws26{word-spacing:18.351109px;}
.ws65{word-spacing:19.128192px;}
.ws64{word-spacing:19.725948px;}
.ws1e{word-spacing:19.785724px;}
.ws63{word-spacing:19.905275px;}
.ws4c{word-spacing:20.024826px;}
.wsc{word-spacing:20.120602px;}
.ws57{word-spacing:20.263928px;}
.ws5f{word-spacing:21.519216px;}
.ws5e{word-spacing:21.997421px;}
.ws7{word-spacing:22.057344px;}
.ws59{word-spacing:22.953830px;}
.ws71{word-spacing:24.914533px;}
.ws72{word-spacing:26.301330px;}
.wsb{word-spacing:26.415014px;}
.ws74{word-spacing:26.683895px;}
.ws73{word-spacing:29.553131px;}
.ws5b{word-spacing:30.903985px;}
.ws6a{word-spacing:31.944161px;}
.ws8{word-spacing:32.978419px;}
.ws61{word-spacing:34.669848px;}
.ws9{word-spacing:35.022758px;}
.ws69{word-spacing:36.008912px;}
._c{margin-left:-8.069706px;}
._5{margin-left:-6.694867px;}
._2{margin-left:-4.949453px;}
._4{margin-left:-3.825638px;}
._0{margin-left:-2.151927px;}
._1{margin-left:-1.075961px;}
._7{width:1.806994px;}
._3{width:2.988780px;}
._6{width:17.574026px;}
._a{width:27.305533px;}
._9{width:29.887800px;}
._d{width:32.517932px;}
._b{width:33.952541px;}
._8{width:35.865360px;}
._e{width:44.903543px;}
._f{width:68.387378px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.332500px;}
.y2f{bottom:131.265000px;}
.y52{bottom:149.197500px;}
.y80{bottom:149.199000px;}
.y2e{bottom:152.523000px;}
.y51{bottom:167.131500px;}
.y2d{bottom:176.118000px;}
.y50{bottom:185.064000px;}
.y4f{bottom:202.996500px;}
.y2c{bottom:205.491000px;}
.y4e{bottom:220.929000px;}
.y7f{bottom:221.092500px;}
.y2b{bottom:223.423500px;}
.y7e{bottom:239.026500px;}
.y2a{bottom:241.356000px;}
.y4d{bottom:248.034000px;}
.y7d{bottom:256.959000px;}
.y29{bottom:259.290000px;}
.y7c{bottom:274.891500px;}
.y28{bottom:277.222500px;}
.y4c{bottom:278.326500px;}
.y7b{bottom:292.824000px;}
.y27{bottom:295.155000px;}
.y7a{bottom:310.756500px;}
.y26{bottom:313.087500px;}
.y4b{bottom:317.188500px;}
.y79{bottom:328.690500px;}
.y25{bottom:331.020000px;}
.y4a{bottom:335.121000px;}
.y78{bottom:346.623000px;}
.y24{bottom:348.954000px;}
.y49{bottom:353.053500px;}
.y77{bottom:364.555500px;}
.y23{bottom:366.886500px;}
.y48{bottom:370.986000px;}
.y22{bottom:384.819000px;}
.y76{bottom:388.179000px;}
.y47{bottom:388.918500px;}
.y21{bottom:402.751500px;}
.y46{bottom:406.852500px;}
.y75{bottom:417.592500px;}
.y20{bottom:420.684000px;}
.y45{bottom:424.785000px;}
.y74{bottom:435.525000px;}
.y1f{bottom:438.616500px;}
.y44{bottom:442.717500px;}
.y73{bottom:453.457500px;}
.y1e{bottom:456.550500px;}
.y43{bottom:460.650000px;}
.y72{bottom:471.390000px;}
.y1d{bottom:474.483000px;}
.y42{bottom:478.582500px;}
.y71{bottom:489.324000px;}
.y1c{bottom:492.415500px;}
.y41{bottom:502.197000px;}
.y70{bottom:507.256500px;}
.y1b{bottom:510.348000px;}
.y40{bottom:520.129500px;}
.y6f{bottom:525.189000px;}
.y1a{bottom:528.280500px;}
.y3f{bottom:538.062000px;}
.y6e{bottom:543.121500px;}
.y19{bottom:546.213000px;}
.y6d{bottom:561.054000px;}
.y18{bottom:564.147000px;}
.y3e{bottom:568.356000px;}
.y17{bottom:582.079500px;}
.y6c{bottom:584.268000px;}
.y16{bottom:600.012000px;}
.y3d{bottom:607.218000px;}
.y6b{bottom:613.681500px;}
.y15{bottom:617.944500px;}
.y3c{bottom:625.150500px;}
.y6a{bottom:631.614000px;}
.y14{bottom:635.877000px;}
.y3b{bottom:643.083000px;}
.y69{bottom:649.548000px;}
.y13{bottom:653.809500px;}
.y3a{bottom:661.015500px;}
.y68{bottom:667.480500px;}
.y12{bottom:671.743500px;}
.y39{bottom:678.948000px;}
.y67{bottom:690.694500px;}
.y11{bottom:695.338500px;}
.y38{bottom:696.880500px;}
.y37{bottom:716.089500px;}
.y66{bottom:720.108000px;}
.y10{bottom:728.865000px;}
.y36{bottom:735.297000px;}
.y65{bottom:738.040500px;}
.yf{bottom:743.809500px;}
.y35{bottom:753.231000px;}
.y64{bottom:755.973000px;}
.ye{bottom:758.911500px;}
.y34{bottom:771.163500px;}
.yd{bottom:773.856000px;}
.y63{bottom:773.905500px;}
.yc{bottom:788.800500px;}
.y62{bottom:791.838000px;}
.y33{bottom:794.778000px;}
.yb{bottom:803.743500px;}
.y61{bottom:809.770500px;}
.y32{bottom:812.710500px;}
.ya{bottom:818.688000px;}
.y31{bottom:830.643000px;}
.y60{bottom:832.984500px;}
.y9{bottom:833.632500px;}
.y92{bottom:834.229500px;}
.y91{bottom:847.678500px;}
.y8{bottom:848.575500px;}
.y90{bottom:861.129000px;}
.y5f{bottom:862.398000px;}
.y8f{bottom:874.578000px;}
.y5e{bottom:880.332000px;}
.y8e{bottom:888.027000px;}
.y5d{bottom:898.264500px;}
.y8d{bottom:901.477500px;}
.y8c{bottom:914.926500px;}
.y5c{bottom:916.197000px;}
.y7{bottom:918.042000px;}
.y8b{bottom:928.377000px;}
.y5b{bottom:934.129500px;}
.y6{bottom:936.534000px;}
.y8a{bottom:941.826000px;}
.y5a{bottom:952.062000px;}
.y5{bottom:955.027500px;}
.y89{bottom:955.275000px;}
.y88{bottom:968.725500px;}
.y4{bottom:973.521000px;}
.y59{bottom:975.276000px;}
.y87{bottom:982.174500px;}
.y3{bottom:992.235000px;}
.y86{bottom:995.623500px;}
.y58{bottom:1004.689500px;}
.y85{bottom:1017.816000px;}
.y57{bottom:1022.622000px;}
.y2{bottom:1039.309500px;}
.y56{bottom:1040.554500px;}
.y84{bottom:1045.836000px;}
.y55{bottom:1058.488500px;}
.y83{bottom:1063.768500px;}
.y54{bottom:1076.421000px;}
.y1{bottom:1081.152000px;}
.y82{bottom:1081.701000px;}
.y81{bottom:1099.633500px;}
.y53{bottom:1099.635000px;}
.h8{height:32.661470px;}
.h7{height:32.900573px;}
.h6{height:37.228493px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x1{left:82.308000px;}
.x12{left:88.390500px;}
.x15{left:95.767500px;}
.x16{left:103.479000px;}
.x7{left:114.468000px;}
.x5{left:148.293000px;}
.x6{left:163.087500px;}
.x3{left:165.822000px;}
.x4{left:191.586000px;}
.x14{left:203.430000px;}
.x1d{left:209.944500px;}
.xc{left:357.829500px;}
.xa{left:391.656000px;}
.x2{left:396.235500px;}
.xb{left:406.450500px;}
.x8{left:409.546500px;}
.x9{left:434.947500px;}
.x19{left:467.967000px;}
.x18{left:482.910000px;}
.x1f{left:489.378000px;}
.x17{left:498.000000px;}
.x1b{left:504.325500px;}
.x1a{left:533.452500px;}
.x1c{left:576.004500px;}
.x11{left:601.192500px;}
.x1e{left:614.418000px;}
.xf{left:635.017500px;}
.xd{left:640.792500px;}
.x10{left:649.812000px;}
.xe{left:678.310500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053348pt;}
.ls8{letter-spacing:0.741348pt;}
.ls0{letter-spacing:2.635446pt;}
.ls7{letter-spacing:2.654903pt;}
.ls3{letter-spacing:2.655207pt;}
.ls2{letter-spacing:2.655711pt;}
.ls6{letter-spacing:2.656693pt;}
.ls4{letter-spacing:31.878586pt;}
.ls5{letter-spacing:31.883919pt;}
.ws2{word-spacing:-13.283467pt;}
.wse{word-spacing:-13.262246pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws3d{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-0.743874pt;}
.ws32{word-spacing:-0.212535pt;}
.ws30{word-spacing:-0.159402pt;}
.ws4{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.009469pt;}
.ws39{word-spacing:-0.000328pt;}
.ws2b{word-spacing:0.000000pt;}
.ws48{word-spacing:0.106268pt;}
.ws67{word-spacing:0.425071pt;}
.ws2e{word-spacing:0.584473pt;}
.ws31{word-spacing:0.637606pt;}
.ws47{word-spacing:0.850142pt;}
.ws52{word-spacing:1.381481pt;}
.ws2f{word-spacing:1.434614pt;}
.ws4e{word-spacing:1.753418pt;}
.ws17{word-spacing:2.444158pt;}
.ws50{word-spacing:3.134898pt;}
.ws23{word-spacing:3.241166pt;}
.ws6d{word-spacing:3.485590pt;}
.ws6e{word-spacing:4.247286pt;}
.ws18{word-spacing:4.250709pt;}
.ws6f{word-spacing:4.250720pt;}
.ws20{word-spacing:4.303843pt;}
.ws51{word-spacing:4.356977pt;}
.ws60{word-spacing:4.782048pt;}
.ws4b{word-spacing:4.888316pt;}
.ws40{word-spacing:4.941450pt;}
.ws3a{word-spacing:5.270207pt;}
.ws2c{word-spacing:5.287681pt;}
.ws3{word-spacing:5.313387pt;}
.ws15{word-spacing:5.366521pt;}
.ws14{word-spacing:5.579056pt;}
.ws21{word-spacing:5.685324pt;}
.ws25{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws53{word-spacing:6.322930pt;}
.ws3c{word-spacing:6.694867pt;}
.ws4f{word-spacing:6.748001pt;}
.ws43{word-spacing:7.279340pt;}
.ws66{word-spacing:7.916946pt;}
.ws10{word-spacing:8.288883pt;}
.ws46{word-spacing:8.607686pt;}
.ws68{word-spacing:8.660820pt;}
.ws6c{word-spacing:9.054034pt;}
.ws6b{word-spacing:9.181555pt;}
.ws12{word-spacing:9.245293pt;}
.ws11{word-spacing:9.298427pt;}
.ws55{word-spacing:9.351561pt;}
.ws27{word-spacing:9.564096pt;}
.ws45{word-spacing:9.670364pt;}
.ws19{word-spacing:9.723498pt;}
.ws28{word-spacing:9.936033pt;}
.ws49{word-spacing:10.095435pt;}
.ws37{word-spacing:10.254836pt;}
.ws3f{word-spacing:10.467372pt;}
.ws5a{word-spacing:10.573639pt;}
.ws70{word-spacing:10.584293pt;}
.ws38{word-spacing:10.626773pt;}
.ws1d{word-spacing:10.679907pt;}
.ws5{word-spacing:10.950963pt;}
.ws1a{word-spacing:10.998710pt;}
.ws13{word-spacing:11.051844pt;}
.ws3e{word-spacing:11.423781pt;}
.ws29{word-spacing:11.476915pt;}
.ws1f{word-spacing:11.795718pt;}
.ws42{word-spacing:11.848852pt;}
.wsa{word-spacing:11.859558pt;}
.ws16{word-spacing:12.380191pt;}
.ws35{word-spacing:12.433325pt;}
.ws0{word-spacing:12.752160pt;}
.ws3b{word-spacing:12.805262pt;}
.ws44{word-spacing:12.964663pt;}
.ws33{word-spacing:13.017797pt;}
.ws4d{word-spacing:13.283467pt;}
.ws22{word-spacing:13.336601pt;}
.wsf{word-spacing:13.496002pt;}
.ws58{word-spacing:13.602270pt;}
.ws24{word-spacing:13.708538pt;}
.ws62{word-spacing:14.133609pt;}
.ws56{word-spacing:14.239876pt;}
.ws36{word-spacing:14.293010pt;}
.ws6{word-spacing:14.633165pt;}
.ws41{word-spacing:14.664947pt;}
.ws5d{word-spacing:14.718081pt;}
.ws54{word-spacing:14.930617pt;}
.ws1c{word-spacing:15.036884pt;}
.ws5c{word-spacing:15.302554pt;}
.ws4a{word-spacing:15.568223pt;}
.ws34{word-spacing:15.674491pt;}
.wsd{word-spacing:15.940160pt;}
.ws26{word-spacing:16.312097pt;}
.ws65{word-spacing:17.002837pt;}
.ws64{word-spacing:17.534176pt;}
.ws1e{word-spacing:17.587310pt;}
.ws63{word-spacing:17.693578pt;}
.ws4c{word-spacing:17.799845pt;}
.wsc{word-spacing:17.884979pt;}
.ws57{word-spacing:18.012381pt;}
.ws5f{word-spacing:19.128192pt;}
.ws5e{word-spacing:19.553263pt;}
.ws7{word-spacing:19.606528pt;}
.ws59{word-spacing:20.403405pt;}
.ws71{word-spacing:22.146251pt;}
.ws72{word-spacing:23.378960pt;}
.wsb{word-spacing:23.480013pt;}
.ws74{word-spacing:23.719018pt;}
.ws73{word-spacing:26.269450pt;}
.ws5b{word-spacing:27.470209pt;}
.ws6a{word-spacing:28.394810pt;}
.ws8{word-spacing:29.314150pt;}
.ws61{word-spacing:30.817643pt;}
.ws9{word-spacing:31.131341pt;}
.ws69{word-spacing:32.007922pt;}
._c{margin-left:-7.173072pt;}
._5{margin-left:-5.950993pt;}
._2{margin-left:-4.399514pt;}
._4{margin-left:-3.400567pt;}
._0{margin-left:-1.912824pt;}
._1{margin-left:-0.956410pt;}
._7{width:1.606217pt;}
._3{width:2.656693pt;}
._6{width:15.621357pt;}
._a{width:24.271585pt;}
._9{width:26.566933pt;}
._d{width:28.904828pt;}
._b{width:30.180036pt;}
._8{width:31.880320pt;}
._e{width:39.914261pt;}
._f{width:60.788780pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.740000pt;}
.y2f{bottom:116.680000pt;}
.y52{bottom:132.620000pt;}
.y80{bottom:132.621333pt;}
.y2e{bottom:135.576000pt;}
.y51{bottom:148.561333pt;}
.y2d{bottom:156.549333pt;}
.y50{bottom:164.501333pt;}
.y4f{bottom:180.441333pt;}
.y2c{bottom:182.658667pt;}
.y4e{bottom:196.381333pt;}
.y7f{bottom:196.526667pt;}
.y2b{bottom:198.598667pt;}
.y7e{bottom:212.468000pt;}
.y2a{bottom:214.538667pt;}
.y4d{bottom:220.474667pt;}
.y7d{bottom:228.408000pt;}
.y29{bottom:230.480000pt;}
.y7c{bottom:244.348000pt;}
.y28{bottom:246.420000pt;}
.y4c{bottom:247.401333pt;}
.y7b{bottom:260.288000pt;}
.y27{bottom:262.360000pt;}
.y7a{bottom:276.228000pt;}
.y26{bottom:278.300000pt;}
.y4b{bottom:281.945333pt;}
.y79{bottom:292.169333pt;}
.y25{bottom:294.240000pt;}
.y4a{bottom:297.885333pt;}
.y78{bottom:308.109333pt;}
.y24{bottom:310.181333pt;}
.y49{bottom:313.825333pt;}
.y77{bottom:324.049333pt;}
.y23{bottom:326.121333pt;}
.y48{bottom:329.765333pt;}
.y22{bottom:342.061333pt;}
.y76{bottom:345.048000pt;}
.y47{bottom:345.705333pt;}
.y21{bottom:358.001333pt;}
.y46{bottom:361.646667pt;}
.y75{bottom:371.193333pt;}
.y20{bottom:373.941333pt;}
.y45{bottom:377.586667pt;}
.y74{bottom:387.133333pt;}
.y1f{bottom:389.881333pt;}
.y44{bottom:393.526667pt;}
.y73{bottom:403.073333pt;}
.y1e{bottom:405.822667pt;}
.y43{bottom:409.466667pt;}
.y72{bottom:419.013333pt;}
.y1d{bottom:421.762667pt;}
.y42{bottom:425.406667pt;}
.y71{bottom:434.954667pt;}
.y1c{bottom:437.702667pt;}
.y41{bottom:446.397333pt;}
.y70{bottom:450.894667pt;}
.y1b{bottom:453.642667pt;}
.y40{bottom:462.337333pt;}
.y6f{bottom:466.834667pt;}
.y1a{bottom:469.582667pt;}
.y3f{bottom:478.277333pt;}
.y6e{bottom:482.774667pt;}
.y19{bottom:485.522667pt;}
.y6d{bottom:498.714667pt;}
.y18{bottom:501.464000pt;}
.y3e{bottom:505.205333pt;}
.y17{bottom:517.404000pt;}
.y6c{bottom:519.349333pt;}
.y16{bottom:533.344000pt;}
.y3d{bottom:539.749333pt;}
.y6b{bottom:545.494667pt;}
.y15{bottom:549.284000pt;}
.y3c{bottom:555.689333pt;}
.y6a{bottom:561.434667pt;}
.y14{bottom:565.224000pt;}
.y3b{bottom:571.629333pt;}
.y69{bottom:577.376000pt;}
.y13{bottom:581.164000pt;}
.y3a{bottom:587.569333pt;}
.y68{bottom:593.316000pt;}
.y12{bottom:597.105333pt;}
.y39{bottom:603.509333pt;}
.y67{bottom:613.950667pt;}
.y11{bottom:618.078667pt;}
.y38{bottom:619.449333pt;}
.y37{bottom:636.524000pt;}
.y66{bottom:640.096000pt;}
.y10{bottom:647.880000pt;}
.y36{bottom:653.597333pt;}
.y65{bottom:656.036000pt;}
.yf{bottom:661.164000pt;}
.y35{bottom:669.538667pt;}
.y64{bottom:671.976000pt;}
.ye{bottom:674.588000pt;}
.y34{bottom:685.478667pt;}
.yd{bottom:687.872000pt;}
.y63{bottom:687.916000pt;}
.yc{bottom:701.156000pt;}
.y62{bottom:703.856000pt;}
.y33{bottom:706.469333pt;}
.yb{bottom:714.438667pt;}
.y61{bottom:719.796000pt;}
.y32{bottom:722.409333pt;}
.ya{bottom:727.722667pt;}
.y31{bottom:738.349333pt;}
.y60{bottom:740.430667pt;}
.y9{bottom:741.006667pt;}
.y92{bottom:741.537333pt;}
.y91{bottom:753.492000pt;}
.y8{bottom:754.289333pt;}
.y90{bottom:765.448000pt;}
.y5f{bottom:766.576000pt;}
.y8f{bottom:777.402667pt;}
.y5e{bottom:782.517333pt;}
.y8e{bottom:789.357333pt;}
.y5d{bottom:798.457333pt;}
.y8d{bottom:801.313333pt;}
.y8c{bottom:813.268000pt;}
.y5c{bottom:814.397333pt;}
.y7{bottom:816.037333pt;}
.y8b{bottom:825.224000pt;}
.y5b{bottom:830.337333pt;}
.y6{bottom:832.474667pt;}
.y8a{bottom:837.178667pt;}
.y5a{bottom:846.277333pt;}
.y5{bottom:848.913333pt;}
.y89{bottom:849.133333pt;}
.y88{bottom:861.089333pt;}
.y4{bottom:865.352000pt;}
.y59{bottom:866.912000pt;}
.y87{bottom:873.044000pt;}
.y3{bottom:881.986667pt;}
.y86{bottom:884.998667pt;}
.y58{bottom:893.057333pt;}
.y85{bottom:904.725333pt;}
.y57{bottom:908.997333pt;}
.y2{bottom:923.830667pt;}
.y56{bottom:924.937333pt;}
.y84{bottom:929.632000pt;}
.y55{bottom:940.878667pt;}
.y83{bottom:945.572000pt;}
.y54{bottom:956.818667pt;}
.y1{bottom:961.024000pt;}
.y82{bottom:961.512000pt;}
.y81{bottom:977.452000pt;}
.y53{bottom:977.453333pt;}
.h8{height:29.032418pt;}
.h7{height:29.244954pt;}
.h6{height:33.091994pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x1{left:73.162667pt;}
.x12{left:78.569333pt;}
.x15{left:85.126667pt;}
.x16{left:91.981333pt;}
.x7{left:101.749333pt;}
.x5{left:131.816000pt;}
.x6{left:144.966667pt;}
.x3{left:147.397333pt;}
.x4{left:170.298667pt;}
.x14{left:180.826667pt;}
.x1d{left:186.617333pt;}
.xc{left:318.070667pt;}
.xa{left:348.138667pt;}
.x2{left:352.209333pt;}
.xb{left:361.289333pt;}
.x8{left:364.041333pt;}
.x9{left:386.620000pt;}
.x19{left:415.970667pt;}
.x18{left:429.253333pt;}
.x1f{left:435.002667pt;}
.x17{left:442.666667pt;}
.x1b{left:448.289333pt;}
.x1a{left:474.180000pt;}
.x1c{left:512.004000pt;}
.x11{left:534.393333pt;}
.x1e{left:546.149333pt;}
.xf{left:564.460000pt;}
.xd{left:569.593333pt;}
.x10{left:577.610667pt;}
.xe{left:602.942667pt;}
}




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