
    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_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.747559;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_40865fd7e019689f9a87e0c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_11997bcabb9851b76555229c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_5abd9fecdd09792cdadeff7c.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_f2662a2e713ff50463b2ad21.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.208200px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:46.026720px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-6.094080px;}
._e{margin-left:-3.908160px;}
._c{margin-left:-2.416800px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._13{width:2.439840px;}
._14{width:4.362480px;}
._11{width:5.378400px;}
._10{width:6.513840px;}
._16{width:8.391600px;}
._3{width:9.540000px;}
._12{width:10.954800px;}
._1{width:12.420000px;}
._18{width:17.390160px;}
._17{width:18.525600px;}
._15{width:20.557440px;}
._f{width:22.695120px;}
._22{width:27.668880px;}
._19{width:30.298320px;}
._23{width:33.286320px;}
._1b{width:34.421760px;}
._1a{width:35.437680px;}
._1f{width:37.708560px;}
._1e{width:41.891760px;}
._20{width:46.373760px;}
._21{width:47.449440px;}
._1c{width:73.564560px;}
._1d{width:75.058560px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc8{color:rgb(0,112,192);}
.fc7{color:transparent;}
.fc6{color:rgb(24,23,23);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y22{bottom:5.760000px;}
.y10{bottom:7.056000px;}
.y1a{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y21{bottom:25.560000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y20{bottom:45.360000px;}
.yf{bottom:53.280000px;}
.y6{bottom:63.210000px;}
.y1f{bottom:65.160000px;}
.yb{bottom:73.110000px;}
.y5{bottom:84.450000px;}
.y1e{bottom:85.140000px;}
.ya{bottom:92.370000px;}
.y1d{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.y4d{bottom:109.296000px;}
.y9{bottom:110.190000px;}
.y1c{bottom:124.740000px;}
.y3{bottom:126.750000px;}
.y4c{bottom:129.096000px;}
.y4b{bottom:148.896000px;}
.y4a{bottom:168.870000px;}
.y3c{bottom:180.390000px;}
.y49{bottom:188.670000px;}
.y3b{bottom:200.190000px;}
.y48{bottom:208.470000px;}
.y3a{bottom:220.170000px;}
.y47{bottom:228.270000px;}
.y39{bottom:239.970000px;}
.y46{bottom:248.070000px;}
.y38{bottom:259.770000px;}
.y45{bottom:268.050000px;}
.y37{bottom:279.570000px;}
.y44{bottom:287.850000px;}
.y36{bottom:299.370000px;}
.y43{bottom:307.650000px;}
.y35{bottom:319.350000px;}
.y42{bottom:327.495000px;}
.y34{bottom:339.195000px;}
.y41{bottom:347.295000px;}
.y33{bottom:358.995000px;}
.y40{bottom:367.275000px;}
.y32{bottom:378.795000px;}
.y3f{bottom:387.075000px;}
.y31{bottom:398.595000px;}
.y3e{bottom:406.875000px;}
.y30{bottom:418.575000px;}
.y3d{bottom:423.435000px;}
.y2f{bottom:438.375000px;}
.y2e{bottom:458.175000px;}
.y2d{bottom:477.975000px;}
.y2c{bottom:497.775000px;}
.y2b{bottom:517.755000px;}
.y2a{bottom:537.555000px;}
.y29{bottom:557.355000px;}
.y28{bottom:577.155000px;}
.y27{bottom:596.985000px;}
.y26{bottom:616.965000px;}
.y25{bottom:636.765000px;}
.y24{bottom:656.565000px;}
.y72{bottom:670.965000px;}
.y23{bottom:671.325000px;}
.y71{bottom:690.765000px;}
.y1b{bottom:692.025000px;}
.y5b{bottom:709.845000px;}
.y70{bottom:710.565000px;}
.y5a{bottom:729.645000px;}
.y6f{bottom:730.365000px;}
.y59{bottom:749.445000px;}
.y6e{bottom:750.165000px;}
.y58{bottom:769.245000px;}
.y6d{bottom:770.145000px;}
.y57{bottom:789.045000px;}
.y6c{bottom:789.945000px;}
.y56{bottom:809.025000px;}
.y6b{bottom:809.745000px;}
.y55{bottom:828.825000px;}
.y6a{bottom:829.545000px;}
.y19{bottom:831.525000px;}
.y54{bottom:848.625000px;}
.y69{bottom:849.345000px;}
.y18{bottom:867.570000px;}
.y53{bottom:868.470000px;}
.y68{bottom:869.370000px;}
.y17{bottom:888.090000px;}
.y52{bottom:888.270000px;}
.y67{bottom:889.170000px;}
.y51{bottom:904.830000px;}
.y16{bottom:907.890000px;}
.y66{bottom:908.970000px;}
.y15{bottom:927.690000px;}
.y65{bottom:928.770000px;}
.y14{bottom:942.810000px;}
.y64{bottom:948.570000px;}
.y13{bottom:964.230000px;}
.y63{bottom:968.550000px;}
.y12{bottom:987.630000px;}
.y62{bottom:988.350000px;}
.y61{bottom:1008.150000px;}
.y11{bottom:1019.310000px;}
.y60{bottom:1027.950000px;}
.ye{bottom:1045.410000px;}
.y5f{bottom:1047.750000px;}
.y1{bottom:1067.730000px;}
.y5e{bottom:1087.530000px;}
.y5d{bottom:1107.330000px;}
.y5c{bottom:1127.130000px;}
.y50{bottom:1146.960000px;}
.y4f{bottom:1166.940000px;}
.y4e{bottom:1193.400000px;}
.h3{height:1.999688px;}
.h13{height:19.800000px;}
.ha{height:22.356000px;}
.h11{height:22.860000px;}
.hf{height:27.147656px;}
.h10{height:29.464453px;}
.h8{height:37.705078px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h15{height:43.506914px;}
.h14{height:46.251562px;}
.hb{height:46.736719px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h9{height:55.825312px;}
.hd{height:59.439023px;}
.he{height:67.565039px;}
.h12{height:138.780000px;}
.h2{height:140.796000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.460000px;}
.w4{width:158.940000px;}
.w8{width:170.130000px;}
.w2{width:172.830000px;}
.w3{width:464.865000px;}
.w9{width:607.605000px;}
.w7{width:748.950000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xc{left:90.180000px;}
.x13{left:122.975987px;}
.x7{left:140.085000px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.xe{left:227.730000px;}
.x5{left:248.265000px;}
.x14{left:408.854987px;}
.x12{left:473.504987px;}
.x15{left:500.504987px;}
.x10{left:507.524987px;}
.x16{left:527.504987px;}
.x11{left:656.204987px;}
.x8{left:685.950000px;}
.xf{left:820.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-5.416960pt;}
._e{margin-left:-3.473920pt;}
._c{margin-left:-2.148267pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._13{width:2.168747pt;}
._14{width:3.877760pt;}
._11{width:4.780800pt;}
._10{width:5.790080pt;}
._16{width:7.459200pt;}
._3{width:8.480000pt;}
._12{width:9.737600pt;}
._1{width:11.040000pt;}
._18{width:15.457920pt;}
._17{width:16.467200pt;}
._15{width:18.273280pt;}
._f{width:20.173440pt;}
._22{width:24.594560pt;}
._19{width:26.931840pt;}
._23{width:29.587840pt;}
._1b{width:30.597120pt;}
._1a{width:31.500160pt;}
._1f{width:33.518720pt;}
._1e{width:37.237120pt;}
._20{width:41.221120pt;}
._21{width:42.177280pt;}
._1c{width:65.390720pt;}
._1d{width:66.718720pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y22{bottom:5.120000pt;}
.y10{bottom:6.272000pt;}
.y1a{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y21{bottom:22.720000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y20{bottom:40.320000pt;}
.yf{bottom:47.360000pt;}
.y6{bottom:56.186667pt;}
.y1f{bottom:57.920000pt;}
.yb{bottom:64.986667pt;}
.y5{bottom:75.066667pt;}
.y1e{bottom:75.680000pt;}
.ya{bottom:82.106667pt;}
.y1d{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.y4d{bottom:97.152000pt;}
.y9{bottom:97.946667pt;}
.y1c{bottom:110.880000pt;}
.y3{bottom:112.666667pt;}
.y4c{bottom:114.752000pt;}
.y4b{bottom:132.352000pt;}
.y4a{bottom:150.106667pt;}
.y3c{bottom:160.346667pt;}
.y49{bottom:167.706667pt;}
.y3b{bottom:177.946667pt;}
.y48{bottom:185.306667pt;}
.y3a{bottom:195.706667pt;}
.y47{bottom:202.906667pt;}
.y39{bottom:213.306667pt;}
.y46{bottom:220.506667pt;}
.y38{bottom:230.906667pt;}
.y45{bottom:238.266667pt;}
.y37{bottom:248.506667pt;}
.y44{bottom:255.866667pt;}
.y36{bottom:266.106667pt;}
.y43{bottom:273.466667pt;}
.y35{bottom:283.866667pt;}
.y42{bottom:291.106667pt;}
.y34{bottom:301.506667pt;}
.y41{bottom:308.706667pt;}
.y33{bottom:319.106667pt;}
.y40{bottom:326.466667pt;}
.y32{bottom:336.706667pt;}
.y3f{bottom:344.066667pt;}
.y31{bottom:354.306667pt;}
.y3e{bottom:361.666667pt;}
.y30{bottom:372.066667pt;}
.y3d{bottom:376.386667pt;}
.y2f{bottom:389.666667pt;}
.y2e{bottom:407.266667pt;}
.y2d{bottom:424.866667pt;}
.y2c{bottom:442.466667pt;}
.y2b{bottom:460.226667pt;}
.y2a{bottom:477.826667pt;}
.y29{bottom:495.426667pt;}
.y28{bottom:513.026667pt;}
.y27{bottom:530.653333pt;}
.y26{bottom:548.413333pt;}
.y25{bottom:566.013333pt;}
.y24{bottom:583.613333pt;}
.y72{bottom:596.413333pt;}
.y23{bottom:596.733333pt;}
.y71{bottom:614.013333pt;}
.y1b{bottom:615.133333pt;}
.y5b{bottom:630.973333pt;}
.y70{bottom:631.613333pt;}
.y5a{bottom:648.573333pt;}
.y6f{bottom:649.213333pt;}
.y59{bottom:666.173333pt;}
.y6e{bottom:666.813333pt;}
.y58{bottom:683.773333pt;}
.y6d{bottom:684.573333pt;}
.y57{bottom:701.373333pt;}
.y6c{bottom:702.173333pt;}
.y56{bottom:719.133333pt;}
.y6b{bottom:719.773333pt;}
.y55{bottom:736.733333pt;}
.y6a{bottom:737.373333pt;}
.y19{bottom:739.133333pt;}
.y54{bottom:754.333333pt;}
.y69{bottom:754.973333pt;}
.y18{bottom:771.173333pt;}
.y53{bottom:771.973333pt;}
.y68{bottom:772.773333pt;}
.y17{bottom:789.413333pt;}
.y52{bottom:789.573333pt;}
.y67{bottom:790.373333pt;}
.y51{bottom:804.293333pt;}
.y16{bottom:807.013333pt;}
.y66{bottom:807.973333pt;}
.y15{bottom:824.613333pt;}
.y65{bottom:825.573333pt;}
.y14{bottom:838.053333pt;}
.y64{bottom:843.173333pt;}
.y13{bottom:857.093333pt;}
.y63{bottom:860.933333pt;}
.y12{bottom:877.893333pt;}
.y62{bottom:878.533333pt;}
.y61{bottom:896.133333pt;}
.y11{bottom:906.053333pt;}
.y60{bottom:913.733333pt;}
.ye{bottom:929.253333pt;}
.y5f{bottom:931.333333pt;}
.y1{bottom:949.093333pt;}
.y5e{bottom:966.693333pt;}
.y5d{bottom:984.293333pt;}
.y5c{bottom:1001.893333pt;}
.y50{bottom:1019.520000pt;}
.y4f{bottom:1037.280000pt;}
.y4e{bottom:1060.800000pt;}
.h3{height:1.777500pt;}
.h13{height:17.600000pt;}
.ha{height:19.872000pt;}
.h11{height:20.320000pt;}
.hf{height:24.131250pt;}
.h10{height:26.190625pt;}
.h8{height:33.515625pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h15{height:38.672812pt;}
.h14{height:41.112500pt;}
.hb{height:41.543750pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h9{height:49.622500pt;}
.hd{height:52.834688pt;}
.he{height:60.057813pt;}
.h12{height:123.360000pt;}
.h2{height:125.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.520000pt;}
.w4{width:141.280000pt;}
.w8{width:151.226667pt;}
.w2{width:153.626667pt;}
.w3{width:413.213333pt;}
.w9{width:540.093333pt;}
.w7{width:665.733333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xc{left:80.160000pt;}
.x13{left:109.311988pt;}
.x7{left:124.520000pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.xe{left:202.426667pt;}
.x5{left:220.680000pt;}
.x14{left:363.426655pt;}
.x12{left:420.893322pt;}
.x15{left:444.893322pt;}
.x10{left:451.133322pt;}
.x16{left:468.893322pt;}
.x11{left:583.293322pt;}
.x8{left:609.733333pt;}
.xf{left:729.253322pt;}
}




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