
    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_7809c9fcca0a1f297fa9b62a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_c4ba22479bbdd20230a5eb84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3443e9769b7f02851b9e485e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_c65d042861e7c9266c6cc4a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_fd48e760e1200a1b4417b86a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_4c241103c1153934a347e7eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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;}
.ls8{letter-spacing:-2.400000px;}
.ls7{letter-spacing:-1.884000px;}
.ls4{letter-spacing:-1.038000px;}
.ls2{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.518400px;}
.ls9{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.518400px;}
.ls5{letter-spacing:1.038000px;}
.ls1{letter-spacing:1.200000px;}
.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;}
}
.ws4{word-spacing:-17.838000px;}
.ws8{word-spacing:-17.318400px;}
.ws3{word-spacing:-16.800000px;}
.ws5{word-spacing:-16.281600px;}
.ws1{word-spacing:-16.200000px;}
.ws2{word-spacing:-15.762000px;}
.ws6{word-spacing:-14.916000px;}
.ws9{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.400000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-5.071200px;}
._5{margin-left:-4.017600px;}
._2{margin-left:-3.000000px;}
._1{margin-left:-1.260000px;}
._0{width:1.020000px;}
._3{width:2.580000px;}
._4{width:3.852000px;}
._7{width:5.064000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:62.400000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:67.200000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y5a{bottom:89.437500px;}
.yab{bottom:96.637500px;}
.y4{bottom:97.125005px;}
.y91{bottom:98.437500px;}
.y59{bottom:108.637500px;}
.yaa{bottom:115.237500px;}
.y90{bottom:117.037500px;}
.y58{bottom:127.837500px;}
.ya9{bottom:134.437500px;}
.y8f{bottom:136.237500px;}
.y1f{bottom:139.264499px;}
.y57{bottom:146.475000px;}
.ycd{bottom:152.475000px;}
.ya8{bottom:153.675000px;}
.y8e{bottom:155.475000px;}
.y56{bottom:165.675000px;}
.ycc{bottom:171.075000px;}
.ya7{bottom:172.275000px;}
.y8d{bottom:174.075000px;}
.y55{bottom:184.275000px;}
.ycb{bottom:188.475000px;}
.ya6{bottom:191.475000px;}
.y8c{bottom:193.275000px;}
.y16{bottom:196.933500px;}
.y54{bottom:203.475000px;}
.yca{bottom:205.275000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.ya5{bottom:210.675000px;}
.y8b{bottom:211.875000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y53{bottom:222.705000px;}
.ya4{bottom:229.320000px;}
.y8a{bottom:231.120000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.yc9{bottom:240.120000px;}
.y52{bottom:241.320000px;}
.ya3{bottom:248.505000px;}
.y89{bottom:250.320000px;}
.yc8{bottom:257.505000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y51{bottom:260.505000px;}
.ya2{bottom:267.120000px;}
.y88{bottom:268.920000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.yc7{bottom:274.320000px;}
.y50{bottom:279.120000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.ya1{bottom:286.320000px;}
.y87{bottom:288.120000px;}
.yc6{bottom:291.705000px;}
.y4f{bottom:298.350000px;}
.ya0{bottom:305.550000px;}
.y86{bottom:306.750000px;}
.yc5{bottom:309.150000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y4e{bottom:317.550000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y9f{bottom:324.150000px;}
.y85{bottom:325.950000px;}
.yc4{bottom:326.550000px;}
.y4d{bottom:336.150000px;}
.y9e{bottom:343.350000px;}
.y84{bottom:345.150000px;}
.yd{bottom:348.133500px;}
.y4c{bottom:355.350000px;}
.yc3{bottom:360.750000px;}
.y9d{bottom:361.950000px;}
.y83{bottom:363.750000px;}
.y4b{bottom:374.550000px;}
.yc2{bottom:378.195000px;}
.y9c{bottom:381.195000px;}
.y82{bottom:382.995000px;}
.yc{bottom:386.785499px;}
.y4a{bottom:393.195000px;}
.yc1{bottom:395.580000px;}
.y9b{bottom:400.380000px;}
.y81{bottom:402.195000px;}
.yb{bottom:408.044999px;}
.y49{bottom:412.380000px;}
.y9a{bottom:418.995000px;}
.y80{bottom:420.795000px;}
.yc0{bottom:429.795000px;}
.y48{bottom:430.995000px;}
.y99{bottom:438.195000px;}
.y7f{bottom:439.995000px;}
.ybf{bottom:447.195000px;}
.y47{bottom:450.195000px;}
.y98{bottom:457.425000px;}
.y7e{bottom:458.625000px;}
.ybe{bottom:464.625000px;}
.y46{bottom:469.425000px;}
.y97{bottom:476.025000px;}
.y7d{bottom:477.825000px;}
.ybd{bottom:481.425000px;}
.y45{bottom:488.025000px;}
.y96{bottom:495.225000px;}
.y7c{bottom:497.025000px;}
.ybc{bottom:498.825000px;}
.y44{bottom:507.225000px;}
.y95{bottom:513.825000px;}
.y7b{bottom:515.625000px;}
.ybb{bottom:516.225000px;}
.ya{bottom:520.864502px;}
.y43{bottom:526.425000px;}
.y94{bottom:533.070000px;}
.yba{bottom:533.655000px;}
.y7a{bottom:534.870000px;}
.y9{bottom:538.864499px;}
.y42{bottom:545.070000px;}
.yb9{bottom:550.470000px;}
.y93{bottom:552.255000px;}
.y79{bottom:554.070000px;}
.y8{bottom:556.864499px;}
.y41{bottom:564.255000px;}
.yb8{bottom:567.870000px;}
.y92{bottom:570.870000px;}
.y78{bottom:572.655000px;}
.y40{bottom:582.870000px;}
.yb7{bottom:585.255000px;}
.y77{bottom:591.870000px;}
.y3f{bottom:602.070000px;}
.yb6{bottom:602.655000px;}
.y76{bottom:610.500000px;}
.yb5{bottom:619.500000px;}
.y3e{bottom:621.300000px;}
.y75{bottom:629.700000px;}
.yb4{bottom:636.900000px;}
.y3d{bottom:639.300000px;}
.y74{bottom:648.900000px;}
.yb3{bottom:654.300000px;}
.y3c{bottom:657.900000px;}
.y73{bottom:667.500000px;}
.yb2{bottom:671.700000px;}
.y3b{bottom:678.300000px;}
.y72{bottom:686.745000px;}
.yb1{bottom:688.530000px;}
.y3a{bottom:696.345000px;}
.y71{bottom:705.945000px;}
.y39{bottom:714.945000px;}
.yb0{bottom:723.345000px;}
.y70{bottom:724.530000px;}
.y7{bottom:726.298500px;}
.y38{bottom:734.130000px;}
.yaf{bottom:740.745000px;}
.y6f{bottom:743.745000px;}
.y3{bottom:752.599495px;}
.y37{bottom:753.345000px;}
.yae{bottom:759.345000px;}
.y6e{bottom:762.375000px;}
.y36{bottom:771.975000px;}
.yad{bottom:779.175000px;}
.y6d{bottom:781.575000px;}
.y35{bottom:791.175000px;}
.yac{bottom:800.175000px;}
.y6c{bottom:800.775000px;}
.y34{bottom:809.775000px;}
.y6b{bottom:819.375000px;}
.y33{bottom:828.975000px;}
.y6a{bottom:838.620000px;}
.y32{bottom:848.205000px;}
.y69{bottom:857.820000px;}
.y31{bottom:866.820000px;}
.y68{bottom:876.420000px;}
.y2{bottom:879.369000px;}
.y30{bottom:886.005000px;}
.y67{bottom:895.620000px;}
.y2f{bottom:905.205000px;}
.y66{bottom:914.205000px;}
.y2e{bottom:923.850000px;}
.y65{bottom:933.450000px;}
.y2d{bottom:943.050000px;}
.y64{bottom:952.650000px;}
.y2c{bottom:961.650000px;}
.y1{bottom:966.726000px;}
.y63{bottom:971.250000px;}
.y2b{bottom:980.850000px;}
.y62{bottom:990.450000px;}
.y2a{bottom:1000.080000px;}
.y61{bottom:1009.695000px;}
.y29{bottom:1018.080000px;}
.y60{bottom:1028.295000px;}
.y28{bottom:1037.295000px;}
.y5f{bottom:1047.495000px;}
.y27{bottom:1055.880000px;}
.y5e{bottom:1066.080000px;}
.y26{bottom:1075.725000px;}
.y5d{bottom:1085.325000px;}
.y25{bottom:1094.925000px;}
.y5c{bottom:1104.525000px;}
.y24{bottom:1119.525000px;}
.y5b{bottom:1123.125000px;}
.y23{bottom:1142.325000px;}
.y22{bottom:1162.170000px;}
.y21{bottom:1179.570000px;}
.y20{bottom:1196.955000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h8{height:58.886719px;}
.h9{height:61.242188px;}
.hd{height:65.920312px;}
.hf{height:65.953125px;}
.hc{height:67.725000px;}
.hb{height:70.664062px;}
.he{height:72.562500px;}
.h5{height:78.030000px;}
.ha{height:82.441406px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:100.275000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.133333pt;}
.ls7{letter-spacing:-1.674667pt;}
.ls4{letter-spacing:-0.922667pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.460800pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.460800pt;}
.ls5{letter-spacing:0.922667pt;}
.ls1{letter-spacing:1.066667pt;}
.ws4{word-spacing:-15.856000pt;}
.ws8{word-spacing:-15.394133pt;}
.ws3{word-spacing:-14.933333pt;}
.ws5{word-spacing:-14.472533pt;}
.ws1{word-spacing:-14.400000pt;}
.ws2{word-spacing:-14.010667pt;}
.ws6{word-spacing:-13.258667pt;}
.ws9{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-4.507733pt;}
._5{margin-left:-3.571200pt;}
._2{margin-left:-2.666667pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.906667pt;}
._3{width:2.293333pt;}
._4{width:3.424000pt;}
._7{width:4.501333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:55.466667pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:59.733333pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y5a{bottom:79.500000pt;}
.yab{bottom:85.900000pt;}
.y4{bottom:86.333337pt;}
.y91{bottom:87.500000pt;}
.y59{bottom:96.566667pt;}
.yaa{bottom:102.433333pt;}
.y90{bottom:104.033333pt;}
.y58{bottom:113.633333pt;}
.ya9{bottom:119.500000pt;}
.y8f{bottom:121.100000pt;}
.y1f{bottom:123.790666pt;}
.y57{bottom:130.200000pt;}
.ycd{bottom:135.533333pt;}
.ya8{bottom:136.600000pt;}
.y8e{bottom:138.200000pt;}
.y56{bottom:147.266667pt;}
.ycc{bottom:152.066667pt;}
.ya7{bottom:153.133333pt;}
.y8d{bottom:154.733333pt;}
.y55{bottom:163.800000pt;}
.ycb{bottom:167.533333pt;}
.ya6{bottom:170.200000pt;}
.y8c{bottom:171.800000pt;}
.y16{bottom:175.052000pt;}
.y54{bottom:180.866667pt;}
.yca{bottom:182.466667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.ya5{bottom:187.266667pt;}
.y8b{bottom:188.333333pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y53{bottom:197.960000pt;}
.ya4{bottom:203.840000pt;}
.y8a{bottom:205.440000pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.yc9{bottom:213.440000pt;}
.y52{bottom:214.506667pt;}
.ya3{bottom:220.893333pt;}
.y89{bottom:222.506667pt;}
.yc8{bottom:228.893333pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y51{bottom:231.560000pt;}
.ya2{bottom:237.440000pt;}
.y88{bottom:239.040000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.yc7{bottom:243.840000pt;}
.y50{bottom:248.106667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.ya1{bottom:254.506667pt;}
.y87{bottom:256.106667pt;}
.yc6{bottom:259.293333pt;}
.y4f{bottom:265.200000pt;}
.ya0{bottom:271.600000pt;}
.y86{bottom:272.666667pt;}
.yc5{bottom:274.800000pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y4e{bottom:282.266667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y9f{bottom:288.133333pt;}
.y85{bottom:289.733333pt;}
.yc4{bottom:290.266667pt;}
.y4d{bottom:298.800000pt;}
.y9e{bottom:305.200000pt;}
.y84{bottom:306.800000pt;}
.yd{bottom:309.452000pt;}
.y4c{bottom:315.866667pt;}
.yc3{bottom:320.666667pt;}
.y9d{bottom:321.733333pt;}
.y83{bottom:323.333333pt;}
.y4b{bottom:332.933333pt;}
.yc2{bottom:336.173333pt;}
.y9c{bottom:338.840000pt;}
.y82{bottom:340.440000pt;}
.yc{bottom:343.809333pt;}
.y4a{bottom:349.506667pt;}
.yc1{bottom:351.626667pt;}
.y9b{bottom:355.893333pt;}
.y81{bottom:357.506667pt;}
.yb{bottom:362.706666pt;}
.y49{bottom:366.560000pt;}
.y9a{bottom:372.440000pt;}
.y80{bottom:374.040000pt;}
.yc0{bottom:382.040000pt;}
.y48{bottom:383.106667pt;}
.y99{bottom:389.506667pt;}
.y7f{bottom:391.106667pt;}
.ybf{bottom:397.506667pt;}
.y47{bottom:400.173333pt;}
.y98{bottom:406.600000pt;}
.y7e{bottom:407.666667pt;}
.ybe{bottom:413.000000pt;}
.y46{bottom:417.266667pt;}
.y97{bottom:423.133333pt;}
.y7d{bottom:424.733333pt;}
.ybd{bottom:427.933333pt;}
.y45{bottom:433.800000pt;}
.y96{bottom:440.200000pt;}
.y7c{bottom:441.800000pt;}
.ybc{bottom:443.400000pt;}
.y44{bottom:450.866667pt;}
.y95{bottom:456.733333pt;}
.y7b{bottom:458.333333pt;}
.ybb{bottom:458.866667pt;}
.ya{bottom:462.990669pt;}
.y43{bottom:467.933333pt;}
.y94{bottom:473.840000pt;}
.yba{bottom:474.360000pt;}
.y7a{bottom:475.440000pt;}
.y9{bottom:478.990666pt;}
.y42{bottom:484.506667pt;}
.yb9{bottom:489.306667pt;}
.y93{bottom:490.893333pt;}
.y79{bottom:492.506667pt;}
.y8{bottom:494.990666pt;}
.y41{bottom:501.560000pt;}
.yb8{bottom:504.773333pt;}
.y92{bottom:507.440000pt;}
.y78{bottom:509.026667pt;}
.y40{bottom:518.106667pt;}
.yb7{bottom:520.226667pt;}
.y77{bottom:526.106667pt;}
.y3f{bottom:535.173333pt;}
.yb6{bottom:535.693333pt;}
.y76{bottom:542.666667pt;}
.yb5{bottom:550.666667pt;}
.y3e{bottom:552.266667pt;}
.y75{bottom:559.733333pt;}
.yb4{bottom:566.133333pt;}
.y3d{bottom:568.266667pt;}
.y74{bottom:576.800000pt;}
.yb3{bottom:581.600000pt;}
.y3c{bottom:584.800000pt;}
.y73{bottom:593.333333pt;}
.yb2{bottom:597.066667pt;}
.y3b{bottom:602.933333pt;}
.y72{bottom:610.440000pt;}
.yb1{bottom:612.026667pt;}
.y3a{bottom:618.973333pt;}
.y71{bottom:627.506667pt;}
.y39{bottom:635.506667pt;}
.yb0{bottom:642.973333pt;}
.y70{bottom:644.026667pt;}
.y7{bottom:645.598667pt;}
.y38{bottom:652.560000pt;}
.yaf{bottom:658.440000pt;}
.y6f{bottom:661.106667pt;}
.y3{bottom:668.977329pt;}
.y37{bottom:669.640000pt;}
.yae{bottom:674.973333pt;}
.y6e{bottom:677.666667pt;}
.y36{bottom:686.200000pt;}
.yad{bottom:692.600000pt;}
.y6d{bottom:694.733333pt;}
.y35{bottom:703.266667pt;}
.yac{bottom:711.266667pt;}
.y6c{bottom:711.800000pt;}
.y34{bottom:719.800000pt;}
.y6b{bottom:728.333333pt;}
.y33{bottom:736.866667pt;}
.y6a{bottom:745.440000pt;}
.y32{bottom:753.960000pt;}
.y69{bottom:762.506667pt;}
.y31{bottom:770.506667pt;}
.y68{bottom:779.040000pt;}
.y2{bottom:781.661334pt;}
.y30{bottom:787.560000pt;}
.y67{bottom:796.106667pt;}
.y2f{bottom:804.626667pt;}
.y66{bottom:812.626667pt;}
.y2e{bottom:821.200000pt;}
.y65{bottom:829.733333pt;}
.y2d{bottom:838.266667pt;}
.y64{bottom:846.800000pt;}
.y2c{bottom:854.800000pt;}
.y1{bottom:859.312000pt;}
.y63{bottom:863.333333pt;}
.y2b{bottom:871.866667pt;}
.y62{bottom:880.400000pt;}
.y2a{bottom:888.960000pt;}
.y61{bottom:897.506667pt;}
.y29{bottom:904.960000pt;}
.y60{bottom:914.040000pt;}
.y28{bottom:922.040000pt;}
.y5f{bottom:931.106667pt;}
.y27{bottom:938.560000pt;}
.y5e{bottom:947.626667pt;}
.y26{bottom:956.200000pt;}
.y5d{bottom:964.733333pt;}
.y25{bottom:973.266667pt;}
.y5c{bottom:981.800000pt;}
.y24{bottom:995.133333pt;}
.y5b{bottom:998.333333pt;}
.y23{bottom:1015.400000pt;}
.y22{bottom:1033.040000pt;}
.y21{bottom:1048.506667pt;}
.y20{bottom:1063.960000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h8{height:52.343750pt;}
.h9{height:54.437500pt;}
.hd{height:58.595833pt;}
.hf{height:58.625000pt;}
.hc{height:60.200000pt;}
.hb{height:62.812500pt;}
.he{height:64.500000pt;}
.h5{height:69.360000pt;}
.ha{height:73.281250pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:89.133333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
}




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