
    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_42f7186b4c6f09d27c2d47e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_c317e23931614cda4c61f6c5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4a1b8b8684bf7f2c901199a4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1cb011d486e4f5911bcaae5e.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_846dfc53e7a42c7e491480d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4f8b28d8292e7498cfb97661.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls1{letter-spacing:1.080000px;}
.ls0{letter-spacing:2.334240px;}
.ls9{letter-spacing:181.560000px;}
.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:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.447440px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-4.896000px;}
._e{margin-left:-3.744000px;}
._7{margin-left:-2.376000px;}
._1{margin-left:-1.333440px;}
._0{width:1.484640px;}
._5{width:2.520000px;}
._6{width:3.555360px;}
._3{width:5.472000px;}
._4{width:6.696000px;}
._2{width:8.221440px;}
._8{width:9.562560px;}
._11{width:10.696320px;}
._15{width:12.096000px;}
._10{width:13.553280px;}
._f{width:14.787360px;}
._c{width:15.960000px;}
._b{width:19.179360px;}
._12{width:21.384000px;}
._13{width:22.896000px;}
._14{width:24.013440px;}
._18{width:25.488000px;}
._9{width:29.808000px;}
._a{width:31.131360px;}
._19{width:32.417280px;}
._1b{width:39.576000px;}
._1a{width:40.680000px;}
._16{width:277.446000px;}
._17{width:423.612000px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:13.290000px;}
.y4f{bottom:19.620000px;}
.y4d{bottom:25.740000px;}
.y51{bottom:26.640000px;}
.y72{bottom:30.855000px;}
.y4b{bottom:37.620000px;}
.y4c{bottom:49.320000px;}
.y73{bottom:50.505000px;}
.y4e{bottom:55.440000px;}
.y7{bottom:57.600000px;}
.y74{bottom:70.200000px;}
.y75{bottom:89.850000px;}
.y55{bottom:96.120000px;}
.y70{bottom:106.380000px;}
.y76{bottom:109.545000px;}
.y32{bottom:109.800000px;}
.y54{bottom:119.880000px;}
.y77{bottom:129.240000px;}
.y6f{bottom:130.140000px;}
.y31{bottom:133.740000px;}
.y53{bottom:137.160000px;}
.y78{bottom:148.890000px;}
.y6e{bottom:153.900000px;}
.y30{bottom:157.500000px;}
.y79{bottom:168.585000px;}
.y6d{bottom:177.870000px;}
.y52{bottom:180.930000px;}
.y2f{bottom:181.290000px;}
.y7a{bottom:188.250000px;}
.y6c{bottom:201.630000px;}
.y2e{bottom:205.050000px;}
.y7b{bottom:207.930000px;}
.y50{bottom:224.670000px;}
.y6b{bottom:225.390000px;}
.y2d{bottom:228.990000px;}
.y6a{bottom:248.790000px;}
.y2c{bottom:252.750000px;}
.y4a{bottom:268.410000px;}
.y2b{bottom:276.510000px;}
.y69{bottom:286.770000px;}
.y71{bottom:288.000000px;}
.y2a{bottom:300.270000px;}
.y29{bottom:324.210000px;}
.y28{bottom:347.970000px;}
.y49{bottom:355.170000px;}
.y27{bottom:371.730000px;}
.y48{bottom:386.130000px;}
.y26{bottom:395.490000px;}
.y47{bottom:417.315000px;}
.y25{bottom:419.475000px;}
.y24{bottom:443.235000px;}
.y46{bottom:448.275000px;}
.y81{bottom:452.415000px;}
.y23{bottom:466.995000px;}
.y80{bottom:475.995000px;}
.y45{bottom:479.415000px;}
.y22{bottom:490.755000px;}
.y7f{bottom:499.935000px;}
.y44{bottom:510.375000px;}
.y21{bottom:514.515000px;}
.y68{bottom:523.695000px;}
.y20{bottom:538.455000px;}
.y43{bottom:541.515000px;}
.y67{bottom:547.455000px;}
.y1f{bottom:562.215000px;}
.y42{bottom:565.635000px;}
.y66{bottom:571.215000px;}
.y1e{bottom:585.975000px;}
.y41{bottom:589.395000px;}
.y65{bottom:595.155000px;}
.y1d{bottom:609.735000px;}
.y40{bottom:613.335000px;}
.y64{bottom:618.915000px;}
.y1c{bottom:633.675000px;}
.y3f{bottom:637.095000px;}
.y63{bottom:642.675000px;}
.y1b{bottom:657.435000px;}
.y3e{bottom:660.885000px;}
.y62{bottom:666.465000px;}
.y1a{bottom:681.225000px;}
.y3d{bottom:684.645000px;}
.y61{bottom:690.405000px;}
.y19{bottom:704.985000px;}
.y3c{bottom:708.585000px;}
.y60{bottom:714.165000px;}
.y18{bottom:728.925000px;}
.y5f{bottom:737.925000px;}
.y3b{bottom:749.985000px;}
.y17{bottom:752.685000px;}
.y5e{bottom:761.685000px;}
.y16{bottom:776.445000px;}
.y3a{bottom:781.845000px;}
.y5d{bottom:785.445000px;}
.y15{bottom:800.205000px;}
.y5c{bottom:809.385000px;}
.y14{bottom:824.145000px;}
.y5b{bottom:833.145000px;}
.y13{bottom:847.905000px;}
.y5a{bottom:856.905000px;}
.y12{bottom:871.665000px;}
.y7e{bottom:880.305000px;}
.y59{bottom:880.665000px;}
.y11{bottom:895.425000px;}
.y7d{bottom:904.290000px;}
.y58{bottom:904.650000px;}
.y10{bottom:919.050000px;}
.y57{bottom:928.410000px;}
.yf{bottom:943.170000px;}
.y56{bottom:952.170000px;}
.ye{bottom:966.930000px;}
.y39{bottom:975.930000px;}
.yd{bottom:990.330000px;}
.y38{bottom:999.870000px;}
.yc{bottom:1014.450000px;}
.y37{bottom:1023.630000px;}
.yb{bottom:1038.390000px;}
.y36{bottom:1047.390000px;}
.ya{bottom:1061.790000px;}
.y35{bottom:1071.150000px;}
.y34{bottom:1095.090000px;}
.y9{bottom:1096.350000px;}
.y8{bottom:1118.490000px;}
.y33{bottom:1118.850000px;}
.y6{bottom:1144.080000px;}
.y5{bottom:1164.780000px;}
.y4{bottom:1183.140000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.680000px;}
.y1{bottom:1238.040000px;}
.h8{height:43.020000px;}
.h9{height:43.056000px;}
.hb{height:53.709961px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h6{height:70.664062px;}
.h7{height:71.640000px;}
.h5{height:72.562500px;}
.hc{height:74.004654px;}
.h3{height:84.898125px;}
.ha{height:228.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:52.416000px;}
.w6{width:63.000000px;}
.w7{width:63.036000px;}
.w5{width:63.180000px;}
.wa{width:75.960000px;}
.w8{width:84.420000px;}
.w9{width:116.136000px;}
.w3{width:177.510000px;}
.wb{width:528.840000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.740000px;}
.x22{left:9.900000px;}
.x1b{left:11.160000px;}
.x1c{left:12.600000px;}
.x27{left:13.860000px;}
.x2a{left:15.840000px;}
.x28{left:18.360000px;}
.x1e{left:21.060000px;}
.x2d{left:22.140000px;}
.x32{left:23.610000px;}
.x2b{left:26.280000px;}
.x24{left:27.540000px;}
.x2e{left:42.300000px;}
.x25{left:44.100000px;}
.x2c{left:46.800000px;}
.x19{left:56.196000px;}
.x33{left:62.355000px;}
.x12{left:84.959987px;}
.x17{left:125.855987px;}
.x11{left:127.475987px;}
.xb{left:142.055987px;}
.x8{left:144.035987px;}
.x5{left:147.455987px;}
.x30{left:148.535987px;}
.xe{left:157.169987px;}
.x6{left:176.069987px;}
.x31{left:203.220000px;}
.x9{left:227.729987px;}
.x1a{left:264.090000px;}
.xc{left:269.309987px;}
.x14{left:270.569987px;}
.x1d{left:317.235000px;}
.x3{left:350.534987px;}
.xa{left:371.954987px;}
.x7{left:378.434987px;}
.x1f{left:381.135000px;}
.xd{left:398.414987px;}
.x18{left:403.094987px;}
.xf{left:406.154987px;}
.x34{left:425.774987px;}
.x4{left:433.874987px;}
.x20{left:444.855000px;}
.x2{left:457.094987px;}
.x10{left:467.714987px;}
.x21{left:508.605000px;}
.x1{left:510.404987px;}
.x23{left:593.745000px;}
.x26{left:710.610000px;}
.x2f{left:732.029987px;}
.x16{left:750.389987px;}
.x13{left:791.249987px;}
.x15{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls0{letter-spacing:2.074880pt;}
.ls9{letter-spacing:161.386667pt;}
.ws6{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-4.352000pt;}
._e{margin-left:-3.328000pt;}
._7{margin-left:-2.112000pt;}
._1{margin-left:-1.185280pt;}
._0{width:1.319680pt;}
._5{width:2.240000pt;}
._6{width:3.160320pt;}
._3{width:4.864000pt;}
._4{width:5.952000pt;}
._2{width:7.307947pt;}
._8{width:8.500053pt;}
._11{width:9.507840pt;}
._15{width:10.752000pt;}
._10{width:12.047360pt;}
._f{width:13.144320pt;}
._c{width:14.186667pt;}
._b{width:17.048320pt;}
._12{width:19.008000pt;}
._13{width:20.352000pt;}
._14{width:21.345280pt;}
._18{width:22.656000pt;}
._9{width:26.496000pt;}
._a{width:27.672320pt;}
._19{width:28.815360pt;}
._1b{width:35.178667pt;}
._1a{width:36.160000pt;}
._16{width:246.618667pt;}
._17{width:376.544000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:11.813333pt;}
.y4f{bottom:17.440000pt;}
.y4d{bottom:22.880000pt;}
.y51{bottom:23.680000pt;}
.y72{bottom:27.426667pt;}
.y4b{bottom:33.440000pt;}
.y4c{bottom:43.840000pt;}
.y73{bottom:44.893333pt;}
.y4e{bottom:49.280000pt;}
.y7{bottom:51.200000pt;}
.y74{bottom:62.400000pt;}
.y75{bottom:79.866667pt;}
.y55{bottom:85.440000pt;}
.y70{bottom:94.560000pt;}
.y76{bottom:97.373333pt;}
.y32{bottom:97.600000pt;}
.y54{bottom:106.560000pt;}
.y77{bottom:114.880000pt;}
.y6f{bottom:115.680000pt;}
.y31{bottom:118.880000pt;}
.y53{bottom:121.920000pt;}
.y78{bottom:132.346667pt;}
.y6e{bottom:136.800000pt;}
.y30{bottom:140.000000pt;}
.y79{bottom:149.853333pt;}
.y6d{bottom:158.106667pt;}
.y52{bottom:160.826667pt;}
.y2f{bottom:161.146667pt;}
.y7a{bottom:167.333333pt;}
.y6c{bottom:179.226667pt;}
.y2e{bottom:182.266667pt;}
.y7b{bottom:184.826667pt;}
.y50{bottom:199.706667pt;}
.y6b{bottom:200.346667pt;}
.y2d{bottom:203.546667pt;}
.y6a{bottom:221.146667pt;}
.y2c{bottom:224.666667pt;}
.y4a{bottom:238.586667pt;}
.y2b{bottom:245.786667pt;}
.y69{bottom:254.906667pt;}
.y71{bottom:256.000000pt;}
.y2a{bottom:266.906667pt;}
.y29{bottom:288.186667pt;}
.y28{bottom:309.306667pt;}
.y49{bottom:315.706667pt;}
.y27{bottom:330.426667pt;}
.y48{bottom:343.226667pt;}
.y26{bottom:351.546667pt;}
.y47{bottom:370.946667pt;}
.y25{bottom:372.866667pt;}
.y24{bottom:393.986667pt;}
.y46{bottom:398.466667pt;}
.y81{bottom:402.146667pt;}
.y23{bottom:415.106667pt;}
.y80{bottom:423.106667pt;}
.y45{bottom:426.146667pt;}
.y22{bottom:436.226667pt;}
.y7f{bottom:444.386667pt;}
.y44{bottom:453.666667pt;}
.y21{bottom:457.346667pt;}
.y68{bottom:465.506667pt;}
.y20{bottom:478.626667pt;}
.y43{bottom:481.346667pt;}
.y67{bottom:486.626667pt;}
.y1f{bottom:499.746667pt;}
.y42{bottom:502.786667pt;}
.y66{bottom:507.746667pt;}
.y1e{bottom:520.866667pt;}
.y41{bottom:523.906667pt;}
.y65{bottom:529.026667pt;}
.y1d{bottom:541.986667pt;}
.y40{bottom:545.186667pt;}
.y64{bottom:550.146667pt;}
.y1c{bottom:563.266667pt;}
.y3f{bottom:566.306667pt;}
.y63{bottom:571.266667pt;}
.y1b{bottom:584.386667pt;}
.y3e{bottom:587.453333pt;}
.y62{bottom:592.413333pt;}
.y1a{bottom:605.533333pt;}
.y3d{bottom:608.573333pt;}
.y61{bottom:613.693333pt;}
.y19{bottom:626.653333pt;}
.y3c{bottom:629.853333pt;}
.y60{bottom:634.813333pt;}
.y18{bottom:647.933333pt;}
.y5f{bottom:655.933333pt;}
.y3b{bottom:666.653333pt;}
.y17{bottom:669.053333pt;}
.y5e{bottom:677.053333pt;}
.y16{bottom:690.173333pt;}
.y3a{bottom:694.973333pt;}
.y5d{bottom:698.173333pt;}
.y15{bottom:711.293333pt;}
.y5c{bottom:719.453333pt;}
.y14{bottom:732.573333pt;}
.y5b{bottom:740.573333pt;}
.y13{bottom:753.693333pt;}
.y5a{bottom:761.693333pt;}
.y12{bottom:774.813333pt;}
.y7e{bottom:782.493333pt;}
.y59{bottom:782.813333pt;}
.y11{bottom:795.933333pt;}
.y7d{bottom:803.813333pt;}
.y58{bottom:804.133333pt;}
.y10{bottom:816.933333pt;}
.y57{bottom:825.253333pt;}
.yf{bottom:838.373333pt;}
.y56{bottom:846.373333pt;}
.ye{bottom:859.493333pt;}
.y39{bottom:867.493333pt;}
.yd{bottom:880.293333pt;}
.y38{bottom:888.773333pt;}
.yc{bottom:901.733333pt;}
.y37{bottom:909.893333pt;}
.yb{bottom:923.013333pt;}
.y36{bottom:931.013333pt;}
.ya{bottom:943.813333pt;}
.y35{bottom:952.133333pt;}
.y34{bottom:973.413333pt;}
.y9{bottom:974.533333pt;}
.y8{bottom:994.213333pt;}
.y33{bottom:994.533333pt;}
.y6{bottom:1016.960000pt;}
.y5{bottom:1035.360000pt;}
.y4{bottom:1051.680000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.160000pt;}
.y1{bottom:1100.480000pt;}
.h8{height:38.240000pt;}
.h9{height:38.272000pt;}
.hb{height:47.742188pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h6{height:62.812500pt;}
.h7{height:63.680000pt;}
.h5{height:64.500000pt;}
.hc{height:65.781915pt;}
.h3{height:75.465000pt;}
.ha{height:203.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:46.592000pt;}
.w6{width:56.000000pt;}
.w7{width:56.032000pt;}
.w5{width:56.160000pt;}
.wa{width:67.520000pt;}
.w8{width:75.040000pt;}
.w9{width:103.232000pt;}
.w3{width:157.786667pt;}
.wb{width:470.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.880000pt;}
.x22{left:8.800000pt;}
.x1b{left:9.920000pt;}
.x1c{left:11.200000pt;}
.x27{left:12.320000pt;}
.x2a{left:14.080000pt;}
.x28{left:16.320000pt;}
.x1e{left:18.720000pt;}
.x2d{left:19.680000pt;}
.x32{left:20.986667pt;}
.x2b{left:23.360000pt;}
.x24{left:24.480000pt;}
.x2e{left:37.600000pt;}
.x25{left:39.200000pt;}
.x2c{left:41.600000pt;}
.x19{left:49.952000pt;}
.x33{left:55.426667pt;}
.x12{left:75.519988pt;}
.x17{left:111.871988pt;}
.x11{left:113.311988pt;}
.xb{left:126.271988pt;}
.x8{left:128.031988pt;}
.x5{left:131.071988pt;}
.x30{left:132.031988pt;}
.xe{left:139.706655pt;}
.x6{left:156.506655pt;}
.x31{left:180.640000pt;}
.x9{left:202.426655pt;}
.x1a{left:234.746667pt;}
.xc{left:239.386655pt;}
.x14{left:240.506655pt;}
.x1d{left:281.986667pt;}
.x3{left:311.586655pt;}
.xa{left:330.626655pt;}
.x7{left:336.386655pt;}
.x1f{left:338.786667pt;}
.xd{left:354.146655pt;}
.x18{left:358.306655pt;}
.xf{left:361.026655pt;}
.x34{left:378.466655pt;}
.x4{left:385.666655pt;}
.x20{left:395.426667pt;}
.x2{left:406.306655pt;}
.x10{left:415.746655pt;}
.x21{left:452.093333pt;}
.x1{left:453.693322pt;}
.x23{left:527.773333pt;}
.x26{left:631.653333pt;}
.x2f{left:650.693322pt;}
.x16{left:667.013322pt;}
.x13{left:703.333322pt;}
.x15{left:718.213322pt;}
}




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